What is the output of the following code snippet? (If there is some kind of syntax error indicate this by marking "error" in your answer choice)
1.
int fly = 5;
int x;
if (fly-- > 5)
x = 5;
else
x = 2;
if (x++ > 3)
cout << x;
cout << fly << endl;
2.
int i = 0;
bool b = i == 0 || i++ > 0;
if (!b)
cout << i << endl;
else
cout << b << " " << i << endl;
3.
int num = 10;
char c = num;
c++;
num++;
if (num == c)
num-=5;
else
num-=9;
cout << num << endl;
4.
5.
int i = 0;
float f = 1.1;
if (i++ > --f)
{
i = f + 2;
}
else if ( ++i > --f)
{
i = 3 - f;
}
else
{
i = f * 3;
}
cout << i << " " << f <<
endl;
1.
int fly = 5;
int x;
if (fly-- > 5)
x = 5;
else
x = 2;
if (x++ > 3)
cout << x;
cout << fly << endl;
Output:
4
===============================
2.
int i = 0;
bool b = i == 0 || i++ > 0;
if (!b)
cout << i << endl;
else
cout << b << " " << i << endl;
Output:
1 0
===============================
3.
int num = 10;
char c = num;
c++;
num++;
if (num == c)
num-=5;
else
num-=9;
cout << num << endl;
Output:
6
===============================
4.
int quiz = 100;
int t = quiz;
if (quiz >= t)
quiz -= 89;
else
t += 10;
cout<< quiz << t;
Output:
11100
===============================
5.
int i = 0;
float f = 1.1;
if (i++ > --f)
{
i = f + 2;
}
else if ( ++i > --f)
{
i = 3 - f;
}
else
{
i = f * 3;
}
cout << i << " " << f << endl;
Output:
3 -0.9What is the output of the following code snippet? (If there is some kind of syntax...
What is the output of the following code snippet? (If there is some kind of syntax error indicate this by marking "error" in your answer choice) 1. int laps = 8; if (laps++ > --laps) laps += 2; else if (--laps > (laps - 1)) laps += 4; else if (++laps) laps -= 3; cout << laps << endl; 2. What is the output of the following code snippet? int j = 47; int i = 8; j =...
51. What is the output of the following code snippet? int number = 0; int ptr_num -&number ptr_num 60; number-80 cout < "ptr num << endl b, 60 c. 80 d. the address of number Answer 52. What is the output of the following code snippet? double num-0.0; double* ptr = # num = 15.0; ptr ptr 15.0 cout << num <<"ptr <<endl; a. 15 15 b. 15 30 С. 30 15 d. 30 30 Answer: 53. What is the...
QUESTION 1 What is the output of the following code snippet? int main() { bool attendance = false; string str = "Unknown"; attendance = !(attendance); if (!attendance) { str = "False"; } if (attendance) { attendance = false; } if (attendance) { str = "True"; } else { str = "Maybe"; } cout << str << endl; return 0; } False True Unknown Maybe QUESTION 2 What is the output of the following code snippet? #include <iostream> #include <string> using...
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...
what is the output for the following code? explain the steps. /*#include <iostream> using namespace std; int f(int &i) { i = 10; return(5 * i); } int main() { int n = 5; f(n); cout << n << "\n"; return 0; } #include <iostream> using namespace std; int sub1(int n) { n--; return n; } int main() { int m = 10; for(int j = 0; j < 10; j++) m -= sub1(j); cout << m << "\n"; return...
CGALLENE 4.2: More syntax errors. ACTIVITY Each cout statement has a syntax error. Type the first cout statement, and press Run to observe the error message. Fix the error, and run again. Repeat for the second, then third, cout statement cout << "Num: "<< songnum << endl; cout << int songNum << endl; cout << songNum " songs" << endl; Note: These activities may test code with different test values. This activity will perform two tests: the first with songNum-5,...
C++ problem where should I do overflow part? in this code do not write a new code for me please /////////////////// // this program read two number from the user // and display the sum of the number #include <iostream> #include <string> using namespace std; const int MAX_DIGITS = 10; //10 digits void input_number(char num[MAX_DIGITS]); void output_number(char num[MAX_DIGITS]); void add(char num1[MAX_DIGITS], char num2[MAX_DIGITS], char result[MAX_DIGITS], int &base); int main() { // declare the array = {'0'} char num1[MAX_DIGITS] ={'0'}; char...
Please Update my C++ code: Implement array to replace for vector: Example --> input: 100 output: A 1000Pairs.txt looks like this: {100, A } {200, A } {300, B } {400, C } {500, D } {600, E } {700, F } {800, G } {900, H } {1000, I } {1100, J } {1200, K } {1300, L } {1400, M } {1500, N } {1600, O } {1700, P } {1800, Q } {1900, R } {2000, S...
5. What is the output of the following section of a program int a[10] = {2,5,1,6,x,7,0,3,y,8}; for(int i=0;i<9;i++) a[i]=a[i+1]; for(int i=0;i<8;i++) cout<<a[i]<<” “; cout<<endl; 6. What will be shown on the output screen after following statements are executed? char a[ ]="I have a part time job"; int c=x, i=0 while(a[i]!=’\0’){ if(a[i]==' '){ c++; cout<<endl; } else cout<<a[i]; i++; } cout<<c<<endl; 7. After following statements are executed, what are the outputs char a[ ]= "Fresno City College"; for (i...