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
11 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
0 votes
116
You have $n$ lists, each consisting of $m$ integers sorted in ascending order. Merging these lists into a single sorted list will take time:$O(nm \log m)$$O(mn \log n)$...
1 votes
119