C++DRAFT
11th grade
684 times
Computers
80%average accuracy
What does <= mean?
What is the only function all C++ programs must contain?
What punctuation is used to signal the beginning and end of code blocks?
Which of the following is a correct comment?
What does <= mean?
Which of the following is NOT a logical operator in C++ language?
Which of the following is NOT a comparison operator in C++ language?
Evaluate the following expressions to true or false
3!=4-1
Evaluate the following expressions to true or false
5 >= (1+6)-4
Evaluate the following expressions to true or false
5+1==6 || 8-1>4
If originally x=2,y=0, and z=1, what is the value of x, y, and z after executing the following code?
if (x>y)
y=x;
else
z=x;