ISRO 2014 Computer Science Questions with Solution

Recent questions tagged isro2013

4 4 votes
0 0 answers
1.6k
1.6k views
 Suppose we have variable logical records of lengths of 55 bytes, 1010 bytes and 2525 bytes while the physical block size in disk is 1515 bytes. What is the maximum and m...
6 6 votes
2 2 answers
4.8k
4.8k views
In graphics, the number of vanishing points depends onThe number of axes cut by the projection planeThe center of projectionThe number of axes which are parallel to the p...
3 3 votes
1 answers 1 answer
7.3k
7.3k views
The built-in base class in java, which is used to handle all exceptions isRaiseExceptionErrorThrowable
1 1 vote
1 answers 1 answer
8.5k
8.5k views
Which of the following is not provided as a service in cloud computing?Infrastructure as a serviceArchitecture as a serviceSoftware as a servicePlatform as a service
6 6 votes
2 answers 2 answers
3.8k
3.8k views
The binary equivalent of the decimal number $42.75$ is$101010 . 110$$100110 . 101$$101010 . 101$$100110 . 110$
5 5 votes
1 answers 1 answer
2.5k
2.5k views
The number of edges in a 'n' vertex complete graph is?$n ^{*} (n - 1) / 2$$n^{2}$$n ^{*} (n + 1) / 2$$n ^{*} (n + 1)$
4 4 votes
2 answers 2 answers
8.9k
8.9k views
What is the right way to declare a copy constructor of a class if the name of the class is MyClass?MyClass (constant MyClass * arg)MyClass (constant MyClass & arg)MyClass...
7 7 votes
2 answers 2 answers
3.5k
3.5k views
The number of elements in the power set of the set {{A, B}, C} is$7$$8$$3$$4$
9 9 votes
1 answers 1 answer
7.7k
7.7k views
What are the final states of the DFA generated from the following NFA?$q_{0}, q_{1}, q_{2}$$[q_{0}, q_{1}], [q_{0}, q_{2}], [ ]$$q_{0}, [q_{1}, q_{2}]$$[q_{0}, q_{1}], q_...
12 12 votes
7 7 answers
6.5k
6.5k views
How many diagonals can be drawn by joining the angular points of an octagon?$14$$20$$21$$28$
9 9 votes
1 answers 1 answer
6.8k
6.8k views
Let $P(E)$ denote the probability of the occurrence of event $E$. If $P(A)= 0.5$ and $P(B)=1$ then the values of $P(A|B)$ and $P(B|A)$ respectively are$0.5, 0.25$$0.25, 0...
8 8 votes
7 answers 7 answers
8.6k
8.6k views
Which of the following strategy is employed for overcoming the priority inversion problem?Temporarily raise the priority of lower priority level processHave a fixed prior...
9 9 votes
2 answers 2 answers
15.2k
15.2k views
If a program $P$ calls two subprograms $P1$ and $P2$ and $P1$ can fail $50$% of the time and $P2$ can fail $40$% of the time, what is the failure rate of program $P$?$50$...
3 3 votes
3 answers 3 answers
6.9k
6.9k views
Which of the following testing methods uses fault simulation technique?Unit testingBeta testingStress testingMutation testing
4 4 votes
2 answers 2 answers
5.3k
5.3k views
Which of the following types of coupling has the weakest coupling?Pathological couplingControl couplingData couplingMessage coupling
8 8 votes
1 answers 1 answer
5.8k
5.8k views
What is the cyclomatic complexity of a module which has seventeen edges and thirteen nodes?$4$$5$$6$$7$
9 9 votes
9 answers 9 answers
14.9k
14.9k views
Consider the list of page references in the time line as below:9 6 2 3 4 4 4 4 3 4 4 2 5 8 6 8 5 5 3 2 3 3 9 6 2 7What is the working set at the ...
5 5 votes
1 answers 1 answer
6.1k
6.1k views
What is the output of the following program?Class Test { public static void main (String [] args) { int x = 0; int y = 0 for (int z = 0; z < 5; z++) { if((++x >2)||(++y ...
13 13 votes
5 answers 5 answers
10.7k
10.7k views
Consider the following $C$ code.#include <stdio.h #include <math.h void main () { double pi = 3.1415926535; int a = 1; int i; for (i=0; i < 3; i++) if (a = cos(pi * i/2))...
6 6 votes
2 answers 2 answers
7.9k
7.9k views
A particular parallel program computation requires $100$ seconds when executed on a single CPU. If $20$% of this computation is strictly sequential, then theoretically th...
9 9 votes
5 answers 5 answers
9.8k
9.8k views
Embedded pointer providesA secondary access pathA physical record keyAn inverted indexA primary key
3 3 votes
5 5 answers
9.7k
9.7k views
The state of a process after it encounters an $I/O$ instruction is?ReadyBlockedIdle Running
6 6 votes
2 2 answers
5.5k
5.5k views
A starvation free job scheduling policy guarantees that no job indefinitely waits for a service. Which of the following job scheduling policies is starvation free?Priorit...
11 11 votes
7 answers 7 answers
13.7k
13.7k views
Consider the following process and resource requirement of each process.ProcessType 1Type 2UsedMaxUsedMaxP11213P21312P32414Predict the state of this system, assuming that...
8 8 votes
4 answers 4 answers
4.2k
4.2k views
Which of the following is not a necessary condition for deadlock?Mutual exclusionReentrancyHold and waitNo pre-emption
8 8 votes
3 answers 3 answers
8.3k
8.3k views
In a $64$- bit machine, with $2$ GB RAM, and $8$ KB page size, how many entries will be there in the page table if its is inverted?$2^{18}$$2^{20}$$2^{33}$$2^{51}$
5 5 votes
2 answers 2 answers
38.2k
38.2k views
Consider a logical address space of $8$ pages of $1024$ words each, mapped onto a physical memory of $32$ frames. How many bits are there in the physical address and logi...
5 5 votes
7 answers 7 answers
10.9k
10.9k views
Which of the following are the likely causes of thrashing?Page size was very small.There are too many users connected to the system.Least recently used policy is used for...
4 4 votes
2 answers 2 answers
9.6k
9.6k views
A CPU scheduling algorithm determines an order for the execution of its scheduled processes. Given 'n' processes to be scheduled on one processor, how many possible diffe...
4 4 votes
4 answers 4 answers
10.5k
10.5k views
Suppose we have variable logical records of lengths of $5$ bytes, $10$ bytes and $25$ bytes while the physical block size in disk is $15$ bytes. What is the maximum and m...