By Fatskills Exam Guides Team — the exam nerds behind 28,500+ quizzes and 2.1M practice questions across 500+ global exams.
Business Continuity (BC) ensures critical business functions keep running during disruptions. Disaster Recovery (DR) restores IT systems and data after a catastrophic failure. Companies use BC/DR to minimize downtime, protect revenue, and meet compliance requirements.
A BC/DR plan typically follows this flow:
Prioritize systems by criticality (e.g., payment processing > internal wiki).
Prevention
Patch management and security controls.
Detection
Automated alerts (e.g., Slack, PagerDuty) for SRE/DevOps teams.
Response
Runbooks: Step-by-step recovery procedures (e.g., "How to restore from backup X").
Recovery
Restore data from backups or snapshots.
Post-Recovery
Example Architecture (Multi-Region DR):
[Primary Region (AWS us-east-1)] ├── App Servers (Auto Scaling Group) ├── Database (RDS Multi-AZ) └── S3 Buckets (Versioned) [DR Region (AWS eu-west-1)] ├── Standby App Servers (Minimal instances) ├── Read Replica Database (Async replication) └── Cross-Region Replicated S3 Buckets
Goal: Protect a web app with a backup in another region.
# Enable versioning on S3 bucket (primary region) aws s3api put-bucket-versioning --bucket my-app-bucket --versioning-configuration Status=Enabled # Replicate to DR region (eu-west-1) aws s3api put-bucket-replication --bucket my-app-bucket --replication-configuration file://replication.json
replication.json:
replication.json
{ "Role": "arn:aws:iam::123456789012:role/S3ReplicationRole", "Rules": [ { "ID": "CrossRegionReplication", "Status": "Enabled", "Destination": { "Bucket": "arn:aws:s3:::my-app-bucket-dr" } } ] }
# Create a read replica in DR region aws rds create-db-instance-read-replica \ --db-instance-identifier my-db-replica \ --source-db-instance-identifier my-primary-db \ --region eu-west-1
Expected Outcome: - App remains accessible with minimal data loss (RPO = replication lag).- Recovery time < 15 minutes (RTO).
A company’s database crashes, and they restore from a backup taken 6 hours ago. What is their RPO? - A) 0 hours - B) 6 hours - C) 12 hours - D) Depends on the backup frequency
Correct Answer: B) 6 hours Explanation: RPO is the maximum acceptable data loss. If the last backup was 6 hours ago, that’s the RPO.Why the Distractors Are Tempting: - A): Confuses RPO with "zero data loss" (only possible with real-time replication).- C): Assumes a 12-hour backup cycle (irrelevant to the scenario).- D): Backup frequency affects RPO, but the question gives a specific time (6 hours).
Which DR site type has the lowest RTO but highest cost? - A) Cold site - B) Warm site - C) Hot site - D) Cloud DR
Correct Answer: C) Hot site Explanation: Hot sites are fully operational with real-time data sync, enabling near-instant failover.Why the Distractors Are Tempting: - A): Cold sites are cheap but have high RTO (days/weeks).- B): Warm sites are a middle ground (moderate cost/RTO).- D): Cloud DR can be hot, warm, or cold—it’s not a site type.
A company’s BC/DR plan includes quarterly backups to tape. What’s the biggest risk? - A) Tapes are slow to restore - B) Tapes may fail or degrade over time - C) Tapes don’t support incremental backups - D) Tapes are vulnerable to ransomware
Correct Answer: D) Tapes are vulnerable to ransomware Explanation: If backups aren’t air-gapped or immutable, ransomware can encrypt them. Tapes are offline by default, but if connected to a network, they’re at risk.Why the Distractors Are Tempting: - A): True, but not the biggest risk (restore speed is a secondary concern).- B): Tape degradation is a real issue, but modern tapes (LTO-8/9) last 15–30 years.- C): False—tapes support incremental backups (e.g., tar --incremental).
tar --incremental
rsync
aws s3 cp s3://my-bucket/test.txt -
Join 4M+ learners. Unlock unlimited quizzes, wrong-answer tracking, flashcards + reminders, study guides, and 1-on-1 challenges.