阿里雲Java語言自測考試-初級難度

image.png

單選 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) ;
                 }
             }

image.png

相關知識點:https://edu.aliyun.com/course/34html

單選 2.如今有一個方法:public static int info(int x,double y),下面那個方法是對本方法的正確重載?

image.png

相關知識點:https://edu.aliyun.com/course/34java

單選 3.下面關於Java程序編寫描述正確的一項是?

image.png

相關知識點: https://edu.aliyun.com/course/34app

單選 4.下面哪個關鍵字(保留字)在Java語言中未被使用到?

image.png

相關知識點: https://edu.aliyun.com/course/34spa

單選 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);
                 }
             }

image.png

相關知識點: https://edu.aliyun.com/course/343d

單選 6.假設有以下程序: 最終程序的執行結果是什麼?

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

image.png

相關知識點: https://edu.aliyun.com/course/34code

單選 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 ;
                 }
             }

image.png
相關知識點: https://edu.aliyun.com/course/34htm

單選 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) ;
                 }
             }

image.png
相關知識點: https://edu.aliyun.com/course/34blog

單選 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) ;
                 }
             }

image.png
相關知識點: https://edu.aliyun.com/course/34rem

單選 10.假設有以下程序: 最終的執行結果是什麼?

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

image.png
相關知識點: https://edu.aliyun.com/course/34get

單選 11.假設有以下程序:最終的執行結果是什麼?

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

image.png
相關知識點: https://edu.aliyun.com/course/34

單選 12.下面那種類型不屬於Java的基本數據類型?

image.png
相關知識點: 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) ;
                 }
             }

image.png
相關知識點: https://edu.aliyun.com/course/34

單選 14.下面那一項關於基本數據類型的描述是正確的?

image.png
相關知識點: 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) ;
                 }
             }

image.png

相關知識點: 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) ;
                 }
             }

image.png

相關知識點: https://edu.aliyun.com/course/34

單選 17.下面那個標識符不符合Java定義要求?

image.png

這道題的答案是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) ;
                 }
             }

image.png

相關知識點: https://edu.aliyun.com/course/34

單選 19.編譯Java源程序文件產生的字節碼文件的擴展名爲?

image.png
相關知識點: 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") ;
                 }
             }

image.png

相關知識點: https://edu.aliyun.com/course/34

原文地址: http://tencent.yundashi168.com/527.html
相關文章
相關標籤/搜索