Data Science Missed Questions

Data Science Missed Questions

11th Grade

14 Qs

quiz-placeholder

Similar activities

Code.org Unit 5 Test

Code.org Unit 5 Test

11th Grade

15 Qs

Comp Sci unit 3 #6

Comp Sci unit 3 #6

11th Grade

10 Qs

String Manipulation (Python)

String Manipulation (Python)

9th - 12th Grade

17 Qs

Python-Basic

Python-Basic

3rd Grade - University

15 Qs

Python L1 Quiz 4: Lists

Python L1 Quiz 4: Lists

1st - 12th Grade

10 Qs

For Loop in Python

For Loop in Python

11th Grade

10 Qs

Review Python Dictionaries

Review Python Dictionaries

9th - 12th Grade

18 Qs

10 CS // Pseudocode

10 CS // Pseudocode

9th - 11th Grade

10 Qs

Data Science Missed Questions

Data Science Missed Questions

Assessment

Quiz

Computers

11th Grade

Hard

Created by

Shelby Hamilton

FREE Resource

14 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

A team of researchers wants to create a program to analyze the amount of pollution reported in roughly 3,000 counties across the United States. The program is intended to combine county data sets and then process the data. Which of the following is most likely to be a challenge in creating the program?

The number of counties is too large for the program to process.

The total number of rows of data is too large for the program to process.

A computer program cannot combine data from different files.

Different counties may organize data in different ways.

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

A code segment is intended to transform the list utensils so that the last element of the list is moved to the beginning of the list.

For example, if utensils initially contains ["fork", "spoon", "tongs", "spatula", "whisk"], it should contain ["whisk", "fork", "spoon", "tongs", "spatula"] after executing the code segment.

Which of the following code segments transforms the list as intended?

len ←

LENGTH(utensils)

temp ←

utensils[len]

REMOVE(utensils, len)

APPEND(utensils, temp)

len ←

LENGTH(utensils)

temp ←

utensils[len]

REMOVE(utensils, len)

INSERT(utensils, 1, temp)

len ←

LENGTH(utensils)

REMOVE(utensils, len)

temp ←

utensils[len]

APPEND(utensils, temp)

len ←

LENGTH(utensils)

REMOVE(utensils, len)

temp ←

utensils[len]

INSERT(utensils, 1, temp)

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

A search engine has a trend-tracking feature that provides information on how popular a search term is. The data can be filtered by geographic region, date, and category. Categories include arts and entertainment, computers and electronics, games, news, people and society, shopping, sports, and travel. Which of the following questions is LEAST likely to be answerable using the trends feature?

What is the cost of a certain electronics product?

In which political candidates are people interested?

Which region of the country has the greatest number of people searching for opera performances?

In what month does a particular sport receive the most searches?

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

A social media site allows users to send messages to each other. A group of researchers gathered user data for the first 10 years of the site’s existence. Some of the data are summarized in the table below, along with some of the company milestones.

The researchers noticed that the total number of registered users appears to be increasing at about a constant rate. If this pattern continues, which of the following best approximates the total number of registered users, in millions, in year 12 (two years after the last entry in the table) ?

32.4

30.6

31.8

31.2

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

The table below shows the time a computer system takes to complete a specified task on the customer data of different-sized companies.

Based on the information in the table, which of the following tasks is likely to take the longest amount of time when scaled up for a very large company of approximately 100,000 customers?

Sorting data

Searching through data

Deleting entries from data

Backing up data

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Suppose a large group of people in a room were all born in the same year. Consider the following three algorithms, which are each intended to identify the people in the room who have the earliest birthday based on just the month and day. For example, a person born on February 10 is considered to have an earlier birthday than a person born on March 5. Which of the three algorithms will identify the correct people?

1) All the people in the room stand up. All standing people form pairs where possible, leaving at most one person not part of a pair. For each pair, the person with the earlier birthday remains standing, while the other person in the pair sits down. If there is a tie, both people sit down. Any individual not part of a pair remains standing. Continue doing this until only one person remains standing. That person has the earliest birthday.

2) All the people in the room stand up. All standing people form pairs with another standing person that they have not previously been paired with where possible, leaving at most one person not part of a pair. For each pair, the person with the earlier birthday remains standing, while the other person in the pair sits down. If there is a tie, both people in the pair remain standing. Any individual not part of a pair remains standing. Continue doing this until only one person remains standing or all persons standing have the same birthday. Anyone still standing has the earliest birthday.

3) Beginning with the number 1, ask if anyone was born on that day of any month. Continue with the numbers 2, 3, and so on until a positive response is received. If only one person responds, that person has the earliest birthday. If more than one person responds, determine which person was born in the earliest month, and that person or those persons have the earliest birthday.

1 only

2 only

1 and 2

2 and 3

7.

MULTIPLE SELECT QUESTION

45 sec • 1 pt

Which of the following algorithms display all integers between 1 and 20, inclusive, that are not divisible by 3 ?

Select two answers.

Step 1:

Set x to 0.

 Step 2:

Increment x by 1.

 Step 3:

If x is not divisible by 3, then display x.

 Step 4:

Repeat steps 2 and 3 until x is 20.

Step 1:

Set x to 1.

  Step 2: If x is divisible by 3, then do nothing; otherwise display x.Step 3:

Increment x by 1.

  Step 4: Repeat steps 2 and 3 until x is greater than 20.

Step 1:

Set x to 1.

    Step 2: If x is divisible by 3, then do nothing; otherwise display x.Step 3:

Increment x by 1.

  Step 4: Repeat steps 2 and 3 until x is 20.

Step 1:

Set x to 0.

Step 2: If x is divisible by 3, then display x.Step 3:

Increment x by 1.

 Step 4: Repeat steps 2 and 3 until x is greater than 20.

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?