While working with numbers in ruby, there are only 2 classes that the values belong to. One will be a Fixnum class and other would be a Float class. Any value either positive or negative integer belong to Fixnum class and if the value has a decimal point it belongs to Float class Given below […]