当前位置:首页
> Luz 第6103页
Luz 管理员
暂无介绍
89860 篇文章 33 次评论单选题:Which expression can express ` a≥10 or a≤0` ?。
Which expression can express ` a≥10 or a≤0` ?。 @[D](2)A. a˃=10 or a˂=0B. a˃=0 | a˂=10C. a˃=10 && a˂=0D. a˃=10 || a˂=0A…
单选题:Which expression can express `x≥y≥z` ?
Which expression can express `x≥y≥z` ? @[A](2)A. (x˃=y) && (y˃=z)B. (x˃=y) AND (y˃=z)C. (x˃=y˃=z)D. (x˃=y) & (y˃=z)A.(…
单选题:What is the output of the following program?
What is the output of the following program? @[C](2)```int main(){ int a = 2, b = -1, c = 2; if(a ˂ b)…
单选题:Which expression evaluates 0 ?
Which expression evaluates 0 ? @[A](2)A. 3/5B. 3˂5C. 3%5D. 3/5.0A.3/5B.3˂5C.3%5D.3/5.0答案:A…
单选题:What does the variable x evaluate after executing the following
What does the variable x evaluate after executing the following piece of code?@[A](2)```int a = 0, b = 0, c = 0, x = 35;…
单选题:The expression ___can NOT express the statement "both x and y ar
The expression ___can NOT express the statement "both x and y are zero". @[C](2)A. x==0 && y==0B. !x && !yC. x==0 || y…
单选题:What value will the variable i be after executing the following
What value will the variable i be after executing the following section of code? @[D](2)```int i=1; switch(i){case 0: i+…
单选题:Which is correct according to the following piece of code?
Which is correct according to the following piece of code? @[A](2)``` if(x˃y) x=y; y=x; else x++; y++;printf(“%d,%d”,x…
单选题:What does the variable x evaluate after executing the following
What does the variable x evaluate after executing the following piece of code?@[B](2)```int a = 0, b = 0, c = 0, x = 35;…
单选题:What is the output of the following piece of code?
What is the output of the following piece of code? @[D](2)```int n = 9;while (n ˃ 6) { n--; printf("%d", n);}```A. 876…