WGU C173 Study Guide Latest Update
Already Passed
- Correct Answer- subtraction operator, outputs the difference between the two input numbers
!= Correct Answer- a comparison operator used to compare if one operator i
...
WGU C173 Study Guide Latest Update
Already Passed
- Correct Answer- subtraction operator, outputs the difference between the two input numbers
!= Correct Answer- a comparison operator used to compare if one operator is not equal to
another
* Correct Answer- multiplication operator, outputs the product of the two input numbers
** Correct Answer- exponentiation operator, outputs the result of multiplying
by itself
number of times
/ Correct Answer- division operator, outputs the result of dividing the first number by the
second
% Correct Answer- modulo operator, outputs the remainder of dividing the first number by the
second
+ Correct Answer- addition operator, outputs the sum of the two input numbers OR
concatenation operator, joins two values together
< Correct Answer- a comparison operator used to compare if one operator is less than another
< Correct Answer- a comparison operator used to compare if one operator is less than another
<= Correct Answer- a comparison operator used to compare if one operator is less than or
equal to another = Correct Answer- This is an assignment statement. A variable is named
and also assigned a value or expression. If multiple values are assigned to the same named
variable, the last assignment is the one used.
= Correct Answer- assignment operator, assigns a value
== Correct Answer- a comparison operator used to compare if one operator is equal to another
> Correct Answer- a comparison operator used to compare if one operator is greater than
another
>= Correct Answer- a comparison operator used to compare if one operator is greater than or
equal to another
A = True / B = False: not (A and B) Correct Answer- Answer: not (True and False) = not (False) =
True
A = True / B = False: not (A or B) Correct Answer- Answer: not (True or False) = not (True) =
False
A = True / B = False: not A and not B Correct Answer- Answer: not True and not False = False
[Show More]