Efficient data structure for store/search list of 1000 records
a)array b)double linked list c)circular queue d)hash table

Answers were Sorted based on User's Feedback



Efficient data structure for store/search list of 1000 records a)array b)double linked list c)circu..

Answer / aeini

a array

Is This Answer Correct ?    18 Yes 7 No

Efficient data structure for store/search list of 1000 records a)array b)double linked list c)circu..

Answer / kala sri

hash table

Is This Answer Correct ?    3 Yes 0 No

Efficient data structure for store/search list of 1000 records a)array b)double linked list c)circu..

Answer / prasad

array

Is This Answer Correct ?    4 Yes 2 No

Post New Answer

More C Interview Questions

what are bps & baud rates? differentiate these two?

2 Answers   TCS,


how can we print  hellow world programme without using semicolon

3 Answers  


How do you define structure?

0 Answers  


write a c program to change only the 3rd bit of the particular number such that other bits are not affected.. if bitnum=10(say.. it can be any no..

10 Answers   Bosch, Mind Tree,


"I LOVE MY COUNTRY" write a c program to get "COUNTRY MY LOVE I" as the output. Use any other programming language. It is not mandatory to use C.

11 Answers   ABC Infotech, ADP, College School Exams Tests, Kovair,






How can I display a percentage-done indication that updates itself in place, or show one of those twirling baton progress indicators?

0 Answers  


What is the best way to store flag values in a program?

0 Answers  


main() { char *p1="Name"; char *p2; p2=(char *)malloc(20); while(*p2++=*p1++); printf("%s\n",p2); }

4 Answers   CitiGroup,


what is the use of call back function in c?tell me with example

2 Answers   Bosch,


What is indirect recursion? give an example?

4 Answers  


How can I sort more data than will fit in memory?

0 Answers  


the factorial of non-negative integer n is written n! and is defined as follows: n!=n*(n-1)*(n-2)........1(for values of n greater than or equal to 1 and n!=1(for n=0) Perform the following 1.write a c program that reads a non-negative integer and computes and prints its factorial. 2. write a C program that estimates the value of the mathematical constant e by using the formula: e=1+1/!+1/2!+1/3!+.... 3. write a c program the computes the value ex by using the formula ex=1+x/1!+xsquare/2!+xcube/3!+....

2 Answers   Ignou,


Categories