Question: Question 1 :Consider the following code snippet that is using the same variable name, number , in two different logical code blocks. int main() {
Question 1 :Consider the following code snippet that is using the same variable name, number, in two different logical code blocks.
int main() { // Define a variable named number. int number; cout << "Enter a number greater than 0: "; cin >> number; if (number > 0) { int number; // Another variable named number. cout << "Now enter another number: "; cin >> number; cout << "The second number you entered was " << number << endl; } cout << "Your first number was " << number << endl; return 0; }
Select the statements that apply.
Group of answer choices
the first and second number will always be the same value
the first and second number may not contain the same value
the first and second number may contain the same value
the first and second number cannot have the same value
Question 2 : Consider the code snippet below.
#include
Select the statements that apply to the variable definition noted in red.
Group of answer choices
variable definition in an inner block
variable definition in an outer block
named constant
global variable
Question 3 : After the following code executes, what is the value of myValue if the user enters 0?
cin >> myValue; if (myValue > 5) myValue = myValue + 5; else if (myValue > 2) myValue = myValue + 10; else myValue = myValue + 15;
Group of answer choices
0
5
15
25
10
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
