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

Why is null pointer used?

1171

What is buffer and example?

1007

Why c++ is better than c language?

1020

How long will it take to learn programming?

1058

What does std :: flush do?

1134

What is array give example?

1049

What are the 3 levels of programming languages?

1041

What is c++ 11 and c++ 14?

1055

What is abstraction with real time example?

1148

Why c++ is faster than java?

1056

What are the types of pointer?

1096

What are disadvantages of pointers?

1038

What are the 4 types of library?

1180

What is difference between class and function?

1087

What is endl?

1153


Un-Answered Questions { C++ }

Is C++ case sensitive a) False b) Depends on implementation c) True

1075


What is class encapsulation?

1091


What is encapsulation selenium?

1006


Differentiate between a constructor and a destructor in c++.

1015


Does c++ have finally?

1030


Can I learn c++ without knowing c?

1060


What is abstract class in c++?

1050


Can I learn c++ in a week?

1069


On throwing an exception by the animal constructor in p = new animalq, can memory leak occur?

1130


#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 is a vector c++?

1175


What is the object serialization?

1146


What's the value of the expression 5["abxdef"]?

1554


What is Difference Between Inheritance and creating object and getting data? means Class A extends B{ B.getMethod();} (OR) Class A{ b obj=new B(); obj.getMethod(); }

2600


What does override mean in c++?

1064