An increase in the number of stress and health concerns that result from working in a computer environment.
Let's look at the available options and see what is, or is not an advantage.
Web designers have created websites that allow individuals to shop, promote business, bank, and communicate via social media sites.
* This means that people don't actually have to travel in order to do their business and meet new people. Sounds like an advantage to me, so this is a bad choice.
An increase in the number of stress and health concerns that result from working in a computer environment.
* Hmm. People getting sick. Doesn't sound like anything I'd like. So this isn't an advantage and is the correct answer.
Medical diagnoses can be made earlier
* Faster diagnoses of diseases. Sounds like an advantage to me. So this is a bad choice.
Businesses can save costs on travel by meeting online using teleconference options
* Saving money and time. Sounds like an advantage. So this is a bad choice.
Answer:
problem-solving
Explanation:
he is making sure all his problems have been resolved before starting a new shift.
Answer:
The output of code will be 10
Explanation:
We need to find output of following code:
C = 1
Sum = 0
while (c less than 10):
C = c + 3
sum = sum + c
print (sum)
Solution:
We will check the condition of while loop, if the condition is true, then the statements inside the loop will be executed. Since brackets are not available so, only one statement is linked with while loop.
First while loop will be executed c < 10 (1<10) the condition becomes true, and statement c=c+3 will be executed ( 4=1+3) and then loop condition will be checked (4<10) the condition becomes true, and statement c=c+3 will be executed ( 7=4+3) and then loop condition will be checked (7<10) the condition becomes true and statement c=c+3 will be executed ( 10=7+3) and then loop condition will be checked (10<10) the condition becomes false, so we will come outside loop body and execute: sum=sum+c (10=0+10) and print sum i. e 10
So, The output of code will be 10
Answer:
Four types of errors program should test for user input are given in explanation
Explanation:
1. Program should test that extension contains exactly three letters
2. Program should test that extension doesn't contain any number or special character
3. Program should test that extension doesn't contain any white space
4. Program should test that extension doesn't contain any punctuation mark