Courseiva
Computer Programming and Python FundamentalshardMultiple SelectObjective-mapped

PCEP Computer Programming and Python Fundamentals Practice Question

Which THREE of the following are valid ways to create a list with elements 1, 2, 3? (Choose Three)

⚠ Common exam trap

The PCEP exam often tests the distinction between list, tuple, and set literals, so candidates mistakenly choose curly-brace or parenthesis syntax as valid list creation methods.

Answer choices

Why each option matters

Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.

Correct answer & explanation

[1,2,3]

It uses the literal list syntax with square brackets and commas to directly create a list containing the integers 1, 2, and 3. This is the most straightforward and explicit way to define a list in Python.

Answer analysis

Option-by-option breakdown

For each option: why learners choose it and why it is or isn't the right answer here.

  • [1,2,3]

    Why this is correct

    Standard list literal.

  • list(range(1,4))

    Why this is correct

    range(1,4) generates 1,2,3 and list() converts to list.

  • (1,2,3)

    Why it's wrong here

    Parentheses create a tuple, not a list.

  • [x for x in range(1,4)]

    Why this is correct

    List comprehension yields [1,2,3].

  • {1,2,3}

    Why it's wrong here

    Curly braces with values create a set.

Visual reference

Client Server SYN (seq=100) SYN-ACK (seq=200, ack=101) ACK (ack=201) Connection established — data transfer begins

About these practice questions

Courseiva writes every PCEP question from scratch — 498 in total, each with an explanation and a wrong-answer breakdown. None are copied from real exams or dumps. Learn why practice questions differ from exam dumps →

How Courseiva writes practice questions · Editorial policy

JA

Written by Johnson Ajibi, MSc IT Security

Senior Network & Security Engineer · founder of Courseiva

This PCEP practice question is part of Courseiva's free Python Institute certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the PCEP exam.