Answer:
Explanation:
The complete detailed explanation which answer the question efficiently is shown in the attached files below.
I hope it helps a lot !
<em>Answer:</em>
<h3><em>1. Check mirrors</em></h3><h3><em>2. Put on your seat belt</em></h3>
<em>Explanation:</em>
<em>1. Checking your mirrors are very important because if someone screwed with them then it can mess up your driving. </em>
<em />
<em>2. Putting on your seat belt is a law so you must put it on and it can save your life one day. </em>
Answer:
function summedValue = SummationWithLoop(userNum)
% Summation of all values from 1 to userNum
summedValue = 0;
i = 0;
% use a while loop that assigns summedValue with the
% sum of all values from 1 to userNum
while(i <= userNum)
summedValue = summedValue + i;
i = i + 1;
end
end
You need to explain it more simple as everyone is clueless