Recent activity by Nitesh_Yadav

3 answers
1
An array VAL[1..15][1..10] is stored in the memory with each element requiring 4 bytes of storage. If the base address of array VAL is 1500, determine the location of VAL...
4 answers
2
In the figure below, $\angle DEC + \angle BFC$ is equal to _____$\angle BCD - \angle BAD$$\angle BAD + \angle BCF$$\angle BAD + \angle BCD$$\angle CBA + \angle ADC$
2 answers
4
What is the time complexity of the below mentioned recursive function.int f(n){ if(n!=1){ return f(n/2)+f(n/2);}elsereturn 10;} O(n)O(n^2)O(log n)O(n logn)
2 answers
6
In Quicksort of the following numbers, if the pivot is chosen as the first element, what will be the order of the numbers after the use of partition function? Assume we a...
20 answers
12
0 answers
13
1 answer
17
Find the time complexity of the given program
1 answer
18
please provide the solution
1 answer
19
2 answers
22
SR conflict in LR(0) and SLR(1) will always be equal for some context free grammar?
1 answer
23
Let N stations share 40kbps of pure aloha channel. Frame size is 512 bits which are send at every 40 seconds. The maximum value of N is ____
9 answers
27
At what time between $6$ a. m. and $7$ a. m. will the minute hand and hour hand of a clock make an angle closest to $60^{\circ}$?$6: 22$ a.m.$6: 27$ a.m.$6: 38$ a.m.$6: 4...
3 answers
28
How many sub strings of different lengths (non-zero) can be formed from a character string of length $n$?$n$$n^2$$2^n$$\frac{n(n+1)}{2}$
6 answers
29
What value would the following function return for the input $x=95$?Function fun (x:integer):integer; Begin If x 100 then fun = x – 10 Else fun = fun(fun (x+11)) End;$...