Consider the following function and code segment.

```
void One( int first, int & second )
{
first = 17;
second = first + 1;
}
int main()
{
// other code ...
int j = 4;
int k = 3;
One(j, k);
// other code ..
```
a) j == 4, k == 3;
b) j == 17, k == 18;
c) j == 4, k == 18;
d) j == 17, k == 3;

c) j == 4, k == 18

Computer Science & Information Technology

You might also like to view...

Which computer platform is well known for the strength of its graphic and audio capabilities?

A) Windows B) Linux C) IBM D) Apple

Computer Science & Information Technology

Layers can be ____ fully to prevent further editing or partially to allow certain functions without disturbing other effects and settings.

A. Linked B. Synched C. Flagged D. Locked

Computer Science & Information Technology