Input is the right answer.hope it helps.
True.... ca i have brainliest?
Answer:
def main():
# Initialize variables
numGuesses = 0
userGuess = -1
secretNum = 5
name = input("Hello! What is your name?")
while ( userGuess != secretNum):
userGuess = int(input("Guess a number between 1 and 20: "))
numGuesses = numGuesses + 1
if (userGuess < secretNum):
print("You guessed " + str(userGuess) + ". Too low.")
if (userGuess > secretNum):
print("You guessed " + str(userGuess) + ". Too high.")
print("You guessed " + str(userGuess) + ". The correct number is " + secretNum + " after " + numGuess + " times.")
main()
Explanation:
add a While until userGuess == secretNum than we stop
Answer:
The correct answer is C. Acquisition means only one company became history which is the acquired company, while the acquiring company remains.
Explanation:
An acquisition occurs when one company or corporation takes control of another (the name itself indicates that the company that acquires the other is the dominant one). Generally, larger companies acquire smaller ones. In such cases, the company acquires a smaller one and establishes itself as the owner.