Cognitive Class: Game-playing AI with Swift for TensorFlow (S4TF) Final Exam Answers

Are you looking for Game-playing AI with Swift for TensorFlow (S4TF) Final Exam Answers by Cognitive Class? If yes, this article will help you find all the questions and answers that have been asked in the Cognitive Class Game-playing AI with Swift for TensorFlow (S4TF) Final Exam quiz.

In this course, you learn how to install Istio alongside microservices for a simple mock app called Guestbook. When you deploy Guestbook’s microservices into an IBM Cloud Kubernetes Service cluster where Istio is installed, you inject the Istio Envoy sidecar proxies in the pods of each microservice.

Note: Some configurations and features of the Istio platform are still under development and are subject to change based on user feedback. Allow a few months for stabilization before you use Istio in production.

Min % To Pass80%
Final exam % To Pass50%
Review questions % To Pass50%
Final Exam Time Limit1hr
Max Attempt For Each Question2
Game-playing AI with Swift for TensorFlow (S4TF)Click Here
Cognitive Class: Game-playing AI with Swift for TensorFlow (S4TF) Final Exam Answers

Module 1 – Set up your environment Answers

1. What kind of IBM Cloud account doesn’t require payment information and doesn’t expire?

  1. Trial
  2. Lite
  3. Pay-as-you-go

2. Which of the following platforms does Swift NOT run natively on?

  1. Linux
  2. Darwin
  3. Windows
  4. None of the above

Module 2 – Understanding Swift’s basics Answers

1. Which of the following companies did Chris Lattner work at after Apple?

  1. IBM
  2. Microsoft
  3. Google
  4. Amazon
  5. Tesla

2. For how many years was Swift in development before it was released to the public?

  1. 4

3. What kind of programming language is Swift?

  1. Interpreted
  2. Compiled to machine code
  3. Compiled to byte code
  4. Transpiled

4. Which HTTP server for Swift will this course use?

  1. Perfect
  2. Kitura
  3. Swifter
  4. Vapor

Module 3 – Tic Tac Toe (Minimax) Answers

1. Why does our implementation of Minimax keep track of the depth of the tree?

  1. Stop at a certain depth
  2. Memoize game states
  3. Take into account the “straightforwardness” of moves

2. How is the tic-tac-toe board stored?

  1. Row-major format
  2. Column-major format

3. If minimax started from a blank board and had to calculate the best possible move, how many board states would it evaluate? For the sake of mathematical simplicity, assume the board must be filled completely to be considered “over” – players cannot win.

  1. 9!
  2. 9^2
  3. 9^9
  4. 9*9

4. The “minimax” function returns the best move to take for a board state.

  1. True
  2. False

Module 4 – Cartpole (Reinforcement Learning) Answers

1. The cartpole game is what kind of problem?

  1. Inverted Pendulum

2. The @differentiable function decorator is an example of an implementation of what technology/technique?

  1. Data Structure

3. Why do we only train the network with the top 30% of episodes?

  1. To reduce training time with fewer samples
  2. To improve network performance with better samples

4. OpenAI Gym…

  1. Provides easy-to-use game enviroments to test RL agents
  2. Ships with RL algorithms to use as agents

Module 5 – 2048 (Monte Carlo Tree Search) Answers

 1. The implementation of the 2048 game logic is made fast by:

  1. Using bitboards
  2. Pre-calculating moves and scores for rows
  3. Multi-threading

2. Which framework did we use to enable Swift to host HTTP servers?

  1. Kitura

3. Monte Carlo Tree Search is…

  1. Stochastic
  2. Guaranteed to always give the correct answer

4. Which swift file defines dependencies and other package details?

  1. Package.swift

Final Exam – Game-playing AI with Swift for TensorFlow (S4TF)

Note: Final Exam is a Timed Exam (1 hour)

1. Which tier(s) of IBM Cloud require payment information on file?

  1. Lite
  2. Trial
  3. Pay-as-you-go

2. Why would you want to use a single language, Swift, over many languages, each specialized for a certain task?

  1. It’s easier to maintain a codebase written in a single language.
  2. Swift is an expressive, performant, and open source language backed by a large company (Apple).
  3. It’s slow to facilitate communication between components in different languages.
  4. It reduces the amount of “reinventing the wheel” required across a codebase.

3. Does Minimax plays perfectly all the time? If so, why?

  1. It’s trained on a lot of game data and learns how to play perfectly.
  2. It brute forces a solution based off of the rules of the game, and all possible future situations.
  3. It’s provided optimal heuristics.
  4. It doesn’t always play perfectly.

4. Classes are passed by reference, and structs are always, indiscriminately passed by value.

  1. True
  2. False

5. A computed property is…

  1. A variable within a struct/class/enum.
  2. A function within a struct/class/enum that’s accessed like a property.

6. Why is Minimax penalized for looking at moves deeper into the game tree?

  1. To improve performance by looking at a more shallow game tree.
  2. So Minimax takes into account how straightforward a move is.
  3. To make Minimax more accurate.

7. Why is Reinforcement Learning important?

  1. It’s more accurate than other training methods.
  2. It can learn by trial and error.
  3. It doesn’t require as much data to learn from.
  4. It can play games.

8. Swift for TensorFlow is interoperable with Python, because Python’s written in C

  1. True
  2. False

9. What are some reasons Swift for TensorFlow is special?

  1. Swift now has a wrapper around TensorFlow, enabling machine learning development.
  2. Swift for TensorFlow can automatically differentiate complex functions.
  3. Swift for TensorFlow can optimize complex tensor operations.

10. For what reasons did we implement monte carlo tree search in a time-bounded manner?

  1. To reduce the amount of time the algorithm takes to search.
  2. To search game states more if they’re closer to the end of a game.
  3. To make MCTS more accurate.
  4. To distribute the algorithm across threads.

Wrap Up

I hope this article would be helpful for you to find all the “Cognitive Class Answers – Game-playing AI with Swift for TensorFlow (S4TF) Final Exam Answers”. If this article helped you learn something new for free, then share it on social media, let others know about this, and check out the other free courses we have shared here.

Leave a Comment