Answer Posted / anjana priyadharshini
Class:
Class is a instance of object.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is polymorphism give a real life example?
What is abstraction with example?
is there any choice in opting subjects like 4 out of 7
How is polymorphism achieved?
What is destructor example?
Can we define a class within the interface?
What is encapsulation process?
can we make game by using c
write knight tour problem which is present in datastructure
What are the 3 pillars of oop?
write a C++ program for booking using constructor and destructor.
What is an interface in oop?
class CTest { public: void someMethod() { int nCount = 0; cout << "This is some method --> " << nCount; } }; int main() { CTest *pctest; pctest->someMethod(); return 0; } It will executes the someMethod() and displays the value too. how is it possible with our creating memory for the class . i think iam not creating object for the class. Thanks in Advance... Prakash
when to use 'mutable' keyword and when to use 'const cast' in c++
What is super in oop?