What is output with the statement “System.out.println(“1+5=” + (1+5));”?
Category: Uncategorized
What output is produced by the following code fragment? int…
What output is produced by the following code fragment? int x = 15, y = 10; if (x < y) System.out.print ("apple "); System.out.print("orange "); System.out.println("pear");
Assuming that “generator” is a java.util.Random object, what…
Assuming that “generator” is a java.util.Random object, what is the range of the following expression? 10 + generator.nextInt(90)
float num1 = 3, num2 = 4;What value will z have if we execut…
float num1 = 3, num2 = 4;What value will z have if we execute the following assignment statement?float z = num1 / num2;
If a method (excluding constructor) does not have a return s…
If a method (excluding constructor) does not have a return statement, then
Assuming that “generator” is a java.util.Random object, what…
Assuming that “generator” is a java.util.Random object, what is the range of the following expression? 1 + generator.nextInt(100)
How many “Go” will be printed by the following code fragment…
How many “Go” will be printed by the following code fragment?for(int row=1; row
Write a method called average that accepts three integer par…
Write a method called average that accepts three integer parameters and returns a floating point value that is the average of the three integers.
str is a String object. Which of the following could throw a…
str is a String object. Which of the following could throw a StringIndexOutOfBoundsException?
Which of the following will be printed out using the stateme…
Which of the following will be printed out using the statement “System.out.println(a1)” in the driver class? “a1” is the Account object created in the previous question.