Some example's of coding affecting real life:
- Robots used in factories. can work in extreme conditions.
- Automatic Heater or Air Conditioner.
- Expert Systems used in for Medical Use.
The ways to add a photograph to a slide is given below: What to write when composing the email is also given below.
<h3>How do you Insert photos into a slide?</h3>
The steps are given below?\
- The first thing to do is to open the slide you want to insert the image on.
- then click on Insert menu, and take the cursor to the Picture, and then one can click Photo Browser or insert pictures.
- Then select the picture that you want and and one can drag it onto the slide.
Note that it is essential to follow the steps and one can add as many pictures as they want to their slides.
Learn more about e-mail from
brainly.com/question/24506250
#SPJ1
Small programs stored on the harddrive that provide basic functionality for he devices listed would be called Hardware Drivers.
I hope this helps!
Answer:
4 5 6
Explanation:
Since there is a do-while loop, you need to check the values for each iteration until the condition (Count <= X) is not satisfied.
First iteration -> Count = 1 and X = 3, Y = 1 + 3, Write Y -> 4
Second iteration -> Count = 2 and X = 3, Y = 2 + 3, Write Y -> 5
Third iteration -> Count = 3 and X = 3, Y = 3 + 3, Write Y -> 6
After the third iteration count is equal to 4 and X is equal to 3. That is why loop ends.