What are the four main oops concepts?
Answer / s
1.Abstraction
2.Encapsulation
3.Polymorphism
4.Inheritance
| Is This Answer Correct ? | 0 Yes | 0 No |
Write a C/C++ program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the maximum number of concurrent threads that the InnoDB plug-in can create.
What is inheritance in oop?
create a c++ program that will accepts 9 inputs using 3 by 3 array.
What is abstraction 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
Does c++ support multilevel and multiple inheritance?
What is memory leak and memory corruption?
what is the function of 'this' operator ?
what is the drawback of classical methods in oops?
How oops is better than procedural?
inheritence with example
What is for loop and its syntax?