Test of the Java Skill(4)

2016-02-19 18:39 5 1 收藏

岁数大了,QQ也不闪了,微信也不响了,电话也不来了,但是图老师依旧坚持为大家推荐最精彩的内容,下面为大家精心准备的Test of the Java Skill(4),希望大家看完后能赶快学习起来。

【 tulaoshi.com - 编程语言 】


     Question 25:
     What will happen when you attempt to compile and run the following code?
  
     int Output = 10;
     boolean b1 = false;
     if ((b1==true)&&((Output+=10)==20)){
     System.out.println(“We are equal “ + Output);
     }
     else{
     System.out.println(“Not equal!” + Output);
     }
  
     A. Compile error, attempting to perform binary comparison on logical data type
  
     B. Compilation and output of “We are equal 10”
  
     C. Compilation and output of “Not equal! 20”
  
     D. Compilation and output of “Not equal! 10”
  
     Question 26:
     Which of the following are true?
  
     A. Java uses a time-slicing scheduling system for determining which Thread will execute.
  
     B. Java uses a pre-emptive, co-operative system for determining which Thread will execute.
  
     C. Java scheduling is platform dependent and may vary from one implementation to another.
  
     D. You can set the priority of a Thread in code.
    Question 27:
     What will happen when you attempt to compile and run the following code?
  
     public class MySwitch{
     public static void main(String argv[]){
     MySwitch ms = new MySwitch();
     ms.amethod();
     }
     public void amethod(){
     int k=10;
     switch(k){
     default:
     System.out.println(“This is the default output”);
     break;
     case 10:
     System.out.println(“ten”);
     case 20:
     System.out.println(“twenty”);
     break;
     }
     }
     }
  
     A. None of these options
  
     B. Compile time error target of switch must be an integral type
  
     C. Compile and run with output “This is the default output”
  
     D. Compile and run with output “ten”
  
     Question 28:
     What will happen when you attempt to compile and run the following code?
     public class StrEq{
     public static void main(String argv[]){
     StrEq s = new StrEq();
     }
     private StrEq(){
     String s = “Marcus”;
     String s2 = new String(“Marcus”);
     if (s==s2){
     System.out.println(“we have a match”);
     }else{
     System.out.println(“Not equal”);
     }
     }
     }
  
     A. Compile time error caused by private constrUCtor
  
     B. Output of “we have a match”
  
     C. Output of “Not equal”
  
     D. Compile time error by attempting to compare string using ==
  

来源:http://www.tulaoshi.com/n/20160219/1618508.html

延伸阅读
www.dukeJava.com 网络娇娃工作站 JBuilder 软件的目标定位是代码开发人员而不是高级设计人员,所以JBuilder中包含了大量的向导程序和其他针对中间层的快速开发工具。JBuilder性能稳定、使用方便,非凡适用于创建Java 组件。此外该软件还提供了很多jsp功能。 JBuilder本身通过内置的Java和Swing(Java的GUI...
标签: Web开发
javascript 中的 RegExp 对象用于正则表达式相关的操作,这个对象提供了一个方法 test 来判定某个字符串是否满足某个 pattern. 返回值是 true/false. 今天我碰到了一个问题: script type="text/javascript" !-- var re = /^d+(?:.d)?$/ig;    alert(re.test('112.3')); alert(re.test('33')); /...
标签: Web开发
JavaScript 中的 RegExp 对象用于正则表达式相关的操作,这个对象提供了一个方法 test 来判定某个字符串是否满足某个 pattern. 返回值是 true/false. 今天我碰到了一个问题: [Ctrl+A 全选 注:如需引入外部Js需刷新才能执行]这里两个测试的字符串应该都满足正则表达式中的模式,返回 tru...
《新绝代双骄前传》test人员专用秘籍 在启动TEST人员专用密技之前有两件事是必须要做到的 第一件就是将 UserJoy.id 放置到游戏安装目录里 第二件就是游戏目录里有一个文件叫 TTHZ.cfg 用记事本打开它来看一下 在最底下有一行[END]在这一行的下面加入如下命令后,按下储存文件并离开记事本 PassWord=ON 完成上面两件事就可以进入游戏启动...
上一节: 跟我学Java Swing之游戏设计(3) !-- frame contents -- !-- /frame contents -- 你有没有经历过装修?尽管它是件劳神费力的事,可现代人还是不遗余力地在装修上花尽心思。究竟,在这个视觉支配感观的时代里,谁会嫌自己家太漂亮呢?今天,就让我们秉着精益求精的完美主义精神,在上次已经完成的游戏界面里再做...

经验教程

695

收藏

29
微博分享 QQ分享 QQ空间 手机页面 收藏网站 回到头部