Constructor that initializes a Matrix object of size initRows x initCols, setting matrix elements to initValue
What will be an ideal response?
```
Matrix :: Matrix( int initRows, int initCols, int initValue )
{
rows = initRows;
cols = initCols;
for (int i = 0; i < rows; ++i)
for (int j = 0; j < cols; ++j)
mat[i][j] = initValue;
}
```
You might also like to view...
In Microsoft Windows-based systems, you can use the ____ to manage event logs from the command line.
A. ps command B. PsLoggedOn tool C. service command D. Wevtutil utility
Mac OS X is based on the _____.
A. ?LiMaX operating system B. ?UNIX operating system C. ?Disk operating system D. ?FORTRAN operating system
The ________ view of an Access table looks similar to an Excel spreadsheet
Fill in the blank(s) with correct word
Which of the following is a valid fundamental security principle? (Choose all that apply.)
a. signature b. diversity c. simplicity d. layering