单选 1.假设有如下程序:最终执行结果是什么?

             public class Demo {                 public static void main(String args[]) {                     int x = 10 ;                     double y = 20.2 ;                     long z = 10L;                     String str = "" + x + y * z ;                     System.out.println(str) ;                 }             }        

相关知识点:https://edu.aliyun.com/course/34

单选 2.现在有一个方法:public static int info(int x,double y),下面那个方法是对本方法的正确重载?

相关知识点:https://edu.aliyun.com/course/34

单选 3.下面关于Java程序编写描述正确的一项是?

相关知识点: https://edu.aliyun.com/course/34

单选 4.下面哪一个关键字(保留字)在Java语言中未被使用到?

相关知识点: https://edu.aliyun.com/course/34

单选 5. 运行完下面代码之后输出i的值是多少?

class Happy {                 public static void main(String args[])     {                     int i = 1 ;                         int j = i++ ;                     if((i==(++j))&&((i++)==j))     {                         i += j ;                     }                     System.out.println("i = "+i);                 }             }               

相关知识点: https://edu.aliyun.com/course/34

单选 6.假设有如下程序: 最终程序的执行结果是什么?

 public class Demo {                      public static void main(String args[]) {                                long num = 100 ;                                int x = num + 2 ;                                System.out.println(x) ;                      }             }

相关知识点: https://edu.aliyun.com/course/34

单选 7.假设有如下程序: 最终执行结果是什么?

 public class Demo {                 public static void main(String args[]) {                     System.out.println(inc(10) + inc(8) + inc(-10)) ;                 }                 public static int inc(int temp) {                     if (temp > 0) {                         return temp * 2 ;                     }                     return -1 ;                 }             }


相关知识点: https://edu.aliyun.com/course/34

单选 8.假设有如下程序: 最终执行结果是什么?

   public class Demo {                 public static void main(String args[]) {                     char c = 'A' ;                     int num = 10 ;                     switch(c) {                         case 'B' :                             num ++ ;                         case 'A' :                             num ++ ;                         case 'Y' :                             num ++ ;                             break ;                         default :                             num -- ;                     }                     System.out.println(num) ;                 }             }


相关知识点: https://edu.aliyun.com/course/34

单选 9.假设有如下程序: 最终的执行结果是什么?

  public class Demo {                 public static void main(String args[]) {                     String str = "" ;                     for (int x = 0 ; x < 5 ; x ++) {                         str += x ;                     }                     System.out.println(str) ;                 }             }


相关知识点: https://edu.aliyun.com/course/34

单选 10.假设有如下程序: 最终的执行结果是什么?

public class Demo {                 public static void main(String args[]) {                     int num = 2147483647 ;                     num += 2L ;                     System.out.println(num) ;                 }             }


相关知识点: https://edu.aliyun.com/course/34

单选 11.假设有如下程序:最终的执行结果是什么?

  public class Demo {                 public static void main(String args[]) {                     int num = 68 ;                     char c = (char) num ;                     System.out.println(c) ;                 }             }


相关知识点: https://edu.aliyun.com/course/34

单选 12.下面那种类型不属于Java的基本数据类型?


相关知识点: https://edu.aliyun.com/course/34

单选 13.假设有如下程序: 最终的执行结果是什么?

   public class Demo {                 public static void main(String args[]) {                     int num = 2147483647 ;                     num += 2 ;                     System.out.println(num) ;                 }             }


相关知识点: https://edu.aliyun.com/course/34

单选 14.下面那一项关于基本数据类型的描述是正确的?


相关知识点: https://edu.aliyun.com/course/34

单选 15.假设有如下程序:最终的执行结果是什么?

    public class Demo {                 public static void main(String args[]) {                     int num = 50 ;                     num = num ++ * 2 ;                     System.out.println(num) ;                 }             }

相关知识点: https://edu.aliyun.com/course/34

单选 16.假设有如下程序:最终执行结果是什么?

             public class Demo {                 public static void main(String args[]) {                     int sum = 0 ;                     int x = 10 ;                     while (x > 0) {                         sum += x ;                     }                     System.out.println(sum) ;                 }             }

相关知识点: https://edu.aliyun.com/course/34

单选 17.下面那个标识符不符合Java定义要求?

这道题的答案是D. 很可惜,我做错了。首位不能是数字定义。

相关知识点: https://edu.aliyun.com/course/34

单选 18.假设有如下程序: 最终执行结果是什么?

   public class Demo {                 public static void main(String args[]) {                     int sum = 0 ;                     for (int x = 0 ; x < 10 ; x ++) {                         sum += x ;                         if (x % 3 == 0) {                             break ;                         }                     }                     System.out.println(sum) ;                 }             }

相关知识点: https://edu.aliyun.com/course/34

单选 19.编译Java源程序文件产生的字节码文件的扩展名为?


相关知识点: https://edu.aliyun.com/course/34

单选 20.假设有如下程序: 最终执行结果是什么?

       public class Demo {                 public static void main(String args[]) {                     boolean flag = 10%2 == 1 && 10 / 3 == 0 && 1 / 0 == 0 ;                     System.out.println(flag ? "mldn" : "yootk") ;                 }             }

相关知识点: https://edu.aliyun.com/course/34

原文地址:http://tencent.yundashi168.com/527.html