In the standard `uptime` output, what are the three numbers reported at the end of the line?

LPIC-1 Exam 101-500, objective 103. GNU and Unix commands medium

Machine-checked — no person has signed for it. This question was read against the source cited below by an automated pass, which found no contradiction. That is a weaker claim than it sounds: the same kind of process wrote the question, so it can confirm its own mistake.

Treat it as a good draft rather than as settled fact, and read the source below before you rely on it. It is not used in mock exams here — only questions a person has signed for are.

How these questions are written — where each question comes from, what the verification ledger records, and what happens when one is found wrong.

The options

Not correct Free memory in total, used and cached form

Wrong. That breakdown is what `free` prints. uptime says nothing about memory.

Not correct CPU usage percentages for user, system and idle time

Wrong. Those percentages come from top or vmstat. Load average is a queue length, not a percentage, and is not capped at 100.

Correct Load averages over the last 1, 5 and 15 minutes

Correct. They are the average number of runnable and uninterruptible tasks over those three windows, which is why they can exceed 1 on a busy machine.

Not correct Load averages over the last 1, 10 and 60 minutes

Wrong intervals. The windows are 1, 5 and 15 minutes — the same three shown on the first line of top.

Why

uptime prints the current time, how long the system has been up, the number of logged-in users, and the 1/5/15-minute load averages. Comparing the three numbers tells you the trend: a 1-minute value far above the 15-minute value means load is climbing right now.

Where this comes from

Cited
LPI exam objective 103.5
What it says
Use uptime to observe system load.

Practise this

Reading one question is not practice. The trainer will draw a short set from objective 103 and space the ones you get wrong.

Practise LPIC-1 Exam 101-500

More questions on this objective

All questions on GNU and Unix commands

Practise LPIC-1 Exam 101-500