JavaScript allows you to work with which of the following numbers in these bases?
(Check all that apply.)

  1. decimal (base 10)
  2. octal (base 8)
  3. douzal (base 12)
  4. hexadecimal (base 16)

True or False: JavaScript uses automatic datatype conversion because it's a strongly typed language.

  1. True
  2. False

If the condition in an if statement is true, which of the following happens?

  1. Nothing happens, and the parser moves on to the first statement after the if statement.
  2. The block of code between the curly braces is executed.

True or False: You can create an infinite loop using a while statement.

  1. True
  2. False