Java OCA OCP Practice Question 2082

Question

If your application has all town names in a single file named strings.properties, what is the most specific process that has been implemented?.

  • A. Internationalization
  • B. Localization
  • C. Specialization
  • D. Translation


A.

Note

Internationalization means the program is designed so it can be adapted for multiple languages.

By extracting the town names, this is exactly what has happened here, making Option A correct.

Localization means the program actually supports multiple locales.

There's no mention of multiple locales here, so Option B is incorrect.

Similarly, there is no mention of multiple languages, making Option D incorrect.

Specialization is not a term relevant to properties, making Option C incorrect.




PreviousNext

Related