Question : 1
If ‘→’ denotes increasing order of intensity, then the meaning of the words [walk → jog → sprint] is analogous to [bothered → ________ → daunted].
Which one of the given options is appropriate to fill the blank?
phased
phrased
fazed
fused
Correct Answer : C
Question Type : MCQ
Max Marks : 1
Negative Marks : 0.33
Question : 2
Two wizards try to create a spell using all the four elements, water, air, fire, and earth. For this, they decide to mix all these elements in all possible orders. They also decide to work independently. After trying all possible combination of elements, they conclude that the spell does not work.
How many attempts does each wizard make before coming to this conclusion, independently?
24
48
16
12
Correct Answer : A
Question Type : MCQ
Max Marks : 1
Negative Marks : 0.33
Question : 3
In an engineering college of 10,000 students, 1,500 like neither their core branches nor other branches. The number of students who like their core branches is 1/4th of the number of students who like other branches. The number of students who like both their core and other branches is 500. The number of students who like their core branches is
1,800
3,500
1,600
1,500
Correct Answer : A
Question Type : MCQ
Max Marks : 1
Negative Marks : 0.33
Question : 4
For positive non-zero real variables π₯ and π¦, if
\(\ln\left(\frac{x + y}{2}\right) = \frac{1}{2}[\ln(x) + \ln(y)] \)
then, the value of \(\frac{x}{y} + \frac{y}{x} \) is
1
1/2
2
4
Correct Answer : C
Question Type : MCQ
Max Marks : 1
Negative Marks : 0.33
Question : 5
In the sequence 6, 9, 14, x, 30, 41, a possible value of π₯ is
25
21
18
20
Correct Answer : B
Question Type : MCQ
Max Marks : 1
Negative Marks : 0.33
Question : 6
Sequence the following sentences in a coherent passage.
P: This fortuitous geological event generated a colossal amount of energy and heat that resulted in the rocks rising to an average height of 4 km across the contact zone.
Q: Thus, the geophysicists tend to think of the Himalayas as an active geological event rather than as a static geological feature.
R: The natural process of the cooling of this massive edifice absorbed large quantities of atmospheric carbon dioxide, altering the earth’s atmosphere and making it better suited for life.
S: Many millennia ago, a breakaway chunk of bedrock from the Antarctic Plate collided with the massive Eurasian Plate.
QPSR
QSPR
SPRQ
SRPQ
Correct Answer : C
Question Type : MCQ
Max Marks : 2
Negative Marks : 0.67
Question : 7
A person sold two different items at the same price. He made 10% profit in one item, and 10% loss in the other item. In selling these two items, the person made a total of
1% profit
2% profit
1% loss
2% loss
Correct Answer : C
Question Type : MCQ
Max Marks : 2
Negative Marks : 0.67
Question : 8
The pie charts depict the shares of various power generation technologies in the total electricity generation of a country for the years 2007 and 2023.
The renewable sources of electricity generation consist of Hydro, Solar and Wind. Assuming that the total electricity generated remains the same from 2007 to 2023, what is the percentage increase in the share of the renewable sources of electricity generation over this period?
25%
50%
77.5%
62.5%
Correct Answer : D
Question Type : MCQ
Max Marks : 2
Negative Marks : 0.67
Question : 9
A cube is to be cut into 8 pieces of equal size and shape. Here, each cut should be straight and it should not stop till it reaches the other end of the cube.
The minimum number of such cuts required is
3
4
7
8
Correct Answer : A
Question Type : MCQ
Max Marks : 2
Negative Marks : 0.67
Question : 10
In the 4 × 4 array shown below, each cell of the first three rows has either a cross (X) or a number.
The number in a cell represents the count of the immediate neighboring cells (left, right, top, bottom, diagonals) NOT having a cross (X). Given that the last row has no crosses (X), the sum of the four numbers to be filled in the last row is
11
10
12
9
Correct Answer : A
Question Type : MCQ
Max Marks : 2
Negative Marks : 0.67
Question : 11
Consider a computer with a 4 MHz processor. Its DMA controller can transfer 8 bytes in 1 cycle from a device to main memory through cycle stealing at regular intervals. Which one of the following is the data transfer rate (in bits per second) of the DMA controller if 1% of the processor cycles are used for DMA?
2,56,000
3,200
25,60,000
32,000
Correct Answer : C
Question Type : MCQ
Max Marks : 1
Negative Marks : 0.33
Question : 12
Let π and π be the following propositions:
π: Fail grade can be given.
π: Student scores more than 50% marks.
Consider the statement: “Fail grade cannot be given when student scores more than 50% marks.”
Which one of the following is the CORRECT representation of the above statement in propositional logic?
π → ¬ π
π → π
π → π
¬ π → π
Correct Answer : A
Question Type : MCQ
Max Marks : 1
Negative Marks : 0.33
Question : 13
Consider the following C program. Assume parameters to a function are evaluated from right to left.
#include <stdio.h>
int g(int p) { printf("%d", p); return p; }
int h(int q) { printf("%d", q); return q; }
void f(int x, int y) {
g(x);
h(y);
}
int main() {
f(g(10),h(20));
}
Which one of the following options is the CORRECT output of the above C program?
20101020
10202010
20102010
10201020
Correct Answer : A
Question Type : MCQ
Max Marks : 1
Negative Marks : 0.33
Question : 14
The format of a single-precision floating-point number as per the IEEE 754 standard is:
\(\begin{array}{|c|c|c|} \hline \small \text{Sign} & \small \text{Exponent} & \small \text{Mantissa} \\ \small \text{(1 bit)} & \small \text{(8 bits)} & \small \text{(23 bits)} \\ \hline \end{array} \)
Choose the largest floating-point number among the following options.
Sign | Exponent | Mantissa |
0 | 0111 1111 | 1111 1111 1111 1111 1111 111 |
Sign | Exponent | Mantissa |
0 | 1111 1110 | 1111 1111 1111 1111 1111 111 |
Sign | Exponent | Mantissa |
0 | 1111 1111 | 1111 1111 1111 1111 1111 111 |
Sign | Exponent | Mantissa |
0 | 0111 1111 | 0000 0000 0000 0000 0000 000 |
Correct Answer : B
Question Type : MCQ
Max Marks : 1
Negative Marks : 0.33
Question : 15
Let π(π) be the recurrence relation defined as follows:
π(0) = 1,
π(1) = 2, and
π(π) = 5π(π − 1) − 6π(π − 2) for π ≥ 2
Which one of the following statements is TRUE?
π(π) = Θ(2π )
π(π) = Θ(π2π )
π(π) = Θ(3π )
π(π) = Θ(π3π )
Correct Answer : A
Question Type : MCQ
Max Marks : 1
Negative Marks : 0.33
Question : 16
Let π(π₯) be a continuous function from β to β such that
π(π₯) = 1 − π(2 − π₯)
Which one of the following options is the CORRECT value of \(β«_0^2 π(π₯)ππ₯\)?
0
1
2
−1
Correct Answer : B
Question Type : MCQ
Max Marks : 1
Negative Marks : 0.33
Question : 17
Let π΄ be the adjacency matrix of a simple undirected graph πΊ. Suppose π΄ is its own inverse. Which one of the following statements is always TRUE?
πΊ is a cycle
πΊ is a perfect matching
πΊ is a complete graph
There is no such graph πΊ
Correct Answer : B
Question Type : MCQ
Max Marks : 1
Negative Marks : 0.33
Question : 18
When six unbiased dice are rolled simultaneously, the probability of getting all distinct numbers (i.e., 1, 2, 3, 4, 5, and 6) is
\(\frac{1}{324} \)
\(\frac{5}{324} \)
\(\frac{7}{324} \)
\(\frac{11}{324} \)
Correct Answer : B
Question Type : MCQ
Max Marks : 1
Negative Marks : 0.33
Question : 19
Once the DBMS informs the user that a transaction has been successfully completed, its effect should persist even if the system crashes before all its changes are reflected on disk. This property is called
durability
atomicity
consistency
isolation
Correct Answer : A
Question Type : MCQ
Max Marks : 1
Negative Marks : 0.33
Question : 20
In the context of owner and weak entity sets in the ER (Entity-Relationship) data model, which one of the following statements is TRUE?
The weak entity set MUST have total participation in the identifying relationship
The owner entity set MUST have total participation in the identifying relationship
Both weak and owner entity sets MUST have total participation in the identifying relationship
Neither weak entity set nor owner entity set MUST have total participation in the identifying relationship
Correct Answer : A
Question Type : MCQ
Max Marks : 1
Negative Marks : 0.33
Question : 21
Consider the following two sets:
Set X P. Lexical Analyzer Q. Syntax Analyzer R. Intermediate Code Generator S. Code Optimizer |
Set Y 1. Abstract Syntax Tree 2. Token 3. Parse Tree 4. Constant Folding |
Which one of the following options is the CORRECT match from Set X to Set Y ?
P – 4; Q – 1; R – 3; S – 2
P – 2; Q – 3; R – 1; S – 4
P – 2; Q – 1; R – 3; S – 4
P – 4; Q – 3; R – 2; S – 1
Correct Answer : B
Question Type : MCQ
Max Marks : 1
Negative Marks : 0.33
Question : 22
Which one of the following regular expressions is equivalent to the language accepted by the DFA given below?
0∗1(0 + 10∗1)∗
0∗ (10∗11)∗0∗
0∗1(010∗1)∗0∗
0(1 + 0∗10∗1)∗0∗
Correct Answer : A
Question Type : MCQ
Max Marks : 1
Negative Marks : 0.33
Question : 23
Node X has a TCP connection open to node Y. The packets from X to Y go through an intermediate IP router R. Ethernet switch S is the first switch on the network path between X and R. Consider a packet sent from X to Y over this connection.
Which of the following statements is/are TRUE about the destination IP and MAC addresses on this packet at the time it leaves X?
The destination IP address is the IP address of R
The destination IP address is the IP address of Y
The destination MAC address is the MAC address of S
The destination MAC address is the MAC address of Y
Correct Answer : B
Question Type : MSQ
Max Marks : 1
Negative Marks : 0
Question : 24
Which of the following tasks is/are the responsibility/responsibilities of the memory management unit (MMU) in a system with paging-based memory management?
Allocate a new page table for a newly created process
Translate a virtual address to a physical address using the page table
Raise a trap when a virtual address is not found in the page table
Raise a trap when a process tries to write to a page marked with read-only permission in the page table
Correct Answer : BCD
Question Type : MSQ
Max Marks : 1
Negative Marks : 0
Question : 25
Consider a process P running on a CPU. Which one or more of the following events will always trigger a context switch by the OS that results in process P moving to a non-running state (e.g., ready, blocked)?
P makes a blocking system call to read a block of data from the disk
P tries to access a page that is in the swap space, triggering a page fault
An interrupt is raised by the disk to deliver data requested by some other process
A timer interrupt is raised by the hardware
Correct Answer : AB
Question Type : MSQ
Max Marks : 1
Negative Marks : 0
Question : 26
Which of the following file organizations is/are I/O efficient for the scan operation in DBMS?
Sorted
Heap
Unclustered tree index
Unclustered hash index
Correct Answer : AB
Question Type : MSQ
Max Marks : 1
Negative Marks : 0
Question : 27
Which of the following statements about the Two Phase Locking (2PL) protocol is/are TRUE?
2PL permits only serializable schedules
With 2PL, a transaction always locks the data item being read or written just before every operation and always releases the lock just after the operation
With 2PL, once a lock is released on any data item inside a transaction, no more locks on any data item can be obtained inside that transaction
A deadlock is possible with 2PL
Correct Answer : ACD
Question Type : MSQ
Max Marks : 1
Negative Marks : 0
Question : 28
Which of the following statements about IPv4 fragmentation is/are TRUE?
The fragmentation of an IP datagram is performed only at the source of the datagram
The fragmentation of an IP datagram is performed at any IP router which finds that the size of the datagram to be transmitted exceeds the MTU
The reassembly of fragments is performed only at the destination of the datagram
The reassembly of fragments is performed at all intermediate routers along the path from the source to the destination
Correct Answer : BC
Question Type : MSQ
Max Marks : 1
Negative Marks : 0
Question : 29
Which of the following statements is/are FALSE?
An attribute grammar is a syntax-directed definition (SDD) in which the functions in the semantic rules have no side effects
The attributes in a L-attributed definition cannot always be evaluated in a depthfirst order
Synthesized attributes can be evaluated by a bottom-up parser as the input is parsed
All L-attributed definitions based on LR(1) grammar can be evaluated using a bottom-up parsing strategy
Correct Answer : BD
Question Type : MSQ
Max Marks : 1
Negative Marks : 0
Question : 30
For a Boolean variable π₯, which of the following statements is/are FALSE?
\(π₯. 1 = π₯\)
\(π₯ + 1 = π₯\)
\(π₯. π₯ = 0\)
\(π₯ + \overline {π₯}Β = 1\)
Correct Answer : BC
Question Type : MSQ
Max Marks : 1
Negative Marks : 0
Question : 31
An instruction format has the following structure:
Instruction Number: Opcode destination reg, source reg-1, source reg-2
Consider the following sequence of instructions to be executed in a pipelined processor:
I1: DIV R3, R1, R2
I2: SUB R5, R3, R4
I3: ADD R3, R5, R6
I4: MUL R7, R3, R8
Which of the following statements is/are TRUE?
There is a RAW dependency on R3 between I1 and I2
There is a WAR dependency on R3 between I1 and I3
There is a RAW dependency on R3 between I2 and I3
There is a WAW dependency on R3 between I3 and I4
Correct Answer : A
Question Type : MSQ
Max Marks : 1
Negative Marks : 0
Question : 32
Which of the following fields of an IP header is/are always modified by any router before it forwards the IP packet?
Source IP Address
Protocol
Time to Live (TTL)
Header Checksum
Correct Answer : CD
Question Type : MSQ
Max Marks : 1
Negative Marks : 0
Question : 33
Consider the following C function definition.
int fX(char *a){
char *b = a;
while(*b)
b++;
return b - a;
}
Which of the following statements is/are TRUE?
The function call fX(”abcd”) will always return a value
Assuming a character array c is declared as char c[] = ”abcd” in main(), the function call fX(c) will always return a value
The code of the function will not compile
Assuming a character pointer c is declared as char *c = ”abcd” in main(), the function call fX(c) will always return a value
Correct Answer : ABD
Question Type : MSQ
Max Marks : 1
Negative Marks : 0
Question : 34
Let π be the partial order defined on the set {1,2,3,4} as follows
π = {(π₯, π₯) | π₯ ∈ {1,2,3,4}} ∪ {(1,2), (3,2), (3,4)}
The number of total orders on {1,2,3,4} that contain π is __________
Correct Answer : 5
Question Type : NAT
Max Marks : 1
Negative Marks : 0
Question : 35
Let π΄ be an array containing integer values. The distance of π΄ is defined as the minimum number of elements in π΄ that must be replaced with another integer so that the resulting array is sorted in non-decreasing order. The distance of the array [2, 5, 3, 1, 4, 2, 6] is ___________
Correct Answer : 3
Question Type : NAT
Max Marks : 1
Negative Marks : 0
Question : 36
What is the output of the following C program?
#include
int main() {
double a[2]={20.0, 25.0}, *p, *q;
p = a; q = p + 1;
printf(”%d,%d”, (int)(q – p), (int)(*q – *p));
return 0;
}
4,8
1,5
8,5
1,8
Correct Answer : B
Question Type : MCQ
Max Marks : 2
Negative Marks : 0.67
Question : 37
Consider a single processor system with four processes A, B, C, and D, represented as given below, where for each process the first value is its arrival time, and the second value is its CPU burst time.
A (0, 10), B (2, 6), C (4, 3), and D (6, 7).
Which one of the following options gives the average waiting times when preemptive Shortest Remaining Time First (SRTF) and Non-Preemptive Shortest Job First (NP-SJF) CPU scheduling algorithms are applied to the processes?
SRTF = 6, NP-SJF = 7
SRTF = 6, NP-SJF = 7.5
SRTF = 7, NP-SJF = 7.5
SRTF = 7, NP-SJF = 8.5
Correct Answer : B
Question Type : MCQ
Max Marks : 2
Negative Marks : 0.67
Question : 38
Which one of the following CIDR prefixes exactly represents the range of IP addresses 10.12.2.0 to 10.12.3.255?
10.12.2.0/23
10.12.2.0/24
10.12.0.0/22
10.12.2.0/22
Correct Answer : A
Question Type : MCQ
Max Marks : 2
Negative Marks : 0.67
Question : 39
You are given a set π of distinct integers. A binary search tree π is created by inserting all elements of π one by one, starting with an empty tree. The tree π follows the convention that, at each node, all values stored in the left subtree of the node are smaller than the value stored at the node. You are not aware of the sequence in which these values were inserted into π, and you do not have access to π.
Which one of the following statements is TRUE?
Inorder traversal of π can be determined from π
Root node of π can be determined from π
Preorder traversal of π can be determined from π
Postorder traversal of π can be determined from π
Correct Answer : A
Question Type : MCQ
Max Marks : 2
Negative Marks : 0.67
Question : 40
Consider the following context-free grammar where the start symbol is π and the set of terminals is {π,π,π,π}.
π → π΄ππ΄π | π΅ππ΅π
π΄ → ππ | π
π΅ → ππ | π
The following is a partially-filled LL(1) parsing table
a | b | c | d | $ | |
S | π → π΄ππ΄b | π → π΅ππ΅π | (1) | (2) | |
A | π΄ → π | (3) | π΄ →ππ | ||
B | (4) | π΅ → π | π΅ → ππ |
Which one of the following options represents the CORRECT combination for the numbered cells in the parsing table?
Note: In the options, “blank” denotes that the corresponding cell is empty.
(1) π → π΄ππ΄π (2) π → π΅ππ΅π (3) π΄ → π (4) π΅ → π
(1) π → π΅ππ΅π (2) π → π΄ππ΄π (3) π΄ → π (4) π΅ → π
(1) π → π΄ππ΄π (2) π → π΅ππ΅π (3) blank (4) blank
(1) π → π΅ππ΅π (2) π → π΄ππ΄π (3) blank (4) blank
Correct Answer : A
Question Type : MCQ
Max Marks : 2
Negative Marks : 0.67
Question : 41
Let π be the 5-state NFA with π-transitions shown in the diagram below.
Which one of the following regular expressions represents the language accepted by π ?
(00)∗ + 1(11)∗
0∗ + (1 + 0(00)∗ )(11)∗
(00)∗ + (1 + (00)∗ )(11)∗
0+ + 1(11)∗ + 0(11)∗
Correct Answer : B
Question Type : MCQ
Max Marks : 2
Negative Marks : 0.67
Question : 42
Consider an array X that contains n positive integers. A subarray of X is defined to be a sequence of array locations with consecutive indices.
The C code snippet given below has been written to compute the length of the longest subarray of X that contains at most two distinct integers. The code has two missing expressions labelled (π) and (π).
int first=0, second=0, len1=0, len2=0, maxlen=0;
for (int i=0; i < n; i++) {
if (X[i] == first) {
len2++; len1++;
} else if (X[i] == second) {
len2++;
len1 = (π) ;
second = first;
} else {
len2 = (π) ;
len1 = 1; second = first;
}
if (len2 > maxlen) {
maxlen = len2;
}
first = X[i];
}
Which one of the following options gives the CORRECT missing expressions?
(Hint: At the end of the i-th iteration, the value of len1 is the length of the longest subarray ending with X[i] that contains all equal values, and len2 is the length of the longest subarray ending with X[i] that contains at most two distinct values.)
(π) len1+1 (π) len2+1
(π) 1 (π) len1+1
(π) 1 (π) len2+1
(π) len2+1 (π) len1+1
Correct Answer : B
Question Type : MCQ
Max Marks : 2
Negative Marks : 0.67
Question : 43
Consider the following expression: π₯[π] = (π + π) ∗ −π [π] + π’/π€. The following sequence shows the list of triples representing the given expression, with entries missing for triples (1), (3), and (6).
(0) | + | π | π |
(1) | |||
(2) | uminus | (1) | |
(3) | |||
(4) | / | π’ | π€ |
(5) | + | (3) | (4) |
(6) | |||
(7) | = | (6) | (5) |
Which one of the following options fills in the missing entries CORRECTLY?
(1) =[] π π (3) * (0) (2) (6) []= π₯ π
(1) []= π π (3) – (0) (2) (6) =[] π₯ (5)
(1) =[] π π (3) * (0) (2) (6) []= π₯ (5)
(1) []= π π (3) – (0) (2) (6) =[] π₯ π
Correct Answer : A
Question Type : MCQ
Max Marks : 2
Negative Marks : 0.67
Question : 44
Let \(x\) and \(y\) be random variables, not necessarily independent, that take real values in the interval [0,1]. Let \(π§ = π₯π¦\) and let the mean values of \(π₯, π¦, π§\) be \(\overline {x}, \overline {y}, \overline {z}\), respectively. Which one of the following statements is TRUE?
\( \overline {z} = \overline {x} \overline {y}\)
\( \overline {z} \leq \overline {x} \overline {y}\)
\( \overline {z} \geq \overline {x} \overline {y}\)
\( \overline {z} \leq \overline {x}\)
Correct Answer : D
Question Type : MCQ
Max Marks : 2
Negative Marks : 0.67
Question : 45
The relation schema, Person(pid,city), describes the city of residence for every person uniquely identified by pid. The following relational algebra operators are available: selection, projection, cross product, and rename.
To find the list of cities where at least 3 persons reside, using the above operators, the minimum number of cross product operations that must be used is
1
2
3
4
Correct Answer : B
Question Type : MCQ
Max Marks : 2
Negative Marks : 0.67
Question : 46
Consider a multi-threaded program with two threads T1 and T2. The threads share two semaphores: s1 (initialized to 1) and s2 (initialized to 0). The threads also share a global variable x (initialized to 0). The threads execute the code shown below.
Which of the following outcomes is/are possible when threads T1 and T2 execute concurrently?
T1 runs first and prints 1, T2 runs next and prints 2
T2 runs first and prints 1, T1 runs next and prints 2
T1 runs first and prints 1, T2 does not print anything (deadlock)
T2 runs first and prints 1, T1 does not print anything (deadlock)
Correct Answer : BC
Question Type : MSQ
Max Marks : 2
Negative Marks : 0
Question : 47
Let π΄ be an π × π matrix over the set of all real numbers β. Let π΅ be a matrix obtained from π΄ by swapping two rows. Which of the following statements is/are TRUE?
The determinant of π΅ is the negative of the determinant of π΄
If π΄ is invertible, then π΅ is also invertible
If π΄ is symmetric, then π΅ is also symmetric
If the trace of π΄ is zero, then the trace of π΅ is also zero
Correct Answer : AB
Question Type : MSQ
Max Marks : 2
Negative Marks : 0
Question : 48
Let S1 and S2 be two stacks. S1 has capacity of 4 elements. S2 has capacity of 2 elements. S1 already has 4 elements: 100, 200, 300, and 400, whereas S2 is empty, as shown below.
Only the following three operations are available:
PushToS2: Pop the top element from S1 and push it on S2.
PushToS1: Pop the top element from S2 and push it on S1.
GenerateOutput: Pop the top element from S1 and output it to the user.
Note that the pop operation is not allowed on an empty stack and the push operation is not allowed on a full stack.
Which of the following output sequences can be generated by using the above operations?
100, 200, 400, 300
200, 300, 400, 100
400, 200, 100, 300
300, 200, 400, 100
Correct Answer : BCD
Question Type : MSQ
Max Marks : 2
Negative Marks : 0
Question : 49
Which of the following is/are EQUAL to 224 in radix-5 (i.e., base-5) notation?
64 in radix-10
100 in radix-8
50 in radix-16
121 in radix-7
Correct Answer : ABD
Question Type : MSQ
Max Marks : 2
Negative Marks : 0
Question : 50
Consider 4-variable functions f1, f2, f3, f4 expressed in sum-of-minterms form as given below.
f1 = ∑(0,2,3,5,7,8,11,13)
f2 = ∑(1,3,5,7,11,13, 15)
f3 = ∑(0,1,4,11) f4 = ∑(0,2,6,13)
With respect to the circuit given above, which of the following options is/are CORRECT?
π = ∑(0,1,2,11,13)
π = Π(3,4, 5,6,7,8,9,10,12,14,15)
π = ∑(0,1,2,3,4,5,6,7)
π = Π(8,9,10,11,12,13,14,15)
Correct Answer : CD
Question Type : MSQ
Max Marks : 2
Negative Marks : 0
Question : 51
Let πΊ be an undirected connected graph in which every edge has a positive integer weight. Suppose that every spanning tree in πΊ has even weight. Which of the following statements is/are TRUE for every such graph πΊ ?
All edges in πΊ have even weight
All edges in πΊ have even weight OR all edges in πΊ have odd weight
In each cycle πΆ in πΊ, all edges in πΆ have even weight
In each cycle πΆ in πΊ, either all edges in πΆ have even weight OR all edges in πΆ have odd weight
Correct Answer : D
Question Type : MSQ
Max Marks : 2
Negative Marks : 0
Question : 52
Consider a context-free grammar πΊ with the following 3 rules.
π → ππ, π → ππππ, π → π
Let π€ ∈ πΏ(πΊ). Let \(π_π \)(π€),\( π_π \)(π€), \(π_π \)(π€) denote the number of times π, π, π occur in π€, respectively. Which of the following statements is/are TRUE?
ππ(π€) > ππ(π€)
ππ(π€) > ππ (π€) − 2
ππ(π€) = ππ(π€) + 1
ππ(π€) = ππ(π€) ∗ 2
Correct Answer : BC
Question Type : MSQ
Max Marks : 2
Negative Marks : 0
Question : 53
Consider a disk with the following specifications: rotation speed of 6000 RPM, average seek time of 5 milliseconds, 500 sectors/track, 512-byte sectors. A file has content stored in 3000 sectors located randomly on the disk. Assuming average rotational latency, the total time (in seconds, rounded off to 2 decimal places) to read the entire file from the disk is _________
Correct Answer : 29.50 to 30.50
Question Type : NAT
Max Marks : 2
Negative Marks : 0
Question : 54
Consider a TCP connection operating at a point of time with the congestion window of size 12 MSS (Maximum Segment Size), when a timeout occurs due to packet loss. Assuming that all the segments transmitted in the next two RTTs (Round Trip Time) are acknowledged correctly, the congestion window size (in MSS) during the third RTT will be _________
Correct Answer : 4
Question Type : NAT
Max Marks : 2
Negative Marks : 0
Question : 55
Consider an Ethernet segment with a transmission speed of 108 bits/sec and a maximum segment length of 500 meters. If the speed of propagation of the signal in the medium is 2×108 meters/sec, then the minimum frame size (in bits) required for collision detection is _________
Correct Answer : 500
Question Type : NAT
Max Marks : 2
Negative Marks : 0
Question : 56
A functional dependency πΉ: π → π is termed as a useful functional dependency if and only if it satisfies all the following three conditions:
• π is not the empty set.
• π is not the empty set.
• Intersection of π and π is the empty set.
For a relation π with 4 attributes, the total number of possible useful functional dependencies is ________
Correct Answer : 50
Question Type : NAT
Max Marks : 2
Negative Marks : 0
Question : 57
A processor with 16 general purpose registers uses a 32-bit instruction format. The instruction format consists of an opcode field, an addressing mode field, two register operand fields, and a 16-bit scalar field. If 8 addressing modes are to be supported, the maximum number of unique opcodes possible for every addressing mode is _________
Correct Answer : 32
Question Type : NAT
Max Marks : 2
Negative Marks : 0
Question : 58
A non-pipelined instruction execution unit operating at 2 GHz takes an average of 6 cycles to execute an instruction of a program P. The unit is then redesigned to operate on a 5-stage pipeline at 2 GHz. Assume that the ideal throughput of the pipelined unit is 1 instruction per cycle. In the execution of program P, 20% instructions incur an average of 2 cycles stall due to data hazards and 20% instructions incur an average of 3 cycles stall due to control hazards. The speedup (rounded off to one decimal place) obtained by the pipelined design over the non-pipelined design is _________
Correct Answer : 2.9 to 3.1
Question Type : NAT
Max Marks : 2
Negative Marks : 0
Question : 59
The number of distinct minimum-weight spanning trees of the following graph is _________
Correct Answer : 9
Question Type : NAT
Max Marks : 2
Negative Marks : 0
Question : 60
The chromatic number of a graph is the minimum number of colours used in a proper colouring of the graph. The chromatic number of the following graph is _________
Correct Answer : 2
Question Type : NAT
Max Marks : 2
Negative Marks : 0
Question : 61
A processor uses a 32-bit instruction format and supports byte-addressable memory access. The ISA of the processor has 150 distinct instructions. The instructions are equally divided into two types, namely R-type and I-type, whose formats are shown below.
R-type Instruction Format:
OPCODE | UNUSED | DST Register | SRC Register1 | SRC Register 2 |
I-type Instruction Format:
OPCODE | DST Register | SRC Register | # Immediate value/address |
In the OPCODE, 1 bit is used to distinguish between I-type and R-type instructions and the remaining bits indicate the operation. The processor has 50 architectural registers, and all register fields in the instructions are of equal size.
Let π be the number of bits used to encode the UNUSED field, π be the number of bits used to encode the OPCODE field, and π be the number of bits used to encode the immediate value/address field. The value of π + 2π + π is ________
Correct Answer : 34
Question Type : NAT
Max Marks : 2
Negative Marks : 0
Question : 62
Let πΏ1 be the language represented by the regular expression π∗ππ∗ (ππ∗ππ∗)∗ and πΏ2 = { π€ ∈ (π + π)∗ | |π€| ≤ 4}, where |π€| denotes the length of string π€. The number of strings in πΏ2 which are also in πΏ1 is ___________
Correct Answer : 15
Question Type : NAT
Max Marks : 2
Negative Marks : 0
Question : 63
Let ππ be the group of integers {0, 1, 2, … , π − 1} with addition modulo π as the group operation. The number of elements in the group π2 × π3 × π4 that are their own inverses is ________
Correct Answer : 4
Question Type : NAT
Max Marks : 2
Negative Marks : 0
Question : 64
Consider a 32-bit system with 4 KB page size and page table entries of size 4 bytes each. Assume 1 KB = 210 bytes. The OS uses a 2-level page table for memory management, with the page table containing an outer page directory and an inner page table. The OS allocates a page for the outer page directory upon process creation. The OS uses demand paging when allocating memory for the inner page table, i.e., a page of the inner page table is allocated only if it contains at least one valid page table entry. An active process in this system accesses 2000 unique pages during its execution, and none of the pages are swapped out to disk. After it completes the page accesses, let X denote the minimum and Y denote the maximum number of pages across the two levels of the page table of the process.
The value of X+Y is ________
Correct Answer : 1028
Question Type : NAT
Max Marks : 2
Negative Marks : 0
Question : 65
Consider the following augmented grammar, which is to be parsed with a SLR parser. The set of terminals is {π,π,π,π,#,@}
π ′ → π
π → ππ | π΄π | ππ΄π | π΅π | ππ΅π
π΄ → π#
π΅ → @
Let πΌ0 = πΆπΏππππ πΈ({π ′ → • π}). The number of items in the set πΊπππ(πΌ0, π) is ___________
Correct Answer : 9
Question Type : NAT
Max Marks : 2
Negative Marks : 0