-->
当前位置:首页 > 题库

题库 第5984页

  • 最新
  • 浏览
  • 评论

单选题:Which expression evaluates 0 ?

Luz5年前 (2021-05-10)603
Which expression evaluates 0 ? @[A](1)A. 3/5B. 3˂5C. 3%5D. 3/5.0A.3/5B.3˂5C.3%5D.3/5.0答案:A…

单选题:What value will the variable x be after executing the following

Luz5年前 (2021-05-10)623
What value will the variable x be after executing the following fragment of code?```int a = 0, b = 0, c = 0, x = 35;if (…

单选题:What will appear on the screen after executing the following pro

Luz5年前 (2021-05-10)588
What will appear on the screen after executing the following program?```int main(){ int a = 2, b = -1, c = 2;…

单选题:The expression ( )can **NOT** express the statement "both x and

Luz5年前 (2021-05-10)733
The expression ( )can **NOT** express the statement "both x and y are zero". @[C](1)A. x==0 && y==0B. !x && !yC. x==0…

FILL_IN_THE_BLANK:Windows console application control keys

Luz5年前 (2021-05-10)574
Windows console application control keysIn the windows environment, the commonly used control keys for console applicati…

单选题:After performing the following code fragment, what are the value

Luz5年前 (2021-05-10)622
After performing the following code fragment, what are the values of x and y:```x=1,y=2;if(x˃y) x++;y++;```@[A](1)A. x=…

单选题:Which option is **correct** according to the following fragment

Luz5年前 (2021-05-10)753
Which option is **correct** according to the following fragment of code?```if(x˃y)x=y; y=x;elsex++; y++;printf(“%d,%d”,x…

单选题:After performing the following code fragment, what are the value

Luz5年前 (2021-05-10)542
After performing the following code fragment, what are the values of x and y:```x=1,y=2;if(x˃y){ x++;y++;}``` @[B](1)…

单选题:After performing the following code fragment, what are the value

Luz5年前 (2021-05-10)656
After performing the following code fragment, what are the values of x and y:```x=3,y=2;if(x˃y) x++;y++;```@[C](1)A. x=…

单选题:What will appear on the screen after executing the following pro

Luz5年前 (2021-05-10)625
What will appear on the screen after executing the following program?```int main(){ int a = 2, b = -1, c = 2;…