Answer:
socialization
Explanation:
on edge
Answer:
B. Web accessibility
Explanation:
Web accessibility makes sure that every person who is physically challenged or who have a visionary problem or have a hearing problem or mentally unsound ,have reading or speaking problems can still be able to use the world wide web without any obstacles or barriers.
Web accessibility makes it easier for such people to interact with the world wide web services without any stoppages even if such people are not as the normal people.
Answer:
Software instructs hardware how to perform.
Explanation:
*TCSS Career Preparedness Q2
edge 2021
b. Deliver elegant presentations to a large audience easily
c. Create professional documents with an intuitive WYSIWYG interface
d. Organize, store, and retrieve large amounts of information easily
On edge the answer is A. Word Processing Program
1. Random secret number from 1 to 10 or any larger range if you want.
2. Two players will guess
3. Determine who was closest.
4. Display the results of the round in a neat and organized fashion.
5. Add some kind of style to your print outs so that your display is nice
In python 3+:
import random
secret_number = random.randint(1,10)
guess_one = int(input("Enter player one's guess: "))
guess_two = int(input("Enter player two's guess: "))
if abs(guess_one - secret_number) < abs(guess_two - secret_number):
print(f"The secret number is {secret_number} and player 1 was closest")
elif abs(guess_one - secret_number) > abs(guess_two - secret_number):
print(f"The secret number is {secret_number} and player 2 was closest")
else:
print(f"The secret number is {secret_number} and it was a tie")
I hope this helps!