7 answers
1
Threads of a process shareglobal variables but not heapheap but not global variablesneither global variables nor heapboth heap and global variables
3 answers
3
does Random page replacement algorithm suffers from belady's anomaly?
1 answer
4
1 answer
5
1 answer
6
The answer is given as 14.I calculated using Catalan number but the answer did not come as 14.
1 answer
10
Select the regular languages from a list of given languages:1)Strings over alphabet {0,1,2,3...9} where final digit has not appeared before.2)strings that contain substr...
2 answers
11
1 answer
14
The recurrence equation$T(1) = 1$$T(n) = 2T(n-1) + n, n \geq 2$evaluates to $a.2^{n+1} - bn - c$, what is the value of $100a+ 10b+c$?
2 answers
15
1 answer
16
2 answers
17
1 answer
20
I am not able to understand the concept of multilevel paging.plz can someone tell what is stored in 1st level and 2nd level page table and how do we access it??
7 answers
22
There are three processes in the ready queue. When the currently running process requests for I/O how many process switches take place?1234
2 answers
23
BCNF is not used for cases where a relation hasTwo (or more) candidate keysTwo candidate keys and compositeThe candidate key overlapTwo mutually exclusive foreign keys
4 answers
24
The following three 'C' language statements is equivalent to which single statement?y=y+1; z=x+y; x=x+1z = x + y + 2;z = (x++) + (++y);z = (x++) + (y++);z = (x++) + (++y)...
2 answers
25
The circuit shown in the given figure is afull adderfull subtractershift registerdecade counter
4 answers
26
How many different $\text{BCD}$ numbers can be stored in $12$ switches ? (Assume two position or on-off switches).$2^{12}$$2^{12}-1$$10^{12}$$10^3$
3 answers
29
The expression $1 * 2 \wedge 3 * 4 \wedge 5 * 6$ will be evaluated as$32^{30}$$162^{30}$49152173458In original quetion 5 is not given.