8
AMITY SCHOOL OF DISTANCE LEARNING Post Box No. 503, Sector-44 Noida – 201303 Data & file structure using ‘C’ (MCA) Assignment A Marks 10 Answer all questions. 1 .A two-dimensional array defined as a [4…7, -1 …….3] requires 2 bytes of storage space for each element. If the array is stored in row- major form, then calculate the address of element at location a[6,2]. Give the base address is 100. 2. Write a C program to implement bubble sort. 3. Write a program in C to show PUSH and POP operations in a stack. 4. Write the algorithms for the insertion and deletion operations performed on the circular queue. 5. What is double linked list? What are the advantage and disadvantage of double linked list ? Data & file structure using ‘C’ (MCA) Assignment B Marks 10 Answer all questions. 1. What is a binary search tree? Construct a binary search tree from these numbers – 50, 30, 60, 22, 38, 55, 34. 2. Explain the Dijkastra’s Algorithm. 3. What do you mean by the Hashing? Explain different method of hashing. 4. Read the case study given below and answer the question given therin.

Assignment- Data & File Structure Using C

Embed Size (px)

Citation preview

Page 1: Assignment- Data & File Structure Using C

AMITY SCHOOL OF DISTANCE LEARNINGPost Box No. 503, Sector-44

Noida – 201303 Data & file structure using ‘C’

(MCA)

Assignment A Marks 10

Answer all questions.

1 .A two-dimensional array defined as a [4…7, -1 …….3] requires 2 bytes of storage space for each element. If the array is stored in row-major form, then calculate the address of element at location a[6,2]. Give the base address is 100.

2. Write a C program to implement bubble sort.

3. Write a program in C to show PUSH and POP operations in a stack. 4. Write the algorithms for the insertion and deletion operations performed on the circular queue. 5. What is double linked list? What are the advantage and disadvantage of double linked list ?

Data & file structure using ‘C’

(MCA)

Assignment B Marks 10

Answer all questions.

1. What is a binary search tree? Construct a binary search tree from these numbers – 50, 30, 60, 22, 38, 55, 34. 2. Explain the Dijkastra’s Algorithm.

3. What do you mean by the Hashing? Explain different method of hashing.

4. Read the case study given below and answer the question given therin.

Case Study

If you are using C language to implement the heterogeneous linked list, what pointer type will you use?

Page 2: Assignment- Data & File Structure Using C

Data & file structure using ‘C’

(MCA)

Assignment C Marks 10

Answer all questions.Tick mark (√) the most appropriate answer

1. The memory address of the first element of an array is called a) Floor Addressb) Foundation Addressc) First Addressd) Base Address

2. The memory address of fifth element of an array can be calculated by the formulaa) LOC(Array[5]=Base(Array)+w(5-lower bound), where w is the number of words per memory cell

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

cell for the arrayc) LOC(Array[5])=Base(Array[4])+(5-Upper bound), where w is the number of words per memory

cell for the arrayd) None of above

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

a) linear arrays b) linked lists c) both of above d) none of above

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

a) The list must be sortedb) There should be the direct access to the middle element in any sublistc) There must be mechanism to delete and/or insert elements in listd) none of above

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

a) Must use a sorted arrayb) requirement of sorted array is expensive when a lot of insertion and deletions are neededc) There must be a mechanism to access middle element directlyd) Binary search algorithm is not efficient when the data elements are more than 1000.

6. Two dimensional arrays are also calleda) Tables arraysb) Matrix Arraysc) both of aboved) none of above

Page 3: Assignment- Data & File Structure Using C

7. A variable P is called pointer ifa) P contains the address of an element in DATA.b) P points to the address of first element in DATAc) P can store only memory addressesd) P contain the DATA and the address of DATA

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

a) Arraysb) Recordsc) Pointersd) None

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

a )Arraysb) Recordsc) Pointersd) None

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

a) Elementary itemsb) Atomsc) Scalarsd) All of above

 11. The difference between linear array and a record is

a) An array is suitable for homogeneous data but the data items in a record may have different data typeb) In a record, there may not be a natural ordering in opposed to linear array.c) A record form a hierarchical structure but a lienear array does notd) All of above

 12. Which of the following statement is false?

a) Arrays are dense lists and static data structure b) data elements in linked list need not be stored in adjecent space in memoryc) pointers store the next data element of a listd) linked lists are collection of the nodes that contain information part and next pointer

 13. Binary search algorithm can not be applied to

a) Sorted linked listb) Sorted binary treesc) Sorted linear arrayd) Pointer array

 

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

a) Underflowb) Overflowc) Housefuld) Saturated

 

Page 4: Assignment- Data & File Structure Using C

15. The situation when in a linked list START=NULL isa) Underflowb) Overflowc) Housefulld) Saturated

 16. Which of the following is two way lists?

a) grounded header listb) circular header listc) linked list with header and trailer nodesd) none of above

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

a) FIFO listsb) LIFO listc) Pilesd) Push-down lists

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

a) Arrayb) Listsc) Stacksd) All Of Above

 

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

a) Linked listsb) Stacksc) Queuesd) Deque

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

a) FAEKCDBHGb) FAEKCDHGBc) EAFKHDCBGd) FEAKDCHBG

 

21. Value of the first linked list index is________a) One b) Zeroc) –1d) None of these

22. A linked list index is ____ that represents the position of a node in a linked list. a) An Integer b) A variable c) A character

d) A Boolean

23. Why is the constructor of the Queue Linked List class empty?a) Because initialization of data members of the Linked List class is performed by

Page 5: Assignment- Data & File Structure Using C

the constructor of the Linked List class. b) Because initialization of data members of the Linked List class is performed by the destructor of the Linked List class.

c) Because initialization of data members of the Queue Linked List class is performed by the constructor of the Linked List class.

d) Because initialization of data members of the Queue Linked List class is performed by the destructor of the Linked List class

24. _______ form of access is used to add and remove nodes from a queue a)     LIFO Last In First Out b)    FIFO, First In First Out c)     Both 1 and 2

d) None of these

25. ______ form of access is used to add and remove nodes from a stack a)  LIFO b) FIFO c)    Both 1 and 2

d) None of these

26. New nodes are added to the _____ of the queue. a)  Front b) Back c) Middle d) Both 1 and 2

27. A _______ is a data structure that organizes data similar to a line in the supermarket, where the first one in line is the first one out. a) Queue linked list b) Stacks linked list c)  Both of them d) Neither of them

28. In an array queue, data is stored in an _____ element. a) Node b)    Linked list c)   Array d) Constructor

29. The pop () member function determines if the stack is empty by calling the _____ member function a) removeback() b)   isEmpty() c) removedfront() d) hasNext()

30. What happens when you push a new node onto a stack? a) The new node is placed at the front of the linked list. b)   The new node is placed at the back of the linked list. c)  The new node is placed at the middle of the linked list. d) No Changes happens

31. Which of the following algorithm solves the all – pair shortest path problem? a) Dijkstra,s algorithm b) Floyd’s algorithm c) Prim’s algorithm

Page 6: Assignment- Data & File Structure Using C

d) Warshall’s algorithm

32. The operation of processing each element in the list is known as a) Sorting b) Merging c) Inserting d) Traversal

33. To delete a dynamically allocated array named `a`, the correct statement is

a) delete a; b) delete a[0]; c) delete []a; d) delete [0]a;

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

a) Floor addressb) Foundation addressc) First addressd) Base address

35. Which of the following data structure store the homogeneous data elements?

a) Arraysb) Recordsc) Pointersd) None

36. The number of possible binary trees with 4 nodes is a) 12 b) 13 c) 14 d) 15

37. Which of the following data structure is not linear data structure? a) Arrays b) Linked lists c) Both of above d) None of above

38. Finding the location of the element with a given value is: a) Traversal b) Search c) Sort d) None of above

39. Preorder is same asa) depth-first orderb) breadth- first orderc) topological orderd) linear order

Page 7: Assignment- Data & File Structure Using C

40. Which of the following is the feature of stack?

a) All operations are at one end b) It cannot reuse its memory c) All elements are of different data types d) Any element can be accessed from it directly