Programming fundamentals

0.0(0)
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/13

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

14 Terms

1
New cards

what do these terms mean inside of coding?

==, !=, <, <=, >, >=, +, -, *, /, MOD, DIV, ^

equal to , not equal to, less than, less than or equal to, greater than, greater than or equal to, add, subtract, division, remainder of a division , whole number of a division , to the power

2
New cards

what is a variable

A variable is a named memory address that holds a value which can change.

3
New cards

what is a constant

A value which doesn’t change

4
New cards

what is an operator

An operator is a character, or characters, that determine what action is to be performed or considered.

5
New cards

what are the three different types of operators

logic operator (and, or, not)

mathematical operators (addition, multiplication and subtraction)

comparison operators (equal to, assignment, does not equal to)

6
New cards

what is the difference between = and ==

= - assign a value

== - used to compare a value to see if it is equivalent

7
New cards

what are the three basic programming constructs

sequence , selection, iteration

8
New cards

what is a sequence programming construct

a set of instructions that follow one another in order

<p>a set of instructions that follow one another in order </p>
9
New cards

what is a selection programming construct

A decision within a computer program when the program decides to move on based on the results of an event.

<p><span>A decision within a computer program when the program decides to move on based on the results of an event.</span></p>
10
New cards

what is iteration programming constructs

The repetition of a block of statements within a computer program.

<p><span>The repetition of a block of statements within a computer program.</span></p>
11
New cards

Name the three different boolean operators

AND, NOT, OR

12
New cards

Boolean logic gate for and

knowt flashcard image
13
New cards

Boolean logic gate for or

knowt flashcard image
14
New cards

boolean logic gate for not

knowt flashcard image