questions ________________________________________ question 1) what will happen when you attempt to compile and run this code? abstract class base{ abstract public void myfunc(); public void another(){ system.out.println(“another method”); } } public class abs extends base{ public static void main(string argv[]){ abs a = new abs(); a.amethod(); } public void .. .. ..
