Bird
0
0

Which of the following is the correct syntax to display memory usage in human-readable format using free?

easy📝 Syntax Q3 of 15
Linux CLI - System Administration
Which of the following is the correct syntax to display memory usage in human-readable format using free?
Afree -h
Bfree --human
Cfree -m -h
Dfree -r
Step-by-Step Solution
Solution:
  1. Step 1: Recall free command options

    The -h option shows memory in human-readable format (KB, MB, GB).
  2. Step 2: Check other options

    --human is invalid, -m -h is redundant, -r is not for human-readable.
  3. Final Answer:

    free -h -> Option A
  4. Quick Check:

    Human-readable memory = free -h [OK]
Quick Trick: Use free -h for easy memory reading [OK]
Common Mistakes:
  • Using invalid --human option
  • Combining -m and -h unnecessarily

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More Linux CLI Quizzes