'F' → Fullscreen
Examine the class below. Write down the default value for each instance variable before the constructor runs.
class Demo { private int number; private boolean flag; private String text;}Run the program below and explain why it does not crash.
class Test { public static void main(String[] args) { String name = null;
if (name != null) { System.out.println(name.length()); } else { System.out.println("Name is null"); } }}Name is nullnull?
Submit your activity responses and reflection answers to the appropriate dropbox.