""
quotation marks
A function must be _______ in order to run
called
This symbol is usually at the end of each function call or command.
semicolon ;
TRUE or FALSE the best programmers don't make errors
FALSE, errors are a part of coding
TRUE or FALSE the code below move's Karel forward one space.
go();
FALSE
()
parentheses
creating a function is also known as this
defining a function
TRUE or FALSE when writing code it is best to write the entire program and test at the end
FALSE, code a little at a time and test gradually
TRUE or FALSE, Error messages typically provide a clue about how to fix an error
TRUE
Which function, when called 3 times in a row is equivalent to turnRight();
turnLeft();
;
semicolon
A function holds a piece of ______ that does a specific task
code
In JavaScript a single line comment begins with these
// or two slashes
TRUE or FALSE, A syntax error is like a grammar error
TRUE
The command Karel uses to place a ball in his current position is
putBall();
{}
curly brackets
A function definition in Javascript always ends with a this symbol
} which is a closing bracket
TRUE or FALSE comments are run by the computer
FALSE, comments are ignored
This is another name for a mistake in code
A bug
takeBall(); will only run properly if Karel is currently in the ______ position as a ball
same
} or ] are examples of what
closing brackets
True or false it is NOT common to repeat function calls in the main function of a program
FALSE
the code within a function definition should be _____ to make it easier to read
indented
Searching for and fixing errors in code is known as this.
Debugging
What is the quickest way to make Karel turn around given the basic commands.
turnLeft();
turnLeft();