Communicating Insights from Microsoft Azure to the Business Flashcards

1
Q

What is the likely cause when a supervised model makes predictions perfectly against all the training data but fails against new data?

Underfitting

Overfitting

Overtraining

Undertesting

A

Overfitting

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is used to guide the improvement of the model during model training?

Feature engineering

Plotting the error

Regression

Minimizing the error

A

Minimizing the error

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is the accuracy and precision of the model?

A. Accuracy is a measure of the consistency of the predictions. Precision is the value of accurate predictions over the total number of predictions.

B. Accuracy is the value of accurate predictions over the total number of predictions. Precision is a measure of the consistency of the predictions.

C. Accuracy is the value of accurate predictions over the total number of predictions. Precision is total accurate predictions over total false predictions.

D. Accuracy is total accurate predictions over total false predictions. Precision is a measure of the consistency of the predictions.

A

B. Accuracy is the value of accurate predictions over the total number of predictions. Precision is a measure of the consistency of the predictions.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What third-party tool creates visualizations and dashboards?

Databricks

Matplotlib

Power BI

Matlibplot

A

Matplotlib

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What kind of a connector is needed to establish a connection between Power BI and Azure Databricks?

Rest API

Http

ODBC

JDBC

A

JDBC

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What function is used to display results in notebooks?

display()

visualize()

Create()

show()

A

display()

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Which notebook format is used in Databricks?

.dbfs

.spark

.notebook

.dbc

A

.dbc

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What is not a specialized role in the Data Science process?

Database Administrator

Developer

Data Engineer

Data Scientist

A

Database Administrator

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Which (Spark) DataFrame method do you use to create a temporary view?

createorReplaceView()

createOrReplaceTempView()

createTempViewDF()

createTempView()

A

createOrReplaceTempView()

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What is the DataFrame equivalent of the SQL statement SELECT count(*) AS total?

.select(agg(“*”).alias(“total”))

.select(count(“*”) alias(“total”))

.select(count(“*”).alias(“total”))

.agg(count(“*”).alias(“total”))

A

.agg(count(“*”).alias(“total”))

How well did you know this?
1
Not at all
2
3
4
5
Perfectly