NTA UGC NET Aug 2024 Paper-2

Question 1
What is SQL primarily used for in the context of relational databases ?
A
To design user interfaces
B
To create and manipulate databases
C
To display data on web pages
D
To format printed reports
Question 2
Which of the following are Agile Process Models ?
(A) Extreme Programming (XP)
(B) Waterfall
(C) Scrum
(D) Spiral
(E) Incrementa
l Choose the correct answer from the options given below :
A
(A) and (C) only
B
(B) and (C) only
C
(A) and (D) Only
D
(B) and (E) only
Question 2 Explanation: 
Extreme Programming (XP) and Scrum are both Agile Process Models. XP (Extreme Programming) focuses on technical practices and customer satisfaction. Scrum is a framework that organizes the work into sprints and promotes iterative progress. The other options listed are not strictly considered Agile: Waterfall is a traditional, linear project management method. Spiral is a risk-driven process model that combines elements of both iterative development and the Waterfall model. Incremental is an approach used in Agile but is not itself a specific Agile process model. So, the correct choice is (A) and (C) only.
Question 3
_____ is a self Balancing binary seareh tree, where the path from the root to the furthest leaf is no more than twice as long as the path from the root to nearest leaf.
A
Expression tree
B
Game tree
C
Red-Black tree
D
Threaded tree
Question 3 Explanation: 
A Red-Black tree is a self-balancing binary search tree (BST) with an additional property: it ensures that the path from the root to the furthest leaf is no more than twice as long as the path from the root to the nearest leaf. This balancing property helps maintain a relatively balanced tree structure, which ensures that operations like insertion, deletion, and searching remain efficient (O(log n) time complexity).
Question 4
Match List - I with List - II.
List - 1 (computing systems)           List - II(working/output)
(A) Half Adder                                  (1)Has n input and 2-n output
(B) Decoder                                      (2)CPU Storage Unit
(C) Register                                      (3)Used to store program at runtime
(D) Main memory                            (4)2-bit addition circuit
  Choose the correct answer from the options given below :  
A
(A)-(II),(B)-(III),(C)-(IV),(D)-(I)
B
(A)-(IV),(B)-(II),(C)-(III),(D)-(I)
C
(A)-(IV),(B)-(I),(C)-(II),(D)-(III)
D
(A)-(II),(B)-(IV),(C)-(III),(D)-(I)
Question 4 Explanation: 
Half Adder (A) - (IV): A Half Adder is a 2-bit addition circuit that adds two binary digits and produces a sum and a carry output. Decoder (B) - (I): A decoder is a combinational logic circuit that has n inputs and produces 2^n output lines. It converts binary data into a specific output. Register (C) - (II): A register is a small, fast storage location in a CPU used to store intermediate data, often during calculations or temporary storage. Main memory (D) - (III): Main memory, also known as RAM, is used to store the program and data at runtime while the CPU is executing tasks.
Question 5
A CPU has a 5-stage pipeline with the following stages Fetch (F), Decode (D), Execute (E), Memory (M) and Write-back (W). Each stage takes one clock cycle to complete. Assume there are no pipeline stalls and the pipeline is initially empty. How many clock cycles are required to complete the execution of 10 instructions ?
A
10
B
14
C
15
D
19
Question 5 Explanation: 
For the first instruction, it will take 5 clock cycles to complete (one cycle per stage). For the second instruction, the first instruction has already passed the fetch stage, so the second instruction will start fetching in the second cycle, while the first instruction proceeds through the next stages. This means that from the second instruction onward, we have overlapping stages. So, the total number of clock cycles required to complete 10 instructions will be: 5 cycles for the first instruction. 1 cycle for each of the remaining 9 instructions (since they all overlap in the pipeline after the first). Thus, the total number of cycles required for 10 instructions is: 5+(10−1)=5+9=14 clock cycles
Question 6
Host A (on TCP/1Pv4 Networks) sends an IP Datagram D to host B (also on TCP/IPv4 network).
Assume that no error occurred during transmission of D, when D reaches B. Which of following header field may differ from that of original datagram D ?
(A) TTL
(B) Checksum
(C) Fragment offset
(D) Source IP
(E) Destination IP
Choose the correct answer from the options given below :
A
(A) and (B) Only
B
(A), (B) and (C) Only
C
(A), (B), (C) and (D) only
D
(A), (B), (C) and (E) only
Question 6 Explanation: 
The source IP address is set by Host A and will not change during transmission unless network address translation (NAT) or some form of IP address rewriting occurs, but this is not stated in the problem. The source IP will not differ. The destination IP address is part of the original datagram and does not change during transmission. It will stay the same throughout the journey from Host A to Host B.
Question 7
Consider the Grammar :
T -> Qx
Q -> RS
R -> y|e
S -> z|e Where e is epsilon
Here x, y, z are terminals and T, Q, R, S are non terminals.
What will be the follow set of the non terminal R ?
A
{x,y}
B
{y,z}
C
{z,x}
D
{e}
Question 7 Explanation: 
Q → RS: In this production, R is followed by S. This means Follow(R) should include First(S).
The First(S) set includes {z, ε} because S can produce either z or ε.
Since Follow(R) will include First(S) (except ε), we add z to Follow(R) from First(S).
Additionally, since S can be ε, the production Q → RS implies that Follow(R) should also include Follow(Q).
Finally, T → Qx tells us that Follow(Q) includes the terminal x. So, Follow(R) will also include x.
Follow(R) includes {z, x}.
Question 8
Match List -I with List - II.
List - I     List - II
A) Dijkstra's Algorithms   I) Find the shortest path between all pairs of vertices in a graph with positive or negative edge weights.
B)Floyd-Warshall Algorithms   II)Finds the shortest path in a weighted graph with non-negative edge weights.
C)Bellman-ford Algorithms   III)Sorts elements by repeatedly moving them post neighboring elements that are smaller.
D)Prim' s Algorithms   IV)Determines the strongest connected components in a directed graph.
Choose the correct answer from the options given below :
A
(A)-(II),(B)-(I),(C)-(III),(D)-(IV)
B
(A)-(II),(B)-(I),(C)-(IV),(D)-(III)
C
(A)-(I),(B)-(II),(C)-(III),(D)-(IV)
D
(A)-(III),(B)-(II),(C)-(IV),(D)-(I)
Question 9
Match List -I with List - II
List - I         List - II
(A) The activation function    (I)is called the delta rule.
(B) The learning method of perceptron    (II)is one of the key components of the perceptron as in the most common neural network architecture.
(C) Areas of application of artificial neural network include    (III)is always boolean like a switch.
(D) The output of the perceptron    (IV)system identification and control.
Choose the correct answer from the options given below :
A
(A)-(II),(B)-(IV),(C)-(III),(D)-(I)
B
(A)-(IV),(B)-(III),(C)-(II),(D)-(I)
C
(A)-(II),(B)-(I),(C)-(IV),(D)-(III)
D
(A)-(III),(B)-(IV),(C)-(II),(D)-(I)
Question 10
Which of the following are typical activities in the software process lifecycle ?
(A) Requirement Analysis
(B) System Design
(C) Code Refactoring
(D) Deployment
(E) Substructure
Choose the correct answer from the options given below :
A
(A), (B), (C) only
B
(B), (C), (D) only
C
(A), (B), (D) only
D
(A), (D), (E) only
Question 11
Arrange the following stages of parsing in the correct order as they typically occur in the compilation process.
(A) Lexical Analysis
(B) Semantic Analysis
(C) Syntax Analysis
(D) Intermediate Code Generation
Choose the correct answer from the options given below :
A
(A),(B),(C),(D),(E)
B
(A),(C),(B),(D),(E)
C
(A),(D),(B),(C),(E)
D
(A),(C),(D),(B),(E)
Question 12
Find the correct sequence of the storage device in ascending order based on their access time.
(A) Registers
(B) Magnetic Disk
(C) Magnetic Tapes
(D) Main memory
Choose the correct answer from the options given below :
(B),(A),(D),(C),(E) (B),(A),(E),(D),(C) (C),(B),(A),(E),(D) (C),(E),(B),(D),(A)
A
Dropped
B
Dropped
C
Dropped
D
Dropped
Question 12 Explanation: 
Dropped
Question 13
Consider a CSMA/CD network that transmits data at the rate of 100 Mbps over a 1 Kilometre cable with no repeater. If the minimum frame size required for this network is 1250 bytes, what is the signal speed (km/sec) in the cable.
A
8000
B
16000
C
12000
D
20000
Question 13 Explanation: 
To calculate the signal speed (in km/sec) in the cable, we need to use the relationship between the transmission speed, propagation delay, and frame size in a CSMA/CD network. ### Given:
- Transmission rate = 100 Mbps
- Frame size = 1250 bytes
- Distance = 1 kilometer
### Step 1: Convert the frame size to bits
1 byte = 8 bits, so: Frame size = 1250 bytes = 1250 × 8 = 10000 bits ### Step 2: Calculate the transmission time for the frame
Transmission time = Frame size in bits / Transmission rate Transmission time = 10000 bits / (100 × 10^6 bits/sec) = 0.0001 sec = 100 microseconds ### Step 3: Use the propagation delay formula
In a CSMA/CD network, the minimum frame size must be large enough to ensure the sender can detect a collision. The round-trip propagation delay should be at least the time to send the frame. The round-trip propagation delay time is given by: Propagation delay = Transmission time = 100 microseconds One-way propagation delay = 100 microseconds / 2 = 50 microseconds ### Step 4: Calculate the signal speed Propagation delay = Distance / Signal speed Rearranging for signal speed: Signal speed = Distance / Propagation delay Signal speed = 1 km / (50 × 10^(-6) sec) = 20000 km/sec ### Final Answer:
The signal speed in the cable is 20000 km/sec.
Question 14
Consider the following statements regarding combinational and sequential circuits.
(A) Output of combinational circuits depends on the only current input.
(B) Output of a combinational circuit depends on both current input and previous output.
(C) Output of sequential circuit depends on the current input.
(D) Output Of sequential circuit depends on both current input and previous output.
Choose the correct answer from the options given :
A
(A) and (C) only
B
(A) and (D) Only
C
(B) and (D) only
D
(B) and (C) Only
Question 14 Explanation: 
correct option is (A) and (D) only.
Question 15
Arrange the following stages of a Turing Machine (TM) operation in the correct order as they occur during computation.
(A) Writing a symbol on the tape
(B) Moving the tape head left to right
(C) Reading a symbol from the tape
(D) Transitioning to a new state based on the current state and symbol read
(E) Halting and accepting or rejecting the input
Choose the correct answer from the options given below :
A
(C),(A),(B),(D),(E)
B
(C),(B),(A),(D),(E)
C
(C),(D),(A),(B),(E)
D
(C),(D),(B),(A),(E)
Question 15 Explanation: 
The correct sequence is: (C), (D), (A), (B), (E).
Question 16
Which of the following statements about pointers in C are TRUE.
(A) Pointers can be used to access array elements
(B) Pointers can store the address of another pointer
(C) Pointers are automatically deferenced in expression
(D) Pointers cannot be used to access structure members
Choose the correct answer from the options given below :
A
(A) and (C) only
B
(A) and (B) Only
C
(B) and (C) Only
D
(C) and (D) Only
Question 16 Explanation: 
The correct answer is (A) and (B) only.
Question 17
(A)In IPv4 addressing, a block of address can be define as x.y.z,t/n in which x.y.z.t define one of the address and /n define the mask
(B)The first address in the block can be found by setting the rightmost 32-n bits to 0's
(C)Address of class C is used for multicast communication
(D)There are five classes in IPv4 address
(E)Supernetting combines networks into one large network
Choose the correct answer from the options given below :
A
(A), (B) and (C) only
B
(A), (B) , (D) and (E) only
C
(A), (C) ,(D) and (E) only
D
(C), (D) and (E) only
Question 17 Explanation: 
(A)True. This is the correct representation of an IPv4 address with a subnet mask. The /n represents the network prefix length (subnet mask).
(B)True. The first address (network address) in a subnet can be obtained by setting the host bits (the rightmost 32-n bits) to 0.
(C) False. Class C addresses (typically in the range 192.0.0.0 to 223.255.255.255) are used for unicast communication, not multicast. Multicast addresses are in the range of 224.0.0.0 to 233.255.255.255.
(D) True. IPv4 addresses are divided into five classes: A, B, C, D (for multicast), and E (reserved for experimental use).
(E) True. Supernetting involves combining multiple smaller networks (subnets) into a larger network by adjusting the subnet mask to cover a larger range of IP addresses.
Question 18
Consider the following if p and q are two statements.
q68
Choose the correct answer from the options given below
A
(A),(B) and (D) only
B
(A),(C) and (D) only
C
(C),(D) and (E) only
D
(A),(B) and (C) only
Question 19
Consider the transactions Tl, T2, T3 and the schedules Sl and S2 given below.
T1: r1(x); r1(z); w1(z)
T2 : r2(y); r2(z); w2(z)
T3 : r3(y); r3(x); w3(y)
S1: r1(x); r3(y); r3(x); r2(y); r2(z); w3(y); w3(z);r1(z); w1(x); w1(z)
S2 : r1(x); r3(y); r2(y); r3(x); r1(z); r2(z), w3(y);w1 (x); w2(z); w1(z)
Which one Of the following statements about the schedules is TRUE ?
A
Only S1 is conflict-serializable
B
Only S2 is conflict-serializable
C
Both S1 and S2 are conflict-serializable
D
Neither S1 nor S2 is conflict-serializable
Question 19 Explanation: 
To determine which of the schedules, S1 or S2, are conflict-serializable, we need to analyze the dependencies and conflicts between the transactions in each schedule.
A schedule is conflict-serializable if we can reorder the operations such that the resulting schedule is serial (i.e., no interleaving of transactions, just one transaction after another), and no conflict is violated.
r1(x) and r3(x) are conflicting (both read and write on x).
r1(z) and r2(z) are conflicting (both read and write on z).
w1(x) and w3(x) are conflicting (both write on x).
w1(z) and w2(z) are conflicting (both write on z).
So, S1 is conflict-serializable.
Question 20
Which of the following are context free language?
q70
Choose the correct answer from the options given below
A
(A),(B) only
B
(B),(C) only
C
(C),(D) only
D
(D),(E) only
Question 21
In a token ring network the transmission speed is 10^7 bps and the propagation speed is 200 m/us.
The 1-bit delay in this network is equivalent to
A
20m
B
30m
C
50m
D
40m
Question 21 Explanation: 
q71_ans
Question 22
A multi processor system with 16 processors is used to execute a parallelizable task. If the serial portion of the task takes 200 clock cycles and the parallel portion take 800 clock cycles. When all 16 processor are used how many total clock cycles are required to complete the task ?
A
250
B
300
C
400
D
450
Question 22 Explanation: 
The serial portion takes 200 clock cycles.
The parallel portion takes 800 clock cycles.
The number of processors=16
Total time=Serial portion+Parallel portion=200+800=1000 clock cycles.
Parallel time with 16 processors= 800/16=50 clock cycles
Total time with 16 processors=Serial time+Parallel time with 16 processors
Total time with 16 processors=200+50=250 clock cycles
Question 23
Consider the function in C code :
Cal(a, b) {
if(b!=1){
if(a!=1){
printf("*");
Cal(a/2,b);
}
else{
b=b-1;
Cal(10,b);
}
}}
How many times * is going to be printed, if the function is called with Cal(10, 10); ?
A
25
B
23
C
24
D
27
Question 24
Which of the following properties correctly describe a Regular Grammar ?
(A) All production rules are of the form A->xB or A->x where A and B are non terminal symbols and x is a terminal symbol.
(B) Regular grammars are more powerful than context-free grammars and can express any type of language.
(C) There is a direct correspondence between regular grammar and finite automata.
(D) Regular grammars can generate languages that are not recognized by any type of automata.
Choose the correct answer from the options given below :
A
(A) and (B) Only
B
(B) and (C) only
C
(C) and (D) only
D
(A) and (C) only
Question 24 Explanation: 
This is a correct description of a right-regular grammar (a specific type of regular grammar). In right-regular grammars, production rules must be of the form A→xB (where a terminal symbol is followed by a non-terminal) or A→x (where a terminal symbol is followed by nothing, i.e., it produces a terminal symbol).
Every regular grammar can be converted to a finite automaton (both deterministic and non-deterministic), and vice versa. Regular grammars describe regular languages, which are exactly the class of languages that can be recognized by finite automata.
Question 25
Arrange the following phases of the Agile process in the correct sequence :
(A) Design
(B) Release
(C) Testing
(D) Development
(E) Planning
Choose the correct answer from the options given below :
A
(A),(B),(D),(E),(C)
B
(A),(D),(E),(B),(C)
C
(E),(A),(D),(C),(B)
D
(E),(D),(A),(C),(B)
There are 25 questions to complete.

Access quiz wise question and answers by becoming as a solutions adda PRO SUBSCRIBER with Ad-Free content

Register Now

If you have registered and made your payment please contact solutionsadda.in@gmail.com to get access