About Question enthuware.ocpjp.v8.2.1673 :

All the posts and topics that contain only an error report will be moved here after the error is corrected. This is to ensure that when users view a question in ETS Viewer, the "Discuss" button will not indicate the presence of a discussion that adds no value to the question.

Moderators: Site Manager, fjwalraven

Post Reply
ashish
Posts: 9
Joined: Wed Nov 25, 2015 11:54 pm
Contact:

About Question enthuware.ocpjp.v8.2.1673 :

Post by ashish »

Given the following code for monitoring a directory:         

Path path = Paths.get(directoryPath);         
WatchService watchService = FileSystems.getDefault().newWatchService();         path.register(watchService, StandardWatchEventKinds.ENTRY_CREATE,                         StandardWatchEventKinds.ENTRY_MODIFY,
                        StandardWatchEventKinds.ENTRY_DELETE);         

while(true){             
WatchKey key = watchService.take(); //waits until a key is available          
System.out.println(key.isValid());                         

 for (WatchEvent<?> watchEvent : key.pollEvents())             {               
 Kind<?> kind = watchEvent.kind();                
System.out.println(kind);             }         }

A file is created and then deleted from the monitored directory.
How many events will be printed by the above code?

There are four option available.
A 1
B 2
C 3
D 4

Query - In questions above there is no system.out.println for printing events.

Answer is A - 1 event .
I would like to know , how 1 is came for said questions.

admin
Site Admin
Posts: 10402
Joined: Fri Sep 10, 2010 9:26 pm
Contact:

Re: About Question enthuware.ocpjp.v8.2.1673 :

Post by admin »

You are right. It should be System.out.println(watchEvent); instead of System.out.println(kind); Fixed.
thank you for your feedback!

ashish
Posts: 9
Joined: Wed Nov 25, 2015 11:54 pm
Contact:

Re: About Question enthuware.ocpjp.v8.2.1673 :

Post by ashish »

Thanks for fixed.
How i can get update in my system ?

What is the process to get updated questions and answer ?

admin
Site Admin
Posts: 10402
Joined: Fri Sep 10, 2010 9:26 pm
Contact:

Re: About Question enthuware.ocpjp.v8.2.1673 :

Post by admin »

You may just download the question bank again from our website.
-Paul.

Post Reply

Who is online

Users browsing this forum: No registered users and 7 guests