QUESTION 35자격증/OCJP_ExamD2018. 8. 5. 20:54
Table of Contents
반응형
QUESTION 35Given:1. import java.util.*;2.3. public class LetterASort {4. public static void main(String[] args) {5. ArrayList<String> strings = new ArrayList<String>();6. strings.add("aAaA");7. strings.add("AaA");8. strings.add("aAa");9. strings.add("AAaa");10. Collections.sort(strings);11. for (String s : strings) {12. System.out.print(s + " ");13. }14. }15. }What is the result?A. Compilation fails.B. aAaA aAa AAaa AaAC. AAaa AaA aAa aAaAD. AaA AAaa aAaA aAaE. aAa AaA aAaA AAaaF. An exception is thrown at runtime.Solution : C
plus imformation
Collection.sort(strings) : String 배열의 Strings를 정렬시킨다 . 이때 알파벳이기 때문에 알파벳 순으러 정렬이 된다 .
--> 특별한 조건이 없으므로 , 대소문자 구별을 통해 정렬을 시킨다 .
반응형
'자격증 > OCJP_ExamD' 카테고리의 다른 글
QUESTION 34 (0) | 2018.08.05 |
---|---|
QUESTION 33 (0) | 2018.08.05 |
QUESTION 32 (0) | 2018.08.05 |
QUESTION 31 (0) | 2018.08.05 |
QUESTION 30 (0) | 2018.08.05 |
@IT grow. :: IT grow.
#IT #먹방 #전자기기 #일상
#개발 #일상