Limited-Time Offer: Enjoy 50% Savings! - Ends In 0d 00h 00m 00s Coupon code: 50OFF
Free Exam Questions

Amazon-DEA-C01 Exam Questions & Answers

AWS Certified Data Engineer - Associate (old)  •  Amazon

302 Questions 130 min Updated Sep 2026 99% Pass Rate
Get Full Access

100% money-back guarantee

Sample Amazon-DEA-C01 Questions

Practice with real exam-style questions, each with the verified correct answer and explanation.

Q1 MultipleChoice

A company runs an AWS Glue workflow every day to process time series data from an Amazon S3 bucket. The workflow loads the data into an Amazon Redshift Serverless table. The company observes that some of the jobs in the workflow occasionally fail.

A data engineer must receive a notification when the Redshift table does not contain the most recent data.

Which solution will meet this requirement in the MOST operationally efficient way?

Correct Answer: B
Explanation:

Option B is the most operationally efficient because it checks the business requirement directly: whether the target table contains the most recent data, not merely whether a job failed. Monitoring only failures (Options C and D) can produce false positives (a job failure might not impact freshness) and false negatives (a job can succeed but still load stale or incomplete data). The study material emphasizes implementing data quality validation as part of the ETL process so data can be verified before or as it is stored, rather than relying only on pipeline execution status.

Using a data quality rule focused on freshness (for example, validating that a ''max event timestamp'' or ''latest partition date'' meets today's expected value) lets the pipeline detect stale loads even when the workflow runs. Then, an EventBridge rule can route failures of that data quality check to SNS for immediate notification, keeping operations serverless and centralized. Macie (Option A) is designed for sensitive-data discovery/classification, not operational ''freshness'' checks on Redshift tables, so it adds unnecessary services and effort compared to a Glue-native data quality validation approach.

Q2 MultipleChoice

A company needs a solution to store and query product data that has variable attributes. The solution must support unpredictable and high-volume queries with single-digit millisecond latency, even during sudden traffic spikes. The solution must retrieve items by a primary identifier named Product ID. The solution must allow flexible queries by secondary attributes named Category and Brand.

Which solution will meet these requirements?

Correct Answer: A
Explanation:

Option A is the correct design for single-digit millisecond latency with unpredictable spikes and variable attributes. The study material describes Amazon DynamoDB as a NoSQL database ''designed for highly dynamic datasets with frequent read and write operations,'' providing low-latency performance at any scale---which directly matches the latency and traffic-spike requirements.

DynamoDB's key-value and document model fits ''product data that has variable attributes'' because items can contain different attributes without needing schema migrations typical of relational databases. The requirement to retrieve items by Product ID maps naturally to DynamoDB's primary key access pattern. The requirement for flexible queries on Category and Brand is met by creating global secondary indexes (GSIs) on those attributes so queries can be served efficiently without scanning the whole table.

Option B (Aurora) can scale reads, but it is not typically the best fit for sustained single-digit millisecond performance during sudden spikes without careful capacity planning. Option C is optimized for search and text/query relevance rather than primary-key transactional access patterns. Option D uses Athena (interactive SQL over S3) which is not designed for millisecond-latency, high-QPS query workloads.

Q3 MultipleChoice

A company stores daily records of the financial performance of investment portfolios in .csv format in an Amazon S3 bucket. A data engineer uses AWS Glue crawlers to crawl the S3 data.

The data engineer must make the S3 data accessible daily in the AWS Glue Data Catalog.

Which solution will meet these requirements?

Correct Answer: B
Explanation:

To make the S3 data accessible daily in the AWS Glue Data Catalog, the data engineer needs to create a crawler that can crawl the S3 data and write the metadata to the Data Catalog. The crawler also needs to run on a daily schedule to keep the Data Catalog updated with the latest data. Therefore, the solution must include the following steps:

Create an IAM role that has the necessary permissions to access the S3 data and the Data Catalog.The AWSGlueServiceRole policy is a managed policy that grants these permissions1.

Associate the role with the crawler.

Specify the S3 bucket path of the source data as the crawler's data store.The crawler will scan the data and infer the schema and format2.

Create a daily schedule to run the crawler.The crawler will run at the specified time every day and update the Data Catalog with any changes in the data3.

Specify a database name for the output. The crawler will create or update a table in the Data Catalog under the specified database. The table will contain the metadata about the data in the S3 bucket, such as the location, schema, and classification.

Option B is the only solution that includes all these steps. Therefore, option B is the correct answer.

Option A is incorrect because it configures the output destination to a new path in the existing S3 bucket. This is unnecessary and may cause confusion, as the crawler does not write any data to the S3 bucket, only metadata to the Data Catalog.

Option C is incorrect because it allocates data processing units (DPUs) to run the crawler every day. This is also unnecessary, as DPUs are only used for AWS Glue ETL jobs, not crawlers.

Option D is incorrect because it combines the errors of option A and C. It configures the output destination to a new path in the existing S3 bucket and allocates DPUs to run the crawler every day, both of which are irrelevant for the crawler.

:

1: AWS managed (predefined) policies for AWS Glue - AWS Glue

2: Data Catalog and crawlers in AWS Glue - AWS Glue

3: Scheduling an AWS Glue crawler - AWS Glue

[4]: Parameters set on Data Catalog tables by crawler - AWS Glue

[5]: AWS Glue pricing - Amazon Web Services (AWS)

Q4 MultipleChoice

A company processes 500 GB of audience and advertising data daily, storing CSV files in Amazon S3 with schemas registered in AWS Glue Data Catalog. They need to convert these files to Apache Parquet format and store them in an S3 bucket.

The solution requires a long-running workflow with 15 GiB memory capacity to process the data concurrently, followed by a correlation process that begins only after the first two processes complete.

Correct Answer: C
Explanation:

AWS Glue Workflows can coordinate multiple ETL jobs and triggers. They support parallel execution and sequential dependencies, which is ideal for concurrent data processing followed by correlation steps, all with minimal operational overhead.

''Use AWS Glue Workflows to orchestrate multiple ETL jobs in sequence or in parallel, supporting conditional triggers and dependency management.''

-- Ace the AWS Certified Data Engineer - Associate Certification - version 2 - apple.pdf

Q5 MultipleChoice

A company has an Amazon Redshift data warehouse that users access by using a variety of IAM roles. More than 100 users access the data warehouse every day.

The company wants to control user access to the objects based on each user's job role, permissions, and how sensitive the data is.

Which solution will meet these requirements?

Correct Answer: A
Explanation:

Amazon Redshift supports Role-Based Access Control (RBAC) to manage access to database objects. RBAC allows administrators to create roles for job functions and assign privileges at the schema, table, or column level based on data sensitivity and user roles.

''RBAC in Amazon Redshift helps manage permissions more efficiently at scale by assigning users to roles that reflect their job function. It simplifies user management and secures access based on job role and data sensitivity.''

-- Ace the AWS Certified Data Engineer - Associate Certification - version 2 - apple.pdf

RBAC is preferred over RLS or CLS alone because it offers a more comprehensive and scalable solution across multiple users and permissions.

Get access to all 302 verified questions with detailed answers.

Unlock All Amazon-DEA-C01 Questions

Frequently Asked Questions

There are no formal prerequisites for the DEA-C01 exam, but AWS recommends having at least 5 years of experience in data engineering roles or equivalent hands-on experience with AWS data services. It's advisable to have knowledge of AWS services like Amazon S3, Amazon RDS, AWS Glue, Amazon Athena, and Amazon Redshift before attempting the exam.

The DEA-C01 exam is 180 minutes (3 hours) long and consists of 65 questions in multiple-choice and multiple-response formats. The passing score is 720 out of 1000, which typically represents around 72% correct answers.

The exam covers five main domains: data ingestion and transformation (25%), data store management (28%), data operations and support (18%), data security and governance (15%), and business applications of data analytics (14%). Key topics include ETL/ELT processes, data pipeline design, database management, data cataloging, and compliance with data protection regulations.

The DEA-C01 exam costs $150 USD, though pricing may vary by region and promotional offers may be available. AWS often provides discounts for bundled exam packages or special promotions throughout the year.

AWS provides official training courses, practice exams, and whitepapers on their website to help candidates prepare. Additionally, third-party study guides, hands-on labs with AWS services, and practice questions from platforms like Udemy, Linux Academy, or A Cloud Guru can supplement your preparation and improve your chances of passing.
Exam Details
  • Exam CodeAmazon-DEA-C01
  • VendorAmazon
  • Total Questions302
  • Duration130 min
  • LanguageEnglish
  • Last UpdatedSep 4, 2026
4.9/5

Pass Amazon-DEA-C01 First Time

Get all 302 exam questions with verified answers and 90-day free updates.

Buy Now & Pass
  • PDF + Practice Test Bundle
  • 90-Day Free Updates
  • 100% Money-Back Guarantee
  • Instant Download
  • 24/7 Customer Support
99% Pass Rate Trusted by 50,000+ IT professionals