21.) What is the default Avro compression codec?
A) gzip
B) snappy
C) deflate
D) null
22.) Which library is used to compile .avsc files to Java classes?
A) Avro Tools
B) Kafka Streams
C) Zookeeper Tools
D) Confluent CLI
23.) What is the benefit of using Avro over JSON in Kafka?
A) Larger file sizes
B) Better human readability
C) Schema evolution support and compact binary format
D) Lack of schema validation
24.) How is a schema uniquely identified in the registry?
A) By its schema ID
B) By its version number
C) By its subject name
D) By the broker
25.) What happens if a producer sends Avro data without schema ID?
A) Schema is auto-assigned
B) Data is rejected
C) Kafka assigns a random ID
D) Data is serialized in JSON
Related