What is the real life example of polymorphism?
No Answer is Posted For this Question
Be the First to Post Answer
Why many objects can working together? How objects working togetherM I want to see example code.
#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]; }
What is static in oop?
WHAT IS THE DIFFERENCE BETWEEN ABSTRUCTION AND ENCAPSULATION? PLEASE EXPLAIN IT.
Which is the best institute in hyderabad for C/C++ and it also has fast track course structure.
how does a main() in C++ is different from main() in C?
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 are callback functions in c++
What does the code "cout<<(0==0);" print? 1) 0 2) 1 3) Compiler error: Lvalue required
Why multiple inheritance is not allowed?
Program to check whether a word starts with a capital letter or not.
what is use to destroy an object? illustrate.