Labour Day Special - 65% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: c4sdisc65

CCDAK PDF

$38.5

$109.99

3 Months Free Update

  • Printable Format
  • Value of Money
  • 100% Pass Assurance
  • Verified Answers
  • Researched by Industry Experts
  • Based on Real Exams Scenarios
  • 100% Real Questions

CCDAK PDF + Testing Engine

$61.6

$175.99

3 Months Free Update

  • Exam Name: Confluent Certified Developer for Apache Kafka Certification Examination
  • Last Update: May 1, 2024
  • Questions and Answers: 150
  • Free Real Questions Demo
  • Recommended by Industry Experts
  • Best Economical Package
  • Immediate Access

CCDAK Engine

$46.2

$131.99

3 Months Free Update

  • Best Testing Engine
  • One Click installation
  • Recommended by Teachers
  • Easy to use
  • 3 Modes of Learning
  • State of Art Technology
  • 100% Real Questions included

CCDAK Practice Exam Questions with Answers Confluent Certified Developer for Apache Kafka Certification Examination Certification

Question # 6

You are using JDBC source connector to copy data from 2 tables to two Kafka topics. There is one connector created with max.tasks equal to 2 deployed on a cluster of 3 workers. How many tasks are launched?

A.

6

B.

1

C.

2

D.

3

Full Access
Question # 7

Where are the ACLs stored in a Kafka cluster by default?

A.

Inside the broker's data directory

B.

Under Zookeeper node /kafka-acl/

C.

In Kafka topic __kafka_acls

D.

Inside the Zookeeper's data directory

Full Access
Question # 8

If I want to send binary data through the REST proxy to topic "test_binary", it needs to be base64 encoded. A consumer connecting directly into the Kafka topic A. "test_binary" will receive

B. binary data

C. avro data

D. json data

E. base64 encoded data, it will need to decode it

Full Access
Question # 9

When is the onCompletion() method called?

private class ProducerCallback implements Callback {

@Override

public void onCompletion(RecordMetadata recordMetadata, Exception e) {

if (e != null) {

e.printStackTrace();

}

}

}

ProducerRecord record =

new ProducerRecord<>("topic1", "key1", "value1");

producer.send(record, new ProducerCallback());

A.

When the message is partitioned and batched successfully

B.

When message is serialized successfully

C.

When the broker response is received

D.

When send() method is called

Full Access
Question # 10

What is the default port that the KSQL server listens on?

A.

9092

B.

8088

C.

8083

D.

2181

Full Access
Question # 11

What are the requirements for a Kafka broker to connect to a Zookeeper ensemble? (select two)

A.

Unique value for each broker's zookeeper.connect parameter

B.

Unique values for each broker's broker.id parameter

C.

All the brokers must share the same broker.id

D.

All the brokers must share the same zookeeper.connect parameter

Full Access
Question # 12

What's a Kafka partition made of?

A.

One file and one index

B.

One file

C.

One file and two indexes per segment

D.

One file and two indexes

Full Access
Question # 13

How can you gracefully make a Kafka consumer to stop immediately polling data from Kafka and gracefully shut down a consumer application?

A.

Call consumer.wakeUp() and catch a WakeUpException

B.

Call consumer.poll() in another thread

C.

Kill the consumer thread

Full Access
Question # 14

In Avro, adding a field to a record without default is a __ schema evolution

A.

forward

B.

backward

C.

full

D.

breaking

Full Access
Question # 15

Where are KSQL-related data and metadata stored?

A.

Kafka Topics

B.

Zookeeper

C.

PostgreSQL database

D.

Schema Registry

Full Access
Question # 16

A consumer is configured with enable.auto.commit=false. What happens when close() is called on the consumer object?

A.

The uncommitted offsets are committed

B.

A rebalance in the consumer group will happen immediately

C.

The group coordinator will discover that the consumer stopped sending heartbeats. It will cause rebalance after session.timeout.ms

Full Access
Question # 17

We have a store selling shoes. What dataset is a great candidate to be modeled as a KTable in Kafka Streams?

A.

Money made until now

B.

The transaction stream

C.

Items returned

D.

Inventory contents right now

Full Access
Question # 18

What's is true about Kafka brokers and clients from version 0.10.2 onwards?

A.

Clients and brokers must have the exact same version to be able to communicate

B.

A newer client can talk to a newer broker, but an older client cannot talk to a newer broker

C.

A newer client can talk to a newer broker, and an older client can talk to a newer broker

D.

A newer client can't talk to a newer broker, but an older client can talk to a newer broker

Full Access
Question # 19

Which of the following Kafka Streams operators are stateful? (select all that apply)

A.

flatmap

B.

reduce

C.

joining

D.

count

E.

peek

F.

aggregate

Full Access
Question # 20

How does a consumer commit offsets in Kafka?

A.

It directly sends a message to the __consumer_offsets topic

B.

It interacts with the Group Coordinator broker

C.

It directly commits the offsets in Zookeeper

Full Access
Question # 21

is KSQL ANSI SQL compliant?

A.

Yes

B.

No

Full Access
Question # 22

Which of the following is true regarding thread safety in the Java Kafka Clients?

A.

One Producer can be safely used in multiple threads

B.

One Consumer can be safely used in multiple threads

C.

One Consumer needs to run in one thread

D.

One Producer needs to be run in one thread

Full Access