math operations

0.0(0)
studied byStudied by 0 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/9

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.

10 Terms

1
New cards

+

add

2
New cards

-

subtract

3
New cards

*

multiply

4
New cards

/

divide using float

5
New cards

//

divide and always round down to whole number

6
New cards

%

modulo

get remainder

7
New cards

**

exponent

8
New cards

! =

not equal to

9
New cards

augmented assignment operator

short hand way to increment

ex.

x= x+3

x += 3 —— you can do all operations talked about above

10
New cards

what is the order of precedence

brackets

*, /, %, +, -

<, >, <=, >=, ==, ! =

not

and

or