Section 1

Preview this deck

Program

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

4 years ago

Date created

Mar 1, 2020

Cards (30)

Section 1

(30 cards)

Program

Front

A set of specific and sequential instructions that when executed performs a task.

Back

Coding

Front

transforming actions into a symbolic language.

Back

Recursive

Front

A definition that refers to the word it is trying to define.

Back

Ambiguous

Front

Having more than one meaning.

Back

Data

Front

Information including: facts, samples, names and numbers.

Back

Algorithm

Front

A series of instructions on how to accomplish a task

Back

Abstraction

Front

Removing details from a solution so that it can work for many problems.

Back

Interface

Front

The way something allows you to interact with it.

Back

Else

Front

Another way of saying "Otherwise"

Back

Computer Scientist

Front

A person who is skilled at modifying problems for digital solutions.

Back

Variable

Front

A placeholder for a value that can change

Back

4 steps

Front

Decompose - Break up the problem into smaller pieces. Patterns - Identify if the parts have any patterns in them. Abstraction - What's different? Take it out. Algorithm - Put this together to make a series of instructions that a machine can follow.

Back

Conditional

Front

A statement that is either true or false depending on the situation.

Back

Computer Science

Front

The art of blending human ideas and digital tools to increase problem solving power.

Back

Function

Front

A piece of code that can be called over and over.

Back

Debugging

Front

Finding and fixing problems in code.

Back

Nested Statements

Front

A statement inside another statement.

Back

Efficiency

Front

Having the best outcome for the least amount of work

Back

Algorithm

Front

A list of steps that allow you to complete a task.

Back

Programming

Front

Writing instructions for a digital tool.

Back

Function ( In code.org)

Front

The place where you assign a series of actions to one easy-to-remember name

Back

Decompose

Front

To break a hard problem up into smaller, easier ones.

Back

What is the difference between a while loop and an If statement?

Front

A while loop will cause a statement or group of statements to execute over and over again as long as a condition is true. An if statement will cause a statement or group of statements to execute once if the condition is true.

Back

If Statement

Front

A line that determines whether or not you run a certain chunk of code.

Back

Function Call

Front

The place in your program where you call a function you have defined

Back

Parameters

Front

Extra bits of information that you can pass into a function to customize it.

Back

Decrement

Front

To subtract a certain amount (often 1), once or many times

Back

Function

Front

A piece of code that can be called over and over

Back

Computational thinking

Front

A method of problem-solving that helps computer scientists prepare problems for digital solutions.

Back

Increment

Front

To add a certain amount (often 1), once or many times.

Back