Multiple Choice
Which of the following statements is false?
A) The following code imports the tensorflow.keras.datasets.mnist module containing the function that loads the MNIST dataset:
from tensorflow.keras.datasets import mnist
B) In the version of Keras built into TensorFlow, the Keras module names begin with "tensorflow.".
C) TensorFlow uses Keras to execute the deep-learning models.
D) The mnist module’s load_data function loads the MNIST training and test-ing sets:
(X_train, y_train) , (X_test, y_test) = mnist.load_data()
When you call load_data it will download the MNIST data to your system. The function returns a tuple of two elements containing the training and testing sets. Each element is itself a tuple containing the samples and labels, respectively.
Correct Answer:

Verified
Correct Answer:
Verified
Q1: Which of the following statements about Keras
Q2: Which of the following statements a), b)
Q3: Which of the following statements a), b)
Q5: Which of the following statements a), b)
Q6: Which of the following statements is false?<br>A)
Q7: Which of the following statements a), b)
Q8: Which of the following statements about a
Q9: Which of the following statements a), b)
Q10: The MNIST xe "convnet (convolutional neural network)"convnet's
Q11: Which of the following statements is false?<br>A)