For the following questions answer them individually
If the two matrices $$\begin{bmatrix}1 & 0 & x \\0 & x & 1 \\0 & 1 & x \end{bmatrix}$$ and $$\begin{bmatrix}x & 1 & 0 \\x & 0 & 1 \\0 & x & 1 \end{bmatrix}$$ and have the same determinant, then the value of X is
An interrupt in which the external device suppliesits address as well as the interrupt requests is known a
The ability to temporarily halt the CPU and use this time to send informationon busesis called
Consider the following Assembly language program: ~
MVIA 30H
ACI 30H
XRA A
POP H
After the execution of the above program, the contents of the accumulator will be
Consider the following C function:
int f(int n)
{ static int i = 1;
if (n >= 5 ) return n;
n=n + i,
j++;
return f(n);
}
The value returned by f(1) is