subject

Consider the following program written in c syntax:

void swap (int a, int b) {

int temp;

temp = a;

a = b;

b = temp;

}

void main () {

int value = 2, list [5] = {1, 3, 5, 7, 9};

swap (value, list [0]);

swap (list[0], list[1]);

swap(value, list[value]);

for each of the following parameter-passing methods, what areall of the values of the variables value and list after each of thethree calls to swap?

a. passed by value

b. passed by reference

c. passed by value-result

2. consider the following program written in c syntax:

void fun (int first, int second) {

first += first;

second += second;

}

void main () {

int list [2] = {1, 3}

fun ( list[0], list [1]);

}

for each of the following parameter-passing methods, what areall of the values of the list array after execution?

a. passed by value

b. passed by reference

c. passed by value-result
me.

ansver
Answers: 3

Another question on Computers and Technology

question
Computers and Technology, 22.06.2019 19:00
How is the number 110 written when expanded out to place values in the base 2 (binary) number system? options: 2 x 4 + 3 x 2 + 4 x 1 1 x 2 + 1 x 2 + 0 x 2 1 x 100 + 1 x 10 + 0 x 1 1 x 4 + 1 x 2 + 0 x 1
Answers: 1
question
Computers and Technology, 23.06.2019 02:00
Which software would you use to create a print design? a. illustrator b. audacity c. reaper d. dreamweaver
Answers: 2
question
Computers and Technology, 23.06.2019 12:00
3. when you right-click a linked spreadsheet object, what commands do you choose to activate the excel features? a. linked worksheet object > edit b. edit data > edit data c. linked spreadsheet > edit d. object > edit data
Answers: 2
question
Computers and Technology, 23.06.2019 16:00
Which analyst position analyzes information using mathematical models to business managers make decisions?
Answers: 1
You know the right answer?
Consider the following program written in c syntax:

void swap (int a, int b) {
Questions
question
Chemistry, 27.06.2019 09:30
question
Chemistry, 27.06.2019 09:30
question
History, 27.06.2019 09:30
question
Chemistry, 27.06.2019 09:30
Questions on the website: 13722363