2 answers
4
Which of the following is the most efficient to perform arithmetic operations on the numbers ?Sign-magnitude$1's$ complement$2's$ complement$9's$ complement
3 answers
5
The octal number $326.4$ is equivalent to$(214.2)_{10}$ and $(D6.8)_{16}$$(212.5)_{10}$ and $(D6.8)_{16}$ $(214.5)_{10}$ and $(D6.8)_{16}$ $(214.5)_{10}$ and $(D6.4)_{16}...
5 answers
6
The boolean expression $\text{AB + A}\text{B}'+\text{A}'\text{C + AC}$ is independent of the boolean variable$\text{A}$$\text{B}$$\text{C}$None of these
3 answers
8
How many pulses are needed to change the contents of a $8$-bit up counter from $10101100$ to $00100111$ (rightmost bit is the LSB)?$134$$133$$124$$123$
4 answers
9
Which of the following expressions is equivalent to $(A \oplus B) \oplus C$$(A + B + C) (\bar A +\bar B +\bar C)$$(A + B + C) (\bar A +\bar B + C)$$ABC + \bar A (B \oplus...
3 answers
10
A process executes the following codefor(i=0; i<n; i++) fork();The total number of child processes created is$n$$2^n-1$$2^n$$2^{n+1} - 1$
1 answer
12
SOLVE: 2^32 mod 5
1 answer
13
How to work on such question ? Answer is : 19#include <stdio.h>int main() { int i = 4, ans; ans = ++i + ++i + ++i; printf("%d\n", ans); return 0;}
2 answers
14
3 answers
16
1 answer
17
is there is easy way to find no of candidate key in these type of questions.
0 answers
18
need soln
2 answers
21
Let A be a 3*3 matrix whose characteristics roots are 3,2,-1. If $B=A^2-A$ then |B|=?a)24b)-2c)12d)-12Please explain in detail.
0 answers
22
1 answer
23
1 answer
24
Which of the following is the proper declaration of a pointer?A. int x;B. int &x;C. ptr x;D. int *x;
1 answer
25
Which of the following gives the memory address of integer variable a?A. *a;B. a;C. &a;D. address(a);
2 answers
26
Which of the following gives the memory address of a variable pointed to by pointer a?A. a;B. *a;C. &a;D. address(a);
1 answer
27
Which of the following is the proper keyword or function to allocate memory in C?A. newB. mallocC. createD. value
1 answer
28
Which of the following is the proper keyword or function to deallocate memory?A. freeB. deleteC. clearD. remove
0 answers
29
Find the nth derivative of the followingy = x^3 sin 2x
1 answer
30
Find L1/L2 forL1 = L(a*baa*),L2 = L(ab*), ANS: L(a*ba*)reference: Properties of regular language.