반응형
자격증/OCJP_ExamB2018. 7. 13. 19:41QUESTION 47

QUESTION 47 Given: 11. public static void main(String[] args) { 12. Integer i = new Integer(1) + new Integer(2); 13. switch(i) { 14. case 3: System.out.println("three"); break; 15. default: System.out.println("other"); break; 16. } 17. } What is the result? A. three B. other C. An exception is thrown at runtime. D. Compilation fails because of an error on line 12. E. Compilation fails because of..

티스토리 소스코드 이쁘게 올리는 방법(Color Scripter )
Etc/tistory_info2018. 7. 13. 19:37티스토리 소스코드 이쁘게 올리는 방법(Color Scripter )

안녕하세요~ IT블로그를 운영하시는 분이라면 한번쯤은 고민해 볼만한 내용을 가져와 보았습니다. 소스코드를 올릴 때 좀 더 이쁘게 소스코드를 올릴 수 있는 방법이 없을까?? 라는 생각을 해보았습니다. 그래서 알게 된 Color Scripter를 소개해 드릴려고 합니다 . 이외에도 syntaxhighlighter , Ace 등등이 있는데요 . 저는 개인적으로 이게 제일 편한거 같습니다 ㅠㅠ syntaxhighligter는 파일설치와 파일업로드 등등... 이 있고 Ace 는 비교적 정말 간단하지만 !! .. 저는 Color Scripter가 간편하고 가독성도 괜찮다고 생각했습니다. 자 본론으로 들어가 보겠습니다. 1.주소 : https://colorscripter.com/ 접속을 합니다 . ( 소스는 예제입니..

자격증/OCJP_ExamB2018. 7. 13. 19:17QUESTION 46

QUESTION 46 Given: public class Foo { static int[] a; static { a[0]=2; } public static void main( String[] args ) {} } Which exception or error will be thrown when a programmer attempts to run this code? A. java.lang.StackOverflowError B. java.lang.IllegalStateException C. java.lang.ExceptionInInitializerError D. java.lang.ArrayIndexOutOfBoundsExceptionSolution : C plus imformation Exception in ..

자격증/OCJP_ExamB2018. 7. 13. 19:14QUESTION 45

QUESTION 45 Given: static class A { void process() throws Exception { throw new Exception(); }} static class B extends A { void process() { System.out.println("B"); }} public static void main(String[] args) { new B().process(); } What is the result? A. B B. The code runs with no output. C. Compilation fails because of an error in line 12. D. Compilation fails because of an error in line 15. E. C..

자격증/OCJP_ExamB2018. 7. 13. 19:03QUESTION 44

QUESTION 44 Given: 1. class TestException extends Exception { } 2. class A { 3. public String sayHello(String name) throws TestException { 4. if(name == null) throw new TestException(); 5. return "Hello " + name; 6. } 7. } 8. public class TestA { 9. public static void main(String[] args) { 10. new A().sayHello("Aiko"); 11. } 12. } Which statement is true? A. Compilation succeeds. B. Class A does..

자격증/OCJP_ExamB2018. 7. 13. 18:09QUESTION 43

QUESTION 43 Given: static void test() throws Error { if (true) throw new AssertionError(); System.out.print("test "); } public static void main(String[] args) { try { test(); } catch (Exception ex) { System.out.print("exception "); } System.out.print("end "); } } What is the result? A. end B. Compilation fails. C. exception end D. exception test end E. A Throwable is thrown by main. F. An Except..

반응형
image