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

Luz 管理员

暂无介绍

89860 篇文章 33 次评论

单选题:Which of the following characters is **invalid** in an identifie

Luz5年前 (2021-05-10)596
Which of the following characters is **invalid** in an identifier in C? @[A](1)A. hyphen ( - )B. underscore ( _ )C. le…

单选题:Which expression can express " x≥y≥z " ?

Luz5年前 (2021-05-10)661
Which expression can express " x≥y≥z " ? @[A](1)A. (x˃=y)&&(y˃=z)B. (x˃=y)AND(y˃=z)C. (x˃=y˃=z)D. (x˃=y)&(y˃=z)A.(x˃=y…

单选题:The value of the expression 4>3>2 is ( ).

Luz5年前 (2021-05-10)890
The value of the expression 4˃3˃2 is ( ). @[A](1)A. 0B. 1C. 2D. Syntax errorA.0B.1C.2D.Syntax error答案:A…

单选题:Which expression evaluates 0 ?

Luz5年前 (2021-05-10)601
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)622
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)586
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)732
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)572
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)621
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)752
Which option is **correct** according to the following fragment of code?```if(x˃y)x=y; y=x;elsex++; y++;printf(“%d,%d”,x…