Mathematics C++ - Quiz
  • 1. What is the correct value to return to the operating system upon the successful completion of a program?
A) Programs do not return a value.
B) 1
C) -1
D) 0
  • 2. What is the only function all C++ programs must contain?
A) main()
B) program()
C) system()
D) start()
  • 3. What punctuation is used to signal the beginning and end of code blocks?
A) ( and )
B) -> and <-
C) { }
D) BEGIN and END
  • 4. What punctuation ends most lines of C++ code?
A) ;
B) .
C) '
D) :
  • 5. Which of the following is a correct comment?
A) ** Comment **
B) /* Comment */
C) */ Comments */
D) { Comment }
  • 6. Which of the following is not a correct variable type?
A) float
B) real
C) double
D) int
  • 7. Which of the following is the correct operator to compare two variables?
A) =
B) equal
C) :=
D) ==
  • 8. What is an undeclared variable?
A) A variable that ends with a semicolon
B) Source Code
C) A variable that you didn’t declare
D) Programs do not return a value
  • 9. What is PC-Lint?
A) A Static Analysis Tool for C/C++
B) An Source Code Tool
C) An IDE
D) A C/C++ Compiler
  • 10. An If-Statement is based off if a given condition is what?
A) True or False
B) Equal
C) Boolean
D) Equal Equal
  • 11. Which is not an relational operator?
A) <=
B) >=
C) ==
D) @
  • 12. Which statement is False?
A) 5 == 6
B) 4 >= 4
C) 5 != 4
D) 3 <= 4
  • 13. Which is not a type of Loop?
A) For
B) While
C) If-Else
D) Do-While
  • 14. PC-Lint is for what language?
A) C#
B) C++
C) .Net
D) Java
  • 15. A Do While loop is useful for…
A) multiple choices
B) 1 choice
C) reversed
D) to loop once
  • 16. What is the result of the following statement?
    X = 10;
    Y = ++x;
A) x = 10, y = 10
B) x = 10, y = 11
C) x = 11, y = 10
D) x = 11, y = 11
  • 17. What is the result of the following statement?
    X = y = z = 0;
A) x = 0, y = Null, z = Null
B) x = 0, y = 0, z = 0
C) The statement is incorrect
D) x = 0, y = 1, z = 2
  • 18. What will the output of the following code?
    {
    int x = 10, y = 15;
    x = x++;
    y = ++y;
    printf(“%d,%d\n”, x,y);
    {hj
A) 11, 15
B) 10,15
C) 10, 16
D) 11, 16
  • 19. What is the only function all C++ programs must contain?
A) program()
B) system()
C) start()
D) main()
  • 20. What punctuation ends most lines of C++ code?
A) :(colon)
B) .(dot)
C) ;(semi-colon)
D) ‘(single quote)
Created with That Quiz — where a math practice test is always one click away.