I think there is some confusion between "retrieve" and "return".The query retreives 2 columns from the table - address1 and address2, and returns 1 column "Address"
Jim Abraham
May 27th, 2006
All the addressed rows in the select statement are concatenated and renamed as "Addresss". So only 1 column will be reflected in the result.So answer is C
C. Table B gets created,but no rows gets inserted into Table A
Guest
Jan 4th, 2007
hian empty table table (B) will be created there is a mistake un the first statementno need to commit a Create instruction, so the rollback will have no effectgood luck
class container{//put the setters and getters of key and valuesobject key=null; //acting as keyList values=null;public void Container(){key=new Object();values=new ArrayList();}public insert(object ke...
A void return type indicates that a method does not return a value.
shaik
Jan 5th, 2007
Overloading never concerns with return type. Even if the method "void example(int x)" is overloaded with different parameters and no. of parameters the return type is same i.e void mean nothing it is returning.
SAX stands for Simple API for XML. It is a standard interface for event based XML parsing. Programmers provide handlers to deal with different events as the document is passed. If we use SAX API to p...
Vector was used in the older version of java where all the methods are synchronised for thread safety, but since it was creating a lot of performance problem ArrayList was introduced where none of the methods are synchronised
vikramaditya Garg
Dec 15th, 2005
Vector is a dynamic collection whose size increases with addition of more elements.Array's size is not dynamic.Means that vector is based on dynamic memory allocation.