Linux Concepts
Name That Command
Files & Navigation
Linux Challenge
100

What is the core of Linux?

A. Shell
B. Terminal
C. Kernel
D. Utility  

C. Kernel

100

Show current directory
A. ls
B. pwd
C. cd
D. whoami 

Answer: B. pwd

100

Which symbol represents the root directory?
A. ~
B. ..
C. /
D. .  

Answer: C. /

100

Which command creates an empty file named file.txt?
A. mkdir file.txt
B. touch file.txt
C. cat file.txt
D. cd file.txt  

Answer: B. touch file.txt

200

What interprets user commands?

Shell

200

Show current user.

whoami

200

Symbol for parent directory?

→ ..

200

Which command displays only .txt files in the current directory?

ls *.txt

300

Linux running many tasks at once is called?

Multitasking

300

Which command shows the first 5 lines of report.txt?

head -n 5 report.txt

300

Path starting with / is called?

Absolute path

300

Rename old.txt to new.txt  

mv old.txt new.txt

400

In Linux : Which component is closer to hardware: 

Kernel

400

You know a keyword but not the command name

apropos

400

Shortcut for home directory?

→ ~

400

Linux was created by whom?

Linus Torvalds

500

Most of the Linux kernel is written primarily in which programming language?

C

500

Identify whether cd is builtin or external.

type cd

500

You are in /home/student. Which command shows all files, including hidden files, inside etc folder without changing your current directory?  

Answer: ls -a /etc  

500

UNIX was originally developed at which research organization?

Bell Labs