This chapter covers cloud synchronization tools—specifically OneDrive, Google Drive, and iCloud—as tested in CompTIA A+ 220-1101 Objective 4.2. These tools are essential for modern mobile device management, data backup, and cross-platform file access. Expect 2–3 exam questions on cloud sync concepts, configuration, and troubleshooting. Master the differences in storage limits, sync behavior, and platform integration to answer correctly.
Jump to a section
Imagine a public library that has a main branch (the cloud) and multiple satellite branches (your devices). Each satellite branch has a copy of certain books (files). When a patron checks out a book from a satellite branch, the librarian scans the barcode, records the patron's name, and updates the central catalog to show the book is checked out. The librarian also sets a timer: if the book isn't returned within 14 days, the system sends a reminder. Now, if another patron at a different satellite branch tries to check out the same book, the system blocks it because the central catalog shows it's already taken. This is exactly how cloud sync with conflict resolution works: when you modify a file on your laptop, the sync agent (librarian) uploads the change to the cloud (central catalog) and downloads the updated version to your phone (satellite branch). If you edit the same file on two devices before sync, the system creates a conflicted copy (like two patrons claiming the same book). The cloud server timestamps each change, and the sync agent uses the most recent timestamp to decide which version wins. The library also allows offline browsing: you can take a book home (local copy) and read it without internet, and when you return, the librarian checks for updates. This mirrors how OneDrive, Google Drive, and iCloud handle offline files with selective sync.
What Cloud Sync Tools Are and Why They Exist
Cloud sync tools like OneDrive, Google Drive, and iCloud enable users to store files in a remote server (the cloud) and automatically synchronize those files across multiple devices. The primary purpose is to provide a centralized, always-available copy of data that can be accessed from anywhere, while also maintaining local copies for offline work. For the 220-1101 exam, you need to understand the core functionality: file storage, sync, sharing, and backup. These tools are not just storage—they are synchronization engines.
How Cloud Sync Works Internally
All three tools use a similar mechanism: a client application runs on the device, monitors a designated folder (or folders), and watches for file changes. When a file is created, modified, or deleted, the client uploads the change to the cloud server. The server then propagates that change to all other devices associated with the same account. This is done using a combination of file monitoring (e.g., Windows ReadDirectoryChangesW API), delta sync (only uploading changed portions, not entire files), and conflict resolution (if two devices modify the same file before sync, a conflicted copy is created).
OneDrive: Uses a proprietary sync engine that integrates deeply with Windows. It supports Files On-Demand, which allows users to see all files in the cloud without downloading them locally until needed. The sync client uses a local database (%LocalAppData%\Microsoft\OneDrive\settings\Business1\ClientPolicy.db) to track file states.
Google Drive: Uses the Google Drive for Desktop client (formerly Backup and Sync). It creates a virtual drive letter (G:) by default on Windows, and files are streamed on demand. It uses Google's proprietary sync protocol over HTTPS.
iCloud: Uses iCloud Drive, which is integrated into macOS and iOS. On Windows, a separate iCloud for Windows client is required. It uses Apple's CloudKit framework for sync.
Key Components, Values, and Defaults
Storage Limits (as of 2025): - OneDrive: 5 GB free (for personal), 1 TB for Microsoft 365 subscribers. Business plans have 1 TB per user, expandable. - Google Drive: 15 GB free (shared across Gmail, Google Photos, and Drive). Google One plans offer 100 GB, 200 GB, 2 TB, etc. - iCloud: 5 GB free. Paid plans: 50 GB, 200 GB, 2 TB, etc.
Sync Behavior: - All three support selective sync: you can choose which folders to sync to a particular device. - All three support offline access: files marked as "available offline" are downloaded to the local device. - Conflict resolution: When two devices modify the same file simultaneously, the later one to sync wins, and a copy named "filename (conflicted copy)" is created.
Platform Support: - OneDrive: Windows, macOS, iOS, Android, Web. Deep integration with Windows and Office 365. - Google Drive: Windows, macOS, iOS, Android, Web. Best integration with Google Workspace (Docs, Sheets, etc.). - iCloud: macOS, iOS, Windows (limited), Web. Best integration with Apple ecosystem.
Configuration and Verification:
- OneDrive: Configure via system tray icon > Settings. Verify sync status: right-click file > check status (green checkmark = synced, blue cloud = online-only, solid green = locally available). Use onedrive.exe command-line switches for advanced control.
- Google Drive: Configure via system tray icon > Preferences. Verify sync status: file icons show a green checkmark (synced), blue cloud (online-only), or gray (syncing).
- iCloud: Configure via System Preferences (macOS) or iCloud for Windows. Verify status in Finder or File Explorer with status icons.
Interaction with Related Technologies
Mobile Device Management (MDM): In enterprise environments, OneDrive and Google Drive can be managed via MDM policies. For example, admins can enforce that corporate data is only stored in OneDrive, not locally. iCloud is often restricted in enterprise due to security concerns.
Backup vs. Sync: Backup creates a point-in-time copy; sync maintains real-time consistency. The exam emphasizes that sync is not a backup—if you delete a file on one device, it's deleted everywhere.
File Sharing: All three allow sharing links with permissions (view/edit). OneDrive uses SharePoint permissions, Google Drive uses Google Groups, iCloud uses iCloud Sharing.
Version History: OneDrive retains file versions for 30 days (longer with Microsoft 365), Google Drive retains for 30 days (or longer for Google Workspace), iCloud retains for 30 days.
Troubleshooting Common Issues
Sync stuck: Often due to file name length (>255 characters), special characters (e.g., * ? < > |), or file size limits (OneDrive: 250 GB per file, Google Drive: 5 TB, iCloud: 50 GB).
Conflicts: Occur when offline edits clash. The exam tests that the conflicted copy is created with a timestamp.
Bandwidth throttling: All three have bandwidth settings in the client. OneDrive allows setting upload/download rate limits.
Authentication issues: Re-sign in to the account. For OneDrive, reset the app via %LocalAppData%\Microsoft\OneDrive\update and run OneDrive.exe /reset.
Exam-Specific Details
Know the default free storage: OneDrive 5 GB, Google Drive 15 GB, iCloud 5 GB.
Understand that iCloud is primarily for Apple devices; Windows support is limited.
Remember that OneDrive is integrated with Windows and Office, Google Drive with Google Workspace, iCloud with Apple ecosystem.
Be aware that cloud sync is not a backup—it's synchronization. A true backup solution (like Windows Backup or Time Machine) creates independent copies.
The exam may ask about the difference between sync and backup, or about sharing permissions (view vs. edit).
Install and Configure Client
Download and install the sync client for your OS. For OneDrive on Windows, the client is built-in. For Google Drive, install Google Drive for Desktop. For iCloud on Windows, install iCloud for Windows. During setup, sign in with your account, choose the folders to sync (selective sync), and set preferences like bandwidth limits. The client creates a local folder (e.g., `C:\Users\[username]\OneDrive`) that mirrors the cloud. On macOS, iCloud Drive appears in Finder automatically. The client runs as a background service and monitors the folder for changes.
File Change Detection
The sync client uses OS-level file system notifications (e.g., `ReadDirectoryChangesW` on Windows, `FSEvents` on macOS) to detect changes in real time. When a file is saved, the client receives an event with the file path and change type (create, modify, delete). It then queues the change for upload. To avoid duplicate syncs during large file saves, the client waits for a short debounce period (typically 1–2 seconds) before initiating the upload. This prevents partial uploads while the file is still being written.
Delta Sync and Upload
For large files, the client performs delta sync: it computes a hash of the changed portion (using a block-level algorithm) and uploads only the differences, not the entire file. OneDrive uses a proprietary binary diff algorithm; Google Drive uses its own; iCloud uses CloudKit's sync protocol. The upload is done over HTTPS (TLS 1.2+). The client also maintains a local database of file metadata (timestamps, hashes) to detect conflicts later.
Server Propagation
The cloud server receives the change, updates its database, and then pushes the change to all other devices linked to the account. This push can be immediate (via persistent connection like WebSocket) or near-real-time (via polling every few seconds). For OneDrive, the server uses a notification system that triggers the client to fetch updates. For Google Drive, the server uses a push notification API. For iCloud, it uses Apple Push Notification Service (APNs) to wake up the client.
Conflict Resolution
If two devices modify the same file before either change is synced, a conflict occurs. The server detects the conflict by comparing timestamps. The later change wins, and the earlier change is saved as a conflicted copy with a name like `filename (User's conflicted copy YYYY-MM-DD).ext`. The client then downloads both versions. Users can manually merge or discard the conflicted copy. The exam emphasizes that conflicted copies are created automatically.
Enterprise Deployment Scenarios
Scenario 1: OneDrive for Business in a Microsoft 365 Environment
A large enterprise with 10,000 employees uses OneDrive for Business to provide each user with 1 TB of personal cloud storage. IT deploys the OneDrive sync client via Group Policy (GPO) or MDM (Intune). They configure Known Folder Move to redirect Desktop, Documents, and Pictures to OneDrive, ensuring data is backed up. They also set sync policies to block syncing of certain file types (e.g., .exe) and enforce that only corporate devices can sync. Performance considerations: The sync client uses up to 20% CPU during initial sync; IT schedules initial sync during off-hours. Common issues: File name length errors (path > 400 characters) and sync conflicts when multiple users edit a shared file simultaneously. Troubleshooting involves checking the sync status in the client (green checkmark = synced, red circle = error) and using the OneDrive.exe /reset command.
Scenario 2: Google Drive for a Remote Team A startup with 50 employees uses Google Workspace. They share a team drive (Shared Drive) for project files. Each employee syncs the Shared Drive locally using Google Drive for Desktop. The client creates a virtual G: drive. The team uses version history to revert changes. Performance: Google Drive for Desktop caches files locally; if the cache fills up (default 10 GB), older files are replaced. Issues: Users often confuse sync with backup—deleting a file from the shared drive deletes it for everyone. IT educates users that sync is not backup and recommends using Google Vault for long-term retention.
Scenario 3: iCloud in a Small Business with Apple Devices A graphic design firm with 20 Macs uses iCloud Drive to sync project files. Each user has an iCloud account with 200 GB storage. They enable Desktop & Documents Folders sync so that everything on the desktop is automatically synced. Performance: iCloud sync is fast on macOS but slow on the rare Windows machine. Issues: If a user exceeds their storage quota, sync stops completely until space is freed. iCloud also does not support file-level sharing with external users as seamlessly as OneDrive or Google Drive. The firm often needs to use alternative methods (e.g., email large files).
What the 220-1101 Exam Tests
Objective 4.2 specifically asks you to "Compare and contrast cloud computing concepts" and includes sync tools. The exam focuses on: - Default storage capacities: OneDrive 5 GB free, Google Drive 15 GB free, iCloud 5 GB free. This is a frequent trick: many candidates assume all three give 15 GB, but only Google does. - Platform integration: OneDrive with Windows/Office, Google Drive with Google Workspace, iCloud with Apple ecosystem. Questions may ask which tool is best for a given scenario (e.g., "A user with a Windows 11 laptop and an iPhone wants seamless file sync. Which is best?" Answer: OneDrive, because it works on both platforms; iCloud has limited Windows support). - Sync vs. Backup: The exam loves to test that sync is not backup. A question might ask: "Which cloud service provides real-time file synchronization?" and the wrong answer is "Backup." - Conflict resolution: Know that conflicted copies are created when two devices edit offline. The exam may ask what happens when a conflict occurs. - Selective sync: All three allow choosing which folders to sync locally. This is a common feature question.
Common Wrong Answers
"iCloud offers 15 GB free." Wrong. iCloud is 5 GB. Candidates confuse it with Google Drive.
"OneDrive is best for macOS-only environments." Wrong. OneDrive works on macOS but is optimized for Windows. iCloud is better for macOS-only.
"Cloud sync is a backup solution." Wrong. Sync replicates changes; deletion syncs too. Backup creates independent copies.
"All three tools offer 1 TB free." Wrong. Only OneDrive with a Microsoft 365 subscription offers 1 TB; free tiers are much smaller.
Specific Numbers and Terms
OneDrive: 5 GB free, 1 TB with M365, file size limit 250 GB.
Google Drive: 15 GB free shared across services, file size limit 5 TB.
iCloud: 5 GB free, file size limit 50 GB.
Conflicted copy: named filename (conflicted copy [date]).ext.
Selective sync: feature to choose folders to sync.
Files On-Demand (OneDrive) / Stream (Google) / Optimize Storage (iCloud): features that show cloud-only files without downloading.
Edge Cases
If a user runs out of storage, sync stops. The exam may ask: "What happens when an iCloud user exceeds 5 GB?" Answer: Sync pauses until space is freed or upgraded.
Sharing permissions: View vs. Edit. Know that some tools allow comment-only permissions (Google Drive).
Version history: Typically 30 days. The exam may ask which tool retains versions longest (OneDrive with M365 can extend).
OneDrive free tier: 5 GB; Google Drive free tier: 15 GB; iCloud free tier: 5 GB.
Cloud sync replicates changes; it is not a backup solution.
Conflicted copies are created when two devices edit the same file offline.
Selective sync allows choosing which folders to sync locally.
OneDrive integrates with Windows and Office; Google Drive with Google Workspace; iCloud with Apple ecosystem.
Files On-Demand (OneDrive) and streaming (Google) allow access without local download.
Version history is typically 30 days for all three services.
These come up on the exam all the time. Here's how to tell them apart.
OneDrive
Free storage: 5 GB
Deep integration with Windows and Office 365
Files On-Demand: see all files without downloading
Known Folder Move: sync Desktop, Documents, Pictures
File size limit: 250 GB
Google Drive
Free storage: 15 GB
Best integration with Google Workspace (Docs, Sheets, Slides)
Stream files on demand via virtual drive (G:)
Shared Drives for team collaboration
File size limit: 5 TB
iCloud
Free storage: 5 GB
Best for Apple-only environments
Optimize Mac Storage: keeps recent files locally, older in cloud
Limited Windows support (iCloud for Windows)
File size limit: 50 GB
OneDrive
Free storage: 5 GB
Cross-platform: Windows, macOS, iOS, Android
Deep Windows integration (File Explorer, Office)
Known Folder Move for enterprise
File size limit: 250 GB
Mistake
Cloud sync tools automatically back up your files.
Correct
Sync is not backup. If you delete a file on your device, it is also deleted from the cloud and all synced devices. Backup creates a separate, recoverable copy. For true backup, use dedicated backup software (e.g., Windows Backup, Time Machine) or a cloud backup service (e.g., Backblaze).
Mistake
All three services offer the same free storage: 15 GB.
Correct
Only Google Drive offers 15 GB free. OneDrive offers 5 GB free, and iCloud offers 5 GB free. This is a common exam trap.
Mistake
iCloud Drive works flawlessly on Windows.
Correct
iCloud for Windows has limited functionality. It does not support selective sync (you must sync the entire iCloud Drive folder) and often has sync reliability issues. For cross-platform use, OneDrive or Google Drive are better choices.
Mistake
OneDrive, Google Drive, and iCloud all allow you to sync any folder on your computer.
Correct
They only sync files within their designated sync folders (e.g., OneDrive folder, Google Drive folder, iCloud Drive). You cannot sync arbitrary folders like your entire C:\ drive without moving them into the sync folder. Known Folder Move (OneDrive) is an exception for Desktop, Documents, Pictures.
Mistake
Conflicted copies are automatically merged.
Correct
Conflicted copies are not merged automatically. The user must manually compare and merge the two versions. The later-saved version becomes the main file, and the earlier version is saved with a "conflicted copy" suffix.
Reveal each answer, then mark whether you got it right. Score 60%+ to unlock the next chapter.
Cloud sync (OneDrive, Google Drive, iCloud) keeps files consistent across devices in real time. If you delete a file on one device, it is deleted everywhere. Cloud backup (e.g., Backblaze, Carbonite) creates a separate copy of your data that can be restored even if you delete the original. Sync is for access; backup is for recovery. The exam tests that sync is not backup.
OneDrive is the best choice. It works seamlessly on Windows and has a reliable iOS app. iCloud has limited Windows support, and Google Drive works but lacks deep Windows integration. OneDrive also offers 1 TB with Microsoft 365, which many Windows users already have.
When each device syncs, the cloud server detects a conflict. The later-saved version becomes the main file, and the earlier version is renamed with "(conflicted copy)" and the date. You must manually merge or discard the conflicted copy. This is a common exam scenario.
iCloud provides 5 GB of free storage. This is shared across iCloud Drive, iCloud Photos, and device backups. Many candidates incorrectly think it is 15 GB (like Google Drive) or 5 GB is too small, but that is the official limit.
No, OneDrive only syncs files within its designated OneDrive folder. However, Known Folder Move (available in Windows 10/11) allows you to redirect your Desktop, Documents, and Pictures folders to OneDrive. You cannot sync arbitrary folders outside of that.
Google Drive supports files up to 5 TB in size. OneDrive's limit is 250 GB, and iCloud's is 50 GB. This is important for users who work with large video or database files.
First, check for file name issues (special characters, path length > 400 characters). Then, pause and resume sync via the system tray icon. If that fails, run `OneDrive.exe /reset` from the Run dialog (Win+R). This resets the sync client without deleting files. Re-sign in if needed.
You've just covered Cloud Sync Tools: OneDrive, Google Drive, iCloud — now see how well it sticks with free 220-1101 practice questions. Full explanations included, no account needed.
Done with this chapter?