AWS - Auto ScalingWhich of the following is a valid cron expression for scheduled scaling in AWS?Acron(0 0 0 0 ? *)Bcron(60 24 * * ? *)Ccron(* * * * *)Dcron(0 12 * * ? *)Check Answer
Step-by-Step SolutionSolution:Step 1: Review cron expression format in AWSAWS cron expressions have six fields: minutes, hours, day-of-month, month, day-of-week, year.Step 2: Validate each optioncron(0 12 * * ? *) is valid: minute=0, hour=12, day-of-month=*, month=*, day-of-week=?, year=*. cron(0 0 0 0 ? *) has invalid zero day-of-month and month values. cron(60 24 * * ? *) has invalid 60 minutes and 24 hours. cron(* * * * *) has only five fields, missing year.Final Answer:cron(0 12 * * ? *) -> Option DQuick Check:Valid AWS cron = 6 fields, correct ranges [OK]Quick Trick: AWS cron needs 6 fields with valid ranges [OK]Common Mistakes:MISTAKESUsing 5-field cron instead of 6-fieldSetting minutes or hours out of rangeConfusing day-of-week and day-of-month
Master "Auto Scaling" in AWS9 interactive learning modes - each teaches the same concept differentlyLearnWhyDeepVisualTryChallengeProjectRecallTime
More AWS Quizzes API Gateway - CORS configuration - Quiz 6medium AWS Lambda - Lambda concurrency and throttling - Quiz 4medium AWS Lambda - Lambda function concept - Quiz 6medium Auto Scaling - Why auto scaling matters - Quiz 8hard CloudWatch - Why monitoring matters - Quiz 3easy DynamoDB - Time to live (TTL) for expiration - Quiz 9hard Elastic Load Balancing - Cross-zone load balancing - Quiz 5medium RDS and Relational Databases - RDS backup and snapshots - Quiz 11easy SNS and SQS - Standard vs FIFO queues - Quiz 2easy SNS and SQS - SNS and SQS integration pattern (fan-out) - Quiz 8hard