What are the OOPS concepts?

Answers were Sorted based on User's Feedback



What are the OOPS concepts?..

Answer / renganayaki

OOPS described as Object Oriented Programing
Language.oops are used for Data Structure Programing
supported in C++ and Java.oops Identify following aspects:
1.Class
2.Objects
3.encapsulation
4.Abstraction
5.Inheritance
6.Polymorphism

Is This Answer Correct ?    0 Yes 0 No

What are the OOPS concepts?..

Answer / nagesh

1.Class
2.Object
3.Inheritance
4.Polymorphism
5.Encapsulation

Is This Answer Correct ?    0 Yes 0 No

What are the OOPS concepts?..

Answer / amruta

There are 7 basic concepts of oop
1.object&classes
2.data abstraction
3.data encapsulation
4.polymorphism
5.inheritance
6.dynamic binding
7.msg passing

Is This Answer Correct ?    0 Yes 0 No

What are the OOPS concepts?..

Answer / sri

object oriented programming language concepts are,
object
data abstraction
encapsulation
inheritance
polymorphism
message passing

Is This Answer Correct ?    0 Yes 0 No

What are the OOPS concepts?..

Answer / dlp

objects
data abstraction
inheritance
encapsulation
dynamic binding
message passing

Is This Answer Correct ?    0 Yes 0 No

What are the OOPS concepts?..

Answer / jiji m v

Object and class
Data abstraction
Data encapsulation
Inheritance
Overloading
Polymorphism

Is This Answer Correct ?    0 Yes 0 No

What are the OOPS concepts?..

Answer / ram

OOPS's organize to program based on data..
object and other set of interface is that data...

Is This Answer Correct ?    0 Yes 0 No

What are the OOPS concepts?..

Answer / nehru

Encapsulation
Data Abstraction
Polymorphism
Persistence
Deli cation
Generosity
Extensibility

Is This Answer Correct ?    0 Yes 0 No

What are the OOPS concepts?..

Answer / sathish

Encapsulation
Polymorphism
Inheritance

Is This Answer Correct ?    0 Yes 0 No

What are the OOPS concepts?..

Answer / anil kumar battula

1.object
2.class
3.data Abstraction & encapsulation
4.Inheritence
5.polymorphism
6.data binding
7.message passing

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More OOPS Interview Questions

What is object in oop with example?

0 Answers  


Can we override main method?

0 Answers  


what is difference between String s=new String("vali"); String s="vali"

1 Answers  


1. Strong name 2. how to prevent a class from being inherited 3. delegates 4. default modifier for interface 5. default modifier for class 6. base class for exception 7. diff bet trigger and view in sql 8. how to exchange values from one page to another page 9. can multiple catch block ll be executed at same time 10. can u store different data types in an array & array list 11. when we ll use trigger 12. try,catch,finally usage

2 Answers  


What is data binding?

4 Answers   Ittiam Systems,






Can anyone please explain runtime polymorphism with a real time example??at what ciscumstances we go for it??

1 Answers  


#include <iostream> using namespace std; struct wow { int x; }; int main() { wow a; a.x = 22; int c = a.x; int *b = new int; cout << c; return 0; } option: No output 0 22 -(11) Will not compile

1 Answers   CTS, Wipro,


How compiler selects(internally) required overridden function in inheritance?

2 Answers   CSC, Infinite Computer Solutions,


Input: enter the value:1234 output: 1 2 3 4 write a program to get above output.....

4 Answers   Bally Technologies, IBM, SoftSol,


can we make a class static without using static keyword?

5 Answers   Aspire,


swapping program does not use third variable

5 Answers   TCS,


What do we mean by a hidden argument in C++?

1 Answers  


Categories