• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/5

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

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
}