Complete the code to print the type of software that helps users perform specific tasks.
print("This is an example of [1] software.")
Application software is designed to help users perform specific tasks like writing documents or browsing the internet.
Complete the sentence to identify the software that manages computer hardware.
The [1] software controls and manages hardware resources.
System software includes the operating system which manages hardware and provides services for application software.
Fix the error in the statement about software types.
An example of [1] software is the operating system.The operating system is a type of system software, not application software.
Fill both blanks to complete the comparison between software types.
Application software is used by [1] to perform tasks, while system software manages [2].
Users use application software to do tasks, and system software manages the hardware.
Fill all three blanks to complete the dictionary comprehension describing software types.
software_types = {"app": "[1]", "sys": "[2]", "example": "[3]"}The dictionary maps 'app' to application software, 'sys' to system software, and 'example' to operating system.