(23)
Answer (Choose 1 answer)
A. a sequence of 5 0's will be printed
B. IndexOutOfBoundes Error
C. Error: ar is used before it is initialized
D. Error Mine must be declared abstract
What will be the result of attempting to compile and run the following code?
abstract class MineBase { abstract void amethod();static int i;}
public class Mine extends MineBase { public static void main(String argv[]){int[] ar=new int[5];for(i=0;i < ar.length;i++)System.out.println(ar[i]);