Point out the correct statement.

You don't need GitHub to use Git
CLI can help you to organize files and folders
Navigation of directory is possible using CLI
None of the mentioned

The correct answer is: C. Navigation of directory is possible using CLI.

Git is a distributed version control system, while GitHub is a web-based hosting service for version control using Git. You can use Git without GitHub, but you cannot use GitHub without Git.

CLI stands for command-line interface. It is a text-based interface that allows you to interact with a computer by typing commands. You can use CLI to navigate directories, create and delete files, and perform other tasks on your computer.

Here are some examples of how you can use CLI to navigate directories:

  • To list the contents of the current directory, type ls.
  • To change to a different directory, type cd followed by the name of the directory.
  • To create a new directory, type mkdir followed by the name of the directory.
  • To delete a directory, type rmdir followed by the name of the directory.

I hope this helps! Let me know if you have any other questions.