What is constructor and virtual function?

Answers were Sorted based on User's Feedback



What is constructor and virtual function?..

Answer / raj

constructor is special member function whose purpose to
initialize the class member variables.

Is This Answer Correct ?    10 Yes 0 No

What is constructor and virtual function?..

Answer / niranjanravi

Constructor is a special kind of method used to initialize
an object.

Is This Answer Correct ?    11 Yes 2 No

What is constructor and virtual function?..

Answer / lakshmi

Constructor is the function that has class name as its
function name with no return type and is used to initialize
the data members of the class.
virtual function is the function that can be overriden in
the derived class. it uses virtual keyword. it may or may
not be overloaded in derived class.
abstract function must be overridden in the derived class
inorder to create the instance.

Is This Answer Correct ?    4 Yes 0 No

What is constructor and virtual function?..

Answer / ravikiran(aptech mumbai)

constructor name is of the class name which has no return
type and is used o initialize during instantiation of class.

virtual function is the function called t runtime

Is This Answer Correct ?    3 Yes 2 No

What is constructor and virtual function?..

Answer / rohit saini

Contructor is the special type of method which is used
initialize the data member the class

Is This Answer Correct ?    1 Yes 0 No

Post New Answer

More Core Java Interview Questions

What are serialization and deserialization?

0 Answers  


Why string is not a wrapper class?

0 Answers  


What does %4d mean in java?

0 Answers  


What is the life cycle of Servlet?

3 Answers  


What is function and its uses?

0 Answers  


what is the use of finalize()Method please explain with an example

3 Answers  


What are the differences between string, stringbuffer and stringbuilder?

0 Answers  


explain about method overloading and method overriding with difficult examples

4 Answers  


What is a protected void?

0 Answers  


What is exception and error? and what is the difference between them?

2 Answers  


What is synchronization and why is it important in java programming?

0 Answers  


Which containers may have a MenuBar?

1 Answers  


Categories