What are the advantages of polymorphism?
No Answer is Posted For this Question
Be the First to Post Answer
what are the ways in which a constructors can be called?
Can you inherit a private class?
#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]; }
Why do we use oop?
What is extreme programming?
Write a program to sort the number with different sorts in one program ??
How many types of access specifier in c# and vb.net?
Name an advantage of array over linked list?
24 Answers GML, IBM, Software Solutions,
What are the benefits of oop?
What does it mean when someone says I oop?
How to handle exception in c++, For example in a functions i am assigning memory to some variables and also in next instructions in am dividing one variable also. If this functions generates a error while allocating memory to those variable and also while dividing the variable if i divide by zero then catch block how it will identify that this error has cone from perticular instruction
can main method be overloaded...??? How..????