School of Technology | Computer Science Program
Applied Python Programming
Course Code: E010
WGU E010
Objective Assessment
Final Exam — Questions and Answers
PYTHON E010
Assessment Information
Subject: Python Programming Fundamentals
Format: Multiple Choice & Code Completion
Total Questions: 30
Answers included immediately after each question
Study guide for WGU E010 Objective Assessment preparation.
Topics covered: Python syntax, loops, functions, data structures, and debugging.
WGU | E010 Applied Python Programming | Objective Assessment
WGU E010 | Objective Assessment | Final Exam Preparation Guide
, WGU E010 — Objective Assessment Questions & Answers
EXAMINATION QUESTIONS AND ANSWERS
Q1 Which symbol begins a single-line comment in Python?
A. // (double forward slash)
B. # (pound symbol)
C. * (asterisk)
D. % (percent symbol)
✓ ANSWER:
# (pound symbol)
Q2 Which data type is the value 3.14 in Python?
A. Integer
B. Float
C. String
D. Boolean
✓ ANSWER:
Float
Q3 In Python, what must follow the in keyword in a for loop?
A. A condition
B. An iterable object
C. A number
D. A variable name
✓ ANSWER:
An iterable object
Q4 Which type of loop is designed for iterating a specific number of times?
A. while loop
B. for loop
C. infinite loop
D. do-while loop
✓ ANSWER:
for loop
Page 2