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