0
0
Intro to Computingfundamentals~20 mins

Cloud storage and sync in Intro to Computing - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Cloud Sync Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 Conceptual
intermediate
2:00remaining
How does cloud storage keep your files safe?

Imagine you save a photo on your phone and it uploads to cloud storage. What is the main way cloud storage keeps your files safe?

ABy making multiple copies of your files on different servers in different places
BBy deleting old files after 24 hours to save space
CBy only allowing you to access files when connected to Wi-Fi
DBy compressing files so they take less space but lose quality
Attempts:
2 left
💡 Hint

Think about how losing one copy of a file might not lose your data if there are backups.

trace
intermediate
2:00remaining
What happens when you edit a synced file?

Look at this flowchart describing what happens when you edit a file saved in cloud storage synced to your computer:

  • Edit file on computer
  • File marked as changed
  • Sync client uploads changes to cloud
  • Cloud updates file version
  • Other devices download updated file

What is the correct order of these steps?

A2,1,3,4,5
B1,3,2,4,5
C1,2,3,4,5
D1,2,4,3,5
Attempts:
2 left
💡 Hint

Think about what happens immediately after you edit a file before syncing.

Comparison
advanced
2:00remaining
Which cloud sync method handles conflicts best?

Two people edit the same cloud file at the same time on different devices. Which sync method best prevents data loss?

ALast write wins: the last saved change overwrites earlier ones
BNo sync: changes are never uploaded to avoid conflicts
CFile locking: only one person can edit at a time, others wait
DVersioning: all changes are saved as separate versions to review
Attempts:
2 left
💡 Hint

Think about how you can recover previous versions if mistakes happen.

identification
advanced
2:00remaining
Identify the cloud sync problem from this scenario

Maria edits a document offline and saves it. Meanwhile, John edits the same document online. When Maria reconnects, her changes overwrite John's without warning. What problem happened?

AFile corruption due to network error
BSync conflict without conflict resolution
CFile encryption failure
DVersion rollback to an older file
Attempts:
2 left
💡 Hint

Think about what happens when two people edit the same file separately.

🚀 Application
expert
2:00remaining
Calculate storage usage with sync and versioning

You have a cloud folder synced to your computer. The folder contains 3 files: A (2MB), B (3MB), and C (5MB). You edit file B twice, creating 2 extra versions (each 3MB). How much total cloud storage is used?

A16 MB
B11 MB
C9 MB
D13 MB
Attempts:
2 left
💡 Hint

Add the original files plus all versions stored in the cloud.