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

In what situation factory design patterns,DAO design patterns,singleton design patterns should be applied.?

2 7559

How to execute business logic for only once ..?even though user clicks submit button multiple times by mistake..? (i disabled JavaScript)

1 3339

what are the disadvantages of C++?

ATS, Infosys, UNI, Wipro,

25 96011

what is a virtual class?

Cap Gemini, IBM, Infosys, Trinity Technologies,

5 14895

WHEN A COPY CONSTER IS CALL ?

4 7214

WHY FUCTION OVERLOADING DOSENOT RETURN A RETEN TYPE

2 10181

what is abstract class ? when is used in real time ? give a exp

5 20117

write a program in c++ to overload the function add (s1,s2) where s1 and s2 are integers and floating point values.

4 20840

write a c++ program to find maximum of two numbers using inline functions.

IBM,

3 40084

to remove the repeated numbers from the given . i.e.., if the input is 12233 output should of 123

2 5533

What is the difference between const int *ptr and int const *ptr???

2 22333

what is the difference between class and object?

9 16492

What is the Advantage of Interface over the Inheritance in OOPS?

4 18324

design a c++ class for the chess board,provide a c++ class definition for such class(only class definition is required)

UBS,

6680

what is the difference b/w abstract and interface?

Merrill Lynch, Schneider, Scio Healthcare,

2 8881


Post New OOPS Questions

Un-Answered Questions { OOPS }

what is the drawback of classical methods in oops?

3381


Why can't we have instance(stack) of a class as a member of the same class like eg.Class A{A obj;} as we can have self refential pointer

2153


What are the benefits of interface?

1061


Are polymorphisms mutations?

1163


What is destructor example?

1049


I have One image (means a group photo ) how to split the faces only from the image?............ please send the answer nagadurgaraju@gmail.com thanks in advace...

2114


#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


Which type does string inherit from?

1106


What is encapsulation in ict?

1062


What is methods in oop?

981


They started with the brief introduction followed by few basic C++ questions on polumorphism, inheritance and then virtual functions. What is polymorphims? How you will access polymorphic functions in C? How virtual function mechanism works?

1921


why reinterpret cast is considered dangerous?

2393


What is the benefit of oop?

1058


Which is not an object oriented programming language?

997


What is the difference between a constructor and a destructor?

1262