H13-311_V3.5 · Question #36
TensorFlow The data type used is?
The correct answer is C. Tensor. TensorFlow takes its name directly from its core data structure: the tensor, making C the correct answer. A tensor is a generalized n-dimensional array that can represent scalars (0D), vectors (1D), matrices (2D), and higher-dimensional data within a single unified type…
Question
TensorFlow The data type used is?
Options
- AScalar
- BVector
- CTensor
- DMatrix
How the community answered
(41 responses)- A2% (1)
- B5% (2)
- C80% (33)
- D12% (5)
Explanation
TensorFlow takes its name directly from its core data structure: the tensor, making C the correct answer. A tensor is a generalized n-dimensional array that can represent scalars (0D), vectors (1D), matrices (2D), and higher-dimensional data within a single unified type. Scalars (A) and vectors (B) are not wrong concepts, but they are specific cases of tensors, not the overarching data type TensorFlow operates on. Matrices (D) are likewise just 2D tensors, a subset rather than the general type.
Memory tip: The name "TensorFlow" literally tells you the answer - data flows through the computational graph as tensors.
Topics
Community Discussion
No community discussion yet for this question.