What is wrong with this function?

```void Multiply( int x, int y )
{
int z;
z = x * y;
return z;
}```
A. You can’t have 2 input arguments.
B. Multiply doesn’t know what z is.
C. The return type is void.
D. There is nothing wrong with it.

C

Computer Science & Information Technology

You might also like to view...

When importing data from an Excel workbook, you may NOT:

A) import the data into a new table in the current database. B) append a copy of the records to an open, active table. C) append a copy of the records to an existing table. D) link the data to a table.

Computer Science & Information Technology

Why might you want to include preview files when moving a project and its media to another drive?

What will be an ideal response?

Computer Science & Information Technology