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

define a string class. overload the operator == to compare two strings

Birla, Ericsson, HCL, Infosys, Infotech, MCAS, Satyam,

2 20370

why constructor cannt be declar virtually? why destructor cannt be overloaded?

Infosys,

2 7133

Write a C++ program to conduct an election of a mayor.Declare a class ELECTION With the following specification: Data member: Name 25 character Age Integer symbol 1 character Member functions: To accept data for 20 contestant To accept symbol as voting from 100 voters. To declare the winner and the loser.

Global Academy, Infotech,

1 12586

explain the concepts of oops?

1 4291

what is object oriented programming and procedure oriented programming?

3 9458

what is function over loading?

5 7861

Differences between inline functions and non-inline functions?

Ness Technologies,

4 28838

what is the application of oops?

IBM,

8 48297

What is the difference between C++ and java?

Atos Origin,

6 13509

What is nutshell in programming language?

Satyam, Tech Mahindra,

1 13743

Can java compiler skips any statement during compilation time?

2181

DIFFRENCE BETWEEN STRUCTURED PROGRAMING AND OBJCET ORIENTED PROGRAMING.

5 13011

What does the keyword "static" mean?

TCS,

4 7922

What is the different between Applet and Application?

2 5147

C#.net Interview Question A=10 B=5 C=A+B Print C The above will be given in a multiline textbox. You need to parse the above input, store values for A,B&c. And you have to display the value of C.

Syncfusion,

1 5892


Post New OOPS Questions

Un-Answered Questions { OOPS }

Which is not an object oriented programming language?

947


Explain the advantages of inheritance.

1094


What is the use of oops?

1003


What is the difference between abstraction and polymorphism?

1067


What polymorphism means?

1010


#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

2579


#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


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

2149


What is abstraction in oop with example?

1075


officer say me - i am offered to a smoking , then what can you say

2059


Describe these concepts: Polymorphism, Inheritance and Abstraction.

1156


Why multiple inheritance is not possible?

1030


hi all..i want to know oops concepts clearly can any1 explain??

2090


to find out the minimum of two integer number of two different classes using friend function

2091


There are two base class B1,B2 and there is one class D which is derived from both classes, Explain the flow of calling constructors and destructors when an object of derived class is instantiated.

1944