当前分类: Java认证考试综合练习
问题:在下面的代码中,continue语句的作用时() for(int i=0;iif(objArray[i]!=5) ...
查看答案
问题:某一速率为100M的交换机有20个端口,其一个端口上连着一台笔记本电脑,此电脑从迅雷上下载一部1G的电影需要的时间可能是...
问题:现有: class Test2 f public static void main (String [] ar...
问题:如何设置缺省按钮?()...
问题:处理按钮点击事件的类需要实现哪个接口()...
问题:单选题public class TestApp{ public static void main(String[] args){ try{ int i = 0; int j = 1 / i; System.out.println(“1”); } catch(Exception e){ System.out.print(“3”); } finally{ System.out.print(“4”); } } } 上述程序运行后的输出是哪项?()A 4B ...
问题:BufferedWriter对象中的newLine()方法的含义是哪项?() ...
问题:单选题class Test4 { public static void main(String [] args) { boolean x = true; boolean y = false; short z = 42; if((z++ = = 42) (y = true)) z++; if((x = false) || (++z = = 45)) z++; System.out.println("z = " + z); } } 结果为:()A z = 42B z ...
问题:public class Pet{ private String name; public Pet(){ S...
问题:下面说法正确的为()...
问题:单选题class Order3 implements Runnable { public static void main(String [] args) { new Thread(new Order3()).start(); for(int x = 0; x 〈 10; x++) System.out.print("m"); } public void run() { for(int x = 0; x 〈 10; x++) { //insert code here System.out.p...
问题:单选题现有如下五个声明: Linel: int a_really_really_really_long_variable_name=5 ; Line2: int _hi=6; Line3: int big=Integer. getlnteger("7”); Line4:int $dollars=8; line5: int %opercent=9; 哪行无法通过编译?()A Line1B Line3C Line4D Line5...
问题:以下关于File对象的描述中,错误的是()...
问题:以下哪个组件不支持动作监听器?()...
问题:单选题public void testIfA(){ if(testIfB("True")){ System.out.println("True"); }else{ System.out.println("Nottrue"); } } public Boolean testIfB(Stringstr){ return Boolean.valueOf(str); } What is the result when method testIfA is invoked?()A TrueB NottrueC Ane...
问题:单选题当动作监听器激发时,会调用什么函数?()A onActivated函数;B actionPerformed函数;C doAction函数;D checkActionOn函数;...
问题:单选题如何将一个类放到包里?()A 在类的源文件开始外写上“package”关键字,后面跟包名;B 在类的源文件开始外写上包名;C 在类的源文件开始外写上包名,后面跟“package” 关键字;D 将包名作为源文件名;...
问题:单选题public class Demo{ public static void main(String[] args){ List al = new ArrayList(); al.add(“1”); al.add(“2”); al.add(“2”); al.add(“3”); System.out.println(al); } } 上述程序执行后的输出是哪项?()A [1,2,3]B [1,2,2,3]C [1,2,3,3]D [2,1,3,2]...
问题:现有: class Guy { String greet() { return "hi"; } } clas...
问题:以下算术运算符中错误的是() ...