What value(s) will be contained in the variable NUMBERS in Function 1?

```
void Function1(int n[] );
int main()
{
int num [4] = {6, 23, 72, 24 };
Function1(num);
}
void Function1(int NUMBERS[])
{
//inside the Function1
}

```

A. 6, 23, 72, 24
B. num and NUMBERS are different names. This would not compile.
C. A hex address will be contained in NUMBERS.
D. Four hex addresses will be contained in NUMBERS.

C. A hex address will be contained in NUMBERS.

Computer Science & Information Technology

You might also like to view...

Which of the following authentication methods uses public and private keys to secure communication and ensure the senders identity?

A. CHAP B. EAP C. PKI D. Kerberos

Computer Science & Information Technology

____ is the set of ethical standards for the followers of a particular religion.

A. Ad hominem B. Religious ethics C. Degrees of tolerance D. Deontological guidelines

Computer Science & Information Technology