0 / 60 seg.

What will be the output of the following code if "example.txt" is not found?

import java.io.File;
import java.io.FileReader;
public class Main {
    public static void main(String[] args) {
        File file = new File("example.txt");
        if (file.exists()) {
            System.out.println("File exists.");
        }
    }
}