Core Java Interview Questions and Answers
<< Previous Question Next Question >>
 Question: 383 Page Views: 

What is the ResourceBundle class?



Posted By: Avi Date: 9 November 2010 02:55:55 AM
 Answer:

The ResourceBundle class is used to store locale-specific resources that can be loaded by a program to tailor the program's appearance to the particular locale in which it is being run.


Posted By: avibtech


Date: 9 November 2010 02:55:55 AM
Post a better Answer if you have
 
(Will show your Gravatar icon)  
  Country flag

Loading
Enter the text as shown in the image 3WnzvZ
Related Questions
Core Java : What is the purpose of garbage collection?

What is the purpose of garbage collection?

The purpose of garbage collection is to identify and discard objects that are no longer needed by a ....
Category: Core Java Date: 11/6/2010 6:35:55 PM
Core Java : What is a marker interface ?

What is a marker interface ?

It is an interface that doesn’t contain methods and it is used to mark java classes that support cer....
Category: Core Java Date: 11/6/2010 4:25:51 PM
Core Java : What is the List interface?

What is the List interface?

The List interface provides support for ordered collections of objects
Category: Core Java Date: 11/6/2010 4:13:55 PM
Core Java : What is the highest-level event class of the event-delegation model?

What is the highest-level event class of the event-delegation model?

The java.util.EventObject class is the highest-level class in the event-delegation class hierarchy.
Category: Core Java Date: 11/6/2010 2:35:53 PM
Core Java : Can the constructor be declared private?

Can the constructor be declared private?

Yes, in this case, you can’t create any instance for this class by using new.
Category: Core Java Date: 11/6/2010 2:15:46 PM