-->
当前位置:首页 > Luz 第6103页
Luz

Luz 管理员

暂无介绍

89860 篇文章 33 次评论

单选题:Which expression can express ` a≥10 or a≤0` ?。

Luz5年前 (2021-05-10)607
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` ?

Luz5年前 (2021-05-10)634
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?

Luz5年前 (2021-05-10)857
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 ?

Luz5年前 (2021-05-10)677
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

Luz5年前 (2021-05-10)604
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

Luz5年前 (2021-05-10)1951
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

Luz5年前 (2021-05-10)1205
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?

Luz5年前 (2021-05-10)663
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

Luz5年前 (2021-05-10)605
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?

Luz5年前 (2021-05-10)550
What is the output of the following piece of code? @[D](2)```int n = 9;while (n ˃ 6) { n--; printf("%d", n);}```A. 876…