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 polymorphism important in oop?

1086

What is polymorphism give a real life example?

1038

What is encapsulation in oops?

1015

Why do we use polymorphism in oops?

1055

Why do we use polymorphism?

1088

What is object and example?

1179

Why is oop useful?

1110

What is the difference between procedural programming and oops?

1136

Why is destructor used?

1025

What is polymorphism and example?

1054

What are the three parts of a simple empty class?

2056

What is oops and why we use oops?

1050

What is difference between inheritance and polymorphism?

1030

What is oops and its features?

1084

What are properties in oop?

1090


Un-Answered Questions { C++ }

How do I convert a stl file?

1109


What is the use of map in c++?

1152


Is it possible to provide default values while overloading a binary operator?

1268


What is a rooted hierarchy?

1167


Can you please explain the difference between static and dynamic binding of functions?

1033


#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

2554


Differentiate between a constructor and a method in C++.

1061


Why do we use inheritance?

1136


What is the auto keyword good for in c++?

1192


How does the copy constructor differ from the assignment operator (=)?

1153


How to generate random numbers in C++ with a range?

932


What is using namespace std in cpp?

1167


How to reverse a string in C++

815


How many times will this loop execute? Explain your answer.

883


What are the 3 levels of programming languages?

1050