Explain what is oop?
No Answer is Posted For this Question
Be the First to Post Answer
can anybody please tell me how to write a program in c++,without using semicolon(;)
What is the best free c++ compiler for windows?
How many static variables are created if you put one static member into a template class definition?
Explain the static member function.
Describe run-time type identification?
Write a C++ program that asks the user to choose a number between 1 and 1000. Then, your program should be able to guess the number by asking the user no more than 10 yes/no questions. Use a while loop in your program
What is the difference between structure and class?
class Foo { const int x; protected: Foo(int f); ~Foo(); }; Foo f; Referring to the sample code above, why will the class declaration not compile? a) The variable x is const. b) The destructor is protected. c) The destructor is not public. d) The constructor is protected. e) There is no default constructor.
What is the difference between an external iterator and an internal iterator? Describe an advantage of an external iterator?
Explain what are accessor methods?
If horse and bird inherit virtual public from animal, do their constructors initialize the animal constructor? If pegasus inherits from both horse and bird, how does it initialize animal’s constructor?
What are abstract data types in c++?