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 abstraction encapsulation?

1128

How is polymorphism achieved?

1057

Why is oop better than procedural?

1084

Why multiple inheritance is not possible?

1075

Why multiple inheritance is not allowed?

1161

What is polymorphism what is it for and how is it used?

1023

What is new keyword in oops?

1045

What is multilevel inheritance in oop?

1043

What is polymorphism used for?

1069

What type of loop is a for loop?

1091

What is difference between polymorphism and inheritance?

1092

What is the diamond problem in inheritance?

1141

What are the two different types of polymorphism?

1147

What are the benefits of oop?

1264

What type of Job you are providing?

1076


Post New OOPS Questions

Un-Answered Questions { OOPS }

What is oops and its features?

1085


What are the components of marker interface?

1063


Who invented oop?

1134


Why we use classes in oop?

1046


What does sksksk mean in text slang?

2123


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

2320


write a programe to calculate the simple intrest and compund intrest using by function overlading

2207


what is the drawback of classical methods in oops?

3382


What are the benefits of polymorphism?

1278


• What are the desirable attributes for memory managment?

2236


Why do we use polymorphism in oops?

1055


#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


What is oops concept with example?

1031


any one please tell me the purpose of operator overloading

2401


What is difference between multiple inheritance and multilevel inheritance?

1150