Answer:
he intentado encender la computadora mono
Explanation:
name = input("What's your name? ")
print("Hello " + name + ", welcome to my quiz!")
score = 0
di = {"qustion1": "answer1", "qustion2": "answer2", "qustion3": "answer3", "qustion4": "answer4", "qustion5": "answer5", "qustion6": "answer6",
"qustion7": "answer7", "qustion8": "answer8", "qustion9": "answer9", "qustion10": "answer10"}
for x in di:
user_answer = input(x+" ")
if user_answer == di[x]:
print("That's correct!")
score += 1
else:
print("The correct answer is " + str(di[x]))
print("You got "+str(score)+" out of 10!")
I iterated through a dictionary with the questions and answers as the keys and values respectively. I hope this helps!
The opportunity cost for LeBron James was having to choose whether he should play college basketball and then risk injury or to enter the NBA draft.
<h3>What is an opportunity cost?</h3>
An opportunity cost is also referred to as alternative forgone and it can be defined as the value, profit or benefits that are given up and forfeited by an individual or business firm, in order to choose or acquire something that is deemed most significant at a particular point in time.
In this context, we can infer and logically deduce that the opportunity cost for LeBron James was having to choose whether he should play college basketball and then risk injury or to enter the NBA draft.
In conclusion, LeBron James was left with the choice of choosing between playing college basketball and then risk injury or to enter the NBA draft.
Read more on opportunity cost here: brainly.com/question/8846809
#SPJ1