QUESTION 38 Which of the following will correctly update the accumulator variabl
ID: 3596590 • Letter: Q
Question
QUESTION 38
Which of the following will correctly update the accumulator variable named total?
total = 0
total = total + total;
total = total + sales;
total = total + 1;
QUESTION 39
Which of the following will correctly update the counter variable named numEmployees?
numEmployees = 0;
numEmployees = numEmployees + numEmployees;
numEmployees = numEmployees + sumSalary;
numEmployees = numEmployees + 1;
QUESTION 40
The expression 3 > 6 && 7 > 4 evaluates to __________.
True
False
QUESTION 41
The expression 4 * 3 < (6 + 7) && 7 < 6 + 9 evaluates to __________.
A. True
B. False
QUESTION 42
The expression 7 >= 3 + 4 || 6 < 4 && 2 > 5 evaluates to __________.
A. True
B. False
QUESTION 43
Assume the number variable contains the number 1000. What value will be in the number variable after the preceding code is processed?
0
1000
2000
3000
QUESTION 44
Assume the number variable contains the number 200. What value will be in the number variable after the preceding code is processed?
0
200
400
600
QUESTION 45
If the selectorExpression used in the switch statement is the char variable code, which of the following case clauses is valid?
case "3":
case '3':
case 3;
case = 3
QUESTION 46
What will the preceding switch statement display if the id variable contains the number 2?
Jerry
Paul
Sue
nothing
QUESTION 47
What will the preceding switch statement display if the id variable contains the number 3?
Jerry
Paul
Sue
nothing
Atotal = 0
Btotal = total + total;
Ctotal = total + sales;
Dtotal = total + 1;
Explanation / Answer
As per Chegg plociy, I amnswering only first 4 questions:
For Q38 and 39, program is required.
40.) Since comparison operator has higher precedence than the logical operator. Therefore, given expression 3>6 && 7>4 = 0 && 1 = 0 evaluates to false. Hence option b is correct.
41.) Expression 4 * 3 < (6 + 7) && 7 < 6 + 9 = 12<13 && 7<15 = 1 && 1 evluates to true. Hence, option a is correct.
42.) Expression 7 >= 3 + 4 || 6 < 4 && 2 > 5 = 7>= 7 || 6<4 && 2>5 = 1 || 0 && 0 = 1 || 0 = 1 evaluates to true.
45.) Option b: case '3': will be the right option.
Hope it helps, do give your valuable response.
Related Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.