Internationalization Localization

  Home  Java Programing  Internationalization Localization


“Internationalization Localization frequently Asked Questions by expert members with experience in Internationalization localization. These interview questions and answers on Internationalization Localization will help you strengthen your technical skills, prepare for the interviews and quickly revise the concepts. So get preparation for the Internationalization Localization job interview”



4 Internationalization Localization Questions And Answers

2⟩ What is the difference between Localization and internationalization?

Internationalization is the process of changing your software so that it isn't hardwired to one language/locale/culture.

Localization is the process of adding the appropriate resources to your software so that a particular language/locale is supported. It's bigger in scope than just this Wikipedia entry, but it's a good start.

 137 views

3⟩ Explain Locale in Java?

Locale represents languages and cultural preferences of a geographic area. The locale class has 2 constructors such as

locale(string Language, string Country)

locale(string Language, string Country, string variant)

 146 views

4⟩ Do you know what is resource bundles in Java?

The place where an application stores its locale-specific data (isolated from source code).

When your program needs a locale-specific resource your program can load it from the resource bundle that is appropriate for the current user's locale.

 159 views