What is the benefit of encapsulation?
No Answer is Posted For this Question
Be the First to Post Answer
How do you find out if a linked-list has an end?
Write about a nested class and mention its use?
What is general format for a prototype?
What is a pointer how and when is it used?
What do you understand by pure virtual function? Write about its use?
State the difference between pre and post increment/decrement operations.
How did c++ get its name?
What is ctime c++?
What is a custom exception?
Can a constructor return a value?
Evaluate: int fn(int v) { if(v==1 || v==0) return 1; if(v%2==0) return fn(v/2)+2; else return fn(v-1)+3; } for fn(7); a) 10 b) 11 c) 1
What are templates? where we should use it?