-
Which data structure is used for implementing recursion?
-
Which data structure is based on the Last In First Out (LIFO) principle?
-
Which of the following tree data structures is not a balanced binary tree?
-
Which of the following is not the type of queue?
-
Which algorithm is used in the top tree data structure?
-
Consider the following processes with time slice of 4 milliseconds (I/O requests are ignored):
Process A B C D
Arrival time 0 1 2 3
CPU Cycle 8 4 9 5
The average turnaround time of these processes will be
-
Which scheduling policy is most suitable for a time shared operating syste?
-
An operating system using banker’s algorithm for deadlock avoidance has ten dedicated devices (of same type) and has three processes P1, P2 and P3 with maximum resource requirements of 4, 5 and 8 respectively. There are two states of allocation of devices as follows:
State 1 Processes P1 P2 P3
Devices allocated   2   3   4
State 2 Processes P1 P2 P3
Devices allocated   0   2   4
Which of the following is correct?
-
In which one of the following page replacement policies, Belady’s anomaly may occur?
-
A disk is advertised with a seek time of 3 ms, 512 bytes per sector and 128 sectors per track. The disk rotates at 5, 200 rpm.
i. Determine the average rotational delay for the disk.
ii. Determine the time required to read a 4 Mbyte file. You are to assume that the file occupies sectors on adjacent tracks.
-
Following proposition statement is
F1 : P -> ~P
F2 : (P -> ~P) V ( ~P -> P)
-
Given a relation R( A, B, C) and Functional Dependency set FD = { A → B, B → C, and C → A}, determine given R is in which normal form?
-
Let R (A, B, C, D) be a relational schema with the following functional dependencies:
A → B, B → C,
C → D and D → B.
The decomposition of R into
(A, B), (B, C), (B, D)
-
Consider the following schedules involving two transactions.
S1: r1(X);r1(Y);r2(X);r2(Y);w2(Y);w1(X)
S2: r1(X);r2(X);r2(Y);w2(Y);r1(Y);w1(X)
Which one of the following statements is correct with respect to above?
-
Given the IP address 201.14.78.65 and the subset mask 255.255.255.224. What is the subset address?
-
The number of flip-flops required to design a modulo – 272 counter is:
-
The occurrence of degeneracy while solving a transportation problem means that.
-
In a Linear Programming Problem, suppose there are three basic variables and 2 non-basic variables, then the possible number of basic solutions are
-
When two BCD numbers 0x14 and 0x08 are added what is the binary representation of the resultant number?
-
A company needs to develop digital signal processing software for one of its newest inventions. The
software is expected to have 40000 lines of code. The company needs to determine the effort in
person-months needed to develop this software using the basic COCOMO model. The multiplicative
factor for this model is given as 2.8 for this software development on embedded systems, while the
exponentiation factor is given as 1.20. What is the estimation effort in person-months?
-
A computer handles several interrupt sources of which the following are relevant for this question.
* Interrupt from CPU temperature sensor (raises interrupt if CPU temperature is too high)
* Interrupt from Mouse (raises interrupt if mouse is moved or button is pressed)
* Interrupt from Keyboard (raises interrupt when a key is pressed or released)
* Interrupt from Hard Disk (raises interrupt when a disk read is completed)
Which one of these will be handled at HIGHEST priority?
-
Which of the following is NOT desired in a good Software Requirement Specifications (SRS) document?
-
What does the following fragment of C program print?
char c[] = "DEVA2023";
char *p = c;
printf("%s", p + p[1] - p[3]);
-
Consider evaluating the following expression tree on a machine with load-store architecture in which
memory can be accessed only through load and store instructions. The variables a,b,c,d and e initially
stored in memory. The binary operators used in this expression tree can be evaluate by the machine only
when the operands are in registers. The instructions produce results only in a register. If no
intermediate results can be stored in memory, what is the minimum number of registers needed to
evaluate this expression?
-
K4 and Q3 are graphs with the following structures.
Which one of the following statements is TRUE in relation to these graphs?