4 votes
31
In a hash table of size 6 currently the locations 0,2,4 and 5 are occupied. The probability of a new record going into location 1 with a hash function resolving collision...
11 votes
36
For a game in which 2 partners oppose 2 other partners, six men are available. If every possible pair must play against every other pair, the number of games to be played...
1 votes
38
for DCFL there exists LL(k) or not?
1 votes
39
1.Every Ragular Language have an equivalent LR(0)grammer.2. Every DCFL have an equivalent LR(0) grammer
10 votes
40
For this I considered cases1. 1 job each to 2 people and then jobs to a single person2. 2 jobs each to 2 people and then 1 job to a single person For the first case I di...
2 votes
42
0 votes
43
2 votes
44
Consider a 32 bit processor that has an on chip 16Kbyte 4 way set associative cache. assume that cache has a size of four 32 bit words. the set no in the cache to which ...
0 votes
45
Consider a hashing function that resolves collision by quadratic probing. Assume the address space is indexed from 1 to 8.If a collision occurs at position 4, then the lo...
3 votes
47
How many ways are there for a horse race with 4 horses to finish if ties are possible?(any number of horses may tie)
2 votes
48
Explain this question . what they mean ?A six faced die is so biased that, when thrown, it is twice as likely to show an even number than an odd number. if it is thrown t...
1 votes
50
A bag contains 3 balls. Given that one of the balls is red and the other two balls can be either red or non-red..what is the probability of picking up a red ball?
94 votes
54
What is the largest integer $m$ such that every simple connected graph with $n$ vertices and $n$ edges contains at least $m$ different spanning trees ?$1$$2$$3$$n$
5 votes
56
If all the edge weights of an undirected graph are positive, then any subset of edges that connects all the vertices and has minimum total weight is aHamiltonian cyclegri...
40 votes
58
Let $x$ be an integer which can take a value of $0$ or $1$. The statementif (x == 0) x = 1; else x = 0;is equivalent to which one of the following ?$x = 1 + x;$$x = 1 - ...