What are the OOPS concepts?

Answer Posted / krishnan

1 encapsulation - class
2 abstraction - object
3 inheritance
4 poymorphism - compile and run (static and dynamic binding)
5 message passinng
6 delegation
7 reusability
8 Interfaces
9 extensability
10 templates
11 scalability
12 associativity
13 persitence ......etc are OOPs Cocepts

Is This Answer Correct ?    68 Yes 36 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is multilevel inheritance in oop?

559


What is polymorphism and types?

607


Can private class be inherited?

624


What is overloading in oops?

602


write knight tour problem which is present in datastructure

2170






Why oops is important?

616


What is the renewal class?

2171


Why is static class not inherited?

601


Is this job good for future? can do this job post grduate student?

1697


What are two types of polymorphism?

616


What does <> mean pseudocode?

626


What is overriding in oops?

608


Can abstract class have normal methods?

616


Is enum a class?

609


#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

2073