Consider the following code fragment related to sets:
Set<String> StudentsInPhysics = new ArraySet<>(100);
Set<String> StudentsInBiology = new ArraySet<>(100);
Set<String> StudentsInEnglish = new ArraySet<>(100);
In only one line, write a Java boolean expression to determine if the student “Tom” is taking neither Physics nor Biology. Do not write an entire if-statement, only the boolean expression that would be used to make the test (i.e. what would go inside the parenthesis of the if-statement).