CCDAK Dumps

CCDAK Free Practice Test

Confluent CCDAK: Confluent Certified Developer for Apache Kafka Certification Examination

QUESTION 31

is KSQL ANSI SQL compliant?

Correct Answer: B
KSQL is not ANSI SQL compliant, for now there are no defined standards on streaming SQL languages

QUESTION 32

A Zookeeper configuration has tickTime of 2000, initLimit of 20 and syncLimit of 5. What's the timeout value for followers to connect to Zookeeper?

Correct Answer: D
tick time is 2000 ms, and initLimit is the config taken into account when establishing a connection to Zookeeper, so the answer is 2000 * 20 = 40000 ms = 40s

QUESTION 33

You are sending messages with keys to a topic. To increase throughput, you decide to
increase the number of partitions of the topic. Select all that apply.

Correct Answer: CD
Increasing the number of partition causes new messages keys to get hashed differently, and breaks the guarantee "same keys goes to the same partition". Kafka logs are immutable and the previous messages are not re-shuffled

QUESTION 34

What isn't a feature of the Confluent schema registry?

Correct Answer: A
Data is stored on brokers.

QUESTION 35

The rule "same key goes to the same partition" is true unless...

Correct Answer: C
Increasing the number of partition causes new messages keys to get hashed differently, and breaks the guarantee "same keys goes to the same partition". Kafka logs are immutable and the previous messages are not re-shuffled.