WGU D278 2026 COMPREHENSIVE EXAM SCRIPT COMPLETE ANSWER SET, Exams of Programming Paradigms

WGU D278 2026 COMPREHENSIVE EXAM SCRIPT COMPLETE ANSWER SET

Typology: Exams

2025/2026

Available from 03/20/2026

Professor_Beatrice
Professor_Beatrice 🇺🇸

5

(1)

49K documents

1 / 5

Toggle sidebar

This page cannot be seen from the preview

Don't miss anything!

bg1
WGU D278 2026 COMPREHENSIVE EXAM
SCRIPT COMPLETE ANSWER SET
◉Define Library Functions Answer: Functions that relate to the
same purpose (i.e., teacher, student, grades)
◉What is a characteristic of a Markup Language? Answer: Allows a
developer to describe a document's content, formatting
◉What is the main characteristic of Object-Oriented Language
Answer: It supports decomposing programs into objects (C++, Java,
Python, C#)
◉What is the main characteristic of Interpreted/Scripting Language
Answer: It runs sequential statements by another program called an
interpreter (Python, Javascript)
◉What is the main characteristics of a Compiled Language? Answer:
A program which is converted by a compiler into machine code
which runs on particular machines (C++, Java)
pf3
pf4
pf5

Partial preview of the text

Download WGU D278 2026 COMPREHENSIVE EXAM SCRIPT COMPLETE ANSWER SET and more Exams Programming Paradigms in PDF only on Docsity!

WGU D278 2026 COMPREHENSIVE EXAM

SCRIPT COMPLETE ANSWER SET

◉Define Library Functions Answer: Functions that relate to the same purpose (i.e., teacher, student, grades) ◉What is a characteristic of a Markup Language? Answer: Allows a developer to describe a document's content, formatting ◉What is the main characteristic of Object-Oriented Language Answer: It supports decomposing programs into objects (C++, Java, Python, C#) ◉What is the main characteristic of Interpreted/Scripting Language Answer: It runs sequential statements by another program called an interpreter (Python, Javascript) ◉What is the main characteristics of a Compiled Language? Answer: A program which is converted by a compiler into machine code which runs on particular machines (C++, Java)

◉What is SDLC? Answer: The System Development Life Cycle is the development phases of programs ◉What is the Waterfall Approach? Answer: A program built by carrying out each SDLC phase in sequence ◉What are the four phases of SDLC? Answer: Analysis, Design, Implementation, and Testing ◉What is the Agile (Spiral) Approach? Answer: A program built by doing small amounts of each SDLC phases in sequence, then repeating the process ◉What does UML mean and what is its definiton? Answer: Univeral Modeling Language is a model for software design that uses different types of diagrams to visualize the structure and behavior of programs ◉What are the three diagrams that UML consists of? Answer: A structure diagram, a behavioral diagram, a sequence diagram ◉What is a structural diagram? Answer: it visualizes static elements of software, such as the types of variables and functions used in a program

  1. Testing Answer: A Case Diagram, a Class Diagram, Flowchart (Activity Diagram), and a Sequence Diagram (respectively) ◉SDLC - Define the Analysis Phase Answer: Defines a program's goals ◉SDLC - Define the Design Phase Answer: Defines specifics of how to build a program ◉SDLC - Define the Implementation Phase Answer: Involves writing the program ◉SDLC - Define the Testing Phase Answer: Checks that the program correctly meets goals ◉What is a popular Markup Language? Answer: HTML: describes texts, links, images, and other features ◉What is a characteristic of Interpreted/Scripting Language Answer: Dynamically typed - changing variables ◉What is an advantage of Interpreted/Scripting Language Answer: Runs on most machines with an interpreter

◉What is a characteristics of a Compiled Language? Answer: Statically-typed - constant variable declaration ◉What is an advantage of a Compiled Language? Answer: Runs faster than interpreted language