WGU E010 Exam Questions and Answers Practice
Questions With Solutions and Rationales Newest 2026-2027 |
Already Graded A+
1. Python Fundamentals (CORE OA WEIGHT: HIGH)
Key Concepts
• Syntax rules (indentation, colons, structure)
• Variables and assignment
• Data types:
o int, float, str, bool
• Type conversion:
o int(), float(), str()
High-Yield OA Skills
• Predict output of simple expressions
• Identify invalid syntax
• Understand dynamic typing
Common traps
• "5" + 3 → error
• int("5") + 3 → 8
• indentation errors in blocks
2. Operators & Expressions
Types
• Arithmetic: + - * / // % **
• Comparison: == != > < >= <=
, 2|Page
• Logical: and, or, not
OA Focus
• Evaluate boolean expressions
• Understand operator precedence
Example:
x=5
y=2
print(x ** y + 3)
→ 25 + 3 = 28
3. Conditional Statements (VERY HIGH YIELD)
Structures
if condition:
elif condition:
else:
OA Focus
• Multi-branch logic
• Nested conditionals
• Truthy vs falsy values
Falsy values:
• 0, "", None, [], {}
4. Loops (TOP TESTED AREA)
FOR loops
for i in range(5):
WHILE loops
while condition:
Keywords