What are the OOPS concepts?

Answer Posted / rakesh

class,
Object,
data abstract and encapsulation
polymorphism,
inheritance,
overloading

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What makes a language oop?

604


What is class and object with example?

599


What is purpose of inheritance?

653


What is polymorphism and types?

611


Explain the advantages of inheritance.

682






What are the components of marker interface?

614


What is multilevel inheritance explain with example?

636


is there any choice in opting subjects like 4 out of 7

1739


How to use CMutex, CSemaphore in VC++ MFC

4342


What do you mean by Encapsulation?

651


#include #include #include #include void select(char *items, int count); int main(void) { char s[255]; printf("Enter a string:"); gets(s); select(s, strlen(s)); printf("The sorted string is: %s.\n", s); getch(); return 0; } void select(char *items, int count) { register int a, b, c; int exchange; char t; for(a = 0; a < count-1; ++a) { exchange = 0; c = a; t = items[ a ]; for(b = a + 1; b < count; ++b) { if(items[ b ] < t) { c = b; t = items[ b ]; exchange = 1; } } if(exchange) { items[ c ] = items[ a ]; items[ a ] = t; } } } design an algorithm for Selection Sort

2078


i=20;k=0; for(j=1;k-i;k+=j<10?4:3) { cout<

1424


Can abstract class have normal methods?

624


What are constructors in oop?

605


What are two types of polymorphism?

622