//Sample07_42.java class Sample07_42 { static void method_01(){ System.out.println("remaining time is...."); for(int i=10; i>=0; i--){ System.out.println(i); } } static void method_02(){ System.out.println("Switched to internal power supply."); } public static void main(String[] args){ System.out.println("Umbilical cable disconnected!"); method_02(); method_01(); System.out.println("Activity stopped."); } }