A) EncapsulationB) ClassC) InheritenceD) Polymorphism
Latest Answer: class ...
When a member is declared static, it CANNOT be accessed before any objects of its class are created, and without reference to any object
A) TrueB) FalseExplanation: When a member is declared static, it can be accessed before any objects of its class are created, and without reference to any object. You can declare both methods and variables
Methods declared as static have several restrictions:1) They can only call other static methods.2) They must only access static data.3) They cannot refer to this or super in any way Which of these are TRUE?
A) 1 and 2B) 1 and 3C) 2 and 3D) 1, 2 and 3
A) TrueB) False
Latest Answer: hi, ans is true. when we a final keyword to a variable the value of the variable can't change. ...
A) Nested Classes
Latest Answer: I think this mode of answering the question when you have to enter the text should not be used. one thing can be named in many ways, and you cant say that which is correct.I answered Inner classes and it says its wrong. ...
A) TrueB) False
Latest Answer: true.....class declared with static called static inner class....with out static called non static inner class.. ...
If you want to pass information into a program when you run it then command-line arguments are to main( ).
A) TrueB) False
J2SE 5 has added a new feature that simplifies the creation of methods that need to take a variable number of arguments. This feature is called _______
A) varargsExplanation: varargs - It is short for variable-length arguments.
View page << Previous 3 4 5 6 [7]

Go Top