更多“下面均为Java关键字的一组是()A、boolean,byte,long,trueB、byte, long,true,gotoC、goto ,Boolean,byte,trueD、bool, long,true,auto”相关问题
  • 第1题:

    自动类型转换是按优先关系从低级数据转换成高级数据,规定的优先次序是( )。

    A.byte, short, char→int→long→float→double

    B.float→int→long→byte, short, char→double

    C.int→long→float→double→byte, short, char

    D.double→int→float→long→byte, short, char


    正确答案:A

  • 第2题:

    自动类型转换规定的优先次序是( )。

    A.short,byte,char→long→int→float→double

    B.short,byte,char→int→long―float→double

    C.byte,short,char→long→int→float→double

    D.byte,short,char→int→long→float→double


    正确答案:D

  • 第3题:

    以下代码中变量result的可能类型有哪些?byte b = 11;short s = 13;result = b * ++s;

    A.byte, short, int, long, float, double

    B.boolean, byte, short, char, int, long, float, double

    C.byte, short, char, int, long, float, double

    D.byte, short, char

    E.int, long, float, double


    正确答案:E
     

  • 第4题:

    在C#中下列表达式不正确的是()。

    • A、double a,double b=2,int c=3,a=b+c
    • B、short a,byte b=2,byte c=3,a=b+c
    • C、string a,string b=”1” string c=”2” a=b+c
    • D、bool a,bool b=true,bool c=false a=b==c

    正确答案:A

  • 第5题:

    下面均为java关键字的一组是()

    • A、boolean ,byte,long,assert
    • B、byte,long,true,goto
    • C、goto,boolean,byte,null
    • D、boolean,long,false,auto

    正确答案:A

  • 第6题:

    指出正确的表达式()

    • A、 byte=128;
    • B、 Boolean=null;
    • C、 long l=0xfffL;
    • D、 double=0.9239d;

    正确答案:C

  • 第7题:

    在Java中,字节数据类型的关键字和默认值是()

    • A、byte和0
    • B、byte和1
    • C、boolean和true
    • D、boolean和false

    正确答案:A

  • 第8题:

    将有三个boolean值的数组初始化为true的是()

    • A、boolean[]b=newboolean[3]
    • B、"boolean[]b={true,true,true}"
    • C、"boolean[3]b={true,true,true}"
    • D、"boolean[]b=newboolean[3];b={true,true,true}"

    正确答案:B

  • 第9题:

    Which of the following statements about declaration are true?()         

    • A、 Declaration of primitive types such as boolean, byte and so on does not allocate memory space for the variable.
    • B、 Declaration of primitive types such as boolean, byte and so on allocates memory space for the variable.
    • C、 Declaration of nonprimitive types such as String, Vector and so on does not allocate memory space for the object.
    • D、 Declaration of nonprimitive types such as String, Vector ans so on allocates memory space for the object.

    正确答案:A,D

  • 第10题:

    多选题
    Which statements concerning casting and conversion are true?()
    A

    Conversion from int to long does not need a cast.

    B

    Conversion from byte to short does not need a cast.

    C

    Conversion from float to long does not need a cast.

    D

    Conversion from short to char does not need a cast.

    E

    Conversion from boolean to int using a cast is not possible.


    正确答案: B,C
    解析: 暂无解析

  • 第11题:

    单选题
    指出正确的表达式()
    A

     byte=128;

    B

     Boolean=null;

    C

     long l=0xfffL;

    D

     double=0.9239d;


    正确答案: D
    解析: 暂无解析

  • 第12题:

    单选题
    Which of the following is true about the MPLS header and its EXP field size?()
    A

    The MPLS header is 2 bytes,and the EXP field is 3 bits long.

    B

    The MPLS header is 1 byte,and the EXP field is 3 bits long.

    C

    The MPLS header is 4 bytes,and the EXP field is 3 bits long.

    D

    The MPLS header is 3 bytes,and the EXP field is 3 bits long.


    正确答案: B
    解析: 暂无解析

  • 第13题:

    5. If you attempt to add an int, a byte, a long, and a double, the result will be a __________ value. A. long     B. byte       C. double      D. int


    该答案选D:

    如果你尝试增加一个“整数型”、“long”、“double long”,结果将会是一个“int”型的结果。这是计算机程序默认规则。

  • 第14题:

    以下程序的输出结果是includemain(){ union un{ int i;long k;char c;};struct byte{i

    以下程序的输出结果是 #include<stdio.h> main() { union un{ int i; long k; char c;}; struct byte{ int a; long b; union un c;}r; printf("%d\n",sizeof(r));}

    A.10

    B.13

    C.7

    D.8


    正确答案:A
    解析:本题主要考查了结构体和共用体数据的存储形式。共用体的一个特点是所有数据成员共用一段存储单元,而结构体每个数据成员都单独占据一段存储单元。共用体所占存储单元的大小由长度最长的数据成员的长度决定。题中共用体变量c占据4个字节的长度,结构体r所占存储空间的大小为int(2个字节)+long(4个字节)+共用体c(4个字节)=10个字节,所以答案为A)。

  • 第15题:

    都是VB.NET中的数据类型的选项是()

    AShort、Integer、Long、Float、Double

    BShort、Int、Long、Single、Double

    CInteger、Long、Single、Double、Decimal

    DBoolen、Byte、Bit、Decimal、Date


    C

  • 第16题:

    以下对应于unsigned long 的数据类型为()。

    • A、WORD
    • B、DWORD
    • C、INT
    • D、BYTE

    正确答案:B

  • 第17题:

    Which statements concerning casting and conversion are true?()  

    • A、Conversion from int to long does not need a cast.
    • B、Conversion from byte to short does not need a cast.
    • C、Conversion from float to long does not need a cast.
    • D、Conversion from short to char does not need a cast.
    • E、Conversion from boolean to int using a cast is not possible.

    正确答案:A,B,E

  • 第18题:

    Java中整型包括()。

    • A、int,byte,char
    • B、int,short,long,byte,char
    • C、int,short,long,char
    • D、int,short,long,byte

    正确答案:D

  • 第19题:

    swtich是否能作用在byte上,是否能作用在long上,是否能作用在String上?


    正确答案: switch(expr1)中,expr1是一个整型,字符或字符串,因此可以作用在byte和long上,也可以作用在string上。

  • 第20题:

    Which of the following is true about the MPLS header and its EXP field size?()

    • A、The MPLS header is 2 bytes,and the EXP field is 3 bits long.
    • B、The MPLS header is 1 byte,and the EXP field is 3 bits long.
    • C、The MPLS header is 4 bytes,and the EXP field is 3 bits long.
    • D、The MPLS header is 3 bytes,and the EXP field is 3 bits long.

    正确答案:C

  • 第21题:

    单选题
    在C#中下列表达式不正确的是()。
    A

    double a,double b=2,int c=3,a=b+c

    B

    short a,byte b=2,byte c=3,a=b+c

    C

    string a,string b=”1” string c=”2” a=b+c

    D

    bool a,bool b=true,bool c=false a=b==c


    正确答案: C
    解析: 暂无解析

  • 第22题:

    单选题
    下面均为java关键字的一组是()
    A

    boolean ,byte,long,assert

    B

    byte,long,true,goto

    C

    goto,boolean,byte,null

    D

    boolean,long,false,auto


    正确答案: B
    解析: true,null和false都是字面量

  • 第23题:

    单选题
    都是VB.NET中的数据类型的选项是()
    A

    Short、Integer、Long、Float、Double

    B

    Short、Int、Long、Single、Double

    C

    Integer、Long、Single、Double、Decimal

    D

    Boolen、Byte、Bit、Decimal、Date


    正确答案: D
    解析: 暂无解析