What Will Be The Output Of The Following Java Codep Pre #643
What will be the output of the following Java code?</p> <pre><code class="language-java"> public class charAtFunction { public static class Inner { public static void indexChar(String a, int b) { System.out.println(a.charAt(b)); } } public static void main(String[] args) { charAtFunction.Inner.indexChar("NVAEducation", 8); } } </code></pre>
This multiple choice question (MCQ) is related to the book/course gs gs111 OOP Object Oriented Programming Java. It can also be found in gs gs111 Types of Classes (Using Java) - Static Class - Quiz No.1.
What will be the output of the following Java code?
public class charAtFunction { public static class Inner { public static void indexChar(String a, int b) { System.out.println(a.charAt(b)); } } public static void main(String[] args) { charAtFunction.Inner.indexChar("NVAEducation", 8); } }
d
r
Compilation error
Runtime Error