1Z0-809 Premium Bundle

1Z0-809 Premium Bundle

Java SE 8 Programmer II Certification Exam

4.5 
(24570 ratings)
0 QuestionsPractice Tests
0 PDFPrint version
May 20, 2024Last update

Oracle 1Z0-809 Free Practice Questions

Q1. Given the code fragment: 

List<String> colors = Arrays.asList(“red”, “green”, “yellow”); 

Predicate<String> test = n - > { 

System.out.println(“Searching…”); 

return n.contains(“red”); 

}; 

colors.stream() 

.filter(c -> c.length() > 3) 

.allMatch(test); 

What is the result? 

A. Searching… 

B. Searching… Searching… 

C. Searching… Searching… Searching… 

D. A compilation error occurs. 

Answer:

Q2. Given the code fragment: 

List<String> empDetails = Arrays.asList(“100, Robin, HR”, 

“200, Mary, AdminServices”, 

“101, Peter, HR”); 

empDetails.stream() 

.filter(s-> s.contains(“1”)) 

.sorted() 

.forEach(System.out::println); //line n1 

What is the result? 

A. 100, Robin, HR 101, Peter, HR 

B. E. A compilation error occurs at line n1. 

C. 100, Robin, HR 101, Peter, HR 200, Mary, AdminServices 

D. 100, Robin, HR 200, Mary, AdminServices 101, Peter, HR 

Answer:

Q3. Given the code fragment: 

List<Integer> nums = Arrays.asList (10, 20, 8): 

System.out.println ( 

//line n1 

); 

Which code fragment must be inserted at line n1 to enable the code to print the maximum number in the nums list? 

A. nums.stream().max(Comparator.comparing(a -> a)).get() 

B. nums.stream().max(Integer : : max).get() 

C. nums.stream().max() 

D. nums.stream().map(a -> a).max() 

Answer:

Q4. Given the code fragment: 

List<String> str = Arrays.asList (“my”, “pen”, “is”, “your’, “pen”); Predicate<String> test = s -> { 

int i = 0; 

boolean result = s.contains (“pen”); 

System.out.print(i++) + “:”); 

return result; 

}; 

str.stream() 

.filter(test) 

.findFirst() 

.ifPresent(System.out ::print); 

What is the result? 

A. 0 : 0 : pen 

B. 0 : 1 : pen 

C. 0 : 0 : 0 : 0 : 0 : pen 

D. 0 : 1 : 2 : 3 : 4 : 

E. A compilation error occurs. 

Answer:

Q5. Given the code fragments: 

class Employee { 

Optional<Address> address; 

Employee (Optional<Address> address) { 

this.address = address; 

public Optional<Address> getAddress() { return address; } 

class Address { 

String city = “New York”; 

public String getCity { return city: } 

public String toString() { 

return city; 

and 

Address address = null; 

Optional<Address> addrs1 = Optional.ofNullable (address); 

Employee e1 = new Employee (addrs1); 

String eAddress = (addrs1.isPresent()) ? addrs1.get().getCity() : “City Not 

available”; 

What is the result? 

A. New York 

B. City Not available 

C. null 

D. A NoSuchElementException is thrown at run time. 

Answer:

Q6. Given the code fragment: 

Map<Integer, String> books = new TreeMap<>(); 

books.put (1007, “A”); 

books.put (1002, “C”); 

books.put (1001, “B”); 

books.put (1003, “B”); 

System.out.println (books); 

What is the result? 

A. {1007 = A, 1002 = C, 1001 = B, 1003 = B} 

B. {1001 = B, 1002 = C, 1003 = B, 1007 = A} 

C. {1002 = C, 1003 = B, 1007 = A} 

D. {1007 = A, 1001 = B, 1003 = B, 1002 = C} 

Answer:

Q7. Given: 

Which two classes use the shape class correctly? 

A. Option A 

B. Option B 

C. Option C 

D. Option D 

E. Option E 

F. Option F 

Answer: B,E 

Explanation: When an abstract class is subclassed, the subclass usually provides implementations for all of the abstract methods in its parent class (E). However, if it does not, then the subclass must also be declared abstract (B). Note: An abstract class is a class that is declared abstract—it may or may not include abstract methods. Abstract classes cannot be instantiated, but they can be subclassed. 

Q8. Given the code fragment: 

public class FileThread implements Runnable { 

String fName; 

public FileThread(String fName) { this.fName = fName; } 

public void run () System.out.println(fName);} 

public static void main (String[] args) throws IOException, InterruptedException { 

ExecutorService executor = Executors.newCachedThreadPool(); 

Stream<Path> listOfFiles = Files.walk(Paths.get(“Java Projects”)); 

listOfFiles.forEach(line -> { 

executor.execute(new FileThread(line.getFileName().toString())); // 

line n1 

}); 

executor.shutdown(); 

executor.awaitTermination(5, TimeUnit.DAYS);// 

line n2 

The Java Projects directory exists and contains a list of files. 

What is the result? 

A. The program throws a runtime exception at line n2. 

B. The program prints files names concurrently. 

C. The program prints files names sequentially. 

D. A compilation error occurs at line n1. 

Answer:

Q9. Given: 

A. Ym Xm2 

B. Ym Xm1 

C. Compilation fails 

D. A ClassCastException is thrown at runtime 

Answer:

Q10. Which two statements are true for a two-dimensional array? 

A. It is implemented as an array of the specified element type. 

B. Using a row by column convention, each row of a two-dimensional array must be of the same size. 

C. At declaration time, the number of elements of the array in each dimension must be specified. 

D. All methods of the class Object may be invoked on the two-dimensional array. 

Answer: A,D 

Q11. Given: 

public class Customer { 

private String fName; 

private String lName; 

private static int count; 

public customer (String first, String last) {fName = first, lName = last; 

++count;} 

static { count = 0; } 

public static int getCount() {return count; } 

public class App { 

public static void main (String [] args) { 

Customer c1 = new Customer(“Larry”, “Smith”); 

Customer c2 = new Customer(“Pedro”, “Gonzales”); 

Customer c3 = new Customer(“Penny”, “Jones”); 

Customer c4 = new Customer(“Lars”, “Svenson”); 

c4 = null; 

c3 = c2; 

System.out.println (Customer.getCount()); 

What is the result? 

A. 0 

B. 2 

C. 3 

D. 4 

E. 5 

Answer:

Q12. Given: 

public enum USCurrency { 

PENNY (1), 

NICKLE(5), 

DIME (10), 

QUARTER(25); 

private int value; 

public USCurrency(int value) { 

this.value = value; 

public int getValue() {return value;} 

public class Coin { 

public static void main (String[] args) { 

USCurrency usCoin =new USCurrency.DIME; 

System.out.println(usCoin.getValue()): 

Which two modifications enable the given code to compile? 

A. Nest the USCurrency enumeration declaration within the Coin class. 

B. Make the USCurrency enumeration constructor private. 

C. Remove the new keyword from the instantion of usCoin. 

D. Make the getter method of value as a static method. 

E. Add the final keyword in the declaration of value. 

Answer: A,E 

Q13. View the exhibit. 

Given the code fragment: 

Which change enables the code to print the following? 

James age: 20 

Williams age: 32 

A. Replacing line 5 with public static void main (String [] args) throws MissingInfoException, AgeOutofRangeException { 

B. Replacing line 5 with public static void main (String [] args) throws.Exception { 

C. Enclosing line 6 and line 7 within a try block and adding: catch(Exception e1) { //code goes here} catch (missingInfoException e2) { //code goes here} catch (AgeOutofRangeException e3) {//code goes here} 

D. Enclosing line 6 and line 7 within a try block and adding: catch (missingInfoException e2) { //code goes here} catch (AgeOutofRangeException e3) {//code goes here} 

Answer:

Q14. Which two statements are true about localizing an application? 

A. Support for new regional languages does not require recompilation of the code. 

B. Textual elements (messages and GUI labels) are hard-coded in the code. 

C. Language and region-specific programs are created using localized data. 

D. Resource bundle files include data and currency information. 

E. Language codes use lowercase letters and region codes use uppercase letters. 

Answer: A,E 

Reference: http://docs.oracle.com/javase/7/docs/technotes/guides/intl/ 

Q15. Given that /green.txt and /colors/yellow.txt are accessible, and the code fragment: 

Path source = Paths.get(“/green.txt); 

Path target = Paths.get(“/colors/yellow.txt); 

Files.move(source, target, StandardCopyOption.ATOMIC_MOVE); 

Files.delete(source); 

Which statement is true? 

A. The green.txt file content is replaced by the yellow.txt file content and the yellow.txt file is deleted. 

B. The yellow.txt file content is replaced by the green.txt file content and an exception is thrown. 

C. The file green.txt is moved to the /colors directory. 

D. A FileAlreadyExistsException is thrown at runtime. 

Answer:

START 1Z0-809 EXAM