Swift Playground Learn to Code 1 Vocabulary

Swift Playground Learn to Code 1 Vocabulary

memorize.aimemorize.ai (lvl 286)
Section 1

Preview this deck

Pattern

Front

Star 0%
Star 0%
Star 0%
Star 0%
Star 0%

0.0

0 reviews

5
0
4
0
3
0
2
0
1
0

Active users

0

All-time users

0

Favorites

0

Last updated

6 years ago

Date created

Mar 1, 2020

Cards (13)

Section 1

(13 cards)

Pattern

Front

A repeating set of circumstances or data

Back

Boolean Logic

Front

A type that has a value of either true or false

Back

Decomposition

Front

The process of breaking a large problem into smaller, more manageable pieces

Back

Call Function

Front

To to tell a program to run a function. for example calling the moveForward( ) function in your code tells the program to perform the actions defined in that function

Back

compositon

Front

The process of combining small parts of a program to solve a large problem

Back

Function

Front

Allows you to name a set of commands, which you can then run any time you want

Back

Algorithm

Front

A step-by-step procedure for solving a problem, especially by a computer.

Back

Bug/Debugging

Front

An error in coding that prevents an application from running as expected

Back

Coding

Front

The act of composing commands, code structures, and algorithms to create a computer program

Back

Command

Front

Code that tells an application to perform a specific action

Back

Loop

Front

A block of code that's repeated a certain number of times or until a condition is met

Back

if statement

Front

A code structure used to run code based on the value of one or more conditions. the first block of code if statement is the if block. An if statement may also contain other blocks that provide additional checks such as an else block and else if block

Back

logical operators

Front

A symbol such as &&, ||, or !, that modifies or combines the Boolean logic values true and false

Back