东华理工大学2017java试卷_Java东华理工大学试卷A及答案.doc

这是一份来自东华理工大学2017年的Java程序设计考试试卷,包含了选择题部分的详细答案。题目涵盖Java源代码后缀、编译命令、非法标识符、类型转换、逻辑运算、数组操作以及字符串与字符数组的处理等知识点。
摘要由CSDN通过智能技术生成

Java东华理工大学试卷A及答案.doc

东华理工大学2012 —2013 学年第 1 学期考试试卷

Java程序设计 课程 闭 课程类别:考查 A

题号一二三四五六七八九总分分数评卷人1 选择题(共35分)

1.What is suffix(后缀) of Java source code?( A )?

A、 .java B、.class C、.txt D、.ext

2. Which command can compile Java source code? ( D )?

A、 edit B、 dir C、 java D、javac

3. Which identifies is illegal ( C )?

A、$_$123 B、_something C、some**name D、you_can_al

4. Which conversion (转换) is illegal ( B )?注意:byte类型的范围-128-127

A、short x=1000; B、byte x=1000; C、byte x=100; D、float x=12L;

5.class example {

public static void main(String args[]) {

boolean b;

b = (2 > 3) && (3 < 2);

System.out.print("b = "+b);

b = false || true ;

System.out.println("b = "+b); } }

What is the result?( A )

A、b=false b=true B、b=true b= false C、b=true b= true D、b= false b= false

6. class example {

public static void main(String args[]) {

int i=1;

a[i++]=a[i++]+2;

System.out.println(a[i++]);

}} What is the result?( C )

A, 4 B, 5 C 3, D,6

7.public class Example{   String str=new String("good");   char[]ch={'a','b','c'};   public static void main(String args[]){     Example ex=new Example();     ex.change(ex.str,ex.ch);     System.out.print(ex.str+" and ");     Sytem.out.print(ex.ch); }   public void change(String str,char ch[]){     str="test ok";     ch[0]='g';  } } What is the result?( D )

A good and abc B good and gbc C test ok and abc D test ok and gbc

8. Set x=1,y=2,z=3, expression :y+=z--/++x what is result ( A )

A 3 B 3.5 C 4 D 5

9. what is result ( A )?

class example{

static int a=3;

public static void main(String args[]){

new example().a++;

new example().a+=2;

System.out.println(example.a);}}

A 6 B 7 C 4 D 5

10. 1.class X{ ( D )

2.public static void main(String args[]){

3. Stri

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值