matlab QUESTION 5 Define a variable named as a to be 1216739
(matlab)
QUESTION 5 Define a variable, named as \"a\", to be 1.216739058301396 x 308 Which com below can do this? 10 a 1.216739058301396e 308 All of the others. a 1.216739058301396 power(10,308) a 1.216739058301396 10A308Solution
All of the other are correct.
the simulation results are
>> format long
>> a=1.216739058301396e308
a =
1.216739058301396e+308
>> a=1.216739058301396*power(10,308)
a =
1.216739058301396e+308
>> a=1.216739058301396*10^308
a =
1.216739058301396e+308
