Answer:
technicians
Explanation:
the answer is technicians. in my freshmen year we made flash cards and i still have them so i remember it.
What was the options they gave you?
In very simple terms, netiquette is etiquette on the internet. It is a short form of network etiquette. It represents the importance of proper manners online. Common guidelines for good netiquette include being very courteous and avoiding instances of cyber-bullying. Although the specific protocols governing netiquette may differ depending on the forum being used, it is equally applicable to emails and surfing the internet, message boards, and chatting. In the workplace, netiquette implies that you have polite manners, and that you would want to build up relationships with people. By showing respect to your colleague through proper netiquette, it will show how productive you can be and as result, you will earn respect. Understanding netiquette in the workplace can save you from embarrassing moments. In sending job emails, for instance, always speak clearly and avoid using capitalized words, spelling errors, or slang.
Answer:
The solution code is written in Python
- import random
-
- mystery_int_1 = 3
- mystery_int_2 = 4
- mystery_int_3 = 5
- print(str(mystery_int_1) + " " + str(mystery_int_2) + " " + str(mystery_int_3))
-
- while(mystery_int_1 > 0 or mystery_int_2 > 0 or mystery_int_3 > 0 ):
- mystery_int_1 = random.randint(-5, 5)
- mystery_int_2 = random.randint(-5, 5)
- mystery_int_3 = random.randint(-5, 5)
- print(str(mystery_int_1) + " " + str(mystery_int_2) + " " + str(mystery_int_3))
Explanation:
Firstly import random module (Line 1).
Next, create three variables to hold the three mystery numbers (Line 3-5). Display the first set of three mystery numbers in one line (Line 6).
While any one of the three mysteries number still bigger than zero, the while loop will keep going (Line 8). In the loop, three new mystery numbers will be generated using the randint method (Line 9-11). We presume the random value is in range -5 to 5. Print the new set of mystery number on the same line (Line 12).