Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...



C++ Interview Questions
Questions Answers Views Company eMail

What is the use of data hiding?

1017

What is the full form nasa?

1095

Why is c++ still best?

980

Which software is best for programming?

1152

Why #include is used?

1065

Why are pointers used?

1004

Which programming language should I learn first?

1090

What is the full name of logo?

1118

What is the header file for setw?

1126

Why is polymorphism useful?

1074

Why is main function important?

1108

Why do we need function?

1052

Which software is best for coding?

1042

Why do we use classes in programming?

1035

Who calls main function?

1111


Un-Answered Questions { C++ }

Do you know what are static and dynamic type checking?

1061


Explain the difference between overloading and overriding?

1140


#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

2620


What does new do in c++?

1070


Which one is better- macro or function?

1193


What is meant by forward referencing and when should it be used?

1011


What is an inline function in c++?

1112


Which language is not a true object oriented programming language?

1131


What is the type of 'this' pointer?

1016


Will c++ be replaced?

1043


When is the copy constructor called?

1141


Difference between class and structure.

1171


Can I learn c++ without knowing c?

1060


Explain what is polymorphism in c++?

1127


What are the advantages of c++?

1888