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 "Test: Programming & Data Structures - 1". These 10 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.
Which of the following regex states the character set of FORTRAN?
Detailed Solution: Question 1
Which file sets the Unix environment for the user when the user logs into his HOME directory?
Detailed Solution: Question 2
Which programming language is called the mother of programming languages?
Detailed Solution: Question 3
Which of the following is not a computer language?
I. C++
II. Java
III. Linux
Detailed Solution: Question 4
Consider the following C declaration
struct {
short s[5];
union {
float y;
long z;
}u;
}t;
Assume that objects of type short, float and long occupy 2 bytes, 4 bytes and 8 bytes, respectively. The memory requirement for variable t, ignoring alignment considerations, is
Detailed Solution: Question 5
Detailed Solution: Question 6
Which of the following sorting algorithms can be used to sort a random linked list with minimum time complexity?
Detailed Solution: Question 7
Which of the following is true about linked list implementation of stack?
Detailed Solution: Question 8
Suppose a circular queue of capacity (n – 1) elements is implemented with an array of n elements. Assume that the insertion and deletion operation are carried out using REAR and FRONT as array index variables, respectively. Initially, REAR = FRONT = 0. The conditions to detect queue full and queue empty are
Detailed Solution: Question 9
Suppose the numbers 7, 5, 1, 8, 3, 6, 0, 9, 4, 2 are inserted in that order into an initially empty binary search tree. The binary search tree uses the usual ordering on natural numbers. What is the in-order traversal sequence of the resultant tree?
Detailed Solution: Question 10