Knowledge check

Python Programming for Application Development: Practical Python for Technology Professionals
Lesson Content
0% Complete

Q1. What is one main reason Python is popular in technology work?

  • It is only used for games
  • It is easy to read and useful for many tasks
  • It replaces all other programming languages
  • It only works on phones
Reveal answer

Answer: It is easy to read and useful for many tasks
Python is valued because it is readable and flexible. It can be used for automation, application logic, data handling, and more.


Q2. A variable is best described as a name that stores a value.

  • True
  • False
Reveal answer

Answer: True
A variable holds data so you can use it later in your program.


Q3. What does print() do in a Python script?

  • Deletes a file
  • Displays output on the screen
  • Creates a folder
  • Stops the program forever
Reveal answer

Answer: Displays output on the screen
print() sends text or values to the screen, which is useful for checking results and showing messages.