Courseiva
Functions, Tuples, Dictionaries and ExceptionsmediumMultiple ChoiceObjective-mapped

PCEP Practice Question: Functions, Tuples, Dictionaries and Exceptions

Exhibit

def func(a, b, *args, **kwargs):
    print(a, b, args, kwargs)

func(1, 2, 3, 4, x=5, y=6)

Refer to the exhibit. What is the output?

⚠ Common exam trap

The PCEP exam often tests the distinction between data types in output, and the trap here is that candidates mistakenly think print() unpacks or flattens compound objects like tuples and dictionaries into individual elements, rather than printing them as single objects.

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, 4) {'x': 5, 'y': 6}

The code uses a tuple (3, 4) and a dictionary {'x': 5, 'y': 6} as arguments to the print() function. The print() function outputs each argument separated by a space, so the tuple is printed as (3, 4) and the dictionary as {'x': 5, 'y': 6}, preceded by 1 and 2. Option D correctly shows this output.

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, 4] {'x': 5, 'y': 6}

    Why it's wrong here

    Incorrect; args are a tuple, not a list.

  • 1 2 (3, 4) {}

    Why it's wrong here

    Incorrect; kwargs should contain x and y.

  • 1 2 3 4 5 6

    Why it's wrong here

    Incorrect; the print separates them.

  • 1 2 (3, 4) {'x': 5, 'y': 6}

    Why this is correct

    Correct; args are in a tuple, kwargs in a dict.

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.