D522 WGU with correct answers 2025
Python - correct answersinterpreted programming language known for its simplicity, readability,
and versatility
supports multiple programming paradigms, including procedural, object-oriented, and
functional programming, making it adaptable to different coding styles.
Python is - correct answersreadable
dynamically typed
extensive standard library
cross plat
versatile
interpreted nature
Programming Paradigm - correct answersa fundamental style or approach to programming that
dictates how tasks should be structured and executed in each programming language. It
encompasses principles, concepts, and patterns that guide the design and organization of code.
imperative/procedural programming - correct answersfocuses on describing a sequence of steps
to perform a task, procedures or routines.
object-oriented programming (OOP) - correct answersorganizes code around objects, which
encapsulate data and behavior
functional programming - correct answersemphasizes the use of functions and immutable data
for computation
declarative programming - correct answersdescribes what the program should accomplish
without specifying how to achieve it
,event-driven programming - correct answersreacts to events and user actions, triggering
corresponding functions
logic programming - correct answersdefines a set of logical conditions and lets the system
deduce solutions
indentation - correct answersdefines blocks of code. crucial for structure and nesting of code
blocks
(4 spaces)
comments - correct answers#
ignored by interpreter, for humans
Variable - correct answersused to store data, created by assigning a value to a name
Data Types - correct answersintegers, floats, strings, lists, tuples, dictionaries
conditional statements - correct answersif, else, elif (else if)
Classes - correct answers(also objects) fundamental to object oriented programming in python.
print () - correct answersused to output data to the console
print ("hello")
functions - correct answersdefined using def
, def greet(name):
print ("Hello, name")
run python script in cmd prompt - correct answerspython script.py
How to run phython script in Python3 - correct answerspython3 script.py
Integrated Development Environments (IDEs) - correct answersprovide a more user-friendly
environment for coding, debugging, and running Python scripts
Markdown file - correct answerssimple format used frequently to add styled text, images, code
snippets and more to coding repos serving as documentation
human readable
.md - correct answersmarkdown file
Consistent Indentation - correct answersAll statements within the same block must be indented
by the same number of spaces.
input() - correct answersfunction, storing user entered info as strings
output() - correct answersfunctions, allowing the presentation of results or messages
format() - correct answersmethod, enhances output formatting by embedding variables in
strings
file I/O - correct answersthrough the open() functions enabling reading from and writing to
external files.
Python - correct answersinterpreted programming language known for its simplicity, readability,
and versatility
supports multiple programming paradigms, including procedural, object-oriented, and
functional programming, making it adaptable to different coding styles.
Python is - correct answersreadable
dynamically typed
extensive standard library
cross plat
versatile
interpreted nature
Programming Paradigm - correct answersa fundamental style or approach to programming that
dictates how tasks should be structured and executed in each programming language. It
encompasses principles, concepts, and patterns that guide the design and organization of code.
imperative/procedural programming - correct answersfocuses on describing a sequence of steps
to perform a task, procedures or routines.
object-oriented programming (OOP) - correct answersorganizes code around objects, which
encapsulate data and behavior
functional programming - correct answersemphasizes the use of functions and immutable data
for computation
declarative programming - correct answersdescribes what the program should accomplish
without specifying how to achieve it
,event-driven programming - correct answersreacts to events and user actions, triggering
corresponding functions
logic programming - correct answersdefines a set of logical conditions and lets the system
deduce solutions
indentation - correct answersdefines blocks of code. crucial for structure and nesting of code
blocks
(4 spaces)
comments - correct answers#
ignored by interpreter, for humans
Variable - correct answersused to store data, created by assigning a value to a name
Data Types - correct answersintegers, floats, strings, lists, tuples, dictionaries
conditional statements - correct answersif, else, elif (else if)
Classes - correct answers(also objects) fundamental to object oriented programming in python.
print () - correct answersused to output data to the console
print ("hello")
functions - correct answersdefined using def
, def greet(name):
print ("Hello, name")
run python script in cmd prompt - correct answerspython script.py
How to run phython script in Python3 - correct answerspython3 script.py
Integrated Development Environments (IDEs) - correct answersprovide a more user-friendly
environment for coding, debugging, and running Python scripts
Markdown file - correct answerssimple format used frequently to add styled text, images, code
snippets and more to coding repos serving as documentation
human readable
.md - correct answersmarkdown file
Consistent Indentation - correct answersAll statements within the same block must be indented
by the same number of spaces.
input() - correct answersfunction, storing user entered info as strings
output() - correct answersfunctions, allowing the presentation of results or messages
format() - correct answersmethod, enhances output formatting by embedding variables in
strings
file I/O - correct answersthrough the open() functions enabling reading from and writing to
external files.