Recent questions tagged non-gate

1 votes
0 answers
421
The reflection along the line y=x is equivalent to reflection along the X-axis followed by counter clockwise rotation by theta degrees.Find the value of theta
–7 votes
0 answers
422
Show that the composition of two rotations is additive by concatenating the matrix representations for R(theta 1) and R(theta 2)to obtainR(theta 1) x R(theta 2) = R(theta...
–6 votes
0 answers
423
–3 votes
0 answers
424
1 votes
0 answers
425
0 votes
1 answer
426
–2 votes
0 answers
427
3sin(200rt) is amplitude modulated with 600s(6000rt)Find the spectral response and expression of the AM signal generated
10 votes
1 answer
428
State whether the following statements are TRUE or FALSE with reason:RAM is a combinational circuit and PLA is a sequential circuit.
1 votes
1 answer
429
0 votes
0 answers
430
1 votes
2 answers
435
0 votes
1 answer
436
1. Every TM can be converted to another TM with 2 states.2. Every TM can be converted to another TM with 3 states.3. Every TM can be converted to another TM with 1 state....
0 votes
1 answer
438
Can anybody explain this question ??
–2 votes
2 answers
440
int main{int * str ="2017";printf("%d", madeEasy(str));return 0;}int maseEasy(int * p1){int * p2 = p1;while(*++p1);return (p1-p2);}assume object of data type int occupies...
0 votes
1 answer
442
#include<stdio.h int main() { char *p1="xyz"; char *p2="xyz"; if(p1==p2) printf("equal"); else printf("unequal"); }Output is equal how??? please explain
2 votes
1 answer
443
1 votes
1 answer
444
#include<stdio.h>int main(){int a = 10, b = 20, c = 30, d = 40;printf("%d%d%d",a, b, c);printf("%d%d%d", d);return 0;}What is the Output and when I run it I am getting so...
2 votes
1 answer
445
#include<stdio.h #include<stdlib.h int main() { int p=9; printf("%d %d",p++,++p); } how it executed and also how printf function executed left to right or right to left?
1 votes
1 answer
446
#include<stdio.h #define CUBE(x) (x*x*x) int main() { int a, b=3; a = CUBE(b++); printf("%d, %d ", a, b); return 0; }Why this give 27,6 as output?
2 votes
2 answers
448
2 votes
1 answer
449
In Unix, the command to enable execution permission for file "mylife" by all is_____Chmod ugo $+$ X mylifeChmod a $+$ X mylifeChmod $+$ X mylifeAll of the above
2 votes
1 answer
450