- Shuffle
Toggle OnToggle Off
- Alphabetize
Toggle OnToggle Off
- Front First
Toggle OnToggle Off
- Both Sides
Toggle OnToggle Off
Front
How to study your flashcards.
Right/Left arrow keys: Navigate between flashcards.right arrow keyleft arrow key
Up/Down arrow keys: Flip the card between the front and back.down keyup key
H key: Show hint (3rd side).h key
![]()
PLAY BUTTON
![]()
PLAY BUTTON
![]()
5 Cards in this Set
- Front
- Back
|
IF function (excel)
|
=IF (condition, value-if-true, value-if-false)
|
|
PMT function (excel)
|
=PMT(rate, NPER, PV, FV, type)
(rate) interest rate per period (NPER) number of payments until repaid (PV) present value of the loan (amount we are borrowing) (FV) future value of the money (for saving or investing) (type) enter 0 or 1 to indicate when payments are due. |
|
Absolute Positioning (excel)
|
=$A$1+$B$1
Keep a certain position that is not relative to the new cell location. This is possible by inserting a $ before the Column letter or a $ before the Row number (or both) |
|
Variable (JS)
|
A placeholder for storing data. In JavaScript, a
declaration statement consists of the reserved word VAR and the name (identifier) of one or more variables |
|
IF function (JS)
|
Conditional statement.
if (condition) { statements if condition is TRUE } |