import java.io.IOException;
public class Program11 {
public static void main(String[] args){
try{
doSomething();
}
catch(RuntimeException e){
System.out.println(e);
}
}
static void doSomething(){
if(Math.random()>0.5) throw new IOException();
throw new RuntimeException();
}
}
Which two actions, used independently, will permit this class to compile?