QUESTION 18자격증/OCJP_ExamC2018. 7. 24. 01:03
Table of Contents
반응형
QUESTION 18Click the Exhibit button.1. public class Threads1 {2. int x = 0;3. public class Runner implements Runnable {4. public void run(){5. int current = 0;6. for(int i = 0; i<4; i++){7. current = x;8. System.out.println(current + ", ");9. x = current + 2;10. }11. }12. }13.14. public static void main(String[] args) {15. new Threads1().go();16. }17.18. public void go(){19. Runnable r1 = new Runner();20. new Thread(r1).start();21. new Thread(r1).start();22. }23. }Which two are possible results? (Choose two.)A. 0, 2, 4, 4, 6, 8, 10, 6,B. 0, 2, 4, 6, 8, 10, 2, 4,C. 0, 2, 4, 6, 8, 10, 12, 14,D. 0, 0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 10, 12, 12, 14, 14,E. 0, 2, 4, 6, 8, 10, 12, 14, 0, 2, 4, 6, 8, 10, 12, 14,Solution : AC
반응형
'자격증 > OCJP_ExamC' 카테고리의 다른 글
QUESTION 20 (0) | 2018.07.24 |
---|---|
QUESTION 19 (0) | 2018.07.24 |
QUESTION 17 (0) | 2018.07.21 |
QUESTION 16 (0) | 2018.07.21 |
QUESTION 15 (0) | 2018.07.21 |
@IT grow. :: IT grow.
#IT #먹방 #전자기기 #일상
#개발 #일상