2 answers
1
How to prove is FUNCTIONALLY COMPLETE ?
1 answer
2
If $N=(0,1,2,3 ....)$ , then $(N,+)$ is a Group.If $N=(1,2,3 ....)$ , then $(N,+)$ is a not Group.Which one to consider in exam ?
1 answer
7
Match all items in Group 1 with the correct options from those given in Group 2.Syntax analysis$$\begin{array}{|ll|ll|}\hline \rlap{\textbf{Group 1}} & & \rlap{\textbf{Gr...
7 answers
10
1 answer
12
Consider the following C function:int f(int n) { static int r = 0; if (n <= 0) return 1; if (n 3) { r = n; return f(n-2) + 2; } return f(n-1) + r; }What is the value of ...
2 answers
15
What is the output of the following program?# include <stdio.h># define MUL (a, b) a ∗ b# define pow (a) a ∗ aint main ( ){int a = 3;int b = 2;printf (“%”, MUL (M...
1 answer
17
Let $\begin{pmatrix} -1 &2 \\ 0 & -1 \end{pmatrix}$,and $B=A+A^{2}+A^{3}+\dots +A^{50}$, then$B^{2}=I$ $B^{2}=0$ $B^{2}=A$ $B^{2}=B$...
1 answer
18
Let A be a real $2 \times 2$ matrix.If $5 + 3\iota$ is an eigen value of A, then det(A)(A)equals 4(B)equals 8(C)equals 16
1 answer
19
Will it be 0 ? Anyone explain please
1 answer
20