ISRO 2017 Computer Science Questions with Solution

Recent questions tagged isro2017

1 1 vote
2 2 answers
1.8k
1.8k views
The number of elements in the power set of {{1,2},{2,1,1},{2,1,1,2}} is:
12 12 votes
8 answers 8 answers
15.8k
15.8k views
Which of the following data structure is useful in traversing a given graph by breadth first search?StackQueueListNone of the above
9 9 votes
4 answers 4 answers
11.4k
11.4k views
What is the minimum number of two-input $\text{NAND}$ gates used to perform the function of two-input $\text{OR}$ gate?OneTwoThreeFour
16 16 votes
3 answers 3 answers
5.3k
5.3k views
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 5 votes
2 answers 2 answers
8.1k
8.1k views
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 3 votes
3 answers 3 answers
8.1k
8.1k views
Which of these is a super class of all errors and exceptions in the Java language?Runtime ExceptionsThrowableCatchableNone of the above
8 8 votes
2 answers 2 answers
7.5k
7.5k views
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 5 votes
2 answers 2 answers
8.9k
8.9k views
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 5 votes
3 answers 3 answers
8.2k
8.2k views
We use malloc and calloc for:Dynamic memory allocationStatic memory allocationBoth dynamic memory allocation and static memory allocationNone of these
10 10 votes
3 answers 3 answers
15.0k
15.0k views
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 6 votes
4 answers 4 answers
7.3k
7.3k views
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...
5 5 votes
2 answers 2 answers
10.7k
10.7k views
Consider the disk system with 100 cylinders. The request to access the cylinders occur in the following sequence.4, 37, 10,7,19,73,2,15,6,20Assuming the head is currently...
7 7 votes
1 answers 1 answer
6.5k
6.5k views
Which product metric gives the measure of the average length of words and sentence in documents?SCI numberCyclomatic complexityLOCFog index
9 9 votes
5 answers 5 answers
7.0k
7.0k views
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",...
18 18 votes
2 answers 2 answers
13.7k
13.7k views
What does the following program do when the input is unsigned 16 bit integer?#include<stdio.h main(){ unsigned int num; int i; scanf("%u", &num); for(i=0;i<16;i++){ print...
11 11 votes
7 answers 7 answers
13.2k
13.2k views
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 ...
5 5 votes
1 answers 1 answer
6.1k
6.1k views
In software maintenance tackling the changes in the hardware or software environment where the software works, isCorrective maintenancePerfective maintenanceAdaptive main...
7 7 votes
1 answers 1 answer
19.8k
19.8k views
The best data structure to check whether an arithmetic expression has balanced parenthesis is a:QueueStackTreeList
6 6 votes
3 answers 3 answers
8.4k
8.4k views
Which of the following is not a life cycle model?Spiral modelPrototyping modelWaterfall modelCapability maturity model
6 6 votes
3 answers 3 answers
8.0k
8.0k views
Mutual exclusion problem occursbetween two disjoint processes that do not interactamong processes that share resourcesamong processes that do not use the same resourcebet...
3 3 votes
2 answers 2 answers
7.1k
7.1k views
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...
21 21 votes
5 answers 5 answers
14.4k
14.4k views
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
9 9 votes
3 answers 3 answers
9.3k
9.3k views
 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
10 10 votes
7 answers 7 answers
13.3k
13.3k views
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 8 votes
2 answers 2 answers
7.0k
7.0k views
What problem is solved by Dijikstra banker' algorithm?Mutual exclusionDeadlock recoveryDeadlock avoidanceCache coherence
12 12 votes
9 answers 9 answers
10.5k
10.5k views
Which one of the following Boolean expressions is NOT a tautology?$((a \rightarrow b) \wedge (b \rightarrow c)) \rightarrow (a \rightarrow c)$$(a \leftrightarrow c) \rig...
7 7 votes
2 answers 2 answers
5.5k
5.5k views
Capability maturity Model (CMM) is the methodology todevelop and refine an organization's software development processdevelop the softwaretest the softwareAll of the abov...
5 5 votes
2 answers 2 answers
3.6k
3.6k views
SATA is the abbreviation ofSerial Advanced Technology AttachmentSerial Advanced Technology ArchitectureSerial Advanced Technology AdapterSerial Advanced Technology Array
8 8 votes
2 answers 2 answers
5.7k
5.7k views
Which of these is characteristic of $\textsf{RAID 5}?$Dedicated parityDouble parityHamming code parityDistributed parity
5 5 votes
4 answers 4 answers
5.5k
5.5k views
Which of the following is associated with objects?StateBehaviorIdentityAll of the above