题目详情
当前位置:首页 > 职业培训考试
题目详情:
发布时间:2023-10-04 21:33:36

[单项选择]下面的语句片段中,变量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 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[])

byte b=011;
System.out.prinfin(b);


A. B
B. 11
C. 9
D. 011
[单项选择]下列语句输出结果为( )。 public class test   public static void main (String args[])      int x=10,y=9;    boolean b=true;    System.out.println(x<y||!b);   

A. true
B. false
C. 1
D. 0
[单项选择]阅读下面程序
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 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
a=12 b=45
B) a=12 b=45
a=100 b=200
C) a=12 b=200
a=100 b=45
D) a=100 b=45
a=12 b=200

我来回答:

购买搜题卡查看答案
[会员特权] 开通VIP, 查看 全部题目答案
[会员特权] 享免全部广告特权
推荐91天
¥36.8
¥80元
31天
¥20.8
¥40元
365天
¥88.8
¥188元
请选择支付方式
  • 微信支付
  • 支付宝支付
点击支付即表示同意并接受了《购买须知》
立即支付 系统将自动为您注册账号
请使用微信扫码支付

订单号:

截图扫码使用小程序[完全免费查看答案]
请不要关闭本页面,支付完成后请点击【支付完成】按钮
恭喜您,购买搜题卡成功
重要提示:请拍照或截图保存账号密码!
我要搜题网官网:https://www.woyaosouti.com
我已记住账号密码