similar
long
different
short
第1题:
A.similar
B.alike
C.same
D.likely
第2题:
His face is ______ to me, but I can't remember where I've seen her.
A、similar
B、familiar
C、friendly
D、alike
第3题:
The operation of paralleling two alternators requires the voltages to be _____ and also in phase
A.zero
B.eliminated
C.different
D.equal
第4题:
第5题:
第6题:
第7题:
第8题:
Come()with me.
第9题:
What is the meaning of “short hauls”? ()
第10题:
public class Yikes { public static void go(Long n) {System.out.println(”Long “);} public static void go(Short n) {System.out.println(”Short “);} public static void go(int n) {System.out.println(”int “);} public static void main(String [] args) { short y= 6; long z= 7; go(y); go(z); } } What is the result?()
第11题:
An exception is thrown at runtime.
int Long
Compilation fails.
Short Long
第12题:
int,byte,char
int,short,long,byte,char
int,short,long,char
int,short,long,byte
第13题:
A.short
B.long
C.need
D.wanting
第14题:
A.differ
B.differs
C.different
D.difference
第15题:
下列数据类型转换,必须进行强制类型转换的是( )。
A.byte→int
B.short→long
C.float→double
D.int→char
第16题:
第17题:
第18题:
第19题:
运算符&&适用于数据类型()
第20题:
We need different kinds of paint for ()areas.
第21题:
算符&&适用于数据类型()
第22题:
public class Wow { public static void go(short n) {System.out.println(”short”); } public static void go(Short n) {System.out.println(”SHORT”);} public static void go(Long n) {System.out.println(” LONG”); } public static void main(String [] args) { Short y= 6; int z=7; go(y); go(z); } } What is the result?()
第23题:
int Long
Short Long
Compilation fails.
An exception is thrown at runtime.
第24题:
short LONG
SHORT LONG
Compilation fails.
An exception is thrown at runtime.