What is the example of polymorphism?
No Answer is Posted For this Question
Be the First to Post Answer
Write a program to implement OOPS concepts such as inheritance, polymorphism, friend function, operator overloading?
#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
Given two strings like x=?hello? and y=?open?, remove any character from string x which is also used in string y, thus making the result x=?hll?.
The expansion of GNU
What is multilevel inheritance in oop?
what is function over loading?
Base class has two public data members. How can i derive a new class with one datamember as public and another data member as private?.
What are the 3 principles of oop?
Why is abstraction needed?
What is balance factor?
What is polymorphism in oops?
Which language is pure oop?