Answer:
He should send another E-mail to all 3,000 employees to ensure they all get the E-mail
Explanation:
Calling each employee could take days so that's out.
A business letter could work i suppose but the E-mail would more likely arrive sooner.
Not everyone will read the newsletter most likely.
Therefore sending an E-mail is the smarter choose.
Answer:
What Is Interactive Media?
Interactive media is a method of communication in which the program's outputs depend on the user's inputs, and the user's inputs, in turn, affect the program's outputs. Simply put, it refers to the different ways in which people process and share information, or how they communicate with one another. Interactive media allows people to connect with others—whether that's people or organizations—making them active participants in the media they consume
I really thought i could but this is violin i play the viola sorry
Answer:
A metal faceplate with grounding means
Explanation:
metal faceplate with grounding means is required in older existing installations, where an equipment ground does not exist in a metal switch box that is located within reach of a conductive floor such as tile or cement.
In your example, you're asking the user for a number and then you're setting total and nums equal to zero. This results in your first number being ignored by the program. I included the complete working code below:
num = int(input("Enter a number: "))
total = num
nums = 1
while (total <= 100):
num = int(input("Enter a number: "))
nums = nums + 1
total = total + num
print("Sum: "+str(total))
print("Numbers Entered: "+str(nums))
I hope this helps!