阿里云Java语言自测考试初级难度

7次阅读

共计 2954 个字符,预计需要花费 8 分钟才能阅读完成。

单选 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

正文完
 0