No student devices needed. Know more
11 questions
The basic spelling and grammar of a language, and must be carefully paid attention to in order for code to properly execute.
String
Function
Syntax
Argument
a character or thing that can perform actions
String
Object
Syntax
Argument
Data about or belonging to an object.
Property
Syntax
Argument
String
Used to repeat actions without the player needing to write the same lines of code over and over.
Argument
Syntax
Function
While Loop
Is a self-contained step-by-step set of operations to be performed to solve a specific problem or a class of problems.
Algorithm
Program
Syntax
Argument
Which line of code will make the hero move up 4 times?
4.hero.move.Up()
hero.moveUp(4)
hero.4moveUp()
hero.move4Up()
It is not important to capitalize the name of the variables.
True
False
What is the main reason we use loops?
It saves time
It is faster to create
We need it to pass levels on CodeCombat -.-
To repeat a block of code without having to retype
Which line of code is correct?
hero.moveUp();
hero.moveUp;
hero.moveUP()
Hero.MoveUp();
What does the word in red symbolize: hero.moveUp() ?
The title
The header
The object
The hero
A type of programming data that represents text, represented by text inside quotes.
**Hint: these are used to identify objects for the hero to attack.
String
Object
Syntax
Argument