9 votes
81
A system is having $8\;\text{M}$ bytes of video memory for bit-mapped graphics with $64$-bit colour. What is the maximum resolution it can support?$800 \times 600$$1024 \...
1 votes
82
The surface area of the surface cut from the paraboloid $x^2+y^2+z^2=2$ by the plane $y=0$ is equal to$2 \pi$$2 \sqrt{2 \pi}$$7 \pi / 3$$13 \pi /3$
22 votes
83
The output of the following program ismain() { static int x[] = {1,2,3,4,5,6,7,8} int i; for (i=2; i<6; ++i) x[x[i]]=x[i]; for (i=0; i<8; ++i) printf("%d", x[i]); }1 2 3 ...
7 votes
84
The for loopfor (i=0; i<10; ++i) printf("%d", i&1);prints0101010101011111111100000000001111111111
12 votes
85
Consider the following program fragmenti=6720; j=4; while (i%j)==0 { i=i/j; j=j+1; }On termination j will have the value4896720
7 votes
86
u w wR v , uvw belongs to (0+1)+ is it regular or CFL ?
3 votes
87
Consider the following boolean function of four variables $f(w,x,y,z) = \Sigma(1,3,4,6,9,11,12,14)$, the function isIndependent of one variableIndependent of two variable...
15 votes
88
If the bandwidth of a signal is $5$ kHz and the lowest frequency is $52$ kHz, what is the highest frequency$5$ kHz$10$ kHz$47$ kHz$57$ kHz
1 votes
91
0 votes
92
Consider 3 dimensional array A[90][30][40] stored in a linear array in column major order. If the base address starts at 10, what is the location of A[20][20][30]? Assume...
6 votes
94
If a graph requires $k$ different colours for its proper colouring, then the chromatic number of the graph is$1$$k$$k-1$$k/2$
4 votes
95
Consider the following infix expression which is to be converted to postfix expression using stack.(((P+Q)*(R+S))/T)+(A*(B+C))
3 votes
96
1 votes
97
void fun(int n, int k) { for (int i=1; i<=n; i++) { int p = pow(i, k); for (int j=1; j<=p; j++) { // Some O(1) work } }}
7 votes
98
Consider the following statement:$\text{ For all languages }L \subseteq \{0, 1\}^*, \text{ if }L^* \text{ is regular then L is regular.}$Is the above statement true? Just...
0 votes
99
Given Language L1 is DCFL and L2 is DCFL ? Then (L1$\cap$L2)c will beRegularDCFLCFLCSL but not CFL
3 votes
100
6 votes
101
Two, trains, one from Howrah to Patna and the other from Patna to Howrah, start simultaneously. After they meet, the trains reach their destinations after 9 hours and 16 ...
7 votes
103
12 votes
105
11 votes
109
How many diagonals can be drawn by joining the angular points of an octagon?$14$$20$$21$$28$
1 votes
110