WGU C173 Scripting & Programming Foundations
Western Governors University
All 11 results
Sort by
![WGU Scripting & Programming - Foundations: Section 10 Troubleshooting Process Vocab & Concepts Questions With Complete Solutions](/docpics/6599928/6731445c17b99_6599928_121_171.jpeg)
-
WGU Scripting & Programming - Foundations: Section 10 Troubleshooting Process Vocab & Concepts Questions With Complete Solutions
- Exam (elaborations) • 12 pages • 2024
-
Classroom
-
- $10.99
- + learn more
WGU Scripting & Programming - Foundations: Section 10 Troubleshooting Process Vocab & Concepts Questions With Complete Solutions
WGU C173 Bundled Exams with Complete Solution | Verified | Everything you Need!!
![(Top QUALITY 2024/2025 EXAM REVIEW) WGU C173 - Scripting & Programming Foundations - Optimized - Units 1-9. Exam Review. Full coverage. Rated A+ Program:](/docpics/3753373/6543ebacd7ca8_3753373_121_171.jpeg)
-
(Top QUALITY 2024/2025 EXAM REVIEW) WGU C173 - Scripting & Programming Foundations - Optimized - Units 1-9. Exam Review. Full coverage. Rated A+ Program:
- Exam (elaborations) • 18 pages • 2023
-
Available in package deal
-
PassPoint02
-
- $9.49
- + learn more
WGU C173 - Scripting & Programming 
Foundations - Optimized - Units 1-9. 
Exam Review. Full coverage. Rated A+ 
Program: 
instructions executing one at a time. 
A list of statements 
Input: 
A program gets data, perhaps from a file, keyboard, touchscreen, network, etc. 
Process: 
A program performs computations on that data, such as adding two values like x + y. 
Output: 
Data that has been processed into a useful format. A program puts that data somewhere, such as to a 
file, screen, network...
![(Top QUALITY 2024/2025 EXAM REVIEW) WGU C173 Ultimate Study Guide, Full Coverage, Comprehensive. Questions sections review. 100% Accurate.](/docpics/3753361/6543eb64082fd_3753361_121_171.jpeg)
-
(Top QUALITY 2024/2025 EXAM REVIEW) WGU C173 Ultimate Study Guide, Full Coverage, Comprehensive. Questions sections review. 100% Accurate.
- Exam (elaborations) • 27 pages • 2023
-
Available in package deal
-
PassPoint02
-
- $10.49
- + learn more
WGU C173 Ultimate Study Guide, Full 
Coverage, Comprehensive. Questions 
sections review. 100% Accurate. 
abstraction - -Focus on the essential qualities of something rather than one specific example. 
actors - -An Actor in a use case is anything with behavior who lives outside of your system, outside of 
your application, but has a goal they want to accomplish within. 
algorithm - -A set of commands that return a value. This differs from a procedure, which is a set of 
commands that doesn'...
![(Top QUALITY 2024/2025 EXAM REVIEW) WGU C173 Scripting & Programming Foundations. Exam Review Questions and answers. Graded A+](/docpics/3753354/6543eaef5185e_3753354_121_171.jpeg)
-
(Top QUALITY 2024/2025 EXAM REVIEW) WGU C173 Scripting & Programming Foundations. Exam Review Questions and answers. Graded A+
- Exam (elaborations) • 13 pages • 2023
-
Available in package deal
-
PassPoint02
-
- $8.49
- + learn more
WGU C173 Scripting & Programming 
Foundations. Exam Review Questions 
and answers. Graded A+ 
for loop 
number of iterations is computable before the loop, like iterating N times 
incremental development 
the progress of writing, compiling, and testing a small amount of code, then writing, compiling, and 
testing a small amount more (an incremental amount), and so on 
Analysis 
First step in the waterfall approach. Defines a program's goals 
parameter 
a function input specified din a functi...
![(Top QUALITY 2024/2025 EXAM REVIEW) WGU C173 Scripting and Programming - Foundations Section 1 & 2. Questions & Answers, 100% Accurate. VERIFIED.](/docpics/3753349/6543ea7dbe58f_3753349_121_171.jpeg)
-
(Top QUALITY 2024/2025 EXAM REVIEW) WGU C173 Scripting and Programming - Foundations Section 1 & 2. Questions & Answers, 100% Accurate. VERIFIED.
- Exam (elaborations) • 3 pages • 2023
-
Available in package deal
-
PassPoint02
-
- $7.99
- + learn more
WGU C173 Scripting and Programming - 
Foundations Section 1 & 2. Questions & 
Answers, 100% Accurate. VERIFIED. 
used to store information to be referenced and manipulated in a computer program. - -Variable 
How to assign a value to a variable? - -= symbol 
An ___________________ is anything that can be evaluated, and pretty much everything you write in a 
program. - -expression 
a name assigned to an element in a program. Example, name of a variable, function, etc. - -Identifier 
the ________...
![(Top QUALITY 2024/2025 EXAM REVIEW) WGU C173 Scripting and Programming Foundations, Exam Questions and answers, Graded A+. VERIFIED. Program](/docpics/3753343/6543ea4235a43_3753343_121_171.jpeg)
-
(Top QUALITY 2024/2025 EXAM REVIEW) WGU C173 Scripting and Programming Foundations, Exam Questions and answers, Graded A+. VERIFIED. Program
- Exam (elaborations) • 13 pages • 2023
-
Available in package deal
-
PassPoint02
-
- $9.49
- + learn more
WGU C173 Scripting and Programming 
Foundations, Exam Questions and 
answers, Graded A+. VERIFIED. 
Program 
Sequence of statements/instructions that are executed one at a time 
What are the three basic instructions in a program? 
Input, Process, Output 
Input 
When a program gets data 
Process 
When a program performs computations on the data it has received as input 
Output 
When a program takes the processed data and puts it some where, like a file, screen, network, etc. 
Variable 
Named it...
![(Top QUALITY 2024/2025 EXAM REVIEW) WGU C173 Scripting and Programming Foundations, Exam Questions and answers, Graded A+.](/docpics/3753330/6543e9c51485f_3753330_121_171.jpeg)
-
(Top QUALITY 2024/2025 EXAM REVIEW) WGU C173 Scripting and Programming Foundations, Exam Questions and answers, Graded A+.
- Exam (elaborations) • 29 pages • 2023
-
Available in package deal
-
PassPoint02
-
- $10.49
- + learn more
WGU C173 Scripting and Programming 
Foundations, Exam Questions and 
answers, Graded A+. 
What is a variable? - -A name that can hold a value. Might be named x. Then, x = 7 assigns x with 7, 
which remains in x while the program runs, until x is assigned again. 
Assignment Statement - -Assigns the variable on the left-side of the = with the current value of the 
right-side expression 
Expression - -A mathematical phrase that contains operations, numbers, and/or variables. 
numApples is initi...
![(Top QUALITY 2024/2025 EXAM REVIEW) WGU C173 Pre-Assessment Practice Questions and answers, 100% Accurate. Graded A+](/docpics/3753324/6543e99200de7_3753324_121_171.jpeg)
-
(Top QUALITY 2024/2025 EXAM REVIEW) WGU C173 Pre-Assessment Practice Questions and answers, 100% Accurate. Graded A+
- Exam (elaborations) • 21 pages • 2023
-
Available in package deal
-
PassPoint02
-
- $10.49
- + learn more
WGU C173 Pre-Assessment Practice 
Questions and answers, 100% Accurate. 
Graded A+ 
Which operator should be used to determine if a number is evenly divisible by 5? 
A + 
B - 
C * 
D % - -D 
A car drove 200 miles using 10 gallons of fuel. 
Which operation should be used to compute the miles per gallon, w
![WGU C173 - Scripting & Programming Foundations - Optimized - Units 1-9. Exam Review. Full coverage. Rated A+ 2024](/docpics/3663958/653316a40e300_3663958_121_171.jpeg)
-
WGU C173 - Scripting & Programming Foundations - Optimized - Units 1-9. Exam Review. Full coverage. Rated A+ 2024
- Exam (elaborations) • 18 pages • 2023
- Available in package deal
-
Preach
-
- $15.49
- + learn more
Program: 
instructions executing one at a time. 
A list of statements 
Input: 
A program gets data, perhaps from a file, keyboard, touchscreen, network, etc. 
Process: 
A program performs computations on that data, such as adding two values like x + y. 
Output: 
Data that has been processed into a useful format. A program puts that data somewhere, such as to a 
file, screen, network, etc. 
Variables: 
a named item, such as x or numPeople, used to hold a value. ex: y 
Computational Thinking: 
Men...
![Verkoop je kennis op stuvia](https://www.stuvia.com/hosted-imgs/app/stock-fotos/banner_seller_big.jpg)
Did you know that on average a seller on Stuvia earns $82 per month selling study resources? Hmm, hint, hint. Discover all about earning on Stuvia