Answer:
1000 500 250 125 the output
Explanation:
write a program using integers userNum and x as input, userNum divided by
x four times. EX : If the input is 2000 2 the output is 1000 500 250 125
Answer:
second_int = "Enter the second integer: "
usernum = int(input("Enter the first integer: "))
x = int(input(second_int))
usernum = usernum // x
print(usernum, end= ' ')
usernum = usernum // x
print(usernum, end= ' ')
usernum = usernum // x
print(usernum, end= ' ')
usernum = usernum // x
print(usernum)
Explanation:
im good
The D. Company Name most likely stands out on a business card with an address or such in smaller font below. A logo does nothing for a business card if a potential customer doesn't even know the name of the business. While logo's are often present on a business card, the company name is far more crucial to enunciate clearly which is of course, important for business's attraction of new customers.
So D. Company Name is my final answer!
Hope this helps! ;)
B. training is the correct answer
Explanation:
The second for loop does 1 of 4 iterations for every 1 of 5 iterations of the parent loop. meaning it is 4 x 5 which is 20.