Hey!
for example lets take the first part:
(011010.011 b to decimal)
integer part(011010)
(0 * 20 ) + (1 * 21) + (0 * 22 )+(1 * 23 )+ (1* 24) +(0* 25) = 26
now the decimal part:( 011)
(1* 20) + (1* 21) + (0* 22)= 3
hence the approximate ans is 26.3
And when we check for the same in WolfFramAlpha the answer is 26.375
Similarly the second part:
(1C0DE.4A h to decimal)
integer part:(1CODE)
( E* 160)+ (D* 161)+(0* 162)+ (C*163)+(1*164) { E=14 D=13 C=12 A=10)
= 114910
Decimal part :(4A)
(A*160) +( 4* 161)= 74
Hence ans is 114910.74
and on WolfFramAlpha it shows 114910.2890625