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+
- 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: A program puts that data somewhere, such as to a file, screen, network, etc. - (ANSWER)What
are three parts to a computer program?
Algorithm - (ANSWER)A sequence of instructions that solves a problem
Flowchart - (ANSWER)A graphical language for creating computer programs
Program - (ANSWER)A sequence of statements
Interpreter - (ANSWER)A tool that runs a program's statements
Run - (ANSWER)The act of carrying out each statement's action
Variable - (ANSWER)A name that can hold a value
Statement - (ANSWER)A specific action in a program
String Literal - (ANSWER)This consists of text characters within double quotes, such as "Go#57!"
Cursor - (ANSWER)This indicates where the next output item will be placed in the output
, 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+
\n - (ANSWER)How do you write a Newline? That is a special two-character sequence whose appearance
in an output string literal and causes the cursor to move to the next output line. It exists invisibly in the
output; basically like hitting the "return" key while typing
Comment - (ANSWER)This is text a programmer adds to a program, to be read by humans to better
understand the code, but ignored by the program when executing. It starts with // and includes all text
on the line
Whitespace - (ANSWER)This refers to blank spaces (space and tab characters) between items within a
statement, and to newlines. Is mostly ignored during execution
Embedded Computer - (ANSWER)This is a computer which resides in another device such as a TV
Pseudocode - (ANSWER)What is text that resembles a program in a real programming language but is
simplified to aid human understanding?
Variable - (ANSWER)A named item, such as x or numPeople, used to hold a value
Assignment Statement; the left side must be a variable and the right side an expression - (ANSWER)This
assigns a variable with a value, such as x = 5, until x is assigned again.
Whole numbers like 1, 0, or -25, but not 3.5 or .001 - (ANSWER)What type of values can the Integer type
of Variable hold?
Variable Declaration - (ANSWER)This declares a new variable, specifying the variable's name and type
CURRENTLY TESTING COMPLETE EXAM QUESTIONS WITH DETAILED VERIFIED ANSWERS
(100% CORRECT ANSWERS) /ALREADY GRADED A+
- 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: A program puts that data somewhere, such as to a file, screen, network, etc. - (ANSWER)What
are three parts to a computer program?
Algorithm - (ANSWER)A sequence of instructions that solves a problem
Flowchart - (ANSWER)A graphical language for creating computer programs
Program - (ANSWER)A sequence of statements
Interpreter - (ANSWER)A tool that runs a program's statements
Run - (ANSWER)The act of carrying out each statement's action
Variable - (ANSWER)A name that can hold a value
Statement - (ANSWER)A specific action in a program
String Literal - (ANSWER)This consists of text characters within double quotes, such as "Go#57!"
Cursor - (ANSWER)This indicates where the next output item will be placed in the output
, 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+
\n - (ANSWER)How do you write a Newline? That is a special two-character sequence whose appearance
in an output string literal and causes the cursor to move to the next output line. It exists invisibly in the
output; basically like hitting the "return" key while typing
Comment - (ANSWER)This is text a programmer adds to a program, to be read by humans to better
understand the code, but ignored by the program when executing. It starts with // and includes all text
on the line
Whitespace - (ANSWER)This refers to blank spaces (space and tab characters) between items within a
statement, and to newlines. Is mostly ignored during execution
Embedded Computer - (ANSWER)This is a computer which resides in another device such as a TV
Pseudocode - (ANSWER)What is text that resembles a program in a real programming language but is
simplified to aid human understanding?
Variable - (ANSWER)A named item, such as x or numPeople, used to hold a value
Assignment Statement; the left side must be a variable and the right side an expression - (ANSWER)This
assigns a variable with a value, such as x = 5, until x is assigned again.
Whole numbers like 1, 0, or -25, but not 3.5 or .001 - (ANSWER)What type of values can the Integer type
of Variable hold?
Variable Declaration - (ANSWER)This declares a new variable, specifying the variable's name and type