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



C++ Interview Questions
Questions Answers Views Company eMail

Define macro.

1090

What things would you remember while making an interface?

1006

Write a program using shift_half( ) function to shift the elements of first half array to second half and vice versa.

1325

Explain the difference between c++ and java.

1114

Explain friend class?

1131

Explain stack unwinding.

1077

What is stack unwinding?

1145

How to implement is-a and has-a class relationships?

1033

Explain the auto storage classes in c++.

1103

What are stacks?

1066

What are the implicit member functions of class?

1090

You run a shell on unix system. How would you tell which shell are you running?

1173

Does improper inheritance have a potential to wreck a project?

1155

Explain the differences between list x; & list x();.

1016

Name the implicit member functions of a class.

1085


Un-Answered Questions { C++ }

What are the two types of polymorphism?

1143


Can we provide one default constructor for our class?

689


Can you please explain the difference between using macro and inline functions?

1043


What is c++ namespace?

1213


What are manipulators used for?

1101


Is c++ faster than c?

1026


Who made c++?

1088


Does dev c++ support c++ 11?

1018


What is vector pair in c++?

1229


how can i access a direct (absolute, not the offset) memory address? here is what i tried: wrote a program that ask's for an address from the user, creates a FAR pointer to that adress and shows it. then the user can increment/decrement the value in that address by pressing p(inc+) and m(dec-). NOW, i compiled that program and opened it twice (in 2 different windows) and gave twice the same address to it. now look what happen - if i change the value in one "window" of the program, it DOES NOT change in the other! even if they point to the same address in the memory! here is the code snippet: //------------------------------------------------------ #include //INCLUDE EVERY KNOWN HEADER FILE #include //FOR ANY CASE... #include #include #include main() { int far *ptr; //FAR POINTER!!! long address; char key=0; //A KEY FROM THE KEYBOARD int temp=0; clrscr(); cout<<"Enter Address:"; cin>>hex>>address; //GETS THE ADDRESS clrscr(); (long)ptr=address; temp=*ptr; //PUTS THE ADDRESS IN THE PTR cout<<"["<

2423


Why was c++ created?

1029


What sorting algorithm does c++ use?

1150


Why is c++ not purely object oriented?

1013


What is polymorphism and its type in c++?

1079


What is prototype in c++ with example?

1152