05 다음 JAVA로 구현된 프로그램을 분석하여 괄호에 들어갈 알맞은 답을 쓰시오.class Parent { void show() {System.out.println("parent");}}class Child extends Parent { void show() {System.out.println("child");}}public class Test { public static void main(String[] args){ Parent pa = ( 괄호 ) Child(); pa.show(); }} 답더보기new 해설코드실행순서 및 해석1class Parent { 2 void show() {System.out.println("parent");} 3 } 4 cla..