Kafka - Advanced Stream Processing
Given this serializer code snippet, what will serialize() return for input "hello"?
public byte[] serialize(String topic, String data) {
return data == null ? null : data.getBytes(StandardCharsets.UTF_8);
}Given this serializer code snippet, what will serialize() return for input "hello"?
public byte[] serialize(String topic, String data) {
return data == null ? null : data.getBytes(StandardCharsets.UTF_8);
}15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions