05 다음 JAVA로 구현된 프로그램을 분석하여 괄호에 들어갈 알맞은 답을 쓰시오. class Car implements Runnable { int a; public void run() { try { while(++a 답더보기Car 해설코드실행순서 및 해석1class Car implements Runnable { Runnable 인터페이스 구현2int a; 3public void run() { 쓰레드 내에서 어떤 작업을 할 지를 알려주는 메서드4try { 5while(++a 6System.out.println("miles traveled : " + a); 출력: miles traveled : 1출력: miles traveled : 2…출력: miles traveled : 997Thr..