Given the Java code below, what can be the expected outcome? Choose the correct answer(s).
File file = new File("Example.txt");
if (file.exists()) {
System.out.println(file.getName() + " exists");
file.delete();
} else {
System.out.println("File not found");
}