I think it’s System updates bc you have to use some type of technology to be able to update whatever your doing
Answer:
#include <iostream>
using namespace std;
int main()
{
int userInput = 0;
do {
cout << "Enter a number (<100):" << endl;
cin >> userInput;
}
while(userInput >= 100);
cout << "Your number < 100 is: " << userInput << endl;
return 0;
}
Explanation:
Inside the <em>do part</em>, ask user to enter a number and get that number.
In the <em>while</em>, check if the number is greater than or equal to 100. It is going to keep asking to enter a number until a number that is smaller than 100 is entered.
Print out the number that is smaller than 100.
Answer:
The correct answer to the following question will be "JAWS".
Explanation:
- JAWS is a strong accessibility tool, which uses synthesized speech to look for information on your monitor and provides several helpful commands to make it much easier using applications, edit documentation and read pages of the web.
- It's a Microsoft Windows screen reader tool that helps visually and blind impaired people to decode the screen either via a message-to-speech interpretation or with a castable sign language display.
- JAWS is manufactured by Freedom Scientific Blind and Group of Low Vision.
Therefore, JAWS is the right answer.