To put it simply, 12 degrees C is 12 away from 0 and -20 degrees C is 20 away from 0. Taking these two inputs and adding them together should give you 32. So 12 degrees C is 32 degrees warmer than -20 degrees C
Answer:
40% number of calories have increased
Step-by-step explanation:
Old Value ( Calories consume before) = 2000
New Value (increase in Calories consumed) = 2800
We need to find by what percent did the number of calories increase
To find percent increase, the formula used is:

Putting values in formula and finding percent increase

So, 40% number of calories have increased
Answer:
Lateral Area of a Cylinder = 2πrh
=2π x 3 x 6
=36π
Option D
Answer:
D
Step-by-step explanation:
Answer:
clc%clears screen
clear all%clears history
close all%closes all files
p=250;
M=[];
for i=1:100000
re=0;
S=0;
while(S<=1)
S=S+rand;
re=re+100;
end
M(i)=re;
end
disp('Expected received money is');
mean(M)
disp('Since expcted is greater than what we pay. So, we will play')
Step-by-step explanation: