Coding terms Flashcards
Refresh your knowledge of some coding symbols and words.
What’s the term for…?
;
semi-colon
How do read this symbol?
”
double quotes
What’s the term for…?
’
single quote
What’s the term for…?
( )
Parenthesis or parens
What’s the term for…?
{ }
Curly braces or brackets
What’s the term for…?
[ ]
Square braces or brackets
What’s the term for…?
:
Colon
How would you say…?
“a+(2b)”
double quotes A plus open parens two B close parens double quotes
How would you read…?
0.1+0.2
zero point one plus zero point 2
Note: informally, zero may be replaced by “Oh.”
We “write” code. What other verbs can you when telling someone to “write” some code?
type
When a program displays a sequence of alphabetical variables one after the other, we say it ________ them.
For example:
input: “b”+”o”+”y”
output: boy
concatenates
How does JavaScript _________ the expression + (+a) ?
interpret, evaluate, read
JavaScript behaves in very particular ways; ___ always expects a number after a plus sign.
it
NOTE: Remember to use “it” when referring to “things” or “objects.” Avoid using “he” or “they” when referring to programming languages.