You can prepare effectively for Computer Science Engineering (CSE) GATE Computer Science Engineering(CSE) 2027 Mock Test Series with this dedicated MCQ Practice Test (available with solutions) on the important topic of "Practice Test: Computer Science Engineering (CSE) - 9". These 65 questions have been designed by the experts with the latest curriculum of Computer Science Engineering (CSE) 2026, to help you master the concept.
Test Highlights:
Sign up on EduRev for free to attempt this test and track your preparation progress.
Wayne Rooney …………… after netting the ball in the final seconds of the game.
Detailed Solution: Question 1
Choose the most appropriate pair of words from the options given below to complete the following.
Despite all the rhetoric about building a new democracy, and the ________ of bringing freedom and ________ to the country, the invasion has only resulted in increased violence and hardship.
Detailed Solution: Question 2
Continue the sequence
2, 5, 10, 17, 28, 41, _, _, _
Detailed Solution: Question 3
A point on AC in the following triangle such that ∠ADB = ∠ABC. Then BD in (cm) is

Detailed Solution: Question 4
The numerical value of
will be
Detailed Solution: Question 5
An advance team of the elite special operations unit was sent to make a reconnaissance of the area before the main strike team reached the scene.
Which of the following is a statement that can be inferred from the facts stated in the above statement
Detailed Solution: Question 6
Based on the distribution of surface area of the Earth at different elevations and depths (with reference to sea - level) shown in the figure, which of the following is FALSE?

Detailed Solution: Question 7
Ananth takes 6 hours and Bharath takes 4 hours to read a book. Both started reading copies of the book at the same time. After how many hours is the number of pages remaining to be read by Ananth, twice that the number of pages remaining to read by Bharath? Assume Ananth and Bharath read all the pages with constant pace.
Detailed Solution: Question 8
In a group of 11 people, 5 are wearing white shirt, 5 are wearing black shirt and one is wearing red shirt. Find the number of ways they can sit around a circular table so that no two people wearing same color shirt sit together.
Detailed Solution: Question 9
Find the probability of a number which is divisible by either 5 or 3 out of first 500 natural Odd Numbers.
Detailed Solution: Question 10
Consider the following proposition:
(p→q)∧(q→r)→(p→r)∨(r→p)
Above proposition is a
Detailed Solution: Question 11
Given S = {a, b, c, d}.
Number of functions possible on S which are neither one-one nor onto is:
Detailed Solution: Question 12
Consider the following grammar:
G = S → SS|ab|ba|aba|bab|ϵ
Which of the following string is not generated by above grammar?
Detailed Solution: Question 13
The following numbers are inserted into an empty binary search tree in the given order:
10, 1, 3, 5, 11, 12, 6
What is the height of the binary search tree?
Detailed Solution: Question 14
A network with CSMA/CD protocol in the MAC layer is running at 1 Gbps over a 1 km cable with no repeaters. The signal speed in the cable is 2x108 m/sec. The minimum frame size for this network should be:
Detailed Solution: Question 15
Which of the following is an LL(1) conflict?
Detailed Solution: Question 16
Which of the following sorting algorithm will be worst choice to sort a linked list?
Detailed Solution: Question 17
The set of values of p for which the roots of the equation 3x2 + 2x + p(p – 1) = 0 are of opposite sign is
Detailed Solution: Question 18
Which of the following operations is performed more efficiently by doubly linked list than by singly linked list?
Detailed Solution: Question 19
Suppose that the maximum transmit window size for a TCP connection is 12000 bytes. Each packet consists of 2000 bytes. At some point of time, the connection is in slow-start phase with a current transmit window of 4000 bytes. Subsequently, the transmitter receives two acknowledgements. Assume that no packets are lost and there are no time-outs. What is the maximum possible value of the current transmit window? (in bytes).
Detailed Solution: Question 20
Which of the following is true for an undirected graph G = (V,E) such that every vertex has degree greater than 1?
Detailed Solution: Question 21
Consider set S = {The set of all rational numbers including zero} and operation
I. addition II. Multiplication III. Division
Under which operation the set will form a group?
Detailed Solution: Question 22
Consider a DRAM chip connected to a channel having 8 memory banks. A bank contain 16K rows. DRAM is refreshed once per 64ms. And refreshing operation takes 60ns(nano second). How many refresh operation performed in 1 sec?( 1 sec ≈ 1.024 sec).
Detailed Solution: Question 23
The minimum number of bits required to represent - 64 in 2’s complement representation is _________.
Detailed Solution: Question 24
What is the broadcast address of the first sub network in a class-C network assigned with an IP address - 207.35.7.0 (The subnet mask is 255.255.255.248)
Detailed Solution: Question 25
The following C function takes a simply-linked list as input argument.
typedef struct node {
int value;
struct node *next;
}
int func(node *head){
node *p;
int a;
if(head == NULL)
return 0;
if(head→next == NULL)
return(head→value)
p =head;
a = head→value;
while(p→next!= NULL){
p=p→next;
if(p→value < a)
a = p→value;
}
return a;
}
Which of the following is true for the above function?
Detailed Solution: Question 26
Which of the following languages is/are context-free?
I. {anbmcndm│n,m≥0}
II. {anbnbmam│n,m≥0}
III. {anbmcn│n,m≥0}
Detailed Solution: Question 27
Which of the following regular expression describes the language
L = {w is in (1 + 0)* │ w ends with 10}?
I. (1*0*)*10
II. (0 + 1(1 + 01)*00)*1(1 + 01)*0
III. (1*0*)*100*
Detailed Solution: Question 28
Consider the following program:
a = 1;
b = 2;
c = 3;
c = a + b;
b = a + c;
d = b + c;
e = d + a;
Assuming that all operations take their operands from registers, what is the minimum number of registers needed to execute this program without spilling?
Detailed Solution: Question 29
In a data link layer, bit stuffing is used in transferring data. If the sent data after bit stuffing is 001111101101011111001111 and the flag is 01111110, then what will be the data after destuffing?
Detailed Solution: Question 30