Coding Terms

0.0(0)
studied byStudied by 0 people
full-widthCall with Kai
GameKnowt Play
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/24

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

25 Terms

1
New cards

coding

telling a computer what to do

2
New cards

command

a specific action for the computer to perform

3
New cards

sequence

the order in which the commands are given

4
New cards

bug

an error in your code

5
New cards

debugging

the process of identifying and fixing the error

6
New cards

function

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 the set is needed.

7
New cards

for loop

runs a block of code over and over for a set number of times

8
New cards

condition

something you test that results in true or false

9
New cards

conditional code

a block of code that will run only if something is true.

10
New cards

Boolean

a value that can only be either true or false

11
New cards

logical operator

a symbol or word like "and," "or," and "not" that connects two or more Booleans to make conditional decisions more specific

12
New cards

&&

AND

13
New cards

II

OR

14
New cards

!

NOT

15
New cards

composition

the process of combining small parts of a program to solve a larger problem

16
New cards

while loop

a loop that runs a block of code as long as a given condition is true. When the condition is false, the loop stops running.

17
New cards

algorithm

a step-by-step set of rules or instruction

18
New cards

pseudocode

an informal description of code or a concept that's intended for human reading

19
New cards

variable

a named container that stores a value. The value can change over time.

20
New cards

type

a named grouping of properties (the features) and methods (the behaviors) of a kind of data

21
New cards

initialization

the act of creating a new instance of a type, which includes setting initial values for any properties of the type.

22
New cards

string

(text): stores a series for characters, such as "Hello world!"

23
New cards

int

(numbers): stores an integer - a number that has no decimal, such as 10 or -42

24
New cards

bool

(true or false): stores a value of either true or false

25
New cards

parameter

extra information that gets passed to a function