WGU D278 SCRIPTING AND PROGRAMMING
FOUNDATION EXAM LATEST UPDATED
- - ANSWER subtraction operator, outputs the difference between the two
input numbers
!= - ANSWER a comparison operator used to compare if one operator is not
equal to another
% - ANSWER modulo operator, outputs the remainder of dividing the first
number by the second
* - ANSWER multiplication operator, outputs the product of the two input
numbers
** - SOLUTION exponential operator, outputs the result of multiplying
<base> by itself <power> number of times
/ - SOLUTION division operator, outputs the result of dividing the first
number by the second
+ - SOLUTION addition operator, outputs the sum of the two input numbers
OR concatenation operator, concatenates two values together
Less than - ANSWER - comparison operator to compare if one operator is less
than another
, Less than - ANSWER - comparison operator to compare if one operator is less
than another
Less than or equal to - ANSWER - comparison operator to compare if one
operator is less than or equal to another
Equal- ANSWER - assignment operator, assigns a value
== - ANSWER a comparison operator used to compare if one operator is equal
to another
> - ANSWER a comparison operator used to compare if one operator is greater
than another
>= - ANSWER a comparison operator used to compare if one operator is
greater than or another
abstraction - ANSWER Concern yourself only with the basic essence of a
thing, and ignore specific example of it.
actors - ANSWER In the context of use cases, the things that lives outside of
your system, but have a need that they try to satisfy.
algorithm - ANSWER A list of steps that results in something. By comparison
a procedure is also a list of steps but without returning value.
append() - ANSWER Modifies <List> by adding <Element> at the end of this
list.
FOUNDATION EXAM LATEST UPDATED
- - ANSWER subtraction operator, outputs the difference between the two
input numbers
!= - ANSWER a comparison operator used to compare if one operator is not
equal to another
% - ANSWER modulo operator, outputs the remainder of dividing the first
number by the second
* - ANSWER multiplication operator, outputs the product of the two input
numbers
** - SOLUTION exponential operator, outputs the result of multiplying
<base> by itself <power> number of times
/ - SOLUTION division operator, outputs the result of dividing the first
number by the second
+ - SOLUTION addition operator, outputs the sum of the two input numbers
OR concatenation operator, concatenates two values together
Less than - ANSWER - comparison operator to compare if one operator is less
than another
, Less than - ANSWER - comparison operator to compare if one operator is less
than another
Less than or equal to - ANSWER - comparison operator to compare if one
operator is less than or equal to another
Equal- ANSWER - assignment operator, assigns a value
== - ANSWER a comparison operator used to compare if one operator is equal
to another
> - ANSWER a comparison operator used to compare if one operator is greater
than another
>= - ANSWER a comparison operator used to compare if one operator is
greater than or another
abstraction - ANSWER Concern yourself only with the basic essence of a
thing, and ignore specific example of it.
actors - ANSWER In the context of use cases, the things that lives outside of
your system, but have a need that they try to satisfy.
algorithm - ANSWER A list of steps that results in something. By comparison
a procedure is also a list of steps but without returning value.
append() - ANSWER Modifies <List> by adding <Element> at the end of this
list.