review.title

review.title

review.subtitle

5
review.stats_total
80%
review.stats_avg_score
5
review.stats_wrong_answers
85%
review.stats_improvement

Python Variables & Data Types

Python July 10, 2026
80%
2 wrong

Which of the following data types is immutable?

review.wrong_answer

List

review.correct_answer

Tuple

review.explanation

Tuples are immutable, while lists are mutable.

How many possible values does the boolean type have?

review.wrong_answer

3

review.correct_answer

2

review.explanation

Boolean type has only two values: True and False.

Web Development Fundamentals

Web Dev July 8, 2026
100%
All correct! Great job!

Data Analysis Statistics Basics

Data Science July 5, 2026
60%
1 wrong

What is standard deviation?

review.wrong_answer

The middle value of data

review.correct_answer

A measure of data dispersion

review.explanation

Standard deviation measures how spread out data points are from the mean.

Python Control Flow

Python July 3, 2026
60%
2 wrong

Which of the following is a loop statement in Python?

review.wrong_answer

if

review.correct_answer

for

review.explanation

if is a conditional statement, while for and while are loop statements.

What does the break statement do?

review.wrong_answer

Skip to the next iteration

review.correct_answer

Terminates the entire loop

review.explanation

break terminates the entire loop and exits the loop body.

ML Introduction Concepts

ML/AI July 1, 2026
100%
All correct! Great job!