Recent questions tagged non-gate

5 votes
2 answers
634
The correct syntax to write "Hi there" in Javascript isjscript.write ("Hi There")response.write ("Hi There")print ("Hi There")print.jscript ("Hi There")
6 votes
1 answer
635
The number of logical CPUs in a computer having two physical quad-core chips with hyper threading enabled is ______$1$$2$$8$$16$
0 votes
2 answers
636
#include<stdio.h #include<math.h int main() { double pi=3.1415926535; int a=1; int i; for(i=0;i<3;i++) if(a=cos(pi*i/2)) printf("%d",1); else printf("%d",0); }0 0 00 1 01...
0 votes
4 answers
637
int main() { int a; char *x; x = (char *) &a; a = 512; x[0] = 1; x = 2; printf("%d\n",a); return 0; }output?A. M/C dependentB. 513C. 258D. compiler error
1 votes
1 answer
640
printf("xy","ab","mn") will printa)xy b)xy ab mn c)garbage value d) error
1 votes
4 answers
641
0 votes
1 answer
642
0 votes
2 answers
643
1 votes
1 answer
644
0 votes
1 answer
646
0 votes
1 answer
647
4 votes
1 answer
655
0 votes
1 answer
657
The estimate of$\int_{0.5}^{1.5}\frac{dx}{x}$obtained using Simpson’s rule with threepoint function evaluation exceeds the exact value by(A) 0.235 (B) 0.068 (C) 0.024 (...
2 votes
2 answers
659
main() { int x, y= 100; float *P; P=&y; x=*P; printf("%d", x); }what is output?a) 100b) 1c) 0d) none
0 votes
1 answer
660