Escrito por estudiantes que aprobaron Inmediatamente disponible después del pago Leer en línea o como PDF ¿Documento equivocado? Cámbialo gratis 4,6 TrustPilot
logo-home
Document preview thumbnail
Vista previa 4 fuera de 135 páginas
Examen

WGU D684 INTRODUCTION TO COMPUTER SCIENCE OBJECTIVE ASSESSMENT ACTUAL EXAM STUDY GUIDE 2026/2027 COMPLETE QUESTIONS BANK AND CORRECT DETAILED ANSWERS || 100% GUARANTEED PASS BRAND NEW VERSION

Document preview thumbnail
Vista previa 4 fuera de 135 páginas

WGU D684 INTRODUCTION TO COMPUTER SCIENCE OBJECTIVE ASSESSMENT ACTUAL EXAM STUDY GUIDE 2026/2027 COMPLETE QUESTIONS BANK AND CORRECT DETAILED ANSWERS || 100% GUARANTEED PASS BRAND NEW VERSION web server - ANSWER️a computer system that hosts websites and delivers web pages to users over the internet wide-area network (WAN) - ANSWER️a network that spans a large geographic area, connecting multiple smaller networks, such as LANs, typically using long-distance communication links wireless - ANSWER️a method of transmitting data without physical connections, using radio waves or other technologies wireless network - ANSWER️a network that uses wireless technology, such as Wi-Fi, to connect devices and enable communication without physical cables Open systems and protocols - ANSWER️Promote interoperability and standardization, allowing different systems to communicate seamlessly. TCP/IP - ANSWER️A set of communication protocols used for the internet and similar networks. HTTP - ANSWER️A protocol used for transmitting hypertext via the internet. Network addresses - ANSWER️Uniquely identify devices on a network, facilitating accurate data routing and communication between devices. desktop PC - ANSWER️A personal computer designed for regular use at a single location, typically on a desk, with separate components like a monitor, keyboard, and mouse. embedded computer - ANSWER️A specialized computer integrated into larger systems or devices to perform specific control functions, such as in appliances, cars, and industrial machines. Count-controlled loop - ANSWER️Repeats a process a specified number of times. The looping mechanism counts each time the process is repeated and tests whether it has finished before beginning the process again. Boolean Expression - ANSWER️True or False Event controlled loop - ANSWER️The number of repititions is controlled by an event that occurs within the body of the loop itself. Arrays - ANSWER️Homogeneous Items. records - ANSWER️Heterogeneous group of items which are accessed by name. The collection can contain: integers, real values, string, or any other type of data. Good choice for bundling items together that relate to the same object. Ex. name, age, & hourly wage could be bound to a record called employee. Association of Computing Machinery (ACM) - ANSWER️-be honest and trustworthy -ethic principles -maintain professional standards -ensure public good -uphold, promote, and respect principles Institute of Electrical and Electronics Engineers (IEEE) - ANSWER️-safety, health and welfare of the public -avoid conflicts of interest -reject bribery -maintain and improve technical competence -treat people fairly -assist colleagues and co-workers in their professional development List - ANSWER️A collection of homogeneous items that allows for easy access, insertion, and removal What is inheritance in OOP - ANSWER️Inheritance allows you to create new classes based on existing classes. The new class inherits attributes and behaviours from parent class. What is a Class in OOP - ANSWER️A blueprint for creating objects What does the term "object" refer to in OOP - ANSWER️An instance of a class containing attributes and methods What is the relationship between a parameter and an argument? - ANSWER️A parameter is a temporary variable in a function that receives the actual value of an argument Merge Sort - ANSWER️A list is split into individual lists, these are then combined (2 lists at a time). Quick Sort - ANSWER️1. If the list to be sorted is length 1, then finish 2. Pick an item within the list to act as a pivot. Usually left-most item. 3. Split list into two parts - one with items equal to or larger than the pivot and the other contains items smaller than the pivot 4. Repeat process on the two halves Radix Sort - ANSWER️Non-comparative integer sorting algorithm that sorts data with integer keys by grouping keys by the individual digits which share the same significant position and value. Two classifications of radix sorts are least significant digit (LSD) radix sorts and most significant digit (MSD) radix sorts. Declarative Paradigm - ANSWER️Program describes the results Software Development Life Cycle (SDLC) - ANSWER️The various stages in designing and implementing a new computer system. Stages: -understand the problem -Plan the logic -Write the code -Translate the code -Test the program -Put the program into production -Maintain the program

Vista previa del contenido

WGU D684 INTRODUCTION TO COMPUTER
SCIENCE OBJECTIVE ASSESSMENT
ACTUAL EXAM STUDY GUIDE 2026/2027
COMPLETE QUESTIONS BANK AND
CORRECT DETAILED ANSWERS || 100%
GUARANTEED PASS BRAND NEW




web server - ANSWER a computer system that hosts websites and delivers web pages to
users over the internet



wide-area network (WAN) - ANSWER a network that spans a large geographic area,
connecting multiple smaller networks, such as LANs, typically using long-distance
communication links



wireless - ANSWER a method of transmitting data without physical connections, using radio
waves or other technologies



wireless network - ANSWER a network that uses wireless technology, such as Wi-Fi, to
connect devices and enable communication without physical cables



Open systems and protocols - ANSWER Promote interoperability and standardization,
allowing different systems to communicate seamlessly.

,TCP/IP - ANSWER A set of communication protocols used for the internet and similar
networks.



HTTP - ANSWER A protocol used for transmitting hypertext via the internet.



Network addresses - ANSWER Uniquely identify devices on a network, facilitating accurate
data routing and communication between devices.



desktop PC - ANSWER A personal computer designed for regular use at a single location,
typically on a desk, with separate components like a monitor, keyboard, and mouse.



embedded computer - ANSWER A specialized computer integrated into larger systems or
devices to perform specific control functions, such as in appliances, cars, and industrial
machines.

Count-controlled loop - ANSWER Repeats a process a specified number of times. The looping
mechanism counts each time the process is repeated and tests whether it has finished before
beginning the process again.



Boolean Expression - ANSWER True or False



Event controlled loop - ANSWER The number of repititions is controlled by an event that
occurs within the body of the loop itself.



Arrays - ANSWER Homogeneous Items.



records - ANSWER Heterogeneous group of items which are accessed by name. The
collection can contain: integers, real values, string, or any other type of data. Good choice for
bundling items together that relate to the same object.

,Ex. name, age, & hourly wage could be bound to a record called employee.



Association of Computing Machinery (ACM) - ANSWER -be honest and trustworthy

-ethic principles

-maintain professional standards

-ensure public good

-uphold, promote, and respect principles



Institute of Electrical and Electronics Engineers (IEEE) - ANSWER -safety, health and welfare
of the public

-avoid conflicts of interest

-reject bribery

-maintain and improve technical competence

-treat people fairly

-assist colleagues and co-workers in their professional development



List - ANSWER A collection of homogeneous items that allows for easy access, insertion, and
removal



What is inheritance in OOP - ANSWER Inheritance allows you to create new classes based on
existing classes. The new class inherits attributes and behaviours from parent class.



What is a Class in OOP - ANSWER A blueprint for creating objects



What does the term "object" refer to in OOP - ANSWER An instance of a class containing
attributes and methods

, What is the relationship between a parameter and an argument? - ANSWER A parameter is a
temporary variable in a function that receives the actual value of an argument



Merge Sort - ANSWER A list is split into individual lists, these are then combined (2 lists at a
time).



Quick Sort - ANSWER 1. If the list to be sorted is length 1, then finish



2. Pick an item within the list to act as a pivot. Usually left-most item.



3. Split list into two parts - one with items equal to or larger than the pivot and the other
contains items smaller than the pivot



4. Repeat process on the two halves



Radix Sort - ANSWER Non-comparative integer sorting algorithm that sorts data with integer
keys by grouping keys by the individual digits which share the same significant position and
value. Two classifications of radix sorts are least significant digit (LSD) radix sorts and most
significant digit (MSD) radix sorts.



Declarative Paradigm - ANSWER Program describes the results



Software Development Life Cycle (SDLC) - ANSWER The various stages in designing and
implementing a new computer system.



Stages:

-understand the problem

-Plan the logic

Información del documento

Subido en
10 de junio de 2026
Número de páginas
135
Escrito en
2025/2026
Tipo
Examen
Contiene
Preguntas y respuestas
$14.99

¿Documento equivocado? Cámbialo gratis Dentro de los 14 días posteriores a la compra y antes de descargarlo, puedes elegir otro documento. Puedes gastar el importe de nuevo.
Escrito por estudiantes que aprobaron
Inmediatamente disponible después del pago
Leer en línea o como PDF

Vendido
4
Seguidores
0
Artículos
263
Última venta
3 semanas hace



Por qué los estudiantes eligen Stuvia

Creado por compañeros estudiantes, verificado por reseñas

Calidad en la que puedes confiar: escrito por estudiantes que aprobaron y evaluado por otros que han usado estos resúmenes.

¿No estás satisfecho? Elige otro documento

¡No te preocupes! Puedes elegir directamente otro documento que se ajuste mejor a lo que buscas.

Paga como quieras, empieza a estudiar al instante

Sin suscripción, sin compromisos. Paga como estés acostumbrado con tarjeta de crédito y descarga tu documento PDF inmediatamente.

Student with book image

“Comprado, descargado y aprobado. Así de fácil puede ser.”

Alisha Student

Preguntas frecuentes