1. Unreachable Code In computer programming, unreachable code is part of the source code of a program which can never be executed because there exists no control flow path to the code from the rest of the program. 컴퓨터 프로그래밍에서 도달할 수 없는 코드는 프로그램의 나머지 부분에서 코드로의 제어 흐름 경로가 없기 때문에 결코 실행할 수 없는 프로그램 소스 코드의 일부입니다 >> Unreachable Code 발생 예 public void runPrompt(){ while (true) { String cmd = scanner.next()..