D522 WGU EXAM WITH COMPLETE SOLUTIONS
100% VERIFIED!!
Python - ANSWER interpreted programming language that is 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 - ANSWER readable
dynamically typed
extensive standard library
cross plat
versatile
interpreted nature
Programming Paradigm - ANSWER a 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 - ANSWER focuses on describing a sequence of
steps to perform a task, procedures or routines.
object-oriented programming (OOP) - ANSWER is organized around objects, which
contain data and behavior
,functional programming - ANSWER focuses on the use of functions and immutable data
to compute
declarative programming - ANSWER describes what the program should accomplish,
not how to do it
event-driven programming - ANSWER reacts to events and user actions and fires off
corresponding functions
logic programming - ANSWER defines a set of logical conditions and lets the system
deduce solutions
indentation - ANSWER defines blocks of code. essential for structure and nesting of
code blocks
(4 spaces)
comments - ANSWER #
ignored by interpreter, for humans
Variable - ANSWER used to store data, created by assigning a value to a name
Data Types - ANSWER integers, floats, strings, lists, tuples, dictionaries
conditional statements - ANSWER if, else, elif (else if)
Classes - ANSWER (also objects) fundamental to object oriented programming in
,python.
print () - ANSWER used to output data to the console
print ("hello")
functions - ANSWER defined using def
def greet(name):
print ("Hello, name")
run python script in cmd prompt - ANSWER python script.py
How to run phython script in Python3 - ANSWER python3 script.py
Integrated Development Environments IDEs - ANSWER allow a friendlier way to build,
debug, and execute python scripts
Markdown file - ANSWER light format commonly used in technical to insert formatted
text, pictures, code snippets and etc within code repositories to provide readable
documentation
readable by humans
.md - ANSWER markdown file format name
Consistent Indentation - ANSWER For statements in the same block use the same
amount of spaces.
input() - ANSWER function, it stores the provided information from the user as strings
, output() - ANSWER functions which enables showing results or messages
format() - ANSWER method which is perfect for neat formatting of output like variables
inside strings
file I/O - ANSWER via open() functions that enable reading from and writing to outside
files.
len () - ANSWER function returns the length of a sequence
type () - ANSWER returns the type of an object
int (), float (), str () - ANSWER converts values to integers, floats, or strings
max (), min() - ANSWER returns the max or min value from a sequences
sum () - ANSWER finds the sum of elements in a sequence
abs () - ANSWER returns the absolute value of a number
range () - ANSWER generates a sequence of numbers
sorted () - ANSWER returns a sorted list from an iterable
any (), all() - ANSWER checks if any or all elemebts in an interable are true
map (), filter () - ANSWER applies a function to elements or filters elements based on a
functions
100% VERIFIED!!
Python - ANSWER interpreted programming language that is 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 - ANSWER readable
dynamically typed
extensive standard library
cross plat
versatile
interpreted nature
Programming Paradigm - ANSWER a 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 - ANSWER focuses on describing a sequence of
steps to perform a task, procedures or routines.
object-oriented programming (OOP) - ANSWER is organized around objects, which
contain data and behavior
,functional programming - ANSWER focuses on the use of functions and immutable data
to compute
declarative programming - ANSWER describes what the program should accomplish,
not how to do it
event-driven programming - ANSWER reacts to events and user actions and fires off
corresponding functions
logic programming - ANSWER defines a set of logical conditions and lets the system
deduce solutions
indentation - ANSWER defines blocks of code. essential for structure and nesting of
code blocks
(4 spaces)
comments - ANSWER #
ignored by interpreter, for humans
Variable - ANSWER used to store data, created by assigning a value to a name
Data Types - ANSWER integers, floats, strings, lists, tuples, dictionaries
conditional statements - ANSWER if, else, elif (else if)
Classes - ANSWER (also objects) fundamental to object oriented programming in
,python.
print () - ANSWER used to output data to the console
print ("hello")
functions - ANSWER defined using def
def greet(name):
print ("Hello, name")
run python script in cmd prompt - ANSWER python script.py
How to run phython script in Python3 - ANSWER python3 script.py
Integrated Development Environments IDEs - ANSWER allow a friendlier way to build,
debug, and execute python scripts
Markdown file - ANSWER light format commonly used in technical to insert formatted
text, pictures, code snippets and etc within code repositories to provide readable
documentation
readable by humans
.md - ANSWER markdown file format name
Consistent Indentation - ANSWER For statements in the same block use the same
amount of spaces.
input() - ANSWER function, it stores the provided information from the user as strings
, output() - ANSWER functions which enables showing results or messages
format() - ANSWER method which is perfect for neat formatting of output like variables
inside strings
file I/O - ANSWER via open() functions that enable reading from and writing to outside
files.
len () - ANSWER function returns the length of a sequence
type () - ANSWER returns the type of an object
int (), float (), str () - ANSWER converts values to integers, floats, or strings
max (), min() - ANSWER returns the max or min value from a sequences
sum () - ANSWER finds the sum of elements in a sequence
abs () - ANSWER returns the absolute value of a number
range () - ANSWER generates a sequence of numbers
sorted () - ANSWER returns a sorted list from an iterable
any (), all() - ANSWER checks if any or all elemebts in an interable are true
map (), filter () - ANSWER applies a function to elements or filters elements based on a
functions