c++ is a purely oop concept?
Answers were Sorted based on User's Feedback
Answer / nithya
c++ is not a purely object oriented language because it is possible to write programs without classes unlike java which is purely oop as programs can exist only with classes
| Is This Answer Correct ? | 25 Yes | 2 No |
#include <iostream> using namespace std; int main() { int a = 3; int c[5][5]; for (int x=0;x<5;x++) { for (int y=0;y<5;y++) { c[x][y] = x*y; } } cout << c[a][2]; }
Why do we use polymorphism in oops?
What is class and example?
Why is oop useful?
Why we use classes in oop?
What is persistence in oop?
swapping program does not use third variable
What is data binding in oops?
What is the difference between the C & C++?
What is difference between data abstraction and encapsulation?
write a program to print * * * * * *
which structured data type is not used in c++? 1.union 2.structure 3.string 4.boolean