Step 1: Recall the Kafka CLI syntax for topic creation
The correct command uses 'kafka-topics' with '--create' and required flags.
Step 2: Match the command with the correct options
kafka-topics --create --topic myTopic --partitions 3 --replication-factor 1 --bootstrap-server localhost:9092 matches the official syntax including bootstrap-server, partitions, and replication-factor.