What is multilevel inheritance in oop?
No Answer is Posted For this Question
Be the First to Post Answer
What normal C constructs work differently in C++?
What is the difference between the C & C++?
what is a virtual class?
5 Answers Cap Gemini, IBM, Infosys, Trinity Technologies,
What is multiple inheritance? Give Example
What is this interview room ? Is it a class or an object.
Get me an image implementation program.
What are the advantages of inheritance?
26 Answers IBS, TCS,
The expansion of GNU
Name an advantage of linked list over array?
What is Inheritance, Multiple Inheritance, Shared and Repeatable Inheritance?
#include <iostream> using namespace std; struct wow { int x; }; int main() { wow a; a.x = 22; int c = a.x; int *b = new int; cout << c; return 0; } option: No output 0 22 -(11) Will not compile
What is encapsulation?