Java MCQ Questions for Placement


Q.  From the following statements which is a disadvantage of an java array?

a. An array can hold primitive types data
b. An array has its size that is known as array length
c. An array knows only its type that it contains. Array type is checked at the compile-time
d. An array holds only one type of data


ANSWER: See Answer
 
No explanation is available for this question!
MCQs:  An exception is thrown using _____________ keyword in CPP.
Category: Computer Science MCQs,   Published by: teswesm
MCQs:  Which of the followings is/are not a manipulator/s ? 1. flush 2. base 3. ends 4. oct 5. bin 6. skipws
Category: Computer Science MCQs,   Published by: teswesm
MCQs:  If default constructor is not defined, then how the objects of the class will be created?
Category: Computer Science MCQs,   Published by: teswesm
MCQs:  Is it mandatory to invoke/call a constructor for creating an object?
Category: Computer Science MCQs,   Published by: teswesm
MCQs:  Members of the class can be declared with auto, extern or register storage classes.
Category: Computer Science MCQs,   Published by: teswesm
MCQs:  C structure differs from CPP class in regards that by default all the members of the structure are __________ in nature.
Category: Computer Science MCQs,   Published by: teswesm
MCQs:  Which of the following best defines the syntax for template function ?
Category: Computer Science MCQs,   Published by: teswesm
MCQs:  Generic pointers can be declared with__________ .
Category: Computer Science MCQs,   Published by: teswesm
MCQs:  Which of the followings are true about constructors? 1. A class can have more than one constructor. 2. They can be inherited. 3. Their address can be referred. 4. Constructors cannot be declared in protected section of the class. 5. Constructors cannot return values.
Category: Computer Science MCQs,   Published by: teswesm
MCQs:  Which of the following are true about static member function? 1. They can access non-static data members. 2. They can call only other static member functions. 3. They can access global functions and data. 4. They can have this pointer. 5. They cannot be declared as const or volatile.
Category: Computer Science MCQs,   Published by: teswesm
MCQs:  Static variable must be declared in public section of the class.
Category: Computer Science MCQs,   Published by: teswesm
MCQs:  By default, if a function with minimum lines of code is declared and defined inside the class becomes Inline function.
Category: Computer Science MCQs,   Published by: teswesm
MCQs:  class X, class Y and class Z are derived from class BASE. This is ______ inheritance.
Category: Computer Science MCQs,   Published by: teswesm
MCQs:  When base class is derived in protected mode, then_____________ . 1. public members of base class become private members of derived class. 2. public members of base class become protected members of derived class. 3. public members of base class become public members of derived class. 4. protected members of base class become protected members of derived class. 5. protected members of base class become private members of derived class. 6. protected members of base class become public members of
Category: Computer Science MCQs,   Published by: teswesm
MCQs:  Can we have overloading of the function templates?
Category: Computer Science MCQs,   Published by: teswesm
MCQs:  Streams that will be performing both input and output operations must be declared as class _________ .
Category: Computer Science MCQs,   Published by: teswesm
MCQs:  Exception handlers are declared with ____________ keyword.
Category: Computer Science MCQs,   Published by: teswesm
MCQs:  Which of the following statements are true about Catch handler? 1. It must be placed immediately after try block T. 2. It can have multiple parameters. 3. There must be only one catch handler for every try block. 4. There can be multiple catch handler for a try block T. 5. Generic catch handler can be placed anywhere after try block.
Category: Computer Science MCQs,   Published by: teswesm
MCQs:  Static variable declared in a class are also called_________ .
Category: Computer Science MCQs,   Published by: teswesm
MCQs:  Which of the following operator is used to release the dynamically allocated memory in CPP?
Category: Computer Science MCQs,   Published by: teswesm