3)
What are the final values of a,
b, c in the following code fragment (1.5 point):
int a =
6
, b =
127
, c;
c =
(
++a
)
+ (
b
--
);
Answer:
4)
What are the final values of a,
b, c in
the following code fragment (1.5 point):
int a =
6
, b =
127
, c;
c = (a++) + (
--
b);
Answer:
5)
What is displayed by this poorly indented program fragment
(1 point)
int number =
128
,
alpha =
-
320
;
if (number > 0)
if (alpha > 0)
cout
<< “One” << endl;
else cout << “Two” << endl;
cout << “Three” << endl;
6)
Consider the following program fragment:
int x;
cout << "Enter an integer: ";
cin >> x;
if (x >
92
) {
cout << x +
4
<< endl;
}
else {
cout << x << endl;
if
(x <
48
) {
cout << x
-
10
<< endl;
}
else {
cout << x
+
10
<< endl;
}
cout << x << endl;
}
6.1)
Show all messages displayed by the program if the user enters
200
for x? (1 point)
Answer:
6.2)
Same question if the user enters
70
for x?
(1 point)
Answer:
6.3)
Same question if the user enters
0
for x?
(1 point)
Answer
(Please answer 3 - 6)
thanks)
3)
a = 7
b = 126
c = 134
4)
final values
a = 7
b = 126
c = 132
5)
Output:
Two
Three
6.1)

6.2)

6.3)

3) What are the final values of a, b, c in the following code fragment (1.5...
What will be the output of the following code segment after the user enters 0 at the keyboard in a C++ program? int x = -1; cout << "Enter a 0 or 1 from the keyboard: "; cin >> x; if (x) cout << "true" << endl; else cout << "false" << endl;
12) 8 pts. Find the errors in the following code fragment and correct them. #i nclude <iostream> using namespace std; double fudge (double s) f return s 2.3; int mainO cout >> "Your original estimate" double estimate; cin >> estimate; cout << endl; for (int 1 = 0;1c3;i++); cout << "EStimate' < fudge(estimate) <<endl Hint: There are 4 syntax errors. There is one error that is syntactically correct but causes the output to not be what you would expect. Once...
Question 15 After the following code executes, what is the output if user enters 0? int x =-1; cout << "Enter O or 1:"; cin >> X; if (x) cout << true else cout << false O nothing will be displayed true O false 0
A. What is the output of the following C++ code fragment? (all variables are of type int) int count-1; int y-100; while (count 3) y=y-1 ; count+t cout << y << endl; cout<< count <<endl What is the value of x after control leaves the following while loop? (all variables are of type int) B. int x0 while (x < 20) sum- sum+x cout << sum<< endl;
What is the output from each of the following segments of C++ code? Record the output after the “Answer” prompt at the end of each program fragment. Assume all variables have been suitably declared. (Each problem is worth 3 points.) 1. for (int j = 25; j > 16; j -= 3) cout << setw(5) << j; Answer: 2. int sum = 0; for (int k = -2; k <= 2; k++) sum = sum +...
C++ class 3.2.4: If-else statement: Fix errors. Re-type the code and fix any errors. The code should convert non-positive numbers to 1. if (userNum > 0) cout << "Positive." << endl; else cout << "Not positive, converting to 1." << endl; Answer #include using namespace std; int main() { int userNum; cin >> userNum; /* Your solution goes here */ return 0; userNum = 1; cout << "Final: " << userNum << endl;
Example (4) Trace the following program and find the output >> SOURCE CODE #include <iostream.h> int main0 // define two integers int x-3; int y = 4; //print out a message telling which is bigger if (x >y) i cout << "x is bigger than y" << endl: else cout << "x is smaller than y" << endl; return 0; Example (5) Write a C++ program that takes from the user a number in SR (Saudi Riyal) then the program...
I need help with this code. I'm using C++ and Myprogramming lab to execute it. 11.7: Customer Accounts Write a program that uses a structure to store the following data about a customer account: Customer name Customer address City State ZIP code Telephone Account balance Date of last payment The program should use an array of at least 20 structures. It should let the user enter data into the array, change the contents of any element, and display all the...
What is the software bug, and how do you fix the issue for the code fragment below? #include <iostream> #include <limits> using namespace std; int main() { int x; //find the maximum integer value and avoid an overflow int imax = std::numeric_limits ::max(); cout <<"Enter a value for x: "; cin >> x; if (x > imax) cout << "overflow\n"; else cout << x; return 0; }
This is a C++ question need to complete project 2. attached the completed simple version of the program below but need the updated version which is listed in the project 2 outline Project 2 Rock, Paper, Scissors Updated Take the solution to Lab 3 and make sure the user enters a letter of R, P, or S and the computer generates a number between 0-2 and changes that number to a letter of R, P or S, using a switch....