What variables are local to the Add Numbers function?

```int AddNumbers( int x, int y)
{
int z;
z = x + y;
return z;
}```
A. x
B. y
C. x & y
D. x, y & z


D

Computer Science & Information Technology

You might also like to view...

The while loop has two important parts: a condition that is tested and a statement or block of statements that is

A) repeated as long as the condition is true. B) repeated until the condition becomes true. C) done once if the condition is true. D) always done at least once, then repeated if the condition is true. E) always skipped.

Computer Science & Information Technology

Which of the following is equivalent to (p >= q)

a. p < q b. !(p < q) c. p > q d. !p < q

Computer Science & Information Technology

Consider the following code.          How many columns does theelement create??

A. ?Two B. ?One C. ?Four D. ?Three

Computer Science & Information Technology

Unintentional encryption can result in huge data losses during or after a natural disaster or a terrorist attack. _________________________

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

Computer Science & Information Technology