nerdexam
Linux_Foundation

LFCS · Question #537

Which of the following is NOT contained in the locale setting of the operating system?

The correct answer is C. Timezone. The locale setting defines cultural and language-specific conventions for a user's environment, but it does not directly manage the system's timezone.

Submitted by joshua94· Apr 18, 2026Operation of Running Systems

Question

Which of the following is NOT contained in the locale setting of the operating system?

Options

  • ACurrency symbol
  • BLanguage
  • CTimezone
  • DThousands separator

How the community answered

(30 responses)
  • A
    7% (2)
  • B
    3% (1)
  • C
    87% (26)
  • D
    3% (1)

Why each option

The locale setting defines cultural and language-specific conventions for a user's environment, but it does not directly manage the system's timezone.

ACurrency symbol

Currency symbol is an integral part of locale settings, as it dictates how monetary values are formatted and displayed according to regional conventions.

BLanguage

Language is a primary component of locale settings, influencing system messages, sorting order, and the character set used.

CTimezoneCorrect

Locale settings (`LC_ALL`, `LANG`) control aspects such as language for messages, character encoding, numeric formatting (e.g., thousands separator, decimal point), and currency symbols, which are cultural conventions. However, the system's timezone is typically managed by separate configuration files and utilities, like `/etc/localtime` or `timedatectl`, and is not part of the standard locale categories.

DThousands separator

Thousands separator, along with the decimal point and grouping of digits, is part of numeric formatting controlled by locale settings to match regional standards.

Concept tested: Locale vs. Timezone configuration

Source: https://www.gnu.org/software/libc/manual/html_node/Locale-Categories.html

Topics

#Locale settings#Internationalization#Environment variables

Community Discussion

No community discussion yet for this question.

Full LFCS Practice