ISRO 2017 Computer Science Questions with Solution

Recent questions tagged isro2017

1 votes
2 answers
1
The number of elements in the power set of {{1,2},{2,1,1},{2,1,1,2}} is:
6 votes
3 answers
3
Q.A strictly binary tree with 10 leavesA) cannot have more than 19 nodesB) has exactly 19 nodesC)has exactly 17 nodesD) has exactly 20 nodes
0 votes
1 answer
5
10 votes
8 answers
7
Which of the following data structure is useful in traversing a given graph by breadth first search?StackQueueListNone of the above
9 votes
4 answers
8
What is the minimum number of two-input $\text{NAND}$ gates used to perform the function of two-input $\text{OR}$ gate?OneTwoThreeFour
14 votes
3 answers
9
The time complexity of computing the transitive closure of a binary relation on a set of $n$ elements is known to bea. $O(n\log n)$b. $O\left( n^{3/2}\right)$c. $O( n^3 )...
5 votes
2 answers
10
If $L$ and $P$ are two recursively enumerable languages then they are not closed underKleene star $L^*$ of $L$Intersection $L \cap P$Union $L \cup P$Set difference
3 votes
3 answers
11
Which of these is a super class of all errors and exceptions in the Java language?Runtime ExceptionsThrowableCatchableNone of the above
7 votes
2 answers
12
Which of the following statement is true?Hard real time OS has less jitter than soft real time OSHard real time OS has more jitter than soft real time OSHard real time OS...
5 votes
1 answer
13
The Linux command mknod myfifo b 4 16will create a character device if user is rootwill create a named pipe FIFO if user is rootwill create a block device if user is root...
5 votes
3 answers
14
We use malloc and calloc for:Dynamic memory allocationStatic memory allocationBoth dynamic memory allocation and static memory allocationNone of these
9 votes
3 answers
15
Choose the equivalent prefix form of the following expression(a+(b-c))*((d-e)/(f+g-h))*+a-bc/-de-+fgh*+a-bc-/de-+fgh*+a-bc/-ed-+fgh*+ab-c/-de-+fgh
6 votes
4 answers
16
A critical regionis a piece of code which only one process executes at a timeis a region prone to deadlockis a piece of code which only a finite number of processes execu...
6 votes
1 answer
18
Which product metric gives the measure of the average length of words and sentence in documents?SCI numberCyclomatic complexityLOCFog index
8 votes
4 answers
19
What is the output of the following program?#include<stdio.h int tmp=20; main() { printf("%d", tmp); func(); printf("%d", tmp); } func() { static int tmp=10; printf("%d",...
8 votes
5 answers
21
What will be the output of the following C code?#include <stdio.h main() { int i; for(i=0;i<5;i++) { int i=10; printf("%d" , i); i++; } return 0; }10 11 12 13 1410 10 10 ...
4 votes
1 answer
22
In software maintenance tackling the changes in the hardware or software environment where the software works, isCorrective maintenancePerfective maintenanceAdaptive main...
6 votes
1 answer
23
The best data structure to check whether an arithmetic expression has balanced parenthesis is a:QueueStackTreeList
5 votes
3 answers
24
Which of the following is not a life cycle model?Spiral modelPrototyping modelWaterfall modelCapability maturity model
6 votes
3 answers
25
4 votes
2 answers
26
Given reference to the following pages by a program0,9,0,1,8,1,8,7,8,7,1,2,8,2,7,8,2,3,8,3How many page faults will occur if the program has three page frames available t...
15 votes
5 answers
27
Wha is the output of the following program?main() { int a = 10; if(fork()) == 0)) a++; printf("%d\n",a); }10 and 11101111 and 11
8 votes
3 answers
28
If the post order traversal gives ab -cd * + then the label of the nodes 1,2,3.. will be+ , -, *, a,b,c,da, -,b,+,c,*,da,b,c,d,-,*,+-,a,b,+,*,c,d
9 votes
5 answers
29
The number of swappings needed to sort the numbers $8 , 22, 7, 9, 31, 5, 13$ in ascending order using bubble sort is$11$$12$$13$$10$
8 votes
2 answers
30
What problem is solved by Dijikstra banker' algorithm?Mutual exclusionDeadlock recoveryDeadlock avoidanceCache coherence