Vocab 2-4-19 Flashcards

(16 cards)

1
Q

World

A

A “world” or “Karel World” is a grid that Karel lives on.

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

Karel

A

Karel is a dog who listens to your coding commands.

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

Command

A

A command is an instruction you can give Karel.

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

Street

A

Street is the Y axis on Karel’s grid.

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

Avenue

A

An Avenue is he X axis on Karel’s grid.

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

lowerCarmelCase

A

lowerCarmelCase is a naming convention were the first letter is lowercase, and each subsequent start of a word is uppercase.

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

Define a function

A

Defining a function means to teach the computer new command and explain what it should do when receiving that command

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

Call a function

A

Calling a function actually gives the command, so the computer will run the code for that function.

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

Indentation

A

Indentation in the visual structure of how your code is lid out. It used tabs to organize code into hierarchy.

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

Parentheses

A

( and )

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

Function Body

A

The part of a function that contains the commands.

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

decompose

A

Breaking down your code and splitting it into more functions.

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

read like a story

A

Programs that “read like a story’’ have a good break down and make the code easy to follow and read.

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

Start function

A

This is the function that is is called when you click run.

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

top down design

A

top down design is a method for braking our program down into smaller parts.

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

Algorithm

A

A set of steps or rules to follow to solve a particular problem.