itgle.com

Given:Which two statements are true about the result if the default locale is Locale.US?()A.The value of b is 2.B.The value of a is 3.14.C.The value of b is 2.00.D.The value of a is 3.141.E.The value of a is 3.1415.F.The value of a is 3.1416.G.The value o

题目
Given:Which two statements are true about the result if the default locale is Locale.US?()

A.The value of b is 2.

B.The value of a is 3.14.

C.The value of b is 2.00.

D.The value of a is 3.141.

E.The value of a is 3.1415.

F.The value of a is 3.1416.

G.The value of b is 2.0000.


相似考题
参考答案和解析
参考答案:C, F
更多“Given:Which two statements are true about the result if the default locale is Locale.US?() ”相关问题
  • 第1题:

    下面程序段: boolean a=false; boolean b=true; boolean c=(a&&B) &&(!B) ; boolean result=(a&B) &(!B) ; 执行完后,正确的结果是( )。

    A.c=false;result=false

    B.c=true,result=true

    C.c=tree;result=false

    D.c=false;result=trae


    正确答案:A
    解析:本题考查Java中的运算。首先要清楚,“&&”是逻辑与运算符;“!”是逻辑非运算符;“&”是按位与运算符。按照逻辑运算符“a&&b”是false,“!b”是false,所以c是false。“a&b”是false,所以result是false。要注意区分“&&”和“&”,以及运算符之间的优先级关系,本题虽然没有涉及,但也要作为重点掌握。

  • 第2题:

    下面程序段; boolean a=false; boolean b=true; boolean c=(a||b)&&(b); boolean result=(a|b)&(b); 执行完后,正确的结果是

    A.c=false;result=false

    B.c=true;result=true

    C.c=true;result=false

    D.c=false;result=true


    正确答案:B
    解析:本题考查Java中的运算符。考试重点内容,历次考试都有题目涉及。首先要清楚,“&&”是逻辑与运算符:“&”是按位与运算符:“||”是逻辑或运算符:“|”是按位或运算符。“a||b”的结果为true,所以“true&&true”结果为true。而“a|b”的结果也为true,故result=(a,b)&(b)语句的结果也为true,选项B正确。

  • 第3题:

    12. About_______ of the workers in the factory were born in the __________.

    A. two- thirds;1970

    B. two- thirds ; 1970s

    C. two-third ; 1970

    D. two-third ; 1970s


    正确答案:B
    12.B【解析】句意:工厂里大约2/3的工人出生在20世纪70年代。分数的表达为分子用基数词,分母用序数词,如果分子大于1,则分母要用复数,排除C、D,年代的表达要在年份后加s.故选B。

  • 第4题:

    下面程序段:boolean a=false;boolean b=true;boolean c=(a&&b)&&(!b);boolean result=(a&b)&(!b);执行完后,正确的结果是

    A.c=false;result=false

    B.c=true,result=true

    C.c=true;result=false

    D.c=false;result=true


    正确答案:A
    解析:本题考查Java中的运算。首先要清楚,“&&”是逻辑与运算符:“!”是逻辑非运算符;“&”是按位与运算符。按照逻辑运算符“a&&b”是false,“!b”是false,所以c是false。“a&b”是false,所以result是false。要注意区分“&&”和“&”,以及运算符之间的优先级关系,本题虽然没有涉及,但也要作为重点掌握。

  • 第5题:

    About ________ of the workers in the factory were born in the ________.

    A.two-thirds, 1970 B.two-thirds, 1970s C.two-third,1970 D.two-third, 1970s


    正确答案:B

  • 第6题:

    4、请为下列程序写注释,并写出程序运行的结果。 bool a = true; int b = 30; bool result=a&(b>50?true :false); result = !result; Console.WriteLine(result);


    p.red{color:red}