>> % Question 1
>> disp('This string has been written to the screen')
This string has been written to the screen
>> % Question 2
>> disp_sqrt
1.7321
>> disp_temp
The temperature is 42
>> 
x = sqrt(3);

disp(num2str(x))
T = 42;

disp(['The temperature is ',num2str(T)])