0 votes
0 answers
1
Shouldnt it be on when both the switches are on???… and if the switches work irrespective of the other switch then why are we dependent on the other switch..
0 votes
0 answers
2
Shouldnt we take 1 instead of 1-P ?? As it should be sequential access???
0 votes
1 answer
3
0 votes
0 answers
5
The post correspondence solution <i,j,k of the problem M=(abb,aa,aaa) and N=(bba,aaa,aa) is________Ans is 2,1,3
0 votes
0 answers
6
Let N channels share 60kbps of slotted aloha channel.Frame Size is 1024 bits which are sent at every 40 seconds.The value of N is :___(upto 1 decimal place).Ans given is:...
1 votes
1 answer
7
The number of states in a minimal DFA that accepts set of all strings beginning with 1 that, when interpreted as a binary integer is a multiple of 5 over the alphabet={0,...
1 votes
0 answers
8
A pure ALOHA network transmits 400-bit frames on a shared channel of 400 kbps. What is the throughput(in frames) if the system (all stations together) produces 500 frames...
0 votes
1 answer
10
A packet has arrived in which the offset value of 2nd frame is 450, the header length is 20 and the value of the total length field is 1000. What is the number of the �...
0 votes
0 answers
11
Consider two strings P = ‘10010101’ and Q = ‘010110110’. Let j be the length of the longest common subsequence between P and Q. The minimum no. of elements need t...
0 votes
0 answers
13
Does thrashing lead to an increase in the degree of multiprogramming?if yes then why ?
0 votes
0 answers
15
If G = (V,E) is a directed graph, then length of adjacency list is ______ and it requires ______ amount of memory.12|E|, θ(V)2|E|, θ(V+E)Correct Answer3|E|, θ(E)42|E|,...
1 votes
0 answers
17
Assume there are 1024 men, each with distinct arm strength, in an arm wrestling match stronger arm always wins. Number of arm wrestling matches required to find men with ...
0 votes
0 answers
18
are non preemptive kernels free from race condition? If yes then why?
0 votes
1 answer
19
consider the following nested recursion.h(n)={ 0 if n=0 n if n>4 h(n+h(2n)) if n<=4}What is the value of h(2) ?The given ans is 12 I am getting 14...