오늘 ITworld에서 기사하나를 보았다. 서울도시가스에서 인공지능 기반한 채팅 상담 시스템을 도입한다는 기사였다. 서울도시가스는 모바일 고객센터 ‘가스앱’을 통해 제공하던 ‘AI(인공지능) 챗봇 서비스 상담톡’에 전문 상담사와의 채팅 기능을 추가한 ‘AI 채팅 상담 시스템’을 도입했다고 밝혔다. 서울도시가스의 ‘가스앱’은 다양한 민원을 24시간 응대할 수 있는 AI 챗봇 서비스 ‘상담톡’을 제공해 왔으며, 이번 AI 채팅 상담 시스템 도입으로 전문 상담사와의 선택적 채팅 상담을 통해 AI 챗봇이 해결하기 어려운 특화 업무를 효율적으로 처리할 수 있게 되었다. 요금 조회, 미납 내역 조회, 요금 납부, 방문 예약 등 주요 업무는 24시간 지원 가능한 AI 챗봇이 응대하고, AI가 해결할 수 없는 특수하거..
QUESTION 58 Given: 11. public class Test { 12. public static void main(String [] args) { 13. int x = 5; 14. boolean b1 = true; 15. boolean b2 = false; 16. 17. if ((x == 4) && !b2 ) 18. System.out.print("1 "); 19. System.out.print("2 "); 20. if ((b2 = true) && b1 ) 21. System.out.print("3 "); 22. } 23. } What is the result? A. 2 B. 3 C. 1 2 D. 2 3 E. 1 2 3 F. Compilation fails. G. An exception is..
QUESTION 57Given: static void test() throws RuntimeException { try { System.out.print("test "); throw new RuntimeException(); } catch (Exception ex) { System.out.print("exception "); }} public static void main(String[] args) { try { test(); } catch (RuntimeException ex) { System.out.print("runtime "); } System.out.print("end ");} What is the result? A. test end B. Compilation fails. C. test runt..
QUESTION 56 Given: 1. public class Mud { 2. //insert code here 3. System.out.println("hi"); 4. } 5. } And the following five fragments: public static void main(String...a){ public static void main(String.* a) { public static void main(String... a) { public static void main(String[]... a) { public static void main(String...[] a) { How many of the code fragments, inserted independently at line 2, ..
QUESTION 55 Given: 1. public class Threads4 { 2. public static void main (String[] args) { 3. new Threads4().go(); 4. } 5. public void go() { 6. Runnable r = new Runnable() { 7. public void run() { 8. System.out.print("foo"); 9. } 10. }; 11. Thread t = new Thread(r); 12. t.start(); 13. t.start(); 14. } 15. } What is the result? A. Compilation fails. B. An exception is thrown at runtime. C. The c..
QUESTION 54 Given: 1. public class LineUp { 2. public static void main(String[] args) { 3. double d = 12.345; 4. // insert code here 5. } 6. } Which code fragment, inserted at line 4, produces the output | 12.345|? A. System.out.printf("|%7d| \n", d); B. System.out.printf("|%7f| \n", d); C. System.out.printf("|%3.7d| \n", d); D. System.out.printf("|%3.7f| \n", d); E. System.out.printf("|%7.3d| \..