Dividing a number by another number is a simple enough task, but sometimes we end up diving by zero which causes the program to crash and pre-maturely terminate.
xxxxxxxxxx
val dividend = 10
val divisor = 0
val quotient = dividend/divisor
println(quotient)