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) - 1". 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.
X, Y and Z are the three contestants in one km race. If X can give Y a start of 52 metres and X can also give Z a start of 83 metres, how many metres start Y can give Z?
Detailed Solution: Question 1
There are 5 brothers in a family. All were born at a gap of 3 years. If the sum total of ages of 5 brothers is 100. What is the age of 2nd most elder brother?
Detailed Solution: Question 2
If there are 5 persons who can work individually and complete a work in 2, 4, 5, 6 and 8 hours respectively. If they work together then how much time will it take to finish the work?
Detailed Solution: Question 3
If we increase the sides of a rectangular park by 20%, then, what is the total increase in the area of that park ?
Detailed Solution: Question 4
The sum of the digits in the unit place of all the 4 digit numbers formed with the help of 3, 4, 5 and 6 taken all at a time is:
Detailed Solution: Question 5
Choose the one that best fits the sentence below-
The state’s duty is to _______ the safety of its citizen.
Detailed Solution: Question 6
Cocaine will have "pernicious" effect on your physical fitness.
Find synonym of the underlined word.
Detailed Solution: Question 7
Choose the one that best fits the sentence below.
The _______ of glory lead but to the ______.
Detailed Solution: Question 8
Gardener said to me, “Don’t pluck the beautiful flowers.”
Select the appropriate Indirect Speech of the above.
Detailed Solution: Question 9
I haven’t had a call from the office about the meeting ________ last Monday.
Select the appropriate word to fill in the blank from the given options.
Detailed Solution: Question 10
Let T(n) = 2T(n/4) + 100√n
The value of T(n) can be written as:
Detailed Solution: Question 11
Consider a sorted array of n elements. Let k inversions (swapping) have been performed on the sorted array and we want to sort it again to reverse effect of inversions. If K is very small in comparison to n, then which sorting technique will prove efficient for making again the list in sorted increasing order array.
Detailed Solution: Question 12
What will the output of the following C code?
Detailed Solution: Question 13
A balanced tree is given below. How many nodes will become unbalanced when a node is inserted as a child of node G?
Note: A node in a tree is balanced if absolute difference between its left and right subtrees is less than or equal to 1.
Detailed Solution: Question 14
Consider the C code Below.
Q. Which of the following is the tightest upper bound on time complexity of above function.
Detailed Solution: Question 15
Consider the following statements about Bellman ford algorithm for finding shortest path in a directed connected graph G having integral edge weights.
Statement I: It will always find out negative edge weight cycle in G reachable from source.
Statement II: It will always give correct answer for the graph G.
Detailed Solution: Question 16
Consider the case: f(n) = O(g(n)). Then, following two statements are claimed to be inferred from the above case.
Statement I: 2f(n) = O(2g(n))
Statement II: 2g(n) = O(2f(n))
Detailed Solution: Question 17
Let X and Y be the integers representing the number of simple graphs possible with 3 labeled vertices and 3 unlabeled vertices respectively. Let X - Y = N. Then, find the number of spanning trees possible with N labeled vertices complete graph.
Detailed Solution: Question 18
Consider the following pseudo code.
Find the value of x, when the above code is executed in a function.
Consider the following statements:
S1 : DFS of a directed graph always produces the same number of edges in the traversal, irrespective of the starting vertex.
S2 : If all of the back edges that are found while DFS traversal on directed graph are removed, the resulting graph is acyclic.
Q. Which of the following statements above are valid?
Detailed Solution: Question 20
Which data structure would be the most appropriate to implement a collection of values with the following three characteristics?
i) Items are retrieved and removed from the collection in FIFO order.
ii) There is no priori limit to the number of items in the collection.
iii) The size of an item is large relative to storage required for a memory address.
Detailed Solution: Question 21
Stack A has the entries as following sequence a, b, c (with ‘a’ on top), stack B is empty, as shown in the diagram below.
Q. An entry popped out of stack A can be printed or pushed to stack B. An entry popped out of stack B can only be printed. In this arrangement which of the following permutation of a, b, c are not possible to print?
Detailed Solution: Question 22
Stack A has the entries as following sequence a, b, c (with ‘a’ on top), Stack B is empty, as shown in the diagram below.
Q. Considering the data given in the previous question, if the stack A had 4 entries, then the number of possible permutations that can be printed will be:
Detailed Solution: Question 23
Given a hash table with n keys and m slots with simple uniform hashing. If collisions are resolved by chaining then what is the probability that the first slot ends up empty?
Detailed Solution: Question 24
Consider the following instance of knapsack problem:
Q. The maximum weight of 12 is allowed in the knapsack. Find the value of maximum profit with the optimal solution of the fractional knapsack problem.
Detailed Solution: Question 25
Find the maximum value of the expression (x+y+k) where (x,y) satisfies the equation (x-2)2 + (y-3)2= 25
Detailed Solution: Question 26
Which of the following argument is invalid?
Detailed Solution: Question 27
The value of the following Integral is:
Detailed Solution: Question 28
Detailed Solution: Question 29
Which Of the following statements are true?
S1: Every Distributive lattice has unique complement.
S2: In Complemented lattice every element has at least one complement.
S3: Boolean lattice is both complemented and distributive.
S4: In Boolean lattice every lattice has exactly one complement.
Detailed Solution: Question 30