public class Program {
static
boolean isValid(String name, boolean exists) {
// Return a boolean based on the two arguments.
return name.length() >= 3 && exists;
}
public static void main(String[] args) {
// Test the results of the isValid method.
System.out.println(isValid(
"green", true));
System.out.println(isValid(
"", true));
System.out.println(isValid(
"orchard", false));
}
}
true
false
false