The second and third parameters are passed by reference

assume that class Matrix refers to the correctly completed class of #1 and that product is a friend of class Matrix. Here is product's prototype: Function product will store in its first parameter the matrix product of its second and third parameters.
```
void product( Matrix&, const Matrix&, const Matrix& );
```

a. because they are output parameters.
b. for efficiency, not because any change is intended.
c. because objects cannot be passed by value.
d. because the programmer has made an error.

b. for efficiency, not because any change is intended.

Computer Science & Information Technology

You might also like to view...

The value of count is ________.

``` String line1 = new String("c = 1 + 2 + 3") ; StringTokenizer tok = new StringTokenizer(line1); int count = tok.countTokens(); ``` a. 8. b. 7. c. 13. d. 4.

Computer Science & Information Technology

To prevent multiple users from modifying a file simultaneously, you need to use the file_lock() function.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology