<< Chapter < Page Chapter >> Page >
Listing 4 . Listing for Question 4.
public class Ap052{ public static void main(String args[]){new Worker().doArrays(); }//end main()}//end class definition class Worker{public void doArrays(){ int myArray[][];myArray = new int[3][5];for(int i=0;i<myArray.length;i++){ for(int j=0;j<myArray[0].length;j++){myArray[i][j]= i*j + 1; }//end inner for loop}//end outer for loopfor(int i=0;i<myArray.length;i++){ for(int j=0;j<myArray[0].length;j++){System.out.print( myArray[i][j] + " ");}//end inner for loop System.out.println("");}//end outer for loop}//end doArrays() }// end class

Answer and Explanation

Question 5

What output is produced by program shown in Listing 5 ?

A. Compiler Error B. Runtime Error C. -1 -1 -1 -1 -1 -1 -2 -3 -4 -5-1 -3 -5 -7 -9 D. None of the above
Listing 5 . Listing for Question 5.
public class Ap053{ public static void main(String args[]){new Worker().doArrays(); }//end main()}//end class definition class Worker{public void doArrays(){ int myArray[][];myArray = new int[3][5];for(int i = 0;i<3;i++){ for(int j = 0;j<5;j++){ myArray[i][j] = (i*j+1)*(-1);}//end inner for loop }//end outer for loopfor(int i = 0;i<3;i++){ for(int j = 0;j<6;j++){ System.out.print(myArray[i][j]+ " "); }//end inner for loopSystem.out.println(""); }//end outer for loop}//end doArrays()}// end class

Answer and Explanation

Question 6

What output is produced by program shown in Listing 6 ?

  • A. Compiler Error
  • B. Runtime Error
  • C. 3
  • D. None of the above
Listing 6 . Listing for Question 6.
public class Ap054{ public static void main(String args[]){new Worker().doArrays(); }//end main()}//end class definition class Worker{public void doArrays(){ int[]A = new int[2];A[0] = 1;A[1] = 2;System.out.println(A[0] + A[1]); }//end doArrays()}// end class

Answer and Explanation

Question 7

What output is produced by program shown in Listing 7 ?

  • A. Compiler Error
  • B. Runtime Error
  • C. OK
  • D. None of the above
Listing 7 . Listing for Question 7.
import java.awt.Label; public class Ap055{public static void main( String args[]){ new Worker().doArrays();}//end main() }//end class definitionclass Worker{ public void doArrays(){Label[] A = new Label[2]; A[0]= new Label("O"); A[1]= new Label("K"); System.out.println(A[0]+ A[1]);}//end doArrays() }// end class

Answer and Explanation

Question 8

What output is produced by program shown in Listing 8 ?

  • A. Compiler Error
  • B. Runtime Error
  • C. OK
  • D. None of the above
Listing 8 . Listing for Question 8.
import java.awt.Label; public class Ap056{public static void main( String args[]){ new Worker().doArrays();}//end main() }//end class definitionclass Worker{ public void doArrays(){Label[] A = new Label[2]; A[0]= new Label("O"); A[1]= new Label("K"); System.out.println(A[0].getText() + A[1].getText());}//end doArrays() }// end class

Answer and Explanation

Question 9

What output is produced by program shown in Listing 9 ?

Get Jobilize Job Search Mobile App in your pocket Now!

Get it on Google Play Download on the App Store Now




Source:  OpenStax, Object-oriented programming (oop) with java. OpenStax CNX. Jun 29, 2016 Download for free at https://legacy.cnx.org/content/col11441/1.201
Google Play and the Google Play logo are trademarks of Google Inc.

Notification Switch

Would you like to follow the 'Object-oriented programming (oop) with java' conversation and receive update notifications?

Ask