java语言基础1java语言基础1.doc

  1. 1、本文档共5页,可阅读全部内容。
  2. 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
java语言基础1java语言基础1

1.关于Java语言的特征,描述正确的是 A.支持跨平台(Windows,Linux,Unix等) B. GC(自动垃圾回收),提高了代码安全性 C.支持类似C的指针运算操作 D.java语言是面向对象的语言 2.下列表达式正确的是 A.byte b=128; B.boolean b=null; true||false C.long a = 2147483648L; D.float f=0.9239; 浮点型的默认是double型的 3.下列不属于java标识符的是 A.HelloWorld B._HelloWorld C.$HelloWorld D.HelloWorld3 E.3HelloWorld 4.下列代码的运行结果是: public class SwitchTest { public static void main (String []args) { System.out.println (“value =” +switchIt(4)); } public static int switchIt(int x) { int j = 1; switch (x) { case 1: j++; case 2: j++; case 3: j++; case 4: j++; 没有break,一直向下执行 case 5: j++; default:j++; } return j + x; } } A.Value =3 B.Value =4 C.Value =5 D.Value =6 E.Value =7 F.Value =8 5.以下程序的输出结果为: public class test { public static void main(String args[]) { int x=1,y=1,z=1; if (x--==1y++==1||z++==1) truetrue||… System.out.println(x=+x+,y=+y+,z=+z); } } A.x=0,y=2,z=1 B.x=1,y=2,z=1 C.x=0,y=1,z=1 D.x=0,y=2,z=2 6.下面的程序没有编译错误的是: A.public class Main{ public static void main(String[] args) { byte b1 = 1; byte b2 = 2; byte b = b1+b2; } } B.public class Main{ public static void main(String[] args) { int n; for(int i=0;i10;i++) { n +=i; n未赋值就使用 } } } C.public class Main{ public static void main(String[] args) { int n = 100; for(;;) { } System.out.println(n); 永远不会执行 } } D.public class Main{ public static void main(String[] args) { int n = 100; while(n0); System.out.println(n); } } 7.执行完以下代码int [ ] x = new int[25];后,下列各项正确的是: A.x[24]为0 B.x[24]未定义 C.x[25]为0 D.x[0]为空 8.下面程序的输出结果是: public static void main(String[] args) { int d = 325; int sum = 0; while (d 0) { int n = d % 10; sum += n; d /= 10; } System.out.println(sum); } A.10 B.12 C.5 D.32 9.char类型的整数范围是 A.0 .

您可能关注的文档

文档评论(0)

zyongwxiaj8 + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

1亿VIP精品文档

相关文档