Section 1

Preview this deck

Open-sourced code

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 14, 2020

Cards (23)

Section 1

(23 cards)

Open-sourced code

Front

Code that is available for developing on other platforms, not just those designed by Apple.

Back

for

Front

keyword for writing a for loop

Back

{ }

Front

indicates that this line of code is a condition

Back

( )

Front

indicates that this line of code is a command

Back

moveForward( )

Front

Example of a command

Back

Swift

Front

Newest programming language from Apple that's used to create apps.

Back

for i in 1...4

Front

Example of a for loop

Back

Coding

Front

Telling the computer what to do.

Back

if/else statements

Front

one or the other is DEFINITELY true

Back

Debugging

Front

The process of identifying and fixing the error.

Back

Command

Front

A specific action for the computer to perform.

Back

Conditional code

Front

Code that runs when specific conditions are true

Back

onAGem{ }

Front

Example of a condition

Back

if

Front

keyword for writing conditional code

Back

Sequence

Front

The order in which the commands are given.

Back

func

Front

keyword for naming a function

Back

Function

Front

A collection of commands grouped together and given a name. The set of commands can then be run with just the name of the function whenever that set is needed.

Back

if/else if statements

Front

one or none may be true

Back

Developers

Front

People who write code to build their own apps and games.

Back

Algorithm

Front

a process or set of rules to be followed in calculations or other problem-solving operations, especially by a computer.

Back

func turnRight( )

Front

Example of naming a function

Back

Bug

Front

An error in your code.

Back

For loop

Front

Runs a block of code over and over for a set number of times.

Back