2025
GATE CSE 2025 Set 2GATE CSE 2025 Set 12024
GATE CSE 2024 Set 2GATE CSE 2024 Set 12023
GATE CSE 20232022
GATE CSE 20222021
GATE CSE 2021 Set 2GATE CSE 2021 Set 12020
GATE CSE 20202019
GATE CSE 20192018
GATE CSE 20182017
GATE CSE 2017 Set 2GATE CSE 2017 Set 12016
GATE CSE 2016 Set 2GATE CSE 2016 Set 12015
GATE CSE 2015 Set 3GATE CSE 2015 Set 2GATE CSE 2015 Set 12014
GATE CSE 2014 Set 3GATE CSE 2014 Set 2GATE CSE 2014 Set 12013
GATE CSE 20132012
GATE CSE 20122011
GATE CSE 20112010
GATE CSE 20102009
GATE CSE 20092008
GATE CSE 20082007
GATE CSE 20072006
GATE CSE 20062005
GATE CSE 20052004
GATE CSE 20042003
GATE CSE 20032002
GATE CSE 20022001
GATE CSE 20012000
GATE CSE 20001999
GATE CSE 19991998
GATE CSE 19981997
GATE CSE 19971996
GATE CSE 19961995
GATE CSE 19951994
GATE CSE 19941993
GATE CSE 19931992
GATE CSE 19921991
GATE CSE 19911990
GATE CSE 19901989
GATE CSE 19891988
GATE CSE 19881987
GATE CSE 1987GATE CSE 1993
Paper was held on Thu, Jan 1, 1970 12:00 AM
1
$$\sum\limits_{1 \le k \le n} {O(n)} $$ where O(n) stands for order n is:
2
The proposition $$p \wedge \left( { \sim p \vee q} \right)$$ is
3
The value of the double integral $$\int\limits_0^1 {\int\limits_x^{{1 \over x}} {{x \over {1 + {y^2}}}\,\,dx\,\,dy = \_\_\_\_\_.} } $$
4
The eigen vector (s) of the matrix
$$\left[ {\matrix{ 0 & 0 & \alpha \cr 0 & 0 & 0 \cr 0 & 0 & 0 \cr } } \right],\alpha \ne 0$$ is (are)
$$\left[ {\matrix{ 0 & 0 & \alpha \cr 0 & 0 & 0 \cr 0 & 0 & 0 \cr } } \right],\alpha \ne 0$$ is (are)
5
If $$A = \left[ {\matrix{
1 & 0 & 0 & 1 \cr
0 & { - 1} & 0 & { - 1} \cr
0 & 0 & i & i \cr
0 & 0 & 0 & { - i} \cr
} } \right]$$ the matrix $${A^4},$$
calculated by the use of Cayley - Hamilton theoram (or) otherwise is
calculated by the use of Cayley - Hamilton theoram (or) otherwise is
6
Let $${\rm A}$$ be a finite set of size $$n$$. The number of elements in the power set of $${\rm A} \times {\rm A}$$ is
7
Let $$S$$ be an infinite set and $${S_1},\,\,{S_2},....\,\,{S_n}$$ be sets such that $${S_1} \cup {S_2} \cup ....... \cup {S_n} = S$$. Then
8
Show that proposition $$C$$ is a logical consequence of the formula
$$A \wedge \left( {A \to \left( {B \vee C} \right) \wedge \left( {B \to \sim A} \right)} \right)$$ using truth tables.
9
Assume that the following jobs are to be executed on a single processor system.
Job Id | CPU Burst Time |
---|---|
p | 4 |
q | 1 |
r | 8 |
s | 1 |
t | 2 |
The jobs are assumed to have arrived at time $${0^ + }$$ and in the order $$p,q,r,s,t.$$ Calculate the departure time (completion time) for job $$p$$ if scheduling is round robin with time slice$$1.$$
10
Consider a system having m resources of the same type. These resources are
shared by 3 processes A, B and C, which have peak demands of 3, 4 and 6
respectively. For what value of m deadlock will not occur?
11
A certain moving arm disk storage, with one head, has the following specifications.
Number of track/recording
Surface $$=200$$
Disk rotation speed $$=2400$$$$rpm$$
Track storage capacity $$=62,500$$ $$bits$$
The average latency of this device is
$$P$$ $$msec$$ and the data transfer rate is
$$Q$$ $$bits / sec.$$ Write the value of $$P$$&$$Q$$
Number of track/recording
Surface $$=200$$
Disk rotation speed $$=2400$$$$rpm$$
Track storage capacity $$=62,500$$ $$bits$$
The average latency of this device is
$$P$$ $$msec$$ and the data transfer rate is
$$Q$$ $$bits / sec.$$ Write the value of $$P$$&$$Q$$
12
The root directory of a disk should be placed:
13
The following page addresses, in the given sequence, were generated by a program:
1 2 3 4 1 3 5 2 1 5 4 3 2 3
1 2 3 4 1 3 5 2 1 5 4 3 2 3
This program is run on a demand paged virtual memory system, with main memory size equal to $$4$$ pages. Indicate the page references for which page faults occurs for the following page replacement algorithms.
(a) $$LRU$$
(b) $$FIFO$$
Assume that the main memory is empty initially.
14
A simple two-pass assembler does the following in the first pass:
15
A part of the system software, which under all circumstances must reside in the main memory is:
16
The details of an interrupt cycle are shown in Figure
Given that an interrupt input arrives every $$1$$ $$msec,$$ what is the percentage of the total time that the $$CPU$$ devotes for the main program execution.

Given that an interrupt input arrives every $$1$$ $$msec,$$ what is the percentage of the total time that the $$CPU$$ devotes for the main program execution.
17
What does the following code do?
var a, b : integer;
begin
a:=a+b;
b:=a-b;
a:=a-b;
end;