当前位置:首页
> Luz 第6141页
Luz 管理员
暂无介绍
89860 篇文章 33 次评论单选题:Which of the following characters is **invalid** in an identifie
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 " ?
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 ( ).
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 ?
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
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
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
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
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
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
Which option is **correct** according to the following fragment of code?```if(x˃y)x=y; y=x;elsex++; y++;printf(“%d,%d”,x…