1. 다음 출력문을 작성하시오 class fact{ static int fact(int n) { if (n > 0) return n * fact(n - 1); else return 1; } } public static void main(String[] args) { int x = 5; System.out.println(fact(x)); } - 5*4*3*2*1 = 120 2. 123.625를 각 2진수, 8진수, 16진수로 나타내라 - 2진수: 0111 1011.101 - 8진수: 173.5 - 16진수: 7B.A 3. RISC는 ( )와 ( ) 명령어 형식이 있으며 세 개의 레지스터를 참조하는 계산형 명령어 형식이 있다. - LOAD, STORE 4. 4096*16의 MAR, MBR, AC의 비트수를 ..