Answer:
its D
Explanation:
The social worker likes to work with other people, so he/she might not like working alone.
Technician B because you put grease on the sealing lip
This is honestly an answer you can give. What would you name a business if you made one?
Answer:
It is the very last statement (bottom). Also copied to the the client
Explanation:
Answer:
numbers = 1:1:100;
for num=numbers
remainder3 = rem(num,3);
remainder5 = rem(num,5);
if remainder3==0
disp("Yee")
else
if remainder3 == 0 && remainder5 == 0
disp ("Yee-Haw")
else
if remainder5==0
disp("Haw")
else
disp("Not a multiple of 5 or 4")
end
end
end
end
Explanation:
- Initialize the numbers variable from 1 to 100.
- Loop through the all the numbers and find their remainders.
- Check if a number is multiple of 5, 3 or both and display the message accordingly.