Showing posts with label General Knowledge. Show all posts
Showing posts with label General Knowledge. Show all posts

General Knowledge quiz for entrance exam

Thursday 11 April 2013


General Knowledge quiz for entrance exam


1. Two main measures for the efficiency of an algorithm are

c. Time and space


2. The time factor when determining the efficiency of algorithm is measured by

b. Counting the number of key operations


3. The space factor when determining the efficiency of algorithm is measured by

a. Counting the maximum memory needed by the algorithm


4. Which of the following case does not exist in complexity theory

d. Null case


5. The Worst case occur in linear search algorithm when

d. Item is the last element in the array or is not there at all


6. The Average case occur in linear search algorithm

a. When Item is somewhere in the middle of the array


7. The complexity of the average case of an algorithm is

a. Much more complicated to analyze than that of worst case


8. The complexity of linear search algorithm is

a. O(n)


9. The complexity of Binary search algorithm is

b. O(log n)


10. The complexity of Bubble sort algorithm is

c. O(n2)


11. The complexity of merge sort algorithm is

d. O(n log n)


12. The indirect change of the values of a variable in one module by another module is called

c. side effect


13. Which of the following data structure is not linear data structure?

d. None of above


14. Which of the following data structure is linear data structure?

c. Arrays


15. The operation of processing each element in the list is known as

d. Traversal


16. Finding the location of the element with a given value is:

b. Search


17. Arrays are best data structures

a. for relatively permanent collections of data


18. Linked lists are best suited

b. for the size of the structure and the data in the structure are constantly changing


19. Each array declaration need not give, implicitly or explicitly, the information about

c. the first data from the set to be stored


20. The elements of an array are stored successively in memory cells because

a. by this way computer can keep track only the address of the first element and the addresses of other elements can be calculated
Continue Reading | comments

Computer Knowledge quiz for competitive exam

Computer Knowledge quiz for competitive exam



1. The difference between linear array and a record is

d. All of above
 


2. Which of the following statement is false?

c. pointers store the next data element of a list
 


3. Binary search algorithm can not be applied to

a. sorted linked list
 


4. When new data are to be inserted into a data structure, but there is no available space; this situation is usually called

b. overflow
 


5. The situation when in a linked list START=NULL is

a. underflow
 


6. Which of the following is two way list?

d. none of above
 


7. Which of the following name does not relate to stacks?

a. FIFO lists
 


8. The term "push" and "pop" is related to the

c. stacks
 


9. A data structure where elements can be added or removed at either end but not in the middle

d. Deque
 


10. When inorder traversing a tree resulted E A C K F H D B G; the preorder traversal would return

b. FAEKCDHGB
Continue Reading | comments

General knowledge for competitive exam


General knowledge for competitive exam


1. The memory address of the first element of an array is called

d. base address
 


2. The memory address of fifth element of an array can be calculated by the formula

a. LOC(Array[5]=Base(Array)+w(5-lower bound), where w is the number of words per memory cell for the array
 


3. Which of the following data structures are indexed structures?

a. linear arrays
 


4. Which of the following is not the required condition for binary search algorithm?

c. There must be mechanism to delete and/or insert elements in list
 


5. Which of the following is not a limitation of binary search algorithm?

d. binary search algorithm is not efficient when the data elements are more than 1000.
 


6. Two dimensional arrays are also called

c. both of above
 


7. A variable P is called pointer if

a. P contains the address of an element in DATA.
 


8. Which of the following data structure can't store the non-homogeneous data elements?

a. Arrays
 


9. Which of the following data structure store the non-homogeneous data elements?

b. Records
 


10. Each data item in a record may be a group item composed of sub-items; those items which are indecomposable are called


d. all of above
Continue Reading | comments

Site under Construction!!!

Saturday 17 November 2012


Continue Reading | comments