ISRO 2016 Computer Science Questions with solution

Recent questions tagged isro2016

6 6 votes
1 answers 1 answer
9.8k
9.8k views
A company needs to develop a strategy for software product development for which it has a choice of two programming languages L1 and L2. The number lines of code (LOC) de...
66 66 votes
6 answers 6 answers
37.0k
37.0k views
A CPU generates $32$-bit virtual addresses. The page size is $4$ KB. The processor has a translation look-aside buffer (TLB) which can hold a total of $128$ page table en...
77 77 votes
10 answers 10 answers
44.6k
44.6k views
Consider the following recurrence:$ T(n)=2T\left ( \sqrt{n}\right )+1,$ $T(1)=1$Which one of the following is true?$ T(n)=\Theta (\log\log n)$$ T(n)=\Theta (\log n)$$ T(n...
62 62 votes
5 answers 5 answers
26.5k
26.5k views
Consider the join of a relation $R$ with a relation $S$. If $R$ has $m$ tuples and $S$ has $n$ tuples then the maximum and minimum sizes of the join respectively are$m+n$...
108 108 votes
6 answers 6 answers
43.2k
43.2k views
The relation book (title, price) contains the titles and prices of different books. Assuming that no two books have the same price, what does the following SQL query list...
192 192 votes
21 answers 21 answers
75.2k
75.2k views
Frames of $\text{1000 bits}$ are sent over a $10^6$ $\text{bps}$ duplex link between two hosts. The propagation time is $\text{25 ms}$. Frames are to be transmitted into ...
50 50 votes
11 answers 11 answers
30.9k
30.9k views
$$S \to aSa \mid bSb\mid a\mid b$$The language generated by the above grammar over the alphabet $\{a,b\}$ is the set of:all palindromesall odd length palindromesstrings t...
32 32 votes
6 answers 6 answers
13.7k
13.7k views
In which one of the following page replacement policies, Belady's anomaly may occur?FIFOOptimalLRUMRU
53 53 votes
9 answers 9 answers
45.6k
45.6k views
The message $11001001$ is to be transmitted using the CRC polynomial $x^3 +1$ to protect it from errors. The message that should be transmitted is:$11001001000$$110010010...
97 97 votes
16 16 answers
55.4k
55.4k views
The address of a class $\text{B}$ host is to be split into subnets with a $6\;\text{-bit}$ subnet number. What is the maximum number of subnets and the maximum number of ...
15 15 votes
1 answers 1 answer
22.4k
22.4k views
In a token ring network the transmission speed is $10^7$ bps and the propagation speed is $200\;\text{meters}/\mu \text{s}.$ The $1$-bit delay in this network is equivale...
69 69 votes
9 answers 9 answers
37.9k
37.9k views
The order of a leaf node in a $B^+$ - tree is the maximum number of (value, data record pointer) pairs it can hold. Given that the block size is $1K\;\text{bytes}$, data ...
51 51 votes
4 answers 4 answers
24.4k
24.4k views
The following postfix expression with single digit operands is evaluated using a stack:$$8 \ 2 \ 3 \ \;\hat{}\; ∕ \ 2 \ 3 * + 5 \ 1 * -$$Note that $\;\hat{}\;$ is the ...
39 39 votes
5 answers 5 answers
27.6k
27.6k views
Consider a disk pack with $16$ surfaces, $128$ tracks per surface and $256$ sectors per track. $512$ bytes of data are stored in a bit serial manner in a sector. The capa...
83 83 votes
7 answers 7 answers
40.5k
40.5k views
Consider the following statements about the context free grammar$$G = \left \{ S \rightarrow SS, S \rightarrow ab, S \rightarrow ba, S \rightarrow \epsilon \right \} $$$G...
51 51 votes
9 answers 9 answers
32.6k
32.6k views
The maximum number of edges in a $n$-node undirected graph without self loops is$n^2$$\frac{n(n-1)}{2}$$n-1$$\frac{(n+1)(n)}{2}$
62 62 votes
4 answers 4 answers
22.5k
22.5k views
Given the relationsemployee (name, salary, dept-no), anddepartment (dept-no, dept-name,address),Which of the following queries cannot be expressed using the basic relatio...
43 43 votes
5 answers 5 answers
20.4k
20.4k views
A clustering index is defined on the fields which are of typenon-key and orderingnon-key and non-orderingkey and orderingkey and non-ordering
55 55 votes
12 answers 12 answers
27.0k
27.0k views
What is the maximum size of data that the application layer can pass on to the TCP layer below?Any size$2^{16}$ bytes - size of TCP header$2^{16}$ bytes$1500$ bytes
40 40 votes
6 answers 6 answers
17.5k
17.5k views
If $L$ and $\overline{L}$ are recursively enumerable then $L$ isregularcontext-freecontext-sensitiverecursive
51 51 votes
2 answers 2 answers
20.9k
20.9k views
Register renaming is done in pipelined processors:as an alternative to register allocation at compile timefor efficient access to function parameters and local variablest...