Predict Program Output of the following code public static void main(String[] args) { int i=6; if(i%2!=0) System.out.print(“1”); else if(i%2==0) System.out.print(“2”); if(i%6==0) System.out.print(“3”);}
Author: Anonymous
What will be the output of the following code: public class…
What will be the output of the following code: public class Main{ public static void main(String[] args) { final int NUM_PEARS = 6; NUM_PEARS += 12; System.out.println(NUM_PEARS); }}
Match the expressions of the following for loop with the res…
Match the expressions of the following for loop with the respective terminology. for (int i=0; i
Match the expressions of the following for loop with the res…
Match the expressions of the following for loop with the respective terminology. for (int i=0; i
What is the output of the following program? public static v…
What is the output of the following program? public static void main(String[] args) { String str1 = “Good”; String str2 = “Afternoon”; String str3 = str2; str2 = “Night”; System.out.println(str1 + ” ” + str3 );}
Select the most accurate answer for each sentence. Ethics……
Select the most accurate answer for each sentence. Ethics… I. [INDCOL] in nature. II. [WHO] the responsibility of developers.
What is the output of the following program? public class Fr…
What is the output of the following program? public class Fruit{ public void myMethod() { System.out.println(“Fruit”); } } public class Pear extends Fruit{ public void myMethod(int weight) { System.out.println(“Pear”); } public static void main(String[] args) { Pear pear = new Fruit(); pear.myMethod(); } }
Which of the following variables below, if any, are equivale…
Which of the following variables below, if any, are equivalent to 2.5? double var1 = 5/2;double var2 = (double) (5/2);double var3 = 5 / (double) 2; var1 [answer1] equivalent to 2.5var2 [answer2] equivalent to 2.5var3 [answer3] equivalent to 2.5
We are given an array, A: [ 15, 25, 7, 0, -7] After first pa…
We are given an array, A: [ 15, 25, 7, 0, -7] After first pass of the selection sort that moves the smallest element in its correct place after each pass, A will be : [ [a], [b], [c], [d], [e] ] Note: Only add one element of the array in one rectangular box above.
Which of the following is an advantage of obtaining protein…
Which of the following is an advantage of obtaining protein from plant sources over that of animal sources?