Python: In Python, which comparison about Packaging, Source Distributions, and Wheels is accurate?

Difficulty:

Easy

Questions:

1

Time Limit:

2 minutes

Passing Score:

100%

Question

In Python, which comparison about Packaging, Source Distributions, and Wheels is accurate?

  1. There is no practical difference in behavior, performance, or maintainability when Packaging, Source Distributions, and Wheels is involved.
  2. Wheels avoid rebuild work during install, while source distributions may rely more on build tooling and environment setup.
  3. The oldest option related to Packaging, Source Distributions, and Wheels is always the right production choice regardless of workload or context.
  4. Differences around Packaging, Source Distributions, and Wheels are mostly cosmetic, so correctness and debugging quality do not really change.

Hint

Focus on the behavior or tradeoff, not just the keyword.

Answer and rationale

Correct answer: B. Wheels avoid rebuild work during install, while source distributions may rely more on build tooling and environment setup.

Wheels avoid rebuild work during install, while source distributions may rely more on build tooling and environment setup. This is the comparison that usually separates memorization from understanding.

Track: Python