Free Response Practice Question (with solution)- 2D Balanced Matrix Array


<-- Back to AP CSA Exam Solutions Next to 2D Alphabet Matrix -->





2D Balanced Matrix Array


Write a Java program that reads a 3 X 3 array of integers (positive, negative or zeros) and calculates and prints if it is a balanced matrix or not.

A matrix is defined as balanced, if all the following conditions are met:


For example, consider the matrix a shown in the example:

For this matrix, sumFirstRow= sumFirstCol=sumDia=0

Hence it is a balanced matrix.


Solution:

View Solution

Sample Output:

View Output

Java project files (with Runner code):


<-- Back to AP CSA Exam Solutions Next to 2D Alphabet Matrix -->