Swift Programming Flashcards

1
Q

what are commands

A

actions you want the computer to preform

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

what are sequences

A

the order you want the commands in

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

what are functions

A

series of commands you group together and give a name

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

bugs and debugging

A

errors in you code, identifying the errors and fixing it

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

loops, for loops and while loops

A

loops are when you run these functions over and over again, for loops is the number of times you repeat the command, while loops are loops that run a code as long as the given condition is true, when it is false, it stops.

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

conditions and conditional codes

A

something you test the results in true or false, and the code that will only run if something is true

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

what is boolean

A

choice of true or false

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

what is a logical operator

A

words (like and, not, or) that connect two or more booleans to make the conditional code more spesific

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

pseudo code

A

informal description of codes that human can read

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

algorithm

A

step-by-step instructions

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