2024년 1회 실기 기출문제1. 다음 Java 코드에서 알맞는 출력 값을 작성하시오.1234567891011121314151617181920212223242526272829303132333435363738394041class Connection { private static Connection _inst = null; private int count = 0; static public Connection get() { if(_inst == null) { _inst = new Connection(); return _inst; } return _inst; } public void count..