Python sample question with answer 25

Question 1:
To prepare for building Python from source on CentOS and Fedora, you first need to update the ____ package manager.

  1. yep
  2. yum
  3. mhm
Answer:
B - is the correct answer

Question 2:
After updating, install the necessary build dependencies with the following commands:
1 - first:
sudo yum -y ______ "Development Tools"
  1. install
  2. update
  3. groupinstall
Answer:
C - is the correct answer

Question 3:
2 - after that:
$ sudo yum -y ______ gcc openssl-devel bzip2-devel libffi-devel
  1. install
  2. groupinstall
  3. inform
Answer:
A - is the correct answer