更多"下面的语句片段中,变量result结果为( )。 public cl"的相关试题:
[单项选择]下面的语句片段中,变量result结果为( )。
public class Test
public static void main (String args[ ])
int sum=0;
int r=2;
iht result=(sum==1sum:r);
System. out. println (result);
A. 1
B. 2
C. 10
D. 0
[单项选择]下列语句中变量result的结果为( )。 public class test public static void main(String args[ ]) int sum=10; int r=3; int result=sum %( ++r); System.out.println(result);
A. 3
B. 10
C. 2
D. 4
[单项选择]下列程序test类中的变量e的最后结果为( )。 public class test public static void main (String args[]) int a=10; int b; int c; if(a>50) b=9; c=b+a;
A. 10
B. 0
C. 19
D. 编译出错
[单项选择]下面程序片段的运行结果是( )。
public class Test
public static void main (String args[])
int a=10,b=4,c=20,d=6;
System.out.println (a++ *b+c* --d);
A. 144
B. 160
C. 140
D. 164
[单项选择]下面语句执行后,i的值是______。
public class Test11
public static void main(String[] args)
int i=0;
for( int j=10; j>5&&i<5; j-=3,i+=2 )
i=i+j;
System. out.println (i);
A. 10 B. 9 C. 8 D. 12
[单项选择]下列语句输出结果为( )。 public class test public static void main (String args[]) Strings1=newString("HOW"); Strings2=newString("How"); System.out.println(!(s1.equals(s2))):
A. false
B. true
C. 0
D. 1
[单项选择]下列语句输出结果为( )。 public class test public static void main(String args[]) byte b=011; System.out.prinfin(b);
A. B
B. 11
C. 9
D. 011
[单项选择]阅读下面程序
public class Test implements Runnable
public static void main(String[]args)
_______________________________________;
t. start( );
public void mR( )
System. out. println("Hello!");
}
在程序下画线处填入正确选项是
A. Test t=flew Test()
B. Thread t=new Thread();
C. Thread t=new Thread(new Test());
D. Test t=new Thread();
[单项选择]阅读下面程序
class Test implements Runnable
public static void main(String[] args)
Test t=new Test( );
t.start( ):
public void run( )
下列关于上述程序的叙述正确的是
A. 程序不能通过编译,因为start()方法在Test类中没有定义
B. 程序编译通过,但运行时出错,提示start()方法没有定义
C. 程序不能通过编译,因为run()方法没有定义方法体
D. 程序编译通过,且运行正常
[单项选择]阅读下面代码
class Test implements Runnable
public int run( )
int i=0;
while(true)
i++;
System.out.println("i="+i);
上述代码的编译结果是
A. 程序通过编译,并且run()方法可以正常输出递增的i值
B. 程序通过编译,调用run()方法将不显示任何输出
C. 程序不能通过编译,因为while的循环控制条件不能为true
D. 程序不能通过编译,因为run()方法的返回值类型不是void
[单项选择]阅读下面代码
public class Test implements Runnable
public void run(Thread t)
System.out.println("Running");
public static void main(String[] args)
Thread tt=new Thread(new Test( ));
tt.start( );
代码运行的结果是
A. 将抛出一个异常
B. 没有输出并正常结束
C. 输出“Running”并正常结束
D. 程序第2行将出现一个编译错误
[单项选择]
阅读下面程序
public class Test implements Runnable{
public static void main(String[]args){
_______________________________________;
t. start( );
}
public void mR( ){
System. out. println("Hello!");
}
}
在程序下画线处填入正确选项是()
A. Test t=flew Test()
B. Thread t=new Thread();
C. Thread t=new Thread(new Test());
D. Test t=new Thread();
[单项选择]阅读下面程序
public class Test3
public static void main(String args[])
int x=3, y=4, z=5;
String s="xyz";
System.out.primln(s+x+y+z);
程序运行的结果是
A. xyzl2
B. xyz345
C. xyzxyz
D. 12xyz
[单项选择]阅读下面代码
public class Test2005
public static void main(String args[])
System.out.println(~(Oxa5)&Oxaa);
其运行结果是
A. Oxa5
B. 10
C. Ox50
D. Oxaa
[单项选择]阅读下面代码
public class Test
public static void main(String[]args)
System.out.println(2>010:8);
其运行的结果是
A. 2
B. 0
C. 10
D. 8
[单项选择]下列语句序列执行后,k的值是( )。
public class Test
public static void main(String[] args)
int m=3, n=6, k=0;
while((m++)<(n--)) ++k;
System. out. println(k);
A. 0
B. 1
C. 2
D. 3
[单项选择]下面程序段的输出结果为
public class Test
int a,b;
Test( )
a=100;
b=200;
Test(int x,int y)
a=x;
b=y;
public static void main(String args[])
Test Objl=new Test(12,45);
System.out.println("a="+objl.a+" b="+Objl.b);
Test Obj2=new Test( );
System.out.println("a="+Obj2.a+" b="+Obj2.b);
A. a=100 b=200
B. a=12 b=45
C. a=12 b=200
D. a=100 b=45