Common Traps on Show IP Route Output Practice Questions
- ·Longest-prefix match is checked before administrative distance.
- ·Connected and local routes can appear alongside dynamic or static routes.
- ·The selected route may not be the one with the lowest metric if the prefix length differs.
Sample Questions
Practice all 15 →A developer has an AWS Lambda function that processes messages from an Amazon SQS standard queue. The function is idempotent and currently has a batch size of 10. The developer wants to increase throughput and increases the batch size to 100. After the change, CloudWatch metrics show a significant increase in throttles and the queue backlog is growing. The function's reserved concurrency is set to 10. What is the most effective action to resolve the throttling and improve throughput?
Explanation: Increasing the batch size causes each invocation to process more messages, but if the function's reserved concurrency is too low, many invocations may be throttled. By increasing reserved concurrency, more invocations can run concurrently, allowing the function to consume messages from the queue faster and reduce the backlog. The batch size increase alone may not help if the function cannot run enough concurrent executions. Increasing memory can improve per-message processing speed but is less effective here since the bottleneck is concurrency. Using a FIFO queue does not address standard queue throughput. Decreasing the batch size would reduce throttling but not improve throughput.
A developer is managing an application running on Amazon EC2 instances behind an Application Load Balancer. Users report that the application becomes unresponsive after several hours, and restarting the instance temporarily fixes the issue. The developer suspects a memory leak but cannot add custom instrumentation. Which AWS service can collect memory utilization metrics and help identify the memory leak with minimal configuration?
Explanation: Amazon CloudWatch Agent can be installed on EC2 instances to collect operating system-level metrics, including memory utilization, and send them to CloudWatch. This provides visibility into memory usage over time without requiring code changes. The agent can be configured via Systems Manager or manually, and the metrics can be used to set alarms or analyze trends to detect memory leaks.
A developer is monitoring an AWS Lambda function that processes messages from an SQS queue. CloudWatch metrics show that the function's throttles are high when the queue backlog grows. The function has a reserved concurrency of 50 and a batch size of 10. The SQS queue has a visibility timeout of 30 seconds. The function processes each batch in about 5 seconds. Which action will most effectively reduce throttles?
Explanation: Throttles occur when more concurrent Lambda invocations are attempted than the reserved concurrency allows. Increasing the batch size allows the function to process more messages per invocation, thus reducing the number of concurrent executions required to process the same backlog. This directly reduces the likelihood of hitting the reserved concurrency limit. Increasing reserved concurrency might help but does not reduce the number of invocations; it only raises the limit. Visibility timeout and message retention do not affect throttles. Therefore, increasing the batch size is the most effective action.
A developer deployed an AWS Lambda function that is invoked by an Amazon SQS queue. The function is configured with a batch size of 10 and a timeout of 30 seconds. CloudWatch metrics show that the function's Duration is consistently around 28 seconds, but occasionally spikes to 35 seconds causing timeouts. The function makes a synchronous HTTP call to an external API. Which approach will MOST effectively prevent timeouts while maximizing throughput?
Explanation: The function's timeout is 30 seconds, and synchronous HTTP calls can take variable time. By using asynchronous HTTP calls, the function can initiate multiple requests concurrently and wait for all responses, reducing the total wall clock time. This allows processing more messages within the timeout, maximizing throughput. Increasing the timeout is possible but does not address the underlying latency and may hide issues. Reducing the batch size reduces throughput. Changing the SQS visibility timeout does not affect the Lambda function's execution timeout.
A developer is monitoring an AWS Lambda function that processes events from an Amazon Kinesis stream. The function's CloudWatch metrics show high IteratorAge and the function is often throttled. The function's batch size is 100, maximum record age is 60s, and reserved concurrency is 100. The Kinesis stream has 10 shards, each with 5000 records/sec. Which action is most effective to reduce the IteratorAge and throttle rate?
Explanation: The high IteratorAge indicates the function is not keeping up with the data flowing through the Kinesis stream. Each shard can be processed by only one Lambda invocation at a time (per shard). Increasing the number of shards increases the parallelism, allowing more concurrent Lambda invocations to process records, which directly reduces backpressure. Increasing batch size or memory may help but are less effective when the function is already throttled and the parallelism is limited by shard count.
+10 more scenario questions available
Practice all Show IP Route Output Practice QuestionsRelated Topics
Frequently asked questions
How do "Show IP Route Output Practice Questions" appear on the real DVA-C02?
Practise interpreting routing-table output, route selection, administrative distance, metrics, next hops and longest-prefix match. These appear throughout the DVA-C02 and require you to apply your knowledge, not just recall facts.
How many scenario questions are on the DVA-C02 exam?
Cisco doesn't publish an exact breakdown, but scenario-based questions (especially exhibit and command-output formats) make up a significant portion of the DVA-C02. Practicing each scenario type ensures you're ready for any format.
Are these DVA-C02 scenario practice questions free?
Yes — all scenario practice on Courseiva is completely free. Sign up for a free account to track your progress and see which scenario types you've mastered.
Ready to practice this scenario type?
Launch a full Show IP Route Output Practice Questions session with instant scoring and detailed explanations.
Start Scenario Practice →