PYTHON Summer Exam Questions with Answers Merged
The following code represents a ________________ if structure. if a = 1: if a == 1: - nested Which line of code sets the value of the variable take_home to 500? take_home == 1500 / (1 + 2) take_home = 250 * 6 / 1 + 2 take_home = 250 * (5 % 3) take_home = 250 * 5 - 3 - take_home = 250 * (5 % 3) Given the code message = "Your percentage score of " percentage = "95.6" letter_grade = "% is an A grade." What is the correct code to display the following result? Your percentage score of 95.6% is an A grade. - print(message + percentage + letter_grade) Given the following parallel lists, which piece of code will print out each student and their major? students = ["Jimmy", "Ravi", "Lauren"] majors = ["Accounting", "Finance", "ISA"] - for i,student in enumerate(students): print(student + ", Major: " + majors[i]) What will be displayed by the following code? age = 18 score = 550 income = 60000 if age = 20 or (score 600 and income 50000): print("approved") elif age 18 and age 20: print("approved with condition") else: print("not approved") - not approved The while keyword takes a condition just like which other keyword? - if Which of the following is a valid variable name in Python?: 1st place None of these answers 1st_place and - None of these answers What is printed by the following program? my_total = 0 do_not_stop = True while do_not_stop == True: my_total += 5 if my_total 10: do_not_stop = False print(my_total) - 15 A _____________ is Boolean variable often used to control the operation of loops. - flag What code should be added to the end of the following code
Written for
- Institution
- Programming for python language..
- Course
- Programming for python language..
Document information
- Uploaded on
- June 10, 2024
- Number of pages
- 12
- Written in
- 2023/2024
- Type
- Exam (elaborations)
- Contains
- Questions & answers
Subjects
-
python summer exam questions with answers merged