Java – Multi Threading
Multi-threading is a java process of executing two or more threads (programs) simultaneously to utilize the processor maximum. Multi-tasking: Single Threaded application: class Code{ public static void main(String args[]) { int x=10/0; }} Exception in thread “main” java.lang.ArithmeticException: / by zero