Which of the following is the correct syntax to create a Kafka topic with 5 partitions using the Kafka CLI?
Akafka-topics.sh --create --topic my-topic --partitions 5 --bootstrap-server localhost:9092
Bkafka-topics.sh --create --topic my-topic --partition-count 5 --bootstrap-server localhost:9092
Ckafka-topics.sh --new --topic my-topic --partitions=5 --server localhost:9092
Dkafka-topics.sh --make --topic my-topic --partitions 5 --bootstrap-server localhost:9092