Answer:
n_books = int(input('Kindly enter the number of you've purchased this month'))
if n_books = 0 :
points_earned = 0
elif n_books = 1 :
points_earned = 5
elif n_books = 2 :
points_earned = 15
elif n_books = 3 :
points_earned = 30
elif n_books >= 4 :
points_earned = 60
Print('Thanks for your patronage, you now have', points_earned, 'points')
Explanation:
Using python :
n_books prompts the user to enter an integer value for the number of books purchased for the month
The integer is passed to a conditional if statement in other to find the appropriate number of points the user has earned,
After the points have been found then, the number of points is displayed using the print statement.
Which is the correct arrangement for the path of a person seeking training as an engineer?
A. Interview with accomplished engineers, attend a two-year college, and proceed to a specialty program
B. Receive a two-year specialized degree from an engineering school, and then work as an apprentice for five years
C. Complete a bachelor of science degree, master of technology degree, and then a PhD in whichever specialized area the person wants to pursue.
D. Complete a four-year bachelor's degree in a specialized field, work with a Professional Engineer, and take a Professional Engineering examination to earn a license
Answer:
b
Explanation:
Answer:
b
Explanation: