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 are virtual functions?

2 5488

What is friend function?

Wipro,

12 25003

What is a scope resolution operator?

HP, IBS,

5 17734

What do you mean by inheritance?

IBS,

2347

What is abstraction?

9 13926

What is polymorphism? Explain with an example.

48 134662

What is encapsulation?

TCS,

17 23078

What do you mean by binding of data and functions?

3 10501

What is function overloading and operator overloading?

4 16949

What is virtual class and friend class?

IBS, Intel, Wipro,

5 36194

What do you mean by inline function?

6 15157

What do you mean by public, private, protected and friendly?

CA,

3 10776

When is an object created and what is its lifetime?

IBM,

4 17762

What do you mean by multiple inheritance and multilevel inheritance? Differentiate between them.

2 15018

Difference between realloc() and free?

HP,

9 26770


Post New OOPS Questions

Un-Answered Questions { OOPS }

Write a C++ program without using any loop (if, for, while etc) to print prime numbers from 1 to 100 and 100 to 1 (Do not use 200 print statements!!!)

2161


What causes polymorphism?

1190


What is the diamond problem in inheritance?

1204


Explain the concepts involved in Object Oriented programming.

1317


What exactly is polymorphism?

1188


Which type does string inherit from?

1160


#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

2689


What does I oop mean?

1132


What is balance factor?

1135


Is abstract thinking intelligence?

1112


Write a program to compute for numeric grades for a course. The course records are in a file that will serve as the input file. The input file is in exactly the following format: Each line contains a student's first name, then one space, then ten quiz scores all on one line. The quiz scores are in whole number and are separated by one space. Your program will take it input from this file and sends it output to a second file. The data in the output file will be exactly the same as the data in the input file except that there will be one additional number (of type double) at the end of each line. This number will be the average of the student's ten quiz scores. Use at least one function that has file streams as all or some of its arguments.

3136


What is overloading in oops?

1221


What is the oops and benefits of oops programming?

1034


Why is polymorphism used?

1093


What are the two different types of polymorphism?

1200