Challenge: Write Code Using Select that Times Out
Explore how to implement a timed quiz in Go by using the select statement to create timeouts. Learn to read questions from a CSV file, handle user input, and manage data using structs or arrays while ensuring the quiz stops promptly after the set time limit.
We'll cover the following...
We'll cover the following...
Problem statement
Write a quiz that will time out after a time limit determined by you. The quiz will read the questions and answers from the CSV file. After the timer ends, the quiz should display the number of correct answers out of the total number ...