IN PROGRAMING LANGAUGE A C++ IS PURELY OBJECT ORIENTED OR
NOT?

Answer Posted / jay gandhi

IN PROGAMING ONLY SMALL TALK IS PURELY OOPS NOT C++ ARE
PURE OBJECT ORIENTED LANGAUGE..

Is This Answer Correct ?    8 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

#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

2056


What type of loop is a for loop?

678


What is the difference between static polymorphism and dynamic polymorphism?

573


What is abstraction oop?

615


What is the significance of classes in oop?

585






design a c++ class for the chess board,provide a c++ class definition for such class(only class definition is required)

6135


• What are the desirable attributes for memory managment?

1720


What is the main feature of oop?

614


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

1826


write a program that takes input in digits and display the result in words from 1 to 1000

1980


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

2157


What are two types of polymorphism?

607


What are the three main types of variables?

596


What are functions in oop?

580


Can private class be inherited?

613