Exam Details
Computer Science & Information Technology (CS) 2004
Review the key details, then start the test when you are ready. You can also open the full package to see related papers.
Questions
90
Duration
180 mins
Package
GATE & PSU CS - Previous Year Papers
Paper pattern & analysis
Filter this paper by subject, topic or subtopic. Every graph updates from the selected questions.
Topic distribution
Subtopic distribution
Difficulty distribution
90questions
Medium
69
76.7%
Hard
11
12.2%
Easy
10
11.1%
Question type distribution
90questions
Multiple Choices
90
100%
Instructions
Demo Instruction
Syllabus
Sample
Sample questions from this paper
Questions are selected across the paper subjects wherever the paper contains that variety.
2004 · Unclassified
Computer Science & Information Technology (CS) 2004
The goal of structured programming is to
2004 · Unclassified
Computer Science & Information Technology (CS) 2004
Consider the following C function void swap (int a, int b) { int temp; temp = a ; a = b ; b = temp ; } In order to exchange the values of two variables x and y.
2004 · Unclassified
Computer Science & Information Technology (CS) 2004
A single array A[1..MAXSIZE] is used to implement two stacks. The two stacks grow from opposite ends of the array. Variables top1 and top 2 (top1< top 2) point to the location of the topmost element in each of the stacks. If the space is to be used efficiently, the condition for “stack full” is
2004 · Unclassified
Computer Science & Information Technology (CS) 2004
The following numbers are inserted into an empty binary search tree in the given order: 10, 1, 3, 5, 15, 12, 16. What is the height of the binary search tree (the height is the maximum distance of a leaf node from the root)?
2004 · Unclassified
Computer Science & Information Technology (CS) 2004
The best data structure to check whether an arithmetic expression has balanced parentheses is a
2004 · Unclassified
Computer Science & Information Technology (CS) 2004
Level order traversal of a rooted tree can be done by starting from the root and performing