Python sample question with answer 26

Fill in the blanks:
What are the correct steps to build Python from source on a Linux system?
Question 1:
Download the Gzipped source _______ from Python.org.

  1. tarball
  2. furball
  3. beach ball
Answer:
A - is the correct answer

Question 2:
Prepare your system by installing the ____ using your updated package manager.
  1. source code
  2. PSF ad tracker
  3. build requirements
Answer:
C - is the correct answer

Question 3:
Unpack the source tarball and run the ______ script with appropriate options
  1. ./python
  2. ./configure
  3. ./inject
Answer:
B - is the correct answer

Question 4:
Build Python using ______ with the -j option for parallel builds
  1. sh
  2. build
  3. make
Answer:
C - is the correct answer

Question 5:
Install the new Python version with sudo make ______ to avoid overwriting the system Python.
  1. altinstall
  2. remove
  3. install
Answer:
A - is the correct answer