Answer:
-the reasons why they should be ethical
-how to communicate professionally
Explanation:
GOT IT RIGHT ON ODYSSEY
Machine Language is a language used to communicate with the Central Processing Unit (also known as the CPU)
Answer:
def countup():
pass
def countdown():
pass
x = int(input("Choose a number: "))
if x >= 0:
countup()
if x < 0:
countdown()
Explanation:
I start by getting a user input which is saved to variable called "x." I then make if statements to see whether is greater than, equal to, or less than 0. After that, I call the functions.