which оf the fоllоwing will not аffect distirtion
Instructiоns Answer аll questiоns in the sаme file nаmed: 140Mоdule1Quiz.py. Follow proper Python syntax and formatting. Use correct spelling, capitalization, and punctuation where required. Show all code clearly. Question 1: Basic Output (print function) Write 2 print statements that output: Your full name Your major Each piece of information must appear on a separate line. Question 2: Basic Arithmetic and Variables A ferry has a maximum weight capacity of 200 tons. There are currently 8 vehicles onboard, and each vehicle weighs 20 tons. Write a Python code snippet that: Use variables to store each of the given values. Each variable should be appropriately named. Calculates the total weight currently onboard. Calculates the remaining weight capacity. Prints the result in the exact format below: The ferry can still hold ___ tons. (Replace the blank with the calculated value.) Question 3: Professional Communication Write an example message to your instructor in your code using multiline comments. Your message must include: At least 2 complete sentences in the body A polite closing Your name Example Message: Hi Dr. Hellar, I hope this message finds you well. This quiz was super easy for me to complete. Thank you, [Your Name Goes Here] Question 4: Algorithm Using Comments Consider the ferry from Question 2. Assume it now has 50 tons of remaining capacity. Using only comments (no actual Python code), write an algorithm that outlines the steps to determine whether a new vehicle can board the ferry. Your comments should: Clearly describe each step of the process Include checking the vehicle's weight Include comparing the vehicle's weight to the remaining capacity State what should happen if the vehicle can board State what should happen if the vehicle cannot board Example format: # Step 1: ... # Step 2: ... # Step 3: ...