D278 - Study guides, Class notes & Summaries
Looking for the best study guides, study notes and summaries about D278? On this page you'll find 193 study documents about D278.
Page 3 out of 193 results
Sort by
-
WGU D278 Final Exam Prep (Latest Update 2024 / 2025) Scripting and Programming - Foundations | Questions and Verified Answers | 100% Correct | Grade A
- Exam (elaborations) • 31 pages • 2024
- Available in package deal
-
- $7.99
- + learn more
WGU D278 Final Exam Prep (Latest Update 2024 / 2025) Scripting and Programming - Foundations | Questions and Verified Answers | 100% Correct | Grade A 
 
 
 
Question: 
A programming library is used to: (choose two) 
Answer: 
improve productivity 
add functionality related to a single purpose 
 
 
Question: 
Which language type executes faster? 
Answer: 
A *compiled* language. 
 
 
 
 
Question: 
Which language type is NOT written for a specific type of machine? 
Answer: 
interpreted language 
 ...
-
WGU D278 Scripting and Programming - Foundations (Latest 2024/ 2025 Update) | Questions and Verified Answers| 100% Correct| Grade A
- Exam (elaborations) • 25 pages • 2024
-
- $10.49
- + learn more
WGU D278 Scripting and Programming - Foundations (Latest 2024/ 2025 Update) | Questions and Verified Answers| 100% Correct| Grade A 
WGU D278 Scripting and Programming - Foundations (Latest 2024/ 2025 Update) | Questions and Verified Answers| 100% Correct| Grade A
-
WGU D278 Scripting and Programming - Foundations (Latest Update 2024 / 2025) | Questions and Verified Answers | 100% Correct | Grade A
- Exam (elaborations) • 51 pages • 2024
- Available in package deal
-
- $7.99
- + learn more
WGU D278 Scripting and Programming - Foundations (Latest Update 2024 / 2025) | Questions and Verified Answers | 100% Correct | Grade A 
 
 
 
Question: 
Function stub 
Answer: 
a function definition whose statements have not yet been written. 
 
 
Question: 
function definition 
Answer: 
begins with the word Function, the function's name, and a list of comma-separated parameters (if any) in parentheses, and a return indication. 
 
 
 
 
Question: 
function call 
Answer: 
consists of the funct...
-
WGU D278 Scripting & Programming EXAM 2024 SUMMER-WINTER EXAM WITH ANSWERS
- Exam (elaborations) • 25 pages • 2024
-
- $15.49
- + learn more
WGU D278 Scripting & Programming EXAM 2024 SUMMER-WINTER EXAM WITH ANSWERS
-
WGU D278 Scripting and Programming - Foundations (Latest 2024/ 2025 Update) | Questions and Verified Answers| 100% Correct| Grade A
- Exam (elaborations) • 34 pages • 2024
- Available in package deal
-
- $10.99
- + learn more
WGU D278 Scripting and Programming - Foundations (Latest 2024/ 2025 Update) | Questions and Verified Answers| 100% Correct| Grade A 
 
Q: Bit 
A binary digit, representing 0 or 1. 
 
 
Q: Byte 
 
Answer: 
 A group of 8 bits, representing a single character. like 
 
 
Q: Character 
 
Answer: 
 letter (a, b, ..., z, A, B, ..., Z), symbol (!, @, #, ...), or single-digit number (0, 1, ..., 9). 
 
 
Q: ASCII 
 
Answer: 
 A popular character encoding standard. 
 
 
Q: Unicode 
 
Answer: 
 another cha...
Fear of missing out? Then don’t!
-
WGU D278 Pre-Assessment V1 (Latest Update 2024 / 2025) Scripting and Programming - Foundations | Questions and Verified Answers | 100% Correct | Grade A
- Exam (elaborations) • 40 pages • 2024
- Available in package deal
-
- $7.99
- + learn more
WGU D278 Pre-Assessment V1 (Latest Update 2024 / 2025) Scripting and Programming - Foundations | Questions and Verified Answers | 100% Correct | Grade A 
 
 
 
Question: 
When should a programmer develop an algorithm to solve a problem? 
A Before knowing the problem 
B Before writing a program to solve the problem 
C While writing a program to solve the problem 
D After writing a program to solve the problem 
Answer: 
B 
 
 
Question: 
Which text represents an algorithm? 
A Cats and dogs hav...
-
WGU D278 Pre-Assessment V2 (Latest Update 2024 / 2025) Scripting and Programming - Foundations | Questions and Verified Answers | 100% Correct | Grade A
- Exam (elaborations) • 23 pages • 2024
- Available in package deal
-
- $7.99
- + learn more
WGU D278 Pre-Assessment V2 (Latest Update 2024 / 2025) Scripting and Programming - Foundations | Questions and Verified Answers | 100% Correct | Grade A 
 
 
 
Question: 
A programmer is currently programming the fourth version of a program. Each version has additional features to satisfy more customers. In which phase of an agile approach does the programming of the fourth version occur? 
Answer: 
Implementation 
 
 
Question: 
Order the statements needed to output the minimum of x and y from f...
-
WGU D278 Objective Assessment Prep (Latest Update 2024 / 2025) Scripting and Programming - Foundations | Questions and Verified Answers | 100% Correct | Grade A
- Exam (elaborations) • 38 pages • 2024
- Available in package deal
-
- $7.99
- + learn more
WGU D278 Objective Assessment Prep (Latest Update 2024 / 2025) Scripting and Programming - Foundations | Questions and Verified Answers | 100% Correct | Grade A 
 
 
 
Question: 
Waterfall approach 
Answer: 
Carrying out the SDLC phases in sequence. 
 
 
Question: 
Agile approach 
Answer: 
Building program by doing small amounts of SDLC phases in sequences and then repeating 
 
Also called spiral approach 
 
Question: 
Object 
Answer: 
A grouping of data (variables) and operations that can be pe...
-
WGU D278 Final Exam Prep (Latest 2024/ 2025 Update) Scripting and Programming - Foundations | Questions and Verified Answers| 100% Correct| Grade A
- Exam (elaborations) • 22 pages • 2024
- Available in package deal
-
- $10.99
- + learn more
WGU D278 Final Exam Prep (Latest 2024/ 2025 Update) Scripting and Programming - Foundations | Questions and Verified Answers| 100% Correct| Grade A 
 
Q: Which loop types are best suited to continually check a test expression? 
 
 
Answer: 
while 
do while 
 
 
 
Q: What type of loop is best suited to perform operations over a range of values? 
 
 
Answer: 
for 
 
 
 
Q: What type of loop is shown here? 
 
 
Answer: 
while 
 
 
 
Q: What is the purpose of an "if" statement? 
 
 
Answer: 
To co...
-
WGU D278 Scripting and Programming Foundations (New 2024/ 2025 Update) | Questions and Verified Answers| 100% Correct| A Grade
- Exam (elaborations) • 40 pages • 2024
- Available in package deal
-
- $10.99
- + learn more
WGU D278 Scripting and Programming Foundations (New 2024/ 2025 Update) | Questions and Verified Answers| 100% 
Correct| A Grade
Do you wonder why so many students wear nice clothes, have money to spare and enjoy tons of free time? Well, they sell on Stuvia! Imagine your study notes being downloaded a dozen times for $15 each. Every. Single. Day. Discover all about earning on Stuvia