Services
Discover
Homeschooling
Ask a Question
Log in
Sign up
Filters
Done
Question type:
Essay
Multiple Choice
Short Answer
True False
Matching
Topic
Computing
Study Set
Problem Solving with C++ Study Set 1
Quiz 2: C++ Basics
Path 4
Access For Free
Share
All types
Filters
Study Flashcards
Question 41
Multiple Choice
What is the correct way to write the condition y < x < z?
Question 42
Multiple Choice
If x has the value of 3, y has the value of -2, and w is 10, is the following condition true or false? If x < 2 && w < y)
Question 43
Multiple Choice
What is the value of x after the following statement? Float x; X = 3.0 / 4.0 + 3 + 2 ) / 5
Question 44
Multiple Choice
Given the following code fragment, what is the final value of y? Int x, y; X = -1; Y = 0; Whilex < 3) { Y += 2; X += 1; }
Question 45
Multiple Choice
What is the value of x after the following statements? Double x; X = 0; X += 3.0 * 4.0; X -= 2.0;
Question 46
Multiple Choice
Given the following code fragment, and an input value of 5, what is the output? Int x; If x< 3) { Cout << "small\n"; } Else { If x < 4) { Cout << "medium\n"; } Else { If x < 6) { Cout << "large\n"; } Else { Cout << "giant\n"; } } }