Exam 1z0-819 All QuestionsBrowse all questions from this exam
Question 51

Which code fragment does a service use to load the service provider with a Print interface?

    Correct Answer: A

    The correct way to use ServiceLoader to load a service provider with a Print interface is by declaring a ServiceLoader instance and using its load method with the Print.class parameter. This allows the application to discover and load implementations of the Print interface that are available in the runtime environment. Therefore, the correct code fragment is 'private java.util.ServiceLoader<Print> loader = ServiceLoader.load(Print.class);'.

Discussion
StavokOption: A

ServiceLoader is a class in the java.util package that provides a simple service-provider loading facility. It allows an application to specify one or more service interfaces and to discover and load implementations of those interfaces that are available in the runtime environment. Option A is the correct way to use ServiceLoader to load a service provider with a Print interface. The load method of ServiceLoader takes a Class object representing the service interface and returns a new ServiceLoader instance that can be used to obtain instances of the service.

ASPushkinOption: A

ServiceLoader is like an annotation Bean ans Autowired in the Spring. Kind of a plugin for a searching and loading service provider implementations. public static <S> ServiceLoader<S> load(Class<S> sericeType)

tmuralimanoharOption: A

Answer: A