加载中...
加载中...
Assessment for Unit 2: Big Idea 2: Data
Select the one best answer for each question.
1. All digital data, including text, images, and sounds, are ultimately represented in a computer as sequences of which of the following?
2. What is the decimal (base 10) equivalent of the binary (base 2) number 1101?
3. A computer uses 4 bits to represent positive integers. If a program attempts to store the decimal value 17, which of the following is the most likely result?
4. The process of using a specific sequence of bits to represent a character like 'A', or a group of bits to represent the color red in a pixel, is an example of which of the following computational concepts?
5. A web developer is choosing a compression format for a website's main background image, which features a photograph with many subtle color gradients. The primary goal is to make the website load as quickly as possible, even if it means a slight, imperceptible loss of image detail. Which type of compression would be most appropriate?
6. A legal firm needs to archive digital copies of signed contracts. The absolute highest priority is ensuring that the archived files are perfect, bit-for-bit copies of the originals, so that they can be legally verified if needed. Which of the following is the most appropriate strategy for storing these documents?
7. A photographer takes a digital picture. Along with the image itself, the camera file stores the date the photo was taken, the GPS coordinates of the location, and the camera settings used. This additional information is best described as which of the following?
8. A data scientist analyzes a large dataset from a city and discovers that ice cream sales are highest on days when the number of drownings is also highest. Concluding that buying ice cream causes people to drown is an error in reasoning because the data shows a correlation, not necessarily a causal relationship. What is a more likely explanation for this correlation?
9. The teacher wants to calculate the average number of hours studied. Which of the following describes a data cleaning task that must be performed before this calculation can be completed?
10. Based on the data in the table, which of the following patterns can be observed?
11. Which of the following describes how a program could be used to gain the insight that students who studied more tended to get higher scores?
12. What value is displayed as a result of running the algorithm on the tempReadings list?
13. Which of the following best describes the overall purpose of this algorithm?
14. How could the algorithm be modified to count the number of days the temperature was 70 degrees or colder?
15. A sound engineer is converting a recording of a live concert from an analog format to a digital format. The process involves measuring the amplitude of the sound wave at very frequent, regular intervals and recording each measurement as a number. This process is known as:
16. Many programming languages use a fixed number of bits, such as 32 or 64, to represent integers. Which of the following is a direct consequence of this fixed-size representation?
17. A research team is combining two large datasets of customer information from two different companies. One dataset lists the state as a two-letter abbreviation (e.g., "CA", "NY"), while the other writes out the full state name (e.g., "California", "New York"). This issue is an example of which data processing challenge?
18. A program is designed to process a list of product prices called priceList. The goal is to create a new list, finalPrices, that contains the original price plus a 10% tax for every item. Which of the following code segments correctly performs this transformation?
19. In one context, the 8-bit binary sequence 01000001 represents the decimal number 65. In another context, the same sequence represents the character 'A'. Which of the following statements best explains this?
20. A programmer is analyzing a list of user ratings for a mobile app, where each rating is a number from 1 to 5. The programmer wants to gain insight into user satisfaction. Which of the following is NOT an example of a process that a program could use to transform this data into useful information or knowledge?