What is the output from this program?

```
#include
#include
using namespace std;
void doSomething ( int&, int );
int main ()
{
int first;
int second;
first = 1;
second = 2;
doSomething( second, first );
cout << setw(4) << first << setw(4) << second << endl;
return 0;
}
void doSomething( int& this, int that )
{
int theOther;
theOther = 5;
that = 2 + theOther;
this = theOther * that;
}
```

a. 35 2
b. 1 35
c. 35 7
d. 1 2


b. 1 35

Computer Science & Information Technology

You might also like to view...

To shrink audio files to more manageable sizes, they can be converted into ____ formats.

A. compressed audio B. MIDI C. compressed data D. CD-DA

Computer Science & Information Technology

Which of the following is not a way to create a layer?

A. Click the Create a new layer button on the Layers panel B. Duplicate an existing layer C. Click the Create a new layer button on the Tools panel D. Use the New Layer command on the Layers panel menu

Computer Science & Information Technology

Which IEEE standard defines wired Ethernet as it is used on modern networks?

A) 802.5 B) 802.16 C) 802.3 D) 802.1

Computer Science & Information Technology

A(n) ____________________ is a random alphanumeric string generated by the session_start() function.

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

Computer Science & Information Technology