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 isthe difference between c structure and c++ class

5 10452

can we create and enter the data & hide files using programmes ?

Wipro,

2 5211

what is the difference between javap and jad utility

Wipro,

1 7113

WHAT IS THE ACTUAL DEFINATION OF OBJECT AND THE CLASS IN ONE SINGLE LINE WHICH THE INTERVIEWER WANT TO LISTEN.

11 16611

tel me oops defination in single line

2 5898

what is the use of classes in c++;

HCL,

2 6569

Define a class to represent a bank account. Include the following members: Data Members: Name of the Depositor Account Number Type of Account Balance amount in the account Member Functions: To assign the initial values. To deposit an account. To withdraw an amount after checking the balance. Write a C++ main program to display account number, name and balance.

6 52102

Write an operator overloading program to Overload ‘>’ operator so as to find greater among two instances of the class.

1 5379

WAP to find the ambiguities in Multiple Inheritance? How are they resolved.(Virtual Functions)

1 5916

Write A Program to find the ambiguities in Multiple Inheritance? How are they resolved.(Virtual Functions)

Accenture,

4155

Write A Program using Single and Multiple Inheritance.

1 4801

Write an operator overloading program to write S3+=S2.

2 5130

Iam doing my project on instant messaging , if you any new ideas regarding this project ,please suggest it?

2 4650

what is code for call by value and call by reference?

1 4886

what is the difference between virtual function and destoctor?

1 4657


Post New OOPS Questions

Un-Answered Questions { OOPS }

which feature are not hold visual basic of oop?

2196


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.

2003


What is encapsulation in oops?

1020


class type to basic type conversion

2421


write a program to find 2^n+1 ?

2076


i got a backdoor offer in process global,Bangalore..Can i work with it?

2845


What is encapsulation with example?

1120


assume the program must insert 4 elements from the key board and then do the following programs.sequential search(search one of the elements),using insertion sort(sort the element) and using selection sort(sort the element).

2126


#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

2631


Can private class be inherited?

1171


What is variable example?

1046


Explain the concepts involved in Object Oriented programming.

1250


What is a class and object?

1058


What is abstraction with example?

1118


Can you inherit a private class?

1106