DATA-ENGINEER-ASSOCIATE Exam Details

  • Exam Code
    :DATA-ENGINEER-ASSOCIATE
  • Exam Name
    :AWS Certified Data Engineer - Associate (DEA-C01)
  • Certification
    :Amazon Certifications
  • Vendor
    :Amazon
  • Total Questions
    :403 Q&As
  • Last Updated
    :Jul 08, 2026

Amazon DATA-ENGINEER-ASSOCIATE Online Questions & Answers

  • Question 1:

    A company wants to share an Amazon Redshift dataset from a producer workgroup to a consumer workgroup in another AWS account. The company wants consumers to query current data without copying the tables.

    Which steps are part of a Redshift data sharing solution? (Choose two.)

    A. Create a datashare that includes the required database objects in the producer workgroup.
    B. Authorize the consumer account or namespace to access the datashare.
    C. Export all tables to CSV files and send the files by AWS Transfer Family.
    D. Disable encryption on both workgroups before creating the datashare.
    E. Create a DynamoDB global table with the same primary key as the Redshift tables.

  • Question 2:

    A healthcare company uses Amazon Kinesis Data Streams to stream real-time health data from wearable devices, hospital equipment, and patient records.

    A data engineer needs to find a solution to process the streaming data. The data engineer needs to store the data in an Amazon Redshift Serverless warehouse. The solution must support near real-time analytics of the streaming data and the previous day's data.

    Which solution will meet these requirements with the LEAST operational overhead?

    A. Load data into Amazon Kinesis Data Firehose. Load the data into Amazon Redshift.
    B. Use the streaming ingestion feature of Amazon Redshift.
    C. Load the data into Amazon S3. Use the COPY command to load the data into Amazon Redshift.
    D. Use the Amazon Aurora zero-ETL integration with Amazon Redshift.

  • Question 3:

    A company wants to implement a data mesh with centralized governance and ETL using AWS Glue.

    Which two services should be combined?

    A. Amazon Aurora for storage and Amazon Redshift for analysis
    B. Amazon S3 for storage and Amazon Athena for analysis
    C. AWS Glue DataBrew for governance and access control
    D. AWS Lake Formation for governance and access control

  • Question 4:

    A data engineer wants to improve the performance of SQL queries in Amazon Athena that run against a sales data table.

    The data engineer wants to understand the execution plan of a specific SQL statement. The data engineer also wants to see the computational cost of each operation in a SQL query.

    Which statement does the data engineer need to run to meet these requirements?

    A. EXPLAIN SELECT * FROM sales;
    B. EXPLAIN ANALYZE FROM sales;
    C. EXPLAIN ANALYZE SELECT * FROM sales;
    D. EXPLAIN FROM sales;

  • Question 5:

    A company uses an Amazon QuickSight dashboard to monitor usage of one of the company's applications.

    The company uses AWS Glue jobs to process data for the dashboard. The company stores the data in a single Amazon S3 bucket.

    The company adds new data every day.

    A data engineer discovers that dashboard queries are becoming slower over time. The data engineer determines that the root cause of the slowing queries is long-running AWS Glue jobs.

    Which actions should the data engineer take to improve the performance of the AWS Glue jobs? (Choose two.)

    A. Partition the data that is in the S3 bucket. Organize the data by year, month, and day.
    B. Increase the AWS Glue instance size by scaling up the worker type.
    C. Convert the AWS Glue schema to the DynamicFrame schema class.
    D. Adjust AWS Glue job scheduling frequency so the jobs run half as many times each day.
    E. Modify the IAM role that grants access to AWS glue to grant access to all S3 features.

  • Question 6:

    A company's application needs to search and analyze data in near real time. The application must handle up to 1,000 requests each second with low query latency. The company wants a solution that individual data teams can own and configure to meet each team's cost and performance optimization requirements.

    Which solution will meet these requirements?

    A. Use Amazon S3 buckets to store the data. Use Amazon Athena to query and analyze the data. Assign each data team a separate S3 bucket prefix to optimize queries.
    B. Use streams in Amazon Kinesis Data Streams and Amazon Managed Service for Apache Flink to query and analyze the data. Assign each data team a separate stream to manage and consume.
    C. Use Amazon OpenSearch Service clusters with indexing to query the data. Assign each data team a separate cluster to configure for storage and queries.
    D. Use Amazon Aurora clusters that run on Aurora I/O-Optimized instances. Assign each data team a separate Aurora cluster to configure for storage and queries.

  • Question 7:

    A company stores a 100 MB dataset in an Amazon S3 bucket as an Apache Parquet file. A data engineer needs to profile the data before performing data preparation steps on the data.

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

    A. Create a profile job on the dataset in AWS Glue DataBrew. Review the profile job results.
    B. Stream the data into Amazon Managed Service for Apache Flink for SQL queries. Use the Apache Flink dashboard to profile the data.
    C. Ingest the data into Amazon Redshift Spectrum. Use SQL queries to profile the data.
    D. Load the data into an Amazon QuickSight dataset. Build a topic to profile the data with questions.

  • Question 8:

    A company stores sensitive data in an Amazon Redshift table. The company needs to give specific users the ability to access the sensitive data. The company must not create duplication in the data.

    Customer support users must be able to see the last four characters of the sensitive data. Audit users must be able to see the full value of the sensitive data. No other users can have the ability to access the sensitive information.

    Which solution will meet these requirements?

    A. Create a dynamic data masking policy to allow access based on each user role. Create IAM roles that have specific access permissions. Attach the masking policy to the column that contains sensitive data.
    B. Enable metadata security on the Redshift cluster. Create IAM users and IAM roles for the customer support users and the audit users. Grant the IAM users and IAM roles permissions to view the metadata in the Redshift cluster.
    C. Create a row-level security policy to allow access based on each user role. Create IAM roles that have specific access permissions. Attach the security policy to the table.
    D. Create an AWS Glue job to redact the sensitive data and to load the data into a new Redshift table.

  • Question 9:

    A gaming company uses Amazon Kinesis Data Streams to collect clickstream data. The company uses Amazon Kinesis Data Firehose delivery streams to store the data in JSON format in Amazon S3. Data scientists at the company use Amazon Athena to query the most recent data to obtain business insights.

    The company wants to reduce Athena costs but does not want to recreate the data pipeline.

    Which solution will meet these requirements with the LEAST management effort?

    A. Change the Firehose output format to Apache Parquet. Provide a custom S3 object YYYYMMDD prefix expression and specify a large buffer size. For the existing data, create an AWS Glue extract, transform, and load (ETL) job. Configure the ETL job to combine small JSON files, convert the JSON files to large Parquet files, and add the YYYYMMDD prefix. Use the ALTER TABLE ADD PARTITION statement to reflect the partition on the existing Athena table.
    B. Create an Apache Spark job that combines JSON files and converts the JSON files to Apache Parquet files. Launch an Amazon EMR ephemeral cluster every day to run the Spark job to create new Parquet files in a different S3 location. Use the ALTER TABLE SET LOCATION statement to reflect the new S3 location on the existing Athena table.
    C. Create a Kinesis data stream as a delivery destination for Firehose. Use Amazon Managed Service for Apache Flink (previously known as Amazon Kinesis Data Analytics) to run Apache Flink on the Kinesis data stream. Use Flink to aggregate the data and save the data to Amazon S3 in Apache Parquet format with a custom S3 object YYYYMMDD prefix. Use the ALTER TABLE ADD PARTITION statement to reflect the partition on the existing Athena table.
    D. Integrate an AWS Lambda function with Firehose to convert source records to Apache Parquet and write them to Amazon S3. In parallel, run an AWS Glue extract, transform, and load (ETL) job to combine the JSON files and convert the JSON files to large Parquet files. Create a custom S3 object YYYYMMDD prefix. Use the ALTER TABLE ADD PARTITION statement to reflect the partition on the existing Athena table.

  • Question 10:

    Files from multiple data sources arrive in an Amazon S3 bucket on a regular basis. A data engineer wants to ingest new les into Amazon Redshift in near real time when the new les arrive in the S3 bucket.

    Which solution will meet these requirements?

    A. Use the query editor v2 to schedule a COPY command to load new les into Amazon Redshift.
    B. Use the zero-ETL integration between Amazon Aurora and Amazon Redshift to load new les into Amazon Redshift.
    C. Use AWS Glue job bookmarks to extract, transform, and load (ETL) load new les into Amazon Redshift.
    D. Use S3 Event notifications to invoke an AWS Lambda function that loads new les into Amazon Redshift.

Tips on How to Prepare for the Exams

Nowadays, the certification exams become more and more important and required by more and more enterprises when applying for a job. But how to prepare for the exam effectively? How to prepare for the exam in a short time with less efforts? How to get a ideal result and how to find the most reliable resources? Here on Vcedump.com, you will find all the answers. Vcedump.com provide not only Amazon exam questions, answers and explanations but also complete assistance on your exam preparation and certification application. If you are confused on your DATA-ENGINEER-ASSOCIATE exam preparations and Amazon certification application, do not hesitate to visit our Vcedump.com to find your solutions here.