(Choose 1 answer)
Given the following code
import java.io.*;
public class Ppvg{
public static void main(String argv[]){
Ppvg p = new Ppvg();
p.fliton();
public int fliton(){
try{
FileInputStream din = new FileInputStream("Ppvg.java");
din.read();
} catch(IOException ioe){System.out.println("flytwick");
return 99;
}finally {
System.out.println("fliton");
}
return -1;
}
} Assuming the file Ppvg.java is available to be read which of the following statements is tru compile and run the program?
A. The program will run and output only "flytwick"
B. The program will run and output only "fliton"
Exit 21