WGU C173 SCRIPTING AND PROGRAMMING FOUNDATIONS PA
2025 ACTUAL EXAM CURRENTLY TESTING COMPLETE EXAM
QUESTIONS WITH DETAILED VERIFIED ANSWERS (100% CORRECT
ANSWERS) /ALREADY GRADED A+
Focus on the essential qualities of something rather
abstraction
than one specific example.
An Actor in a use case is anything with
behavior who lives outside of your system,
actors
outside of your application, but has a goal
they want to accomplish
within.
A set of commends that returns a value. This
algorithm differs from a procedure, which is a set of
commands that
doesn't necessarily have to return a value.
Mutates <List> by adding <Element> to the end of the
append()
list.
argument The inputs to a procedure. Also called operands.
Characteristics of an object which may be
attributes used to reference other objects or save
object state
information.
https://quizlet.com/1023265343/wgu-c173-scripting-and-programming-foundations-pa-2025-actual-exam-currently-testing-complete-exam-questions-… 1/20
,3/27/25, 4:54 AM WGU C173 SCRIPTING AND PROGRAMMING FOUNDATIONS PA 2025 ACTUAL EXAM CURRENTLY TESTING COMPLETE EX…
This is an assignment statement. A variable is
<name> = named and also assigned a value or
<expression> expression. If multiple values are assigned to
the same named variable, the
last assignment is the one used.
An expression that has a value and is not
base case defined in terms of some other thing we are
defining. This breaks
the chain of recursion.
Boolean A value that is either True or False
A definition that doesn't give us answers
circular definition because it never finishes. It is stuck in a loop
with each reference
pointing to another reference. It has no base case.
Describes what an object will be, but it isn't
class
the object itself. This is a blueprint for that
object.
https://quizlet.com/1023265343/wgu-c173-scripting-and-programming-foundations-pa-2025-actual-exam-currently-testing-complete-exam-questions-… 2/20
, 3/27/25, 4:54 AM WGU C173 SCRIPTING AND PROGRAMMING FOUNDATIONS PA 2025 ACTUAL EXAM CURRENTLY TESTING COMPLETE EX…
<ClassName> How to define a class in Python
(<BaseClass>):
<Block>
The most common diagram in Object-
Oriented Design. Shows the system classes
class diagram (UML)
and relationships between them. Diagrams the
primary attributes and
primary operations for each class.
Dividing software or an application into
code modularity smaller modules. This provides prewritten
code which saves
resources and provides greater manageability.
comparison operator Used to make a comparison between two values.
You write source code, and compiler goes
through that code and creates a separate file
compiled language containing the machine code. That new file is
used to run the program. Can be faster than
interpreted code. Must
be compiled for a specific platform.
A program that takes source code and converts it to
compiler
machine code by producing a separate file.
concatenate To connect or link in a series or chain.
A special type of function used to create a
constructor class or object. The constructor prepares the
new object for
use.
https://quizlet.com/1023265343/wgu-c173-scripting-and-programming-foundations-pa-2025-actual-exam-currently-testing-complete-exam-questions-… 3/20