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 11:

    How to separate query processes and access to query history for users/teams in the same AWS account using Amazon Athena?

    A. Create an S3 bucket per use case with bucket policies
    B. Create an Athena workgroup per use case with tagged IAM policies
    C. Create an IAM role per use case and associate with Athena
    D. Use AWS Glue Data Catalog resource policies for individual users

  • Question 12:

    A company stores petabytes of data in thousands of Amazon S3 buckets in the S3 Standard storage class.

    The data supports analytics workloads that have unpredictable and variable data access patterns.

    The company does not access some data for months. However, the company must be able to retrieve all data within milliseconds. The company needs to optimize S3 storage costs.

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

    A. Use S3 Storage Lens standard metrics to determine when to move objects to more cost-optimized storage classes. Create S3 Lifecycle policies for the S3 buckets to move objects to cost-optimized storage classes. Continue to refine the S3 Lifecycle policies in the future to optimize storage costs.
    B. Use S3 Storage Lens activity metrics to identify S3 buckets that the company accesses infrequently. Configure S3 Lifecycle rules to move objects from S3 Standard to the S3 Standard-Infrequent Access (S3 Standard-IA) and S3 Glacier storage classes based on the age of the data.
    C. Use S3 Intelligent-Tiering. Activate the Deep Archive Access tier.
    D. Use S3 Intelligent-Tiering. Use the default access tier.

  • Question 13:

    A company has an application that uses an Amazon API Gateway REST API and an AWS Lambda function to retrieve data from an Amazon DynamoDB instance. Users recently reported intermittent high latency in the application's response times. A data engineer finds that the Lambda function experiences frequent throttling when the company's other Lambda functions experience increased invocations.

    The company wants to ensure the API's Lambda function operates without being affected by other Lambda functions.

    Which solution will meet this requirement MOST cost-effectively?

    A. Increase the number of read capacity unit (RCU) in DynamoDB.
    B. Configure provisioned concurrency for the Lambda function.
    C. Configure reserved concurrency for the Lambda function.
    D. Increase the Lambda function timeout and allocated memory.

  • Question 14:

    A company needs a solution to automatically ingest data from an Amazon S3 bucket to an Amazon Redshift table every day. The company must obfuscate sensitive data in Amazon Redshift. Users must not be able to view the sensitive data as plaintext.

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

    A. Enable Amazon Macie for the company's AWS account. Configure a sensitive data discovery job for the S3 bucket. Configure an AWS Glue job to load the data into Amazon Redshift.
    B. Enable Amazon Macie for the company's AWS account. Configure an AWS Glue job to flag and obfuscate data columns based on the Macie analysis. Load the data into Amazon Redshift.
    C. Configure an AWS Glue job to read the data from the S3 bucket, detect and obfuscate sensitive data, and load the data into Amazon Redshift.
    D. Configure an AWS Glue job to load the data into Amazon Redshift. Use Amazon Redshift to detect the sensitive data, create masking policies, and apply dynamic masking.

  • Question 15:

    A company currently uses a provisioned Amazon EMR cluster that includes general purpose Amazon EC2 instances. The EMR cluster uses EMR managed scaling between one to five task nodes for the company's long-running Apache Spark extract, transform, and load (ETL) job. The company runs the ETL job every day.

    When the company runs the ETL job, the EMR cluster quickly scales up to five nodes. The EMR cluster often reaches maximum CPU usage, but the memory usage remains under 30%.

    The company wants to modify the EMR cluster configuration to reduce the EMR costs to run the daily ETL job.

    Which solution will meet these requirements MOST cost-effectively?

    A. Increase the maximum number of task nodes for EMR managed scaling to 10.
    B. Change the task node type from general purpose EC2 instances to memory optimized EC2 instances.
    C. Switch the task node type from general purpose EC2 instances to compute optimized EC2 instances.
    D. Reduce the scaling cooldown period for the provisioned EMR cluster.

  • Question 16:

    A data engineer at a large company needs to create centralized datasets that are optimized for Amazon Redshift performance. The company has multiple downstream teams that use their own AWS accounts and dedicated Amazon Redshift clusters with RA3 nodes. All downstream teams need access to the centralized datasets.

    Which solution will provide immediate access to the datasets and maintain the current Amazon Redshift performance?

    A. Copy the datasets to an Amazon S3 bucket by using the UNLOAD command. Register the table definitions in a dedicated AWS Glue Data Catalog schema. Share the schema with the other AWS accounts by using AWS Lake Formation. Use Amazon Redshift Spectrum to access the data.
    B. Create a daily extract, transform, and load (ETL) job to unload the data to an Amazon S3 staging area. Instruct the teams to copy the data into their Amazon Redshift clusters.
    C. Set up Amazon Redshift data sharing between the Amazon Redshift producer clusters and the consumer clusters to provide access to the centralized datasets.
    D. Set up an AWS DataSync job that automatically syncs the data between the Amazon Redshift producer clusters and the consumer clusters.

  • Question 17:

    A company is creating a new data pipeline to populate a data lake. A data analyst needs to prepare and standardize the data before a data engineering team can perform advanced data transformations. The data analyst needs a solution to process the data that does not require writing new code.

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

    A. Use Python and Pandas in an AWS Glue Studio notebook. Ensure that the data engineers add additional transformations to complete the pipeline.
    B. Use Amazon SageMaker Canvas and SageMaker Data Wrangler to write to a new dataset. Ensure that the data engineers add additional transformations to complete the pipeline by using AWS Glue.
    C. Use AWS Glue Studio with data preparation recipe transformations. Ensure that the data engineers add additional transformations to complete the pipeline.
    D. Create a document that includes the data preparation rules. Ensure that the data engineers implement the rules in AWS Glue.

  • Question 18:

    A company has three independent applications that consume the same Kinesis data stream. The applications must not compete for read throughput, and one application needs to replay data that arrived during the past 7 days.

    Which Kinesis Data Streams features should the data engineer configure? (Choose two.)

    A. Enhanced fan-out consumers
    B. A stream retention period of at least 7 days
    C. S3 Lifecycle expiration after 7 days
    D. A single shared-throughput consumer for all applications
    E. AWS DMS full load plus CDC

  • Question 19:

    A data engineer needs to create an Amazon Athena table based on a subset of data from an existing Athena table named cities_world. The cities_world table contains cities that are located around the world.

    The data engineer must create a new table named cities_us to contain only the cities from cities_world that are located in the US.

    Which SQL statement should the data engineer use to meet this requirement?

    A. INSERT INTO cities_usa (city,state) SELECT city, state FROM cities_world WHERE country='usa';
    B. MOVE city, state FROM cities_world TO cities_usa WHERE country='usa';
    C. INSERT INTO cities_usa SELECT city, state FROM cities_world WHERE country='usa';
    D. UPDATE cities_usa SET (city, state) = (SELECT city, state FROM cities_world WHERE country='usa');

  • Question 20:

    A company wants to migrate a data warehouse from Teradata to Amazon Redshift.

    Which solution will meet this requirement with the LEAST operational effort?

    A. Use AWS Database Migration Service (AWS DMS) Schema Conversion to migrate the schema. Use AWS DMS to migrate the data.
    B. Use the AWS Schema Conversion Tool (AWS SCT) to migrate the schema. Use AWS Database Migration Service (AWS DMS) to migrate the data.
    C. Use AWS Database Migration Service (AWS DMS) to migrate the data. Use automatic schema conversion.
    D. Manually export the schema de nition from Teradata. Apply the schema to the Amazon Redshift database. Use AWS Database Migration Service (AWS DMS) to migrate the data.

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.