What is Iteration Hierarchy?
What is what is Object behavioral concept?
Answer / deepthi
Iteration heirarchi is means looping.
In c++ everything is based on Object.Object is the reference
to the class.
| Is This Answer Correct ? | 3 Yes | 0 No |
what is function over loading?
what isthe difference between c structure and c++ class
Which language is pure oop?
Can we override main method?
How do you define a class in oop?
What is difference between function overloading and overriding?
What is the default size allocated for array in the statement if size not specified " int a[] "
what is the difference between inter class and abstract class...?
Why is polymorphism used?
#include <iostream> using namespace std; int main() { int a = 2; 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][c[1][4]]; }
What are the types of abstraction?
Why is abstraction used?