Question 11

Given the Customer table structure:
* ID Number Primary Key
* NAME Text Nullable
Given code fragment:

Which statement inserted on line 14 sets NAME column to a NULL value?
  • Question 12

    Given:
    LocalDate d1 = LocalDate.of(1997,2,7);
    DateTimeFormatter dtf =
    DateTimeFormatter.ofPattern( /*insert code here*/ );
    System.out.println(dtf.format (d1));
    Which pattern formats the date as Friday 7th of February 1997?
  • Question 13

    Given the code fragment:

    What is the result?
  • Question 14

    Given an application with a main module that has this module-info.java file:

    Which two are true? (Choose two.)
  • Question 15

    Given:

    What is the result?