50.下面语句执行后,i 的值是( )。
for( int i=0, j=1; j < 5; j+=3 ) i=i+j;
A) 4 B) 5 C) 6 D) 7
51.设有定义 float x=3.5f, y=4.6f, z=5.7f;则以下的表达式中,值为true的是( )。
A) x > y || x > z B) x != y
C) z > ( y + x ) D) x < y & ! ( x < z )
52.下列语句序列执行后,i的值是( )。
int i=16;
do { i/=2; } while( i > 3 );
A) 16 B) 8 C) 4 D) 2
53.以下由 for 语句构成的循环执行的次数是( )。
for ( int i = 0; true ; i++) ;
A) 有语法错,不能执行 B) 无限次
C) 执行1次 D) 一次也不执行
54.定义类头时能使用的修饰符是( )。
A) private B) static C) abstract D) protected
55.设int 型变量 a、b,float 型变量 x、y,char 型变量 ch 均已正确定义并赋值,
正确的switch语句是( )。
A) switch (x + y) B) switch ( ch + 1 )
{ ...... } { ...... }
C) switch ch D) switch ( a + b );
{ ...... } { ...... }
56. 下列最终属性 i 的定义中,正确的是( )。
A) static final int i=100; B) final int i=1.2;
C) final i='w'; D) final char i;
57. 下列类定义中,不正确的是( )。
A) class x { .... }
B) class x extends y { .... }
C) static class x implements y1,y2 { .... }
D) public class x extends Applet { .... }
58. 设 x、 y为已定义的类名,下列声明x类的对象x1的语句中正确的是( )。
A) static x x1; B) public x x1=new x(int 123);
C) y x1; D) x x1=x( );
59. 设 i、j、k 为类 x 中定义的 int 型变量名,下列类 x 的构造函数中不正确的是( )。
A) x( int m){ ... } B) void x( int m){ ... }
C) x( int m, int n){ ... } D) x( int h,int m,int n){ ... }
60. 下列方法定义中,正确的是( )。
A) int x( ){ char ch='a'; return (int)ch; } B) void x( ){ ...return true; }
C) int x( ){ ...return true; } D) int x( int a, b){ return a+b; }
61. 用于定义类成员的访问控制权的一组关键字是( )。
A) class, float, double, public B) float, boolean, int, long
C) char, extends, float, double D) public, private, protected
62. 不能构成循环的语句是( )。
A) for 语句 B) while 语句 C) switch 语句 D) do__while 语句
63. 下列程序段执行后 b3 的结果是( )。
boolean b1=true, b2, b3;
b3= b1 ? b1 : b2;
A) 0 B) 1 C) true D) false
64. 下面数据结构中,属于非线性的是( )。
A) 线性表 B) 树 C) 队列 D) 堆栈
65. 设有定义 int i=123; long j=456; 下面赋值不正确的语句是( )。
A) j=i; B) j=(long)i; C) i=(int)j; D) i=j;