What is the concept of object oriented program?
Answers were Sorted based on User's Feedback
Answer / nijasec
It giving importance to object or it consists of objects of
classes
| Is This Answer Correct ? | 13 Yes | 3 No |
Answer / kalyan
it is a concept which uses a method of using objects
| Is This Answer Correct ? | 4 Yes | 1 No |
It giving importance to object or it consists of objects of
classes
| Is This Answer Correct ? | 5 Yes | 2 No |
Answer / jangam
the object oriented is the write the oops concept and write
the classes
| Is This Answer Correct ? | 3 Yes | 3 No |
Write a macro for swapping integers
What is abstraction in oop with example?
WHAT IS THE DIFFERENCE BETWEEN ABSTRUCTION AND ENCAPSULATION? PLEASE EXPLAIN IT.
Can private class be inherited?
what isthe difference between c structure and c++ class
What is a null tree?
What polymorphism means?
1. Define a class.
#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]]; }
How to use CMutex, CSemaphore in VC++ MFC
How to call a non virtual function in the derived class by using base class pointer
What is multiple inheritance?