1z1-819 Exam Question 61

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?
  • 1z1-819 Exam Question 62

    Given:

    What is the result?
  • 1z1-819 Exam Question 63

    Given:

    What is the result?
  • 1z1-819 Exam Question 64

    Given:

    Which annotation should be used to remove warnings from compilation?
  • 1z1-819 Exam Question 65

    Given:
    List<String> list1 = new ArrayList<>();
    list1.add("A");
    list1.add("B");
    List list2 = List.copyOf(list1);
    list2.add("C");
    List<List<String>> list3 = List.of(list1, list2);
    System.out.println(list3);
    What is the result?