QUESTION 18 Click 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
안녕하세요 . 오늘은 AI의 긍정적인 영향과 부정적인 영향에 대해 알려드리고자 합니다. 부정적인 영향 1.딥페이크 누군가의 얼굴을 다른 사람의 몸에 감쪽같이 붙여넣은 비디오는 딥러닝을 사용하고 신경망과 대규모 데이터 세트를 시뮬레이션해 그럴듯한 가짜 비디오를 만든다. Ex ) 페이크앱 해결방안으로 CAV(Crypto Anchor Verifier)라는 AI 기반 모조품 탐지 프로그램을 개발 하였다 . 블록체인을 사용하고 스마트폰에서 동작한다. 사용법은 어떤 제품의 사진을 찍으면 , 앱이 블록체인 원장의 데이터베이스에 대해 이미지 비교를 실행해 진품 여부를 판별한다. 데이터베이스에는 진품 업체가 제공하는 진품 사진이 가득 들어 있을 것이다. 2.가짜 뉴스 AI가 생성한 가짜 비디오를 통해 가짜 이야기가 뉴스..
QUESTION 17 Given: 11. public static void main(String[] args) { 12. Object obj = new int[] { 1, 2, 3 }; 13. int[] someArray = (int[])obj; 14. for (int i : someArray) System.out.print(i + " "); 15. } What is the result?A. 1 2 3 B. Compilation fails because of an error in line 12. C. Compilation fails because of an error in line 13. D. Compilation fails because of an error in line 14. E. A ClassCa..
QUESTION 16 Given: 1. class TestA { 2. public void start() { System.out.println("TestA"); } 3. } 4. public class TestB extends TestA { 5. public void start() { System.out.println("TestB"); } 6. public static void main(String[] args) { 7. ((TestA)new TestB()).start(); 8. } 9. } What is the result? A. TestA B. TestB C. Compilation fails. D. An exception is thrown at runtime. Solution : B
QUESTION 15 Which two classes correctly implement both the java.lang.Runnable and the java.lang. Cloneable interfaces? (Choose two.) A. public class Session implements Runnable, Cloneable { public void run(); public Object clone(); } B. public class Session extends Runnable, Cloneable { public void run() { /* do something */ } public Object clone() { /* make a copy */ } } C. public class Session..
QUESTION 14 Given: 1. class One { 2. public One foo() { 3. return this; 4. } 5. } 6. 7. class Two extends One { 8. public One foo() { 9. return this; 10. } 11. } 12. 13. class Three extends Two { 14. // insert method here 15. } Which two methods, inserted individually, correctly complete the Three class? (Choose two.) A. public void foo() {} B. public int foo() { return 3; } C. public Two foo() ..