SYW
HOME
SYWs
A to Z
SYWs by
CATEGORY
How Tos
Questions
& Answers
CONDITIONS AND LOOPS
Strings and Numbers
Data Type Conversion
Using ParseInt() and ParseFloat()
Test and Debug Your Code
Use Flow Control
If Statements
Logical Operators
Use While Loops
For Loops
Quiz 4
JavaScript allows you to work with which of the following numbers in these bases?
(Check all that apply.)
decimal (base 10)
octal (base 8)
douzal (base 12)
hexadecimal (base 16)
True or False: JavaScript uses automatic datatype conversion because it's a strongly typed language.
True
False
If the condition in an
if
statement is true, which of the following happens?
Nothing happens, and the parser moves on to the first statement after the
if
statement.
The block of code between the curly braces is executed.
True or False: You can create an infinite loop using a
while
statement.
True
False
1
2
3
4
5
6
7
8
9
10
printer-friendly