1. TensorBoard is simply a nice displaying program. (Yes | No)
The answer is yes and no. Yes, TensorBoard is a friendly interface for visualizing a dataflow graph. No, TensorBoard is not only nice but is also critical to designing the architecture of a project even before the data feed aspect of the program is written. In real-life projects, a good architecture shows that you can manage the power of ML/DL programs.
2. Defining functions at the beginning of the source code is just like standard programs. (Yes | No)
No. Seeing variables and arrays at the beginning of a TensorFlow program could lead one to think that it is just a formality. However, these lines are in fact the real program, the dataflow graph, the architecture.
3. TensorFlow is a library add-on to Python that provides some cool functions...