c++ is a purely oop concept?

Answer Posted / nithya

c++ is not a purely object oriented language because it is possible to write programs without classes unlike java which is purely oop as programs can exist only with classes

Is This Answer Correct ?    25 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

write a programe to calculate the simple intrest and compund intrest using by function overlading

1666


just right the logic of it 1--> If few people are electing then every time ur candidate should win 2--> arrange books in box, if box carry weight == books weight then take another box..... find the no of box required.

6483


What are the advantages of polymorphism?

573


write a program to enter a string like"sunil is a good boy and seeking for a job" not more than 10 characters including space in one line,rest characters should b in other line.if the next line starts from in between the previous word,then print whole word to next line.

1789


What is difference between oop and pop?

611






What is encapsulation selenium?

554


#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

2064


i am getting an of the type can not convert int to int *. to overcome this problem what we should do?

1833


write string class as your own class in java without using any built-in function

1976


Can private class be inherited?

615


What is object and class in oops?

586


Which is better struts or spring?

617


What is the renewal class?

2161


Why it is called runtime polymorphism?

573


What are the benefits of oop?

604