{ In this example we want to start showing some of the error handling capabilities This one is a division by zero. } program helloworld(); begin Marc:=12; Evaluation --> Marc := 12 Venus:=6; Evaluation --> Venus := 6 Earth:=0-(Marc/2); Evaluation --> Earth := -6 Paul:=2*Car+6; {The next line contains a division by zero that should be caught} Sarah:=120/(Marc/(Venus+Earth)); Error: Division by 0 error. Java Result: 1