1 answer
3
How many license plates consisting of three letters followed by three digits contain no letter or digit twice?
2 answers
4
What is the difference in between lexical, syntax and semantic errors?Please give appropriate example also.
1 answer
6
In a class C IP address, 4 bits are taken for subnetting from host id part. Total possible number of subnet masks are ________ 60 80 90 70
1 answer
7
is there any difference between in valid and tautology?
5 answers
8
Which of the following input sequences will always generate a $1$ at the output $z$ at the end of the third cycle?$\begin{array}{|l|l|}\hline \textbf{A} & \textbf{B} & \t...
1 answer
10
#include <stdio.h>int main(){ int i = 3; printf("%d", (++i)++); return 0;}why this is giving compile time error?
2 answers
12
3 answers
13
When multiplicand $Y$ is multiplied by multiplier $X = x_{n - 1}x_{n-2} \dots x_0$ using bit-pair recoding in Booth's algorithm, partial products are generated according ...
6 answers
14
Let $f(w, x, y, z) = \sum {\left(0,4,5,7,8,9,13,15\right)}$. Which of the following expressions are NOT equivalent to $f$?P: $x'y'z' + w'xy' + wy'z + xz$Q: $w'y'z' + wx'y...
3 answers
20
#IISc2012Research 1>Recurrence relation and worst case time complexity of Merge sort 2 Difference between D&C and Dynamic Programming ?
1 answer
21
int x=0,i;for(i=0;i<10;i++)if(i%2&&x++)x=+2;what is the value of x.
2 answers
22
1 answer
23
void main() { char *p="cprogramming"; }I know the string literal "cprogramming" is stored in read only data segment. But where will the pointer p be stored, in stack or r...
1 answer
24
The maximum number of arguments that can be passed in a single function are ??
2 answers
27
Which of the following is false?$100n \log n=O(\frac{n\log n}{100})$$\sqrt{\log n} = O(\log\log n)$If $0 < x < y \text{ then } n^x = O\left(n^y\right)$$2^n \neq O\left(nk...
1 answer
28
How many real links are required to store a sparse matrix of 10 rows , 10 columns ,and 15 non zeros entries.(pick up the closest answer)
0 answers
30
Please explain all the sorting techniques with examples,