Question
1. Write a program that serves as a learning tool for elementary multiplication from 1 x 1 to 12 x 12. A flashcard is any
1. Write a program that serves as a learning tool for elementary multiplication from 1 x 1 to 12 x 12. A flashcard is any of a set of cards bearing information, as words or numbers, on either or both sides, used in classroom drills or in private study. Flashcards are widely used as a learning drill to aid memorization by way of spaced repetition. Your MATLAB script should be a console application and roughly mimics the functionality of a conventional paper flashcard. Please use a for loop in the creation of this program.
Your MATLAB script should:
1) At the start show a welcome message with the developers name -- for example Welcome to John Does Digital Flashcards for Elementary Multiplications!
2) Prompt the user to input the learners name,
3) Prompt the user to input how many flashcards the user wants to work on,
4)Show questions one by one on the screen and prompt the user to type the answer,
5) When the user types a wrong answer, let the user know and show the correct answer; for a correct answer simply move on to the next problem,
6)When all the questions are answered, display a feedback comment that includes:
-A greeting phrase that calls the learners name and the number of problems, for example: Mary, congratulations -- you have finished all 25 problems in 68.5 seconds!
-Show the number and the percentage of the correct answers, for example: You answered 20 problems correctly (80%).
-A closing phrase that says something like: Thank you for using John Does Digital Flashcards for Elementary Multiplications.
* Problems should be selected and presented randomly, but no same question should be asked if the total number of problems is equal to or less than 144. Try Tic/toc to track how long it took. Pseudocode or a flowchart will probably be a good idea.
Submit your code and a .pdf of a trail run of your program with 15 as the number of flashcards worked on.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started