Question 105 of 511
Exceptions and File I/OmediumMultiple ChoiceObjective-mapped

Quick Answer

The correct answer is that using `readlines()` loads the entire file into memory as a list of strings, which is wasteful for large files. This inefficiency stems from the fact that `readlines()` reads every line from the file object into a list at once, consuming memory proportional to the file size. On the Certified Associate Python Programmer PCAP exam, this question tests your understanding of file handling best practices and memory management, often appearing as a common trap where candidates overlook the scalability of their code. The key insight is that iterating directly over the file object with `for line in f:` reads one line at a time from disk, avoiding the memory overhead of storing the entire file. A helpful memory tip: think of `readlines()` as "read all lines now, pay memory later," while direct iteration is "pay as you go" for each line.

PCAP Exceptions and File I/O Practice Question

This PCAP practice question tests your understanding of exceptions and file i/o. Read the scenario carefully and evaluate each option against the stated constraints before committing to an answer. After answering, compare your reasoning against the explanation and wrong-answer breakdown below. Once you have made your selection, read the full explanation to reinforce the concept and understand why each distractor is designed to mislead on exam day.

A Python script that processes log files uses the following code:

with open('log.txt', 'r') as f:

lines = f.readlines()

for line in lines:
        # process

What is a potential inefficiency in this code?

Question 1mediummultiple choice
Study the full Python automation breakdown →

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

Reading the entire file into memory may be wasteful for large files.

Option B is correct because `readlines()` loads the entire file into memory as a list of strings. For large log files, this can consume significant memory and cause performance degradation or even memory errors. A more memory-efficient approach is to iterate directly over the file object (e.g., `for line in f:`), which reads one line at a time from disk.

Key principle: Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.

Answer analysis

Option-by-option breakdown

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

  • The file is not properly closed after processing.

    Why it's wrong here

    with statement ensures closure.

  • Reading the entire file into memory may be wasteful for large files.

    Why this is correct

    Correct: readlines() loads the whole file into memory.

    Related concept

    Read the scenario before looking for a memorised answer.

  • Using readlines() is the most efficient way to iterate over lines.

    Why it's wrong here

    readlines() loads all lines into memory.

  • The file should be opened in binary mode for better performance.

    Why it's wrong here

    Binary mode doesn't improve memory usage for text.

Common exam traps

Common exam trap: answer the scenario, not the keyword

Python Institute often tests the misconception that `readlines()` is the standard or recommended way to read a file line by line, when in fact the file object itself is an iterator that should be used for large files to avoid memory bloat.

Detailed technical explanation

How to think about this question

Under the hood, `readlines()` calls `read()` internally to load the entire file content into a bytes buffer, then splits it into lines. For a file with millions of lines, this can allocate a list with millions of string objects, each with its own memory overhead. In contrast, iterating over the file object uses a buffered reader that reads chunks (typically 8 KB) and yields lines one by one, keeping memory usage proportional to the longest line rather than the entire file. This is especially critical in production environments where log files can exceed available RAM.

KKey Concepts to Remember

  • Read the scenario before looking for a memorised answer.
  • Find the constraint that changes the correct option.
  • Eliminate answers that are true in general but not in this case.

TExam Day Tips

  • Watch for words such as best, first, most likely and least administrative effort.
  • Review why wrong options are wrong, not only why the correct option is correct.

Key takeaway

Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.

Real-world example

How this comes up in practice

A media company stores terabytes of video archives that are accessed once a year for audit purposes. Moving these objects to a cold storage tier (Azure Archive, S3 Glacier, or Google Nearline) costs a fraction of hot storage. Questions like this test whether you understand storage tiers, access frequency tradeoffs, and retrieval latency requirements.

What to study next

Got this wrong? Here's your next step.

Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.

Related practice questions

Related PCAP practice-question pages

Use these pages to review the topic behind this question. This is how one missed question becomes focused revision.

Practice this exam

Start a free PCAP practice session

Short sessions build daily habit. Longer sessions build exam-day stamina. Try a timed session to simulate real conditions.

FAQ

Questions learners often ask

What does this PCAP question test?

Exceptions and File I/O — This question tests Exceptions and File I/O — Read the scenario before looking for a memorised answer..

What is the correct answer to this question?

The correct answer is: Reading the entire file into memory may be wasteful for large files. — Option B is correct because `readlines()` loads the entire file into memory as a list of strings. For large log files, this can consume significant memory and cause performance degradation or even memory errors. A more memory-efficient approach is to iterate directly over the file object (e.g., `for line in f:`), which reads one line at a time from disk.

What should I do if I get this PCAP question wrong?

Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.

What is the key concept behind this question?

Read the scenario before looking for a memorised answer.

About these practice questions

Courseiva creates original exam-style practice questions with explanations and wrong-answer analysis. It does not publish real exam questions, exam dumps, or protected exam content. Learn why practice questions differ from exam dumps →

How Courseiva writes practice questions · Editorial policy

Keep practising

More PCAP practice questions

Last reviewed: Jun 30, 2026

Question Discussion

Share a tip, memory trick, or ask about the reasoning behind this question. Do not post real exam questions, leaked content, braindumps, or copyrighted exam material. Comments are moderated and may be removed without notice.

Loading comments…

Sign in to join the discussion.

This PCAP 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 PCAP exam.