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

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?

1866

There are 2 empty jars of 5 and 3 liters capacity. And a river is flowing besides. I want to measure 4 liters of wanter using these 2 jars. How do you do this?

4 10720

what is ltti

Unisys,

1 6063

In OverLoading concept,Why they are not consider return value and why they are consider only parameters in method? For ex: public int Add(int a,int b){...} public String Add(int a,int b){...}

1 3238

Name a typical usage of polymorphism

3 5743

what is the difference between containership and inheritence?

1 18352

what is virtual function?

3 5413

what i oops concept, how many languages supports oops concept?

Value Labs,

3 7027

Is following functions are said to be overloaded? int add(int a,int b) char *add(int a,int b)

4 5812

Templates mean

2028

what about you? wahat is your object? introduce your self?

Ajmal Perfumes, TCS,

1 3804

write a program that takes input in digits and display the result in words from 1 to 1000

Wipro,

2373

Finding of the 4 larger (bigger) numbers from the list like{1245,4587,2145,1163,29987,65783.....}

Wipro,

1 3968

Please send ford technologies placement paper 2 my mail id

2058

how to swap the variables without using temp and operators

1 3273


Post New OOPS Questions

Un-Answered Questions { OOPS }

Can you inherit a private class?

1061


Why do we use class?

1028


What is constructor overloading in oop?

1080


What is multilevel inheritance in oop?

972


Why do we use oops?

962


What is the full form of oops?

1124


How oops is better than procedural?

1031


What is the main feature of oop?

1101


Question: Implement a base class Appointment and derived classes Onetime, Daily, Weekly, and Monthly. An appointment has a description (for example, “see the dentist”) and a date and time. Write a virtual function occurs_on(int year, int month, int day) that checks whether the appointment occurs on that date. For example, for a monthly appointment, you must check whether the day of the month matches. Then fill a vector of Appointment* with a mixture of appointments. Have the user enter a date and print out all appointments that happen on that date.

1244


What is a function in oop?

1023


What does sksksk mean in text slang?

2056


What polymorphism means?

1003


Why is static class not inherited?

1048


#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

2565


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).

2075