Get invaluable Interview and Career Tips delivered directly to your inbox. Get your news alert set up today, Once you confirm your Email subscription, you will be able to download Job Inteview Questions Ebook . Please contact me if you there is any issue with the download.
ArrayIndexOutOfBoundsException – attempt to access an out of range array index. int x [ ] = new int [ 5 ]; int y = -2; // 1 x [ y ] = 2; // 2 x [ 2 ] = 2; // 3 x [ 5 ] = 5; // 4 System.out.println( x[0] ); // 5 a) Statement 1 and 2 are false b) Statement 2 and 3 are false c) Statement 2 and 4 are false d) Statement 2 and 5 are false
Related Answered Questions
Related Open Questions