What Will Be The Output Of The Following Java Programp Pre #355
What will be the output of the following Java program?</p> <pre><code class="language-java" line="1"> class String_demo { public static void main(String args[]) { char chars[] = {'a', 'b', 'c'}; String s = new String(chars); String s1 = "abcd"; int len1 = s1.length(); int len2 = s.length(); System.out.println(len1 + " " + len2); } }</code></pre>
This multiple choice question (MCQ) is related to the book/course gs gs128 Java. It can also be found in gs gs128 Java String Handling - Java String Handling Basics - Quiz No.1.