18. The math function sin will compute sine when given the angle in degrees
19. The setw manipulator is used to set the field width for all values that are printed until another
setw manipulator is encountered.
20. The preprocessor directive #include <iostream> copies the file iostream into the program
before compilation, so that the program can use input and output objects and operators.
21. The operand of the increment operator may be either a declared constant or a variable.
22. The math function tan will compute tangent when the angle is given in radians.
23. In a case sensitive language, such as C++, the variables apples and APPLES refer to
24. An expression involving operators can appear after the output operator << in a cout
25. The precision of a floating point number is determined by the number of bits used to
26. Given the declaration auto i = 0; i is declared as an int.
27. Given the declaration auto i = 1.0; i is declared as type double.