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...

________ is representing information with symbols.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology

Enterprise servers can allow a maximum of 100 simultaneous users and perform less than 1,000 transactions every day

Indicate whether the statement is true or false

Computer Science & Information Technology

A(n) ________ list uses graphic elements to identify items in a list

Fill in the blank(s) with correct word

Computer Science & Information Technology

Word has several built-in styles; new styles CANNOT be created

Indicate whether the statement is true or false

Computer Science & Information Technology