Curious about Actual Confluent Certified Developer (CCDAK) Exam Questions?
Here are sample Confluent Certified Developer for Apache Kafka (CCDAK) Exam questions from real exam. You can get more Confluent Certified Developer (CCDAK) Exam premium practice questions at TestInsights.
You are using JDBC source connector to copy data from a table to Kafka topic. There is one connector created with max.tasks equal to 2 deployed on a cluster of 3 workers. How many tasks are launched?
Correct : C
JDBC connector allows one task per table.
Start a Discussions
Which of the following statements are true regarding the number of partitions of a topic?
Correct : C
We can only add partitions to an existing topic, and it must be done using the kafka-topics.sh command
Start a Discussions
Which of the following is true regarding thread safety in the Java Kafka Clients?
Correct : A, C
KafkaConsumer is not thread-safe, KafkaProducer is thread safe.
Start a Discussions
There are 3 brokers in the cluster. You want to create a topic with a single partition that is resilient to one broker failure and one broker maintenance. What is the replication factor will you specify while creating the topic?
Correct : B
1 is not possible as it doesn't provide resilience to failure, 2 is not enough as if we take a broker down for maintenance, we cannot tolerate a broker failure, and 6 is impossible as we only have 3 brokers (RF cannot be greater than the number of brokers). Here the correct answer is 3
Start a Discussions
A topic "sales" is being produced to in the Americas region. You are mirroring this topic using Mirror Maker to the European region. From there, you are only reading the topic for analytics purposes. What kind of mirroring is this?
Correct : C
This is active-passing as the replicated topic is used for read-only purposes only
Start a Discussions
Total 150 questions