Complete the code to print the type of computer that is portable and has a built-in keyboard.
computer_type = "[1]" print(computer_type)
A laptop is a portable computer with a built-in keyboard, unlike a desktop which is stationary.
Complete the code to identify the computer type that is primarily used to provide services to other computers over a network.
computer_type = "[1]" print(computer_type)
A server is a computer designed to provide services and resources to other computers over a network.
Fix the error in the code to correctly assign the computer type that is handheld and used for communication.
computer_type = "[1]" print(computer_type)
Mobile devices are handheld computers used for communication, unlike desktops or servers.
Fill both blanks to create a dictionary mapping computer types to their typical usage.
usage = {
"desktop": "[1]",
"server": "[2]"
}Desktops are used at fixed locations, while servers provide network services to other computers.
Fill all three blanks to create a dictionary that maps computer types to their portability and primary use.
computer_info = {
"laptop": {"portability": "[1]", "use": "[2]"},
"mobile": {"portability": "[3]", "use": "communication"}
}Laptops are portable and used for work and entertainment. Mobile devices are handheld and used mainly for communication.