U.G.C. NET Exam. December 2022 Paper-II (COMPUTER SCIENCE) and Applications.

Total Questions: 100

71. Match List I with List II

Correct Answer: (b) A-III; B-I; C-IV; D-II
Solution:

72. Match List I with List II

Correct Answer: (c) A-IV; B-I; C-II; D-III
Solution:

73. Match List I with List II

Correct Answer: (b) A-III; B-II; C-I; D-IV
Solution:

74. Match List I with List II

Correct Answer: (c) A-III; B-I; C-II; D-IV
Solution:

75. Match List I with List II

Correct Answer: (b) A-II; B-II; C-I; D-II
Solution:

76. Let G be a simple undirected graph with n(n>0) vertices and 'k' connected components. What is the minimum possible number of edges of 'G'?

Correct Answer: (d) n–k
Solution:

The minimum possible number of edges in a simple undirected graph G with n vertices and 'k' connected components is n-k.
So correct Answer is option (d)

77. The sequence of events that happen during a typical fetch operation is/are :

A. Memory             B. MBR              C. MAR
D. PC                       E. IR
Choose the correct order from the options given below :

Correct Answer: (b) D, C, A, B, E
Solution:

78. Arrange the following search and sort algorithms in ascending order of their worstcase complexities.

A. Merge sort              B. Linear Search
C. Bubble Sort            D. Binary Search
Choose the correct answer from the options given below :

Correct Answer: (b) B, D, A , C
Solution:

Here are the search and sort algorithms arranged in ascending order of their worst-case complexities.
B. Linear search - worst-cost complexity : O(n)
D. Binary search - worst - case complexity : O(log n)
A. Merge sort - worst - case complexity : O (log n)
C. Bubble sort - worst - case complexity : O (n2 )
So option (b) is correct.

79. Consider the following schedule S.

Correct Answer: (c) T2-T4-T3-T1
Solution:

So option C is correct

80. A disk has 300 cylinders (0 to 299). If the initial position of the read-write head is at cylinder 101, moving towards the higher end of the disk calculate the total head movement following C_LOOK policy for the read request sequence. 123, 45, 197, 87, 250, 198, 280

Correct Answer: (a) 456
Solution: