What is oop in simple words?



What is oop in simple words?..

Answer / pranay

Constructing a program with class object concept is known as oops.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More OOPS Interview Questions

Is following functions are said to be overloaded? int add(int a,int b) char *add(int a,int b)

4 Answers  


Program to check whether a word is the first word of the sentence.

1 Answers  


#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]; }

1 Answers  


What is inheritance in oop?

0 Answers  


What is polymorphism used for?

0 Answers  






There are two base class B1,B2 and there is one class D which is derived from both classes, Explain the flow of calling constructors and destructors when an object of derived class is instantiated.

0 Answers  


What is Agile methodology?

20 Answers   ABC, Accenture, College School Exams Tests, Inmar, Microsoft, Sapient,


What is object and example?

0 Answers  


why c++ is a highlevel language

3 Answers   Satyam, Tech Mahindra,


There are 2 classes defined as below public class A { class B b; } public class B { class A a; } compiler gives error. How to fix it?

3 Answers   Microsoft,


Base class has two public data members. How can i derive a new class with one datamember as public and another data member as private?.

2 Answers  


what is the usage of clas templates

5 Answers  


Categories