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 is restrict keyword in c?

0 Answers  


HOW TO SOLVE A NUMERICAL OF LRU IN OS ??????

0 Answers  


What is memory leak in c?

0 Answers  


Is it possible to initialize a variable at the time it was declared?

0 Answers  


what are enumerations in C

0 Answers   TCS,






In this assignment you are asked to write a multithreaded program to find the duplicates in an array of 10 million integers. The integers are between -5000,000 to 5000,000 and are generated randomly. Use 10 threads, each thread works on 1000,000 integers. Compare the time needed to accomplish the task with single thread of execution program. Do not include the time to fill the array with integers in the execution time.

0 Answers  


wat is output of the following int main() { const int j=2; int i; switch(i) { case 1:break; case j:break; default:break; } }

2 Answers  


What are the different file extensions involved when programming in C?

0 Answers  


Explain 'bus error'?

0 Answers  


What is the right way to use errno?

0 Answers  


Write the syntax and purpose of a switch statement in C.

0 Answers   Adobe,


Where register variables are stored in c?

0 Answers  


Categories