1z0-830 Exam Question 26

Given:
java
package vehicule.parent;
public class Car {
protected String brand = "Peugeot";
}
and
java
package vehicule.child;
import vehicule.parent.Car;
public class MiniVan extends Car {
public static void main(String[] args) {
Car car = new Car();
car.brand = "Peugeot 807";
System.out.println(car.brand);
}
}
What is printed?
  • 1z0-830 Exam Question 27

    Given:
    java
    var lyrics = """
    Quand il me prend dans ses bras
    Qu'il me parle tout bas
    Je vois la vie en rose
    """;
    for ( int i = 0, int j = 3; i < j; i++ ) {
    System.out.println( lyrics.lines()
    .toList()
    .get( i ) );
    }
    What is printed?
  • 1z0-830 Exam Question 28

    Given:
    java
    public class ExceptionPropagation {
    public static void main(String[] args) {
    try {
    thrower();
    System.out.print("Dom Perignon, ");
    } catch (Exception e) {
    System.out.print("Chablis, ");
    } finally {
    System.out.print("Saint-Emilion");
    }
    }
    static int thrower() {
    try {
    int i = 0;
    return i / i;
    } catch (NumberFormatException e) {
    System.out.print("Rose");
    return -1;
    } finally {
    System.out.print("Beaujolais Nouveau, ");
    }
    }
    }
    What is printed?
  • 1z0-830 Exam Question 29

    Given:
    java
    Map<String, Integer> map = Map.of("b", 1, "a", 3, "c", 2);
    TreeMap<String, Integer> treeMap = new TreeMap<>(map);
    System.out.println(treeMap);
    What is the output of the given code fragment?
  • 1z0-830 Exam Question 30

    Given:
    java
    var counter = 0;
    do {
    System.out.print(counter + " ");
    } while (++counter < 3);
    What is printed?