Unit 2 Flashcards
What does the “sum” refer to?
addition
What does the “difference” refer to?
subtraction
What does “product” refer to?
multiplication
what does “quotient” refer to?
division
What is another word for the result of division?
quotient
What is another word for the result of multiplication?
product
What is another word for the result of addition?
sum
What is another word for the result of subtraction?
difference
2 + 2 = 4
Four is the “__”
sum
2 - 1 = 1
One is the “__”
difference
2 * 3 = 6
Six is the “__”
product
2 / 4 = 2
Two is the “__”
quotient
What is “Assignment”?
Assignment is setting a variable to a value and telling the computer the value’s type.
How is a Number declared?
By not using quotes.
True or False
A number is declared by using quotes.
False.
A number is declared by not using quotes.
var numberTwo = 2;
var numberTwo = “2”; <– is a string
How is a string declared?
A string is declared by using quotes.
True or False
A string is declared by NOT using quotes.
False.
A string is declared by using quotes.
What is an example of the Simple Assignment operator in JavaScript?
The equal sign = var count = 10;
True or False:
This is a string.
False, there are no quotes.
“This is a string.”
True or False:
“This is a string.”
True.
True or False:
This is a Number:
“456”
False that is a string.
This is a number
456
In math, what does additive mean?
Additive refers to both addition and subtraction.
Subtraction is just adding with negative numbers
True or False:
Additive only refers to addition in Math.
False:
Additive refers to both addition and subtraction.
(Subtraction is just adding with negative numbers)
True or False:
The + sign is also used for concatenation of strings.
The plus sign (+) is also used for concatenation (definition), or combining string to form a new longer string.
What is the modulo operator?
%
True or False:
When you divide a number by a sting JavaScript will convert the strings to numbers, if it can.
True.
True or False:
When you divide a number by a sting JavaScript will not convert the strings to numbers.
False. It will if it can.
What does the modulo operator do?
The modulo operator gives you the remainder when you divide two numbers.
3/10 = 9
has a remainder of 1.
What are the equality operators?
== test to see if two expressions are equal, converts types to match before it does the equality test
!= test to see if two expressions are not equal, converts types to match before it checks to see if the values are “not” equal, if the values are “not” equal, it will answer TRUE
=== test to see if two expressions are “really” equal, Does not do any conversions
Course standard to use this unless directed to do otherwise
!== test to see if two expressions are “really not” equal, tests for inequality without conversion
How many equality operators are there?
4.
== test to see if two expressions are equal, converts types to match before it does the equality test
!= test to see if two expressions are not equal, converts types to match before it checks to see if the values are “not” equal, if the values are “not” equal, it will answer TRUE
=== test to see if two expressions are “really” equal, Does not do any conversions
Course standard to use this unless directed to do otherwise
!== test to see if two expressions are “really not” equal, tests for inequality without conversion
Which equality operators converts types to match before checking values against each other?
== and !=
!= test to see if two expressions are not equal
converts types to match before it checks to see if the values are “not” equal
if the values are “not” equal, it will answer TRUE
== test to see if two expressions are equal
converts types to match before it does the equality test
Which two equality operators do not convert types to match before checking against each other?
=== and !==
=== test to see if two expressions are “really” equal
Does not do any conversions
Course standard to use this unless directed to do otherwise
!== test to see if two expressions are “really not” equal
tests for inequality without conversion
What is a boolean expression?
True or false statements
Statements that are either true or false are called:
Boolean Expression
What is the following statement saying?
document.write(“Bob” != “Bill”);
True
“Bob” is not equal to “Bill”
What is the following statement saying?
document.write(100 === “100”);
false
100 (number) is equal to “100” (string)
Prints false as the number and string are not equal and as === does not do conversions a number and string are different.
True or False:
It is course standard to use:
=== and !== whenever possible?
True.
True or False:
It is course standard to use:
== and != whenever possible?
False you want to use:
=== and !==
What are the relational operators?
< Less Than
> Greater Than
= Greater Than or Equal To
How many relational operators are there?
4
What is:
<
Less than
What is:
>
Greater than
What is:
<=
Less than or equal to
What is:
>=
Greater than or equal to
What are Unary Operators?
Unary means that there is only one variable or value involved with the operator.
How many Unary Operators?
3
++ Increments a number by 1
– Decrements a number by 1
typeof Returns a string representing the data type
What does this Unary Operator do?
++
Increments a number by 1
What does this Unary Operator do?
–
Decrements a number by 1
What does this Unary Operator do?
typeof
Returns a string representing the data type
How do you use the typeof Unary Operator?
document.write(typeof(variableNameHere));
How many Compound Assignment Operators are there?
4 \+= add to a variable -+ subtract to a variable *= Multiply into a variable /= Divide into a variable
What does this Compound Assignment Operator do?
+=
+= add to a variable
What does this Compound Assignment Operator do?
-+
-+ subtract to a variable
What does this Compound Assignment Operator do?
*=
*= Multiply into a variable
What does this Compound Assignment Operator do?
/=
/= Divide into a variable