What is debug class?what is trace class? What differences are between them? With examples.
No Answer is Posted For this Question
Be the First to Post Answer
Write a C++ program without using any loop (if, for, while etc) to print prime numbers from 1 to 100 and 100 to 1 (Do not use 200 print statements!!!)
Give two or more real cenario of virtual function and vertual object
What is Difference Between Inheritance and creating object and getting data? means Class A extends B{ B.getMethod();} (OR) Class A{ b obj=new B(); obj.getMethod(); }
What is public, protected, private?
What is persistence in oop?
wht is ditch
In what situation factory design patterns,DAO design patterns,singleton design patterns should be applied.?
Why we use classes in oop?
What is namespace?
How do you explain polymorphism?
Program to open a file with First argument
design class for linked list and include constructor,destructor,insert option. struct node { int node; struct node &ptr; }