Answer:
He can use any of the audio formats like MP3 and M4A.
Explanation:
Keyboard and mouse are input/output
Webcam and microphone are audio/visual
Answer:
Snap enables you to resize open windows,
Explanation:
Snap enables you to resize open windows, It is convenient when you want to see two windows simultaneously (side by side).
To do this, drag the desired window the left\right until the cursor reaches to the edge of the screen and then release the mouse.
The window will snap into place.
/*
Since we have to check the first two options only as mentioned in last part of question the loop will work 2 times only and will compare the cost of first element and second and assign the healthoption accordingly
*/
for(int i =0;i<=1;i++){
if(annualCost[i]<annualCost[i+1]
best2 = healthOption[i]
else
best2 = healthOption[i+1]
}
Answer:
Explanation:
Let's use Python for this. We will start prompting the user for input number, until it get 0, count only if it's positive:
input_number = Input("Please input an integer")
positive_count = 0
while input_number != 0:
if input_number > 0:
positive_count += 1
input_number = Input("Please input an integer")
print(positive_count)