U.G.C. NET Exam. June 2023 Paper-II (COMPUTER SCIENCE)Total Questions: 8041. Which of the following is not a mutation operator in a genetic algorithm?(A) Random resetting (B) Scramble (C) Inversion (D) Difference Choose the correct answer from the option given below :(a) A and B only(b) B and D only(c) C and D only(d) D onlyCorrect Answer: (d) D onlySolution:Genetic Algorithms (GA) are adaptive heuristic search algorithms that belong to the larger part of evolutionary algorithms. In each generation chromosomes undergo mutation and crossover and then selection to produce a better population whose candidates are nearer to our desired solution. Mutation operator is a unary operator and it needs only one parent to work on. It does so by selecting a few genes from our selected chromosome and apply the desired algorithm. There are 5 type of mutation operator in a genetic algorithm- (i) Bit flip mutation (ii) Random Resetting Mutation (iii) Swap Mutation (iv) Scramble Mutation (v) Inversion mutation42. Consider the following table of arrival time and burst time for three processes P0, P1 P2:(a) 3 ms(b) 3.67 ms(c) 4.47 ms(d) 4 msCorrect Answer: (b) 3.67 msSolution:43. Which is not the component of the natural language understanding process?(a) Morphological analysis(b) Semantic analysis(c) Pragmatic analysis(d) Meaning analysisCorrect Answer: (d) Meaning analysisSolution:Natural language understanding (NLU) is a branch of Artificial Intelligence (AI) that uses computer software to understand input in the form of sentences using text or speech. NLU enables human-computer interaction by analyzing language versus just words. There are five components of the natural language understanding process. (i) Morphological and lexical Analysis (ii) Syntactic Analysis (iii) Semantic Analysis (iv) Discourse Integration (v) Pragmatic Analysis44. Consider a hash table of size seven with starting index zero and a hash function (6x + 3) mod 4. Assuming the hash table is initially empty. Which of the following is the content of the table when the sequence 1, 3 8, 10,5, is inserted into the table using closed hashing? Here"_____" denotes an empty location in the table.(a) 1,3,8,10,5,__,__(b) 3,8,1,__,10,__,5(c) __,3,8,1,__,10,5(d) __,1,3,8,10,5,__Correct Answer: (d) __,1,3,8,10,5,__Solution:45. A three dimensional array C++ is declared as int A [a] [b] [c]. Consider that array elements are stored in row major order and indexing begin from 0. Here the address of an item at the location A [r] [s] [t] computed in terms of word length w of an integer is(a) & A[0] [0] [0] + w (b*c*s+c*r+t)(b) & A[0] [0] [0] + w (b*c*r+c*s+t)(c) & A[0] [0] [0] + w (a*b*r*+c*s+t)(d) & A[0] [0] [0] + w (a*b*s+c*r+t)Correct Answer: (b) & A[0] [0] [0] + w (b*c*r+c*s+t)Solution:46. Match List I with List II(a) A-IV B-III C-I D-II(b) A-III B-IV C-II D-I(c) A-I B-I C-II D-IV(d) A-I B-III C-IV D-ICorrect Answer: (b) A-III B-IV C-II D-ISolution:47. Match List I with List II(a) A-IV B-I C-III D-II(b) A-III B-IV C-II D-I(c) A-IV B-III C-II D-I(d) A-I B-II C-III D-IVCorrect Answer: (c) A-IV B-III C-II D-ISolution:48. Consider following statements:(a) A, B and C only(b) A, B only(c) C, D only(d) B, C only(e) *Correct Answer: (e) *Solution:Among the four given sentences. Only sentence D is correct which is not given in the option. So, this question has beend dropped by UGC.49. Consider a popular sports news site. At a given moment, 20,000 concurrent users submit a request (a transaction, T) one every 2 minutes on average. Each transaction requires the webapp to download a new article that on average has 3k bytes in length. What is the throughput?(a) 8 megabits per second(b) 4 megabits per second(c) 6 megabits per second(d) 2 megabits per secondCorrect Answer: (b) 4 megabits per secondSolution:50. How many integral solutions are there to x + y + z + w = 29, where x ≥ 1,y ≥ 2, z ≥ 3 and w ≥ 0?(a) 2400(b) 2600(c) 2800(d) 3000Correct Answer: (b) 2600Solution:Submit Quiz« Previous12345678Next »