Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

in java ( using simple methods and reading file ways !!! level 1 ) : Problem 2: 1- Write a method that fills a two

in java ( using simple methods and reading file ways !!! level 1 ) :

Problem 2:

1- Write a method that fills a two dimensional array of characters. The characters are read from an input file. The first two numbers are the number of rows and the number of columns of the array. Example input file:

5 3

a b c

d e f

g h i

j k l

m n o - Test your method by filling two arrays of characters from two different input files. 2- Write a method areEqual() that receives two two-dimensional arrays of characters, and returns true if the two arrays are equal, and false if the two arrays are not equal. The comparison is a deep comparison that compares the contents of the two arrays. - Test your method twice, once with two equal methods and another time with two different methods. 3- Write a method Write a method isIdentity() that receives one two-dimensional array of integers, and returns true if the array is the identity matrix, and false otherwise. Hint: The identity matrix has ones in its diagonal and zeros everywhere else. Also, the identity matrix has the same number of columns and rows. For example:

1 0 0 0 0

0 1 0 0 0

0 0 1 0 0

0 0 0 1 0

0 0 0 0 1

- Test your method twice; once with an identity matrix and another time with a non-identity matrix

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

More Books

Students also viewed these Databases questions

Question

Define Management by exception

Answered: 1 week ago

Question

Explain the importance of staffing in business organisations

Answered: 1 week ago

Question

What are the types of forms of communication ?

Answered: 1 week ago