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) - 10". 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.
The candidate from our constituency was attacked during his __________ for the MP elections.
Detailed Solution: Question 1
Which of the following has the closest meaning to the sentence below :
She is an __________ writer. Everyone in the industry respects her.
Detailed Solution: Question 2
Which of the following pairs are not related :
Detailed Solution: Question 3
Select the most appropriate option that would solve the problem.
Problem – What is the profit made by the shopkeeper?
Statements:
(I) The shopkeeper sold 200 articles at Rs.10 each.
(II) The profit per article is same as the cost price per article.
Detailed Solution: Question 4
What is the probability of getting atmost two tails when an unbiased coin is tossed thrice?
Detailed Solution: Question 5
Select the option closest to the meaning of the idiom – Skeleton crew
Detailed Solution: Question 6
For the given statement, select the assumption(s) that follow:
Statement – A large number of people from city S are moving to city T owing to extremely high temperature.
Assumption :
(I) City T has lower temperature than city S.
(II) City T has adequate resources to meet this shift.
Detailed Solution: Question 7
A bag contains 5 balls out of which some or maybe all are black. 2 balls are drawn from the bag and both are found to be black. What is the probability that all balls in the bag are black?
Detailed Solution: Question 8
Answer the question on the basis of the given table.
Q. If the number of male post–graduate employees in company H is 1800, what percent of female employees in that particular company is NOT post–graduate?
Detailed Solution: Question 9
Answer the question on the basis of the given table.
Q. Which company has the highest number of employees per office?
Detailed Solution: Question 10
Given h(z) = (z+2)2 + 3(z+2) – 8, determine two functions f(z) and g(z) which when composed together as f(g(z)) will generate h(z).
Detailed Solution: Question 11
What is the value of limx–>0 (cos x – 1) / x
Detailed Solution: Question 12
Match the best case complexity :
Detailed Solution: Question 13
Consider the below Pseudo code written in C style
Q. Which of the following is true about above code.
Detailed Solution: Question 14
Consider the below Pseudo code written in C style
Q. Which of the following is true about the function in the above code.
Detailed Solution: Question 15
Consider the following tree. How many nodes will have the same position regardless of the fact whether the tree is traversed in DFS or BFS order? (Consider that we select children from right to left starting from the rightmost child)
Detailed Solution: Question 16
The following numbers are inserted into an empty binary search tree in the given order: 10, 1, 3, 5, 15, 12, 16, 4, 2. What is the height of the binary search tree?
(Here height is defined as number of edges on longest path from root to a leaf)
Detailed Solution: Question 17
Which of the following is true about the given grammar
(NOTE : Here, ‘eps’ represesnts epsilon)
Detailed Solution: Question 18
Which of the following is equivalent to :
Detailed Solution: Question 19
Which of the following sets will have same number of elements in their power set?
Set 1 = {1, 2, 3, 4, 5, 6}
Set 2 = {{1, 2}, {3, 4}, {5, 6}}
Set 3 = {1, 2, 3, 4, {5, 6}}
Set 4 = {{1, 2, 3}, {4, 5, 6}}
Detailed Solution: Question 20
Consider a 4 – bit Johnson Counter initialized to ‘0000’. What is the number of clock cycles required for the counter to reset to ‘0000’?
Detailed Solution: Question 21
Consider register reference instructions. Which one of the following is true:
Detailed Solution: Question 22
Which class of ports does the port number 48151 belongs?
Detailed Solution: Question 23
Consider the fragment offset field in the IPv4 header. What is its maximum value in bytes ?
Detailed Solution: Question 24
Match the protocols with the port numbers.
Detailed Solution: Question 25
Consider below the regular expressions over alphabet {0, 1, 2}
(i) (0 + 01 + 012))*
(ii) 0*(0 + 1)*(0+1+2)*
(iii) 0*(ε + 01)*(Φ + 012)*
(iv) 0* + (01)* + (012)*
Q. Which of the above regular expressions represent same language as 0*(01)*(012)*
Detailed Solution: Question 26
Assuming a 16 – bit address space with 12 logical pages. What is the size of each page ?
Detailed Solution: Question 27
What is the output of the following C program :
Detailed Solution: Question 28
Consider a table STUDENTS and the following two SQL queries.
Query 1 – DELETE FROM STUDENTS;
Query 2 – TRUNCATE TABLE STUDENTS;
Q. Which of the following is TRUE :
Detailed Solution: Question 29
Q. What is the sum of all the elements of the L and U matrices as obtained in the L U decomposition?
Detailed Solution: Question 30