Assume the following:
String example = \"something\"; String firstLetter = \"\";
Are there d
String whole = "something"; String first = whole.substring(0, 1); System.out.println(first);