100% satisfaction guarantee Immediately available after payment Both online and in PDF No strings attached 4.2 TrustPilot
logo-home
Exam (elaborations)

WGU D684 INTRODUCTION TO COMPUTER SCIENCE CHAPTER 1 QUESTIONS AND ANSWERS 2026 Which value is stored as an integer in computer programming? - "0" - true - -306.5 - 21 - Correct Answer-21 Which coding construct repeats a task while a

Rating
-
Sold
-
Pages
14
Grade
A+
Uploaded on
09-01-2026
Written in
2025/2026

WGU D684 INTRODUCTION TO COMPUTER SCIENCE CHAPTER 1 QUESTIONS AND ANSWERS 2026 Which value is stored as an integer in computer programming? - "0" - true - -306.5 - 21 - Correct Answer-21 Which coding construct repeats a task while a condition is true? - Iteration - Input/output - Selection - Assignment - Correct Answer-Iteration : The iteration construct, or the looping construct, uses a while statement to perform the same task over and over again as long as a condition is true. How are items accessed in a stack? - The item removed is the one that has been in the longest time. - All items can be added to or removed from any location. - The last item to be added becomes the first item removed. - All items can be accessed or changed but not easily inserted or removed. - Correct Answer-The last item to be added becomes the first item removed. A web browser puts websites into a viewing history log and accesses the most recent one when the back button is clicked. Which data structure would be appropriate for this situation? - Record - List - Queue - Stack - Correct Answer-Stack What is the relationship between a parameter and an argument? - A parameter is passed to a function by reference, whereas an argument is passed by value. - A parameter is a temporary variable in a function that receives the actual value of an argument. - An argument is an identifier in a function that receives the value called the parameter. WGU D684 - An argument is a value set in the code by a calculation, whereas a parameter is set by user input. - Correct Answer-A parameter is a temporary variable in a function that receives the actual value of an argument. Which programming language is considered to be a declarative language? - Smalltalk - BASIC - Lisp - Java - Correct Answer-Lisp: The declarative programming paradigm is a model in which the results are described, but the steps to accomplish the results are not stated. There are two basic models within this paradigm, functional and logic. Lisp is an example of a declarative language Analog data Data represented in a continuous and variable form American standard code for information interchange (ASCII) A standard encoding system for text characters that uses numeric values to represent letters, numbers, and symbols Bandwidth The maximum rate of data transfer across a network or communication channel, usually measured in bits per second Binary A numerical system that uses only two digits, zero and one, to represent data in computing Boolean expression A logical statement that can only be true or false and uses operators like and, or, and not Character A single letter, digit, or symbol used in writing text Character set A collection of characters that a computer can recognize and process, like ascii or unicode compression ratio: the ratio of the original data size to the compressed data size, indicating how much the data has been reduced Control structure Constructs in programming that control the flow of execution, such as loops and conditional statements Data Raw facts and figures that can be processed to produce meaningful information Data compression The process of reducing the size of data to save space or transmission time Data types WGU D684 WGU D684 Categories of data that define what kind of value can be stored, like integers, floats, and strings, and how it can be used Declaration A statement in programming that specifies the name and type of a variable or function without assigning a value Digital data Data represented using discrete binary values (zeroes and ones) Floating point A way to represent real numbers that can have fractional parts using a format that includes a base and an exponent Huffman encoding A compression technique that uses variable-length codes for data representation based on frequency of occurrence Information Data that have been processed or organized in a meaningful way to be useful Integer A whole number Keyword encoding A method of data compression that replaces frequently occurring patterns with shorter codes Lossless A type of data compression where no information is lost and the original data can be perfectly reconstructed Lossy A type of data compression that reduces file size by permanently eliminating some information, which may affect quality Numeric Any value that is a number Overflow A condition in which a calculation exceeds the maximum value that can be represented within a given number of bits Pulse-code modulation (pcm) A method used to digitally represent analog signals Radix point The decimal point in a number system that indicates the separation between integer and fractional parts Real A data type representing numbers that can have fractional parts, often called floating point numbers Reclocking WGU D684 WGU D684 The process of refreshing the timing signals in digital data to ensure accuracy and synchronization Run-length encoding A simple compression technique that replaces sequences of repeated characters with a single character and a count Scientific notation A method of representing very large or very small numbers by using powers of 10 Signed-magnitude representation A way of encoding positive and negative numbers where one bit represents the sign and the remaining bits represent the magnitude String A sequence of characters treated as a single data element and used for text manipulation Strong typing A feature in programming languages where each variable is explicitly declared to be of a specific type, reducing errors Ten's complement A mathematical method for representing negative numbers in a decimal system Unicode A universal character set that includes characters from virtually all writing sys

Show more Read less
Institution
WGU D684 INTRODUCTION TO COMPUTER SCIENCE
Course
WGU D684 INTRODUCTION TO COMPUTER SCIENCE









Whoops! We can’t load your doc right now. Try again or contact support.

Written for

Institution
WGU D684 INTRODUCTION TO COMPUTER SCIENCE
Course
WGU D684 INTRODUCTION TO COMPUTER SCIENCE

Document information

Uploaded on
January 9, 2026
Number of pages
14
Written in
2025/2026
Type
Exam (elaborations)
Contains
Questions & answers

Subjects

Content preview

WGU D684



WGU D684 INTRODUCTION TO
COMPUTER SCIENCE CHAPTER 1
QUESTIONS AND ANSWERS 2026

Which value is stored as an integer in computer programming?
- "0"
- true
- -306.5
- 21 - Correct Answer-21

Which coding construct repeats a task while a condition is true?
- Iteration
- Input/output
- Selection
- Assignment - Correct Answer-Iteration :
The iteration construct, or the looping construct, uses a while statement to perform the
same task over and over again as long as a condition is true.

How are items accessed in a stack?
- The item removed is the one that has been in the longest time.
- All items can be added to or removed from any location.
- The last item to be added becomes the first item removed.
- All items can be accessed or changed but not easily inserted or removed. - Correct
Answer-The last item to be added becomes the first item removed.

A web browser puts websites into a viewing history log and accesses the most recent
one when the back button is clicked. Which data structure would be appropriate for this
situation?
- Record
- List
- Queue
- Stack - Correct Answer-Stack

What is the relationship between a parameter and an argument?
- A parameter is passed to a function by reference, whereas an argument is passed by
value.
- A parameter is a temporary variable in a function that receives the actual value of an
argument.
- An argument is an identifier in a function that receives the value called the parameter.



WGU D684

, WGU D684


- An argument is a value set in the code by a calculation, whereas a parameter is set by
user input. - Correct Answer-A parameter is a temporary variable in a function that
receives the actual value of an argument.

Which programming language is considered to be a declarative language?
- Smalltalk
- BASIC
- Lisp
- Java - Correct Answer-Lisp:
The declarative programming paradigm is a model in which the results are described,
but the steps to accomplish the results are not stated. There are two basic models
within this paradigm, functional and logic. Lisp is an example of a declarative language

Analog data
Data represented in a continuous and variable form
American standard code for information interchange (ASCII)
A standard encoding system for text characters that uses numeric values to represent
letters, numbers, and symbols
Bandwidth
The maximum rate of data transfer across a network or communication channel, usually
measured in bits per second
Binary
A numerical system that uses only two digits, zero and one, to represent data in
computing
Boolean expression
A logical statement that can only be true or false and uses operators like and, or, and
not
Character
A single letter, digit, or symbol used in writing text
Character set
A collection of characters that a computer can recognize and process, like ascii or
unicode compression ratio: the ratio of the original data size to the compressed data
size, indicating how much the data has been reduced
Control structure
Constructs in programming that control the flow of execution, such as loops and
conditional statements
Data
Raw facts and figures that can be processed to produce meaningful information
Data compression
The process of reducing the size of data to save space or transmission time
Data types

WGU D684
$18.99
Get access to the full document:

100% satisfaction guarantee
Immediately available after payment
Both online and in PDF
No strings attached

Get to know the seller
Seller avatar
AlexScorer
4.0
(1)

Get to know the seller

Seller avatar
AlexScorer Chamberlain College Of Nursing
View profile
Follow You need to be logged in order to follow users or courses
Sold
5
Member since
1 year
Number of followers
0
Documents
1554
Last sold
3 months ago
Best Scorers Review Guide

Hesitate not to get 100% Recent updated and Verified Documents .Total Guarantee to success

4.0

1 reviews

5
0
4
1
3
0
2
0
1
0

Recently viewed by you

Why students choose Stuvia

Created by fellow students, verified by reviews

Quality you can trust: written by students who passed their tests and reviewed by others who've used these notes.

Didn't get what you expected? Choose another document

No worries! You can instantly pick a different document that better fits what you're looking for.

Pay as you like, start learning right away

No subscription, no commitments. Pay the way you're used to via credit card and download your PDF document instantly.

Student with book image

“Bought, downloaded, and aced it. It really can be that simple.”

Alisha Student

Frequently asked questions