최신Confluent Certified Developer for Apache Kafka Certification Examination - CCDAK무료샘플문제
문제1
(You want to read messages from all partitions of a topic in every consumer instance of your application.
How do you do this?)
(You want to read messages from all partitions of a topic in every consumer instance of your application.
How do you do this?)
정답: C
설명: (ExamPassdump 회원만 볼 수 있음)
문제2
What are three built-in abstractions in the Kafka Streams DSL?
(Select three.)
What are three built-in abstractions in the Kafka Streams DSL?
(Select three.)
정답: A,C,E
설명: (ExamPassdump 회원만 볼 수 있음)
문제3
You create a topic named loT-Data with 10 partitions and replication factor of three.
A producer sends 1 MB messages compressed with Gzip.
Which two statements are true in this scenario?
(Select two.)
You create a topic named loT-Data with 10 partitions and replication factor of three.
A producer sends 1 MB messages compressed with Gzip.
Which two statements are true in this scenario?
(Select two.)
정답: A,D
설명: (ExamPassdump 회원만 볼 수 있음)
문제4
Your application is consuming from a topic configured with a deserializer.
It needs to be resilient to badly formatted records ("poison pills"). You surround the poll() call with a try/catch for RecordDeserializationException.
You need to log the bad record, skip it, and continue processing.
Which action should you take in the catch block?
Your application is consuming from a topic configured with a deserializer.
It needs to be resilient to badly formatted records ("poison pills"). You surround the poll() call with a try/catch for RecordDeserializationException.
You need to log the bad record, skip it, and continue processing.
Which action should you take in the catch block?
정답: D
설명: (ExamPassdump 회원만 볼 수 있음)
문제5
(You have a topic with four partitions. The application reading this topic is using a consumer group with two consumers.
Throughput is smoothly distributed among partitions, but application lag is increasing.
Application monitoring shows that message processing is consuming all available CPU resources.
Which action should you take to resolve this issue?)
(You have a topic with four partitions. The application reading this topic is using a consumer group with two consumers.
Throughput is smoothly distributed among partitions, but application lag is increasing.
Application monitoring shows that message processing is consuming all available CPU resources.
Which action should you take to resolve this issue?)
정답: A
설명: (ExamPassdump 회원만 볼 수 있음)
문제6
Match the testing tool with the type of test it is typically used to perform.
Match the testing tool with the type of test it is typically used to perform.
정답:

Explanation:
Unit Testing # MockProducer
Integration Testing # Testcontainers
Performance Testing # Trogdor
Mock Data Generation # Connect Datagen
MockProducer: Simulates a Kafka producer in unit tests (no real broker interaction).
Testcontainers: Spawns Kafka in Docker for real environment testing.
Trogdor: Kafka's built-in performance load testing framework.
Connect Datagen: Creates sample source records for test and demo purposes.
From Kafka Developer Tools Guide:
"Kafka developers commonly use MockProducer for unit tests, Testcontainers for integration, and Trogdor for performance tests." Reference: Kafka Testing and Tools Overview
문제7
You have a consumer group with default configuration settings reading messages from your Kafka cluster.
You need to optimize throughput so the consumer group processes more messages in the same amount of time.
Which change should you make?
You have a consumer group with default configuration settings reading messages from your Kafka cluster.
You need to optimize throughput so the consumer group processes more messages in the same amount of time.
Which change should you make?
정답: D
설명: (ExamPassdump 회원만 볼 수 있음)
문제8
(Which configuration is valid for deploying a JDBC Source Connector to read all rows from the orders table and write them to the dbl-orders topic?)
(Which configuration is valid for deploying a JDBC Source Connector to read all rows from the orders table and write them to the dbl-orders topic?)
정답: B
설명: (ExamPassdump 회원만 볼 수 있음)
문제9
You are developing a Java application using a Kafka consumer.
You need to integrate Kafka's client logs with your own application's logs using log4j2.
Which Java library dependency must you include in your project?
You are developing a Java application using a Kafka consumer.
You need to integrate Kafka's client logs with your own application's logs using log4j2.
Which Java library dependency must you include in your project?
정답: C
설명: (ExamPassdump 회원만 볼 수 있음)
문제10
The producer code below features a Callback class with a method called onCompletion().
When will the onCompletion() method be invoked?
The producer code below features a Callback class with a method called onCompletion().
When will the onCompletion() method be invoked?
정답: A
설명: (ExamPassdump 회원만 볼 수 있음)