What is abstract class in oop?
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between pass by value,pass by pointer,pass by reference in the catch block in the exception handling in c++
what is graphics
What is polymorphism? Explain with an example.
INSTANCE FIELDS DECLARED private ARE ACCESSIBLE BY THE METHODS ONLY.CAN WE CHANGE THE private FIELD OF AN OBJECT IN A METHOD OF SOME OTHER OBJECT OF THE SAME CLASS?
What is interface in oop?
Differences between inline functions and non-inline functions?
What do you mean by multiple inheritance and multilevel inheritance? Differentiate between them.
WAP to generate 2n+1 lines of the following pattern on the computer screen:
can we make a class static without using static keyword?
What is the difference between encapsulation and polymorphism?
What are the 5 oop principles?
#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]]; }