Download Java SE 8 Programmer II.1z0-809.PassCertification.2020-01-30.117q.vcex

Vendor: Oracle
Exam Code: 1z0-809
Exam Name: Java SE 8 Programmer II
Date: Jan 30, 2020
File Size: 4 MB

How to open VCEX files?

Files with VCEX extension can be opened by ProfExam Simulator.

Demo Questions

Question 1
Given the definition of the Vehicle class:
Class Vehicle { 
    int distance;         
    Vehicle (int x) { 
        this distance = x; 
    } 
    public void increSpeed(int time)   {     
        int timeTravel = time;                 //line n1 
            //line n3 
        class Car { 
            int value = 0; 
            public void speed () { 
                value = distance /timeTravel;    //line n2 
                System.out.println (“Velocity with new speed”+value+”kmph”); 
            } 
        } 
        speed();                        //line n3 
    } 
and this code fragment:
Vehicle v = new Vehicle (100); 
v.increSpeed(60); 
What is the result? 
  1. Velocity with new speed 1 kmph
  2. A compilation error occurs at line n1.
  3. A compilation error occurs at line n2.
  4. A compilation error occurs at line n3.
Correct answer: A
Question 2
Given the code fragment:
List<Integer> values = Arrays.asList (1, 2, 3); 
values.stream () 
    .map(n -> n*2)        //line n1 
    .peek(System.out::print)    //line n2
    .count(); 
What is the result?
  1. 246
  2. The code produces no output.
  3. A compilation error occurs at line n1.
  4. A compilation error occurs at line n2.
Correct answer: A
Question 3
Given:
class Sum extends RecursiveAction   {                 //line n1 
    static final int THRESHOLD_SIZE  = 3; 
    int stIndex, lstIndex; 
    int [ ] data; 
    public Sum (int [ ]data, int start, int end)   { 
        this.data = data; 
        this stIndex = start; 
        this. lstIndex = end; 
    } 
    protected void compute ( )    { 
        int sum = 0; 
        if (lstIndex – stIndex <= THRESHOLD_SIZE)  { 
            for (int i = stIndex; i < lstIndex; i++)   { 
                sum += data [i]; 
            } 
            System.out.println(sum); 
        } else { 
            new Sum (data, stIndex + THRESHOLD_SIZE, lstIndex).fork( ); 
            new Sum (data, stIndex, 
                    Math.min  (lstIndex, stIndex + THRESHOLD_SIZE) 
                    ).compute (); 
        } 
    } 
and the code fragment:
ForkJoinPool fjPool = new ForkJoinPool ( ); 
int data [ ] = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10} 
fjPool.invoke (new Sum (data, 0, data.length)); 
and given that the sum of all integers from 1 to 10 is 55. 
Which statement is true?
  1. The program prints several values that total 55.
  2. The program prints 55.
  3. A compilation error occurs at line n1.
  4. The program prints several values whose sum exceeds 55.
Correct answer: C
Question 4
Given the content of Operator.java, EngineOperator.java, and Engine.java files:
  
and the code fragment:
  
What is the result?
  1. The Engine.java file fails to compile.
  2. The EngineOperator.java file fails to compile.
  3. The Operator.java file fails to compile. 
  4. ON OFF
Correct answer: A
Question 5
Given the code fragment:
Path file = Paths.get (“courses.txt”); 
// line n1 
Assume the courses.txt is accessible. 
Which code fragment can be inserted at line n1 to enable the code to print the content of the courses.txt file? 
  1. List<String> fc = Files.list(file);
    fc.stream().forEach (s - > System.out.println(s));
  2. Stream<String> fc = Files.readAllLines (file);
    fc.forEach (s - > System.out.println(s));
  3. List<String> fc = readAllLines(file);
    fc.stream().forEach (s - > System.out.println(s));
  4. Stream<String> fc = Files.lines (file);
    fc.forEach (s - > System.out.println(s));
Correct answer: D
Question 6
Given the code fragment:
public void recDelete (String dirName) throws IOException   { 
    File [ ] listOfFiles = new File (dirName) .listFiles(); 
    if (listOfFiles ! = null && listOfFiles.length >0)   { 
        for (File aFile : listOfFiles)   {
            if (aFile.isDirectory ())    { 
                recDelete (aFile.getAbsolutePath ()); 
            }    else   { 
                if (aFile.getName ().endsWith (“.class”)) 
                    aFile.delete (); 
            } 
        } 
    } 
Assume that Projects contains subdirectories that contain .class files and is passed as an argument to the recDelete () method when it is invoked. 
What is the result?
  1. The method deletes all the .class files in the Projects directory and its subdirectories.
  2. The method deletes the .class files of the Projects directory only.
  3. The method executes and does not make any changes to the Projects directory.
  4. The method throws an IOException.
Correct answer: A
Question 7
Given the code fragments:
4. void doStuff() throws ArithmeticException, NumberFormatException, Exception   { 
5.     if (Math.random() >-1 throw new Exception (“Try again”); 
6. } 
and 
24. try { 
25.     doStuff ( ):
26. } catch (ArithmeticException | NumberFormatException | Exception e)  { 
27.     System.out.println (e.getMessage()); } 
28. catch (Exception e)    { 
29.     System.out.println (e.getMessage()); } 
30. } 
Which modification enables the code to print Try again?
  1. Comment the lines 28, 29 and 30.
  2. Replace line 26 with: 
        } catch (Exception | ArithmeticException | NumberFormatException e) {
  3. Replace line 26 with: 
        } catch (ArithmeticException | NumberFormatException e) {
  4. Replace line 27 with: 
        throw e;
Correct answer: C
Question 8
Given the definition of the Country class:
public class country { 
    public enum Continent {ASIA, EUROPE} 
    String name; 
    Continent region; 
    public Country (String na, Continent reg)   { 
        name = na, region = reg; 
        } 
        public String getName () {return name;}  
        public Continent getRegion () {return region;} 
and the code fragment:
List<Country> couList = Arrays.asList ( 
    new Country (“Japan”, Country.Continent.ASIA), 
    new Country (“Italy”, Country.Continent.EUROPE), 
    new Country (“Germany”, Country.Continent.EUROPE)); 
Map<Country.Continent, List<String>> regionNames = couList.stream () 
    .collect(Collectors.groupingBy (Country ::getRegion,
    Collectors.mapping(Country::getName, Collectors.toList()))));
System.out.println(regionNames); 
  1. {EUROPE = [Italy, Germany], ASIA = [Japan]}
  2. {ASIA = [Japan], EUROPE = [Italy, Germany]}
  3. {EUROPE = [Germany, Italy], ASIA = [Japan]}
  4. {EUROPE = [Germany], EUROPE = [Italy], ASIA = [Japan]}
Correct answer: B
Question 9
Given:
class Book { 
    int id; 
    String name; 
    public Book (int id, String name)  { 
        this.id = id; 
        this.name = name; 
    } 
    public boolean equals (Object obj) {           //line n1 
        boolean output = false; 
        Book b = (Book) obj; 
        if (this.name.equals(b name))} 
            output = true; 
        } 
        return output; 
    } 
and the code fragment:
Book b1 = new Book (101, “Java Programing”); 
Book b2 = new Book (102, “Java Programing”); 
System.out.println (b1.equals(b2));                 //line n2 
Which statement is true?
  1. The program prints true.
  2. The program prints false.
  3. A compilation error occurs. To ensure successful compilation, replace line n1 with: 
       boolean equals (Book obj)  {
  4. A compilation error occurs. To ensure successful compilation, replace line n2 with: 
       System.out.println (b1.equals((Object) b2));
Correct answer: A
Question 10
Given the content of /resourses/Message.properties:
welcome1=”Good day!” 
and given the code fragment:
Properties prop = new Properties (); 
FileInputStream fis = new FileInputStream (“/resources/Message.properties”); 
prop.load(fis); 
System.out.println(prop.getProperty(“welcome1”)); 
System.out.println(prop.getProperty(“welcome2”, “Test”));//line n1 
System.out.println(prop.getProperty(“welcome3”)); 
What is the result? 
  1. Good day!
    Test
    followed by an Exception stack trace
  2. Good day!
    followed by an Exception stack trace
  3. Good day!
    Test
    null
  4. A compilation error occurs at line n1.
Correct answer: C
HOW TO OPEN VCE FILES

Use VCE Exam Simulator to open VCE files
Avanaset

HOW TO OPEN VCEX AND EXAM FILES

Use ProfExam Simulator to open VCEX and EXAM files
ProfExam Screen

ProfExam
ProfExam at a 20% markdown

You have the opportunity to purchase ProfExam at a 20% reduced price

Get Now!