0
0
Operating Systemsknowledge~15 mins

What is an operating system in Operating Systems - Hands-On Activity

Choose your learning style9 modes available
What is an operating system
📖 Scenario: You want to understand the basic idea of what an operating system is by organizing simple information about it.
🎯 Goal: Create a simple list of key facts about operating systems, add a category label, organize the facts into a clear structure, and finalize the description.
📋 What You'll Learn
Create a list called os_facts with three exact facts about operating systems
Add a variable called category with the value 'Basics'
Create a dictionary called os_info that uses category as a key and os_facts as its value
Add a final key-value pair to os_info with key 'definition' and a short description of an operating system
💡 Why This Matters
🌍 Real World
Understanding operating systems is essential for using computers and devices effectively.
💼 Career
Basic knowledge of operating systems is important for IT support, software development, and computer literacy.
Progress0 / 4 steps
1
Create a list of operating system facts
Create a list called os_facts with these exact three strings: 'Manages hardware', 'Provides user interface', and 'Runs applications'.
Operating Systems
Need a hint?

Use square brackets [] to create a list and separate items with commas.

2
Add a category label
Create a variable called category and set it to the string 'Basics'.
Operating Systems
Need a hint?

Assign the string 'Basics' to the variable named category.

3
Organize facts into a dictionary
Create a dictionary called os_info with one key-value pair: the key is the variable category and the value is the list os_facts.
Operating Systems
Need a hint?

Use curly braces {} to create a dictionary and use the variable category as the key.

4
Add a definition to the dictionary
Add a new key-value pair to the dictionary os_info where the key is the string 'definition' and the value is the string 'An operating system is software that manages computer hardware and software resources.'.
Operating Systems
Need a hint?

Use square brackets to add a new key to the dictionary and assign the definition string.