Coding terms Flashcards

Refresh your knowledge of some coding symbols and words.

1
Q

What’s the term for…?

;

A

semi-colon

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

How do read this symbol?

A

double quotes

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What’s the term for…?

A

single quote

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What’s the term for…?

( )

A

Parenthesis or parens

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What’s the term for…?

{ }

A

Curly braces or brackets

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What’s the term for…?

[ ]

A

Square braces or brackets

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What’s the term for…?

:

A

Colon

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

How would you say…?

“a+(2b)”

A

double quotes A plus open parens two B close parens double quotes

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

How would you read…?

0.1+0.2

A

zero point one plus zero point 2

Note: informally, zero may be replaced by “Oh.”

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

We “write” code. What other verbs can you when telling someone to “write” some code?

A

type

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

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

A

concatenates

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

How does JavaScript _________ the expression + (+a) ?

A

interpret, evaluate, read

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

JavaScript behaves in very particular ways; ___ always expects a number after a plus sign.

A

it

NOTE: Remember to use “it” when referring to “things” or “objects.” Avoid using “he” or “they” when referring to programming languages.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly