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


What data structure is fastest, on average, for retrieving data:

a) Binary Tree

b) Hash Table

c) Stack


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C++ General Interview Questions

1)#include <iostream.h> int main() { int *a, *savea, i; savea = a = (int *) malloc(4 * sizeof(int)); for (i=0; i<4; i++) *a++ = 10 * i; for (i=0; i<4; i++) { printf("%d\n", *savea); savea += sizeof(int); } return 0; } 2)#include <iostream.h> int main() { int *a, *savea, i; savea = a = (int *) malloc(4 * sizeof(int)); for (i=0; i<4; i++) *a++ = 10 * i; for (i=0; i<4; i++) { printf("%d\n", *savea); savea ++; } return 0; } The output of this two programs will be different why?

5 Answers  


Show the application of a dynamic array with the help of an example.

0 Answers  


What is a storage class?

0 Answers  


What is the difference between function overloading and operator overloading?

0 Answers  


how to swap two strings without using any third variable ?

11 Answers  


What is input operator in c++?

0 Answers  


Explain stack unwinding.

0 Answers  


What are the different types of Storage classes?

5 Answers  


Define the process of error-handling in case of constructor failure?

0 Answers  


What is a c++ object?

0 Answers  


program in c++ to input digits and print in words

1 Answers   Microsoft,


Explain terminate() and unexpected() function?

0 Answers  


Categories