0 votes
1
Guys, I am not getting C as the ans..Can someone help.
0 votes
2
find the status of the following generators related to two isolated, single bit errors.a.) x+1b,) x^4+1c) x^7+x^6+1d) x^15+x^14+1please explain this with examples in deta...
0 votes
5
answer is given 20,60but my answer is 20,10 in solution they given that (&arr+1= base address of arr+ 1*6) how it possible . Is it true or wrong
0 votes
6
what is the reason…..?for error..
1 votes
7
0 votes
8
Output is 7.But can someone justify, how?#include <stdio.h int f(int a, int b) { printf("%d", a + b); return 0; } int main() { f((2, 3), 4); return 0; }
0 votes
10
explain the soln...why multiplying by 4 and [-2]?
0 votes
13
Ans : Option D But array size is 14 then how 15 is printed ?ptr size is 2 but precise answer given was 2.29 , how ?
4 votes
14
0 votes
17
if A is a non-singular matrix and(I-A+A^2-...+(-1)^n A^n)=0then A^-1=__________1) A^n2)-A^(n-1)3)(-1)^n A^n-14)(-1)^(n-1).A^n
0 votes
18
0 votes
19
How to find Strongly connected components and weakly connected components in the given graph?
0 votes
20
The eigen value of the following matrix in[ 1 1 1 1 1 1 1 1 1 ](a) 1, 1, 1 (b) 1, 0, 0(c) 3, 0, 0 (d) 0, 0, 0
0 votes
21
main(){int a = 1; int b = 1; int c = a || b ; printf("a = %d b=%d\n",a,b); return 0;}
0 votes
22
0 votes
24
What is the output of the following $C$-programmain() { printf("%d %d %d",size of (3.14f), size of (3.14), size of (3.141)); }4 4 44 8 108 4 88 8 8
0 votes
26
Find the value of the integral $$\int_{0}^{\pi/6}cos^43\theta\ sin^36\theta\ d\theta$$Please show the steps.(upload a pic of your solution)a) 0b) 1/15c) 8/3d) 1
1 votes
27
What is the output of tho following program?main(){ int x=2, y=5; if(x<y) return (x=x+y); else printf("z1"); printf("z2"); }$z2$$z1z2$Compilation errorNone of these