Below is the option of correct answer
c) option is correct
)_like_programming:)
Soru 9 What is the output of the following code? String s = "I_like_programming:)"; System.out.println(s.split(":")[1] +...
Soru 14 Which of the following correctly describes the unearned revenue account? Yanitiniz: O The unearned revenue account represents revenue that has been collected, but not yet earned O The unearned revenue account represents revenue that has been earned and collected The unearned revenue account represents revenue that has been earned, but not yet collected O The unearned revenue account represents revenue that has neither been earned nor collected Yaniti temizle Geri Sonraki
Given the following code: public static void foo3(String s) { if (s.length() >0) { System.out.print(s.charAt(s.length() -1)); foo3(s.substring(0, s.length() -1)); } } What is the output of: foo3(“”); 2, You coded the following in the file Test.java : System.out.println( foo(5)); //more code here public static int foo(int n) //line 9 { if (n = = 0) return 1; else System.out.println(n* foo(n-1) ); } //line 15 At compile time, you get the following error: Text.java: 15: missing return statement } ...
Question 36 (1 point) What is the output of the code snippet given below? String s = "magnificent"; int i = 1; do { if (i > 2) System.out.print(s.substring (1, i)); } i++; } while (i < 5);
1. What is the output of the following code segment? int array[] = { 8, 6, 9, 7, 6, 4, 4, 5, 8, 10 }; System.out.println( "Index Value" ); for ( int i = 0; i < array.length; i++ ) System.out.printf( "%d %d\n", i, array[ i ] ); 2. What is the output of the following code segment? char sentence[] = {'H', 'o', 'w', ' ', 'a', 'r', 'e', ' ', 'y', 'o', 'u' }; String output = "The sentence...
The output of the following code is ________ String one = "Hello"; String two = "Hello"; if( one == two ) { System.out.println("equal"); } else { System.out.println("not equal"); } not equal equal Code on't compile
What is the output of the following code sequence? int i = 10; i--; System.out.println(i); --i; System.out.println(i); System.out.println(++i); System.out.println(i++); System.out.println(i); System.out.println(--i); System.out.println(i--); System.out.println(i); if (i++ == 8) System.out.println("Eight"); if (++i == 9) System.out.println("Nine"); System.out.println("Final value " + i); 2. Show the change in the code above so that it also prints out Nine
What is the output of the following code? class parent { public void someFunction() { System.out.println("Parent Function"); } } public class child extends parent { public void someFunction() { System.out.println("Child Function"); } public static void main(String args) { parent p1 = new parent(); parent p2 = new child(); child c1 = new child(); p1.someFunction(); p2.someFunction(); c1.someFunction(); } }
Given the following Java code fragment, what is output? int a, b; String c, d, e; String x = new String(“I LOVE”); String y = “java!”; a = x.length( ); System.out.println(“1) “ + a); b = y.length( ); System.out.println(“2) “ + b); c = y.toUpperCase( ); System.out.println(“3) “ + c); d = x.toLowerCase( ); System.out.println(“4) “ + d); e = x.concat(y); System.out.println(“5) “ + e);
Java class quiz need help~ This is the Backwards.java code. public class Backwards { /** * Program starts with this method. * * @param args A String to be printed backwards */ public static void main(String[] args) { if (args.length == 0) { System.out.println("ERROR: Enter a String on commandline."); } else { String word = args[0]; String backwards = iterativeBack(word); // A (return address) System.out.println("Iterative solution: " + backwards); backwards = recursiveBack(word); // B (return address) System.out.println("\n\nRecursive solution: " +...
Please answer both questions thank you.
Question 52 (1 point) What is the output of the code snippet given below? String s = "abcde"; int i = 1; while (i < 5) { System.out.print(s.substring(i, i + 1)); i++; Question 50 (1 point) How many times will the output line be printed in the following code snippet? Please enter your answer as an integer. for (int i = 0; i < 3; i++) { for (int j = 1; j <...