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...

OOPS Interview Questions
Questions Answers Views Company eMail

What is a template?

7 9670

What are the main differences between procedure oriented languages and object oriented languages?

IBM, Infosys, Wipro,

9 21889

What is R T T I ?

Ness Technologies,

6 16302

What are generic functions and generic classes?

5 22858

What is namespace?

15 31673

What is the difference between pass by reference and pass by value?

Pfizer, TCS,

12 41197

Why do we use virtual functions?

4 15540

What do you mean by pure virtual functions?

8 15938

What are virtual classes?

2139

Does c++ support multilevel and multiple inheritance?

IBS, Wipro,

9 17602

What are the advantages of inheritance?

IBS, TCS,

26 97853

When is a memory allocated to a class?

11 29986

What is the difference between declaration and definition?

IBS,

20 50711

What is virtual constructors/destructors?

IBS,

4 10704

In c++ there is only virtual destructors, no constructors. Why?

IBM, Polaris,

4 29224


Post New OOPS Questions

Un-Answered Questions { OOPS }

What is polymorphism and example?

996


What is the problem with multiple inheritance?

1112


What is the fundamental idea of oop?

1092


What is abstraction and encapsulation?

953


Advantage and disadvantage of routing in telecom sector

1254


What is polymorphism give a real life example?

990


How do you achieve runtime polymorphism?

1009


Why we use classes in oop?

984


#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

2509


Describe these concepts: Polymorphism, Inheritance and Abstraction.

1155


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.

6894


explain sub-type and sub class? atleast u have differ it into 4 points?

2271


what is different between oops and c++

2468


How does polymorphism work?

1087


String = "C++ is an object oriented programming language.An imp feature of oops is classes and objects".Write a pgm to count the repeated words from this scenario?

2348