Data Science and Machine Learning Questions

Data Science and Machine Learning Questions

11th Grade

60 Qs

quiz-placeholder

Similar activities

Cloud and Data Integration Systems

Cloud and Data Integration Systems

11th Grade - University

62 Qs

Cloud Project and Data Management Questions

Cloud Project and Data Management Questions

11th Grade - University

62 Qs

Quiz on CAT Tools and Translation

Quiz on CAT Tools and Translation

University

62 Qs

2.1 De2 neg tu listening

2.1 De2 neg tu listening

9th - 12th Grade

60 Qs

Technology for Teaching & Learning 2

Technology for Teaching & Learning 2

University

60 Qs

S3U4 Irregular Stem Preterite

S3U4 Irregular Stem Preterite

12th Grade

64 Qs

Zorro - Chapter 3 Vocab

Zorro - Chapter 3 Vocab

11th Grade - University

62 Qs

French 1: Mid-Term Exam

French 1: Mid-Term Exam

9th - 12th Grade

60 Qs

Data Science and Machine Learning Questions

Data Science and Machine Learning Questions

Assessment

Quiz

World Languages

11th Grade

Hard

Created by

Nadia Charcap

FREE Resource

60 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Your company built a TensorFlow neural-network model with a large number of neurons and layers. The model fits well for the training data. However, when tested against new data, it performs poorly. What method can you employ to address this?

Threading

Serialization

Dropout Methods

Dimensionality Reduction

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

You are building a model to make clothing recommendations. You know a user’s fashion preference is likely to change over time, so you build a data pipeline to stream new data back to the model as it becomes available. How should you use this data to train the model?

Continuously retrain the model on just the new data.

Continuously retrain the model on a combination of existing data and the new data.

Train on the existing data while using the new data as your test set.

Train on the new data while using the existing data as your test set.

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

You create an important report for your large team in Google Data Studio 360. The report uses Google BigQuery as its data source. You notice that visualizations are not showing data that is less than 1 hour old. What should you do?

Disable caching by editing the report settings.

Disable caching in BigQuery by editing table details.

Refresh your browser tab showing the visualizations.

Clear your browser history for the past hour then reload the tab showing the virtualizations.

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

An external customer provides you with a daily dump of data from their database. The data flows into Google Cloud Storage GCS as comma-separated values (CSV) files. You want to analyze this data in Google BigQuery, but the data could have rows that are formatted incorrectly or corrupted. How should you build this pipeline?

Use federated data sources, and check data in the SQL query.

Enable BigQuery monitoring in Google Stackdriver and create an alert.

Import the data into BigQuery using the gcloud CLI and set max_bad_records to 0.

Run a Google Cloud Dataflow batch pipeline to import the data into BigQuery, and push errors to another dead-letter table for analysis.

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Your weather app queries a database every 15 minutes to get the current temperature. The frontend is powered by Google App Engine and server millions of users. How should you design the frontend to respond to a database failure?

Issue a command to restart the database servers.

Retry the query with exponential backoff, up to a cap of 15 minutes.

Retry the query every second until it comes back online to minimize staleness of data.

Reduce the query frequency to once every hour until the database comes back online.

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

You are creating a model to predict housing prices. Due to budget constraints, you must run it on a single resource-constrained virtual machine. Which learning algorithm should you use?

Linear regression

Logistic classification

Recurrent neural network

Feedforward neural network

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

You are building new real-time data warehouse for your company and will use Google BigQuery streaming inserts. There is no guarantee that data will only be sent in once but you do have a unique ID for each row of data and an event timestamp. You want to ensure that duplicates are not included while interactively querying data. Which query type should you use?

Include ORDER BY DESC on timestamp column and LIMIT to 1.

Use GROUP BY on the unique ID column and timestamp column and SUM on the values.

Use the LAG window function with PARTITION by unique ID along with WHERE LAG IS NOT NULL.

Use the ROW_NUMBER window function with PARTITION by unique ID along with WHERE row equals 1.

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?