Kafka - Consumers
Given the following code snippet, what topics will the consumer be subscribed to?
consumer.subscribe(Arrays.asList("topicA", "topicB"));
consumer.subscribe(Collections.singletonList("topicC"));