Every important term from Week 2 — search or browse by topic
+ operator. Since Strings are immutable, each concatenation creates a new String object.\) followed by a special character to represent things you cannot type directly in a String. Common escapes: \n (new line), \t (tab), \" (double quote), \\ (backslash).-1 if not found.== to compare Strings.true if the String begins with the specified prefix. Case-sensitive.true if the String ends with the specified suffix. Case-sensitive.array.length which is a field (no parentheses).. or |) are treated as plain text. Useful with split() when your delimiter has special meaning in regex.int value. Throws NumberFormatException if the String is not a valid integer.double value. Throws NumberFormatException if the String is not a valid number.float value. Less commonly used than Double.parseDouble() since double is the default decimal type in Java."abc" or "" as an integer.java.time that represents a date (year, month, day) without a time component. You can parse dates from Strings or create them directly."MM/dd/yyyy".YYYY-MM-DD (e.g., 2026-04-12). This is the default format that LocalDate.parse() expects when no formatter is specified.emp1 is an instance of Employee.new keyword followed by a constructor call.new. It initializes the object's fields. Has the same name as the class and no return type.private and controlling access through public getter and setter methods. This protects the data from being changed in unexpected ways.public, private, and package-private (default).getFieldName() by convention. Provides read access without exposing the field directly.setFieldName() by convention. Can include validation logic to prevent bad data.i, j, or count) that tracks how many times a loop has run. In a for loop, this is the variable in the initialization part.break to exit.InterruptedException.length - 1.String.length() which is a method (with parentheses).length.true if they have the same length and identical elements in the same order. Do not use == to compare arrays — it only checks if they are the same object.null until you assign a real value. Trying to call a method on null causes a NullPointerException.Tip: Use Ctrl+F for browser-level search, or use the filter box above to narrow by topic and term name.