How do you achieve polymorphism?
No Answer is Posted For this Question
Be the First to Post Answer
Describe the difference between a Thread and a Process?
Have you ever used threads?
What are the important components of cohesion?
polymorphism means?
In which Scenario you will go for Interface or Abstract Class?
1 Answers InfoAxon Technologies,
what is difference b/w object based and object oriented programming language?
18 Answers Chaitanya, College School Exams Tests, Educomp, IBM, Infosys, Telko,
explain the concepts of oops?
What are the data types in oop?
JAVA is FULLY OBJECT ORIENTED PROGRAMING LANGUAGE?
what is polymorpsim? what are its types?
What is a class and object?
#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]]; }