What will be the output of the following pseudo-code statements:
integer a = 984, b=10
//float is a data-type to store real numbers.
float c
c = a / b
print c
Option 1 : 984
Option 2 : 98.4
Option 3 : 98
Option 4 : Error
Answer: Option 2