0
0
Intro to Computingfundamentals~10 mins

Storage devices (HDD, SSD) in Intro to Computing - Interactive Code Practice

Choose your learning style9 modes available
Practice - 5 Tasks
Answer the questions below
1fill in blank
easy

Complete the code to print the type of storage device that uses spinning disks.

Intro to Computing
storage_type = "[1]"
print(storage_type)
Drag options to blanks, or click blank then click option'
ASSD
BHDD
CUSB
DRAM
Attempts:
3 left
💡 Hint
Common Mistakes
Choosing SSD because it is faster, but it does not have spinning disks.
2fill in blank
medium

Complete the code to assign the storage device type that uses flash memory.

Intro to Computing
fast_storage = "[1]"
Drag options to blanks, or click blank then click option'
ASSD
BFloppy Disk
CCD-ROM
DHDD
Attempts:
3 left
💡 Hint
Common Mistakes
Choosing HDD because it is a common storage device, but it uses spinning disks.
3fill in blank
hard

Fix the error in the code to correctly check if the device is an SSD.

Intro to Computing
device = "SSD"
if device == "[1]":
    print("Fast storage detected")
Drag options to blanks, or click blank then click option'
AHDD
BUSB
CSSD
DDVD
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'HDD' which is a different device type.
4fill in blank
hard

Fill both blanks to create a dictionary mapping device names to their storage type.

Intro to Computing
storage_devices = {"Seagate": "[1]", "Samsung": "[2]"}
Drag options to blanks, or click blank then click option'
AHDD
BUSB
CSSD
DRAM
Attempts:
3 left
💡 Hint
Common Mistakes
Mixing up device brands and storage types.
5fill in blank
hard

Fill all three blanks to create a list of storage devices with their type and speed.

Intro to Computing
devices = [
    {"name": "WD Blue", "type": "[1]", "speed": [2],
    {"name": "Crucial MX500", "type": "[3]", "speed": 550}
]
Drag options to blanks, or click blank then click option'
AHDD
BSSD
C7200
D5400
Attempts:
3 left
💡 Hint
Common Mistakes
Confusing speed units or device types.