Choose a topic to test your knowledge and improve your OOPS skills
Which among doesn’t illustrates polymorphism?
Exception handling is a feature of OOP.
Which among the following, for a pure OOP language, is true?
Does OOP provide better security than POP?
Which of the following approach help us understand better about Real time examples, say Vehicle or Employee of an Organisation?
Which of the following Paradigm is followed by Object Oriented Language Design?
Which of the following approach is followed by Object Oriented Language during the execution of a program?
Which of the following is/are advantage of using object oriented programming?
Java Compiler translates the source code into?
What is the output of this program? class PrintTest { public static void main(String args[]) { int num = 10; if (NUM < 100) { System.out.println("The value of num is"+ num); } } }
Which of the following is called as ‘Comiplation unit’?
What is the output of this program? class TypeChecking { public static void main(String args[]) { int num = 10.5; System.out.println("Output :The value of num is" +num); } }
Which is a named memory location assigned a value by the program?
Which among the following is the main use of object?
Which among the following is not a property of an object?
What is function object?
Immutable object are used _________
Which object can be used to contain other objects?
A factory object is used ______
What are singleton objects?
Object cout and cin _______
Objects type _________
An object can be used to represent _________
Objects can be used _______
Which among the following is not a use of object?
Which object can be used to access the standard input?
A single object can be used ________
If same object name is given to different objects of different class then ____
Passing object to a function _______
The object ________
Which symbol should be used to pass the object by reference in C++?
If object is passed by value _________
Pass by reference of an object to a function ______
Copy constructor definition requires ________
What is the type of object that should be specified in the argument list?
If an object is passed by value, __________
Can data members be passed to a function using the object?
What exactly is passed when an object is passed by reference?
If the object is not to be passed to any function but the values of the object have to be used then?
Which among the following is true?
In which type is new memory location will be allocated?
Pass by reference and pass by value can’t be done simultaneously in a single function argument list.
What are the constant member functions?
Which keyword must be used to declare a member function as a constant member function?
Which objects can call the const functions?
Non-const functions ___________
Which is the correct condition on const member functions?
If a const object calls a non-const member function then _________
Can a constructor function be constant?
A function can have both the const and non-const version in the same program.