What is object and example?
No Answer is Posted For this Question
Be the First to Post Answer
How do you define social class?
difine hierarchical inheritance.
#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 the realstic modeling?
What is difference between function overloading and overriding?
Where is pseudocode used?
What is oops in programming?
What is Iteration Hierarchy? What is what is Object behavioral concept?
How to reverse a sentence in c program ex: ram is a good boy answer: boy good a is ram
create a class complex having real and imaginary part of a complex no. as a data member. overload the binary operators(+,- and *) to perform the operations on complex no. objects. overload binary operator using friend function.
2 Answers CTS, Delhi University,
what are the characteristics of oops?
why destructor is not over loaded?