1 votes
2
Please tell me about all the variations of these above types of questions that can be asked?
2 votes
4
Consider the following schedule:$\begin{array}{|c|c|} \hline T1& T2 \\ \hline R(A) &{} \\ \hline R(B) & {} \\ \hline R(C) & {} \\ \hline {} & R(A) \\ \hline {} & R(B) \\...
0 votes
7
How many different ways are there to seat four people around a circular table, where two seatings are considered the same when each person has the same left neighbor and ...
4 votes
8
The limit $$\lim_{x \to 0} \frac{d}{dx}\,\frac{\sin^2 x}{x}$$ is$0$$2$$1$$\frac{1}{2}$None of the above
35 votes
12
Four fair six-sided dice are rolled. The probability that the sum of the results being $22$ is $\dfrac{X}{1296}$. The value of $X$ is _______
38 votes
13
0 votes
14
0 votes
16
In which of the following, ready to execute processes must be present in $RAM$ ?multiprocessing multiprogramming multitasking all of the above
–1 votes
19
Show with the help of a block diagram how the Boolean function :$f=AB+BC+CA$can be realised using only a $4:1$ multiplexer.
0 votes
20
Let $h_n$ denote the number of non-negative integral solutions of the equation $3x_1 + 4x_2 + 2x_3 + 5x_4 = n$Find the generating function $g(x)$ for $h_0,h_1,h_2,h_3 ....
2 votes
21
#include<stdio.h>int main() {float f=5,g=10;enum {i=10,j=20,k=50};printf("%d\n",++k);printf("%f\n",f<<2);return 0;} a. 5 1b. 1 0c. compliation failsd. runtime errorcan so...
0 votes
24
Can anyone who have studied chapter 5 6th edition from Carl hamacher can explain the meaning of this line
3 votes
25
23 votes
26
0 votes
27
main() { int * ptr =(int *) malloc (5*sizeof(int)); for(i=0;i<5;i++) *(ptr+i)=i; pf("%d",*ptr++); pf("%d",(*ptr)++); pf("%d",*ptr1); pf("%d",*++ptr); pf("%d",++*ptr); }
6 votes
28
Suppose the first step in binary search algorithm is changed to M = (9L+R)/10, we know that the complexity of binary search is log(n). What will be the complexity of modi...