WGU D278 Scripting and Programming |OA| Objective
Assessment |Explore 160 New Actual Questions and
Answers|2025 Update| 100% Correct.
Correct 160
Incorrect
D278 Scripting and Programming
160 Correct terms
Questions and answers
,2/2/25, 1:41 AM D278 Scripting and Programming
1 of 160
Definition Term
NP- complete problems problems for which no known
efficient algorithm exists are
known as what?
Give this one a go later!
True False
2 of 160
Definition Term
Integer In a program a branch is
Float what?
Character
String
Boolean
Array
Give this one a go later!
True False
Correct definition
,2/2/25, 1:41 AM D278 Scripting and Programming
What are the common data types?
3 of 160
Definition Term
a sequence of statements only In a program a branch is what?
executed under a certain
condition.
Give this one a go later!
True False
4 of 160
Term Definition
What is a popular code for ASCII
characters? ex. the letter Z ASCII stands for American
would be stored in a computer Standard Code for Information
as 1011010. Interchange, and was
developed in 1963. ASCII uses 7
bits per code, and has codes for
128 characters
Give this one a go later!
, 2/2/25, 1:41 AM D278 Scripting and Programming
True False
5 of 160
Term Definition
What does the modulo operator An unrepresentable or
evaluate to? undefined value. i.e. If the
dividend and divisor in floating-
point division are both 0, the
division results in a "not a
number".
Give this one a go later!
True False
Correct definition
It evaluates to the remainder of the division of 2 integer
operands (ex. 23 % 10 is 3 --> = 2.3 , it's the number(s)
after the decimal place)
6 of 160
Definition Term
sentinel In regards to loops, a
Such as a list of positive _________ value is a special
integers ending w/ 0, as value indicating the end of
in 10 1 6 3 0. a list.