1. The escape sequence ‘n' means newline. It causes the cursor to move to the beginning of the next line on the screen.
2. C++ programs begin executing at the function main ( ) , even if main does not appear first in the program.
3. The module operator % can be used both with integer and double numbers.
4. A selection control structure chooses among alternative courses of action.
5. A nested control statement appears in the body of another control statement.
6. The statements Salary = 5000.00 is same as Salary = = 5000.00. 7. The statement count = count + 1 is same as ++ count .
8. A structured program should be written using only the three control structures, sequence, selection and repetition.
9. The logical OR operator ( | | ) ensures that both conditions are true before choosing certain path for execution.
10. In C++ the return value of a true statement is 1 and the return value of a false statement is zero.