Math app for kids

Hello there!
Since I have no idea about programming, I am trying to make a no-code app for my 8 year old.

I need him to learn multiplication to 100. I prepared CSV file where I have three columns - a, b, c (two factors ofmultiplication and c- result)
The idea is to show kid task a * b = ? and he should choose correct answer from three buttons (one good answer, and two random result). When he choose good answer he will see, as reward image.
If it’s to complecated he can write answer with keyboard.
Do you have any idea how to try to do this?

Sure this is possible in Adalo

Can we work on it together

Let me know

Here’s how to build this multiplication quiz app in Adalo step by step:


Step 1: Set Up Your Database

  1. Create a Collection named “Multiplication Questions”

Fields:

Factor A (Number)

Factor B (Number)

Correct Answer (Number)

Option 1 (Number) → Random incorrect answer

Option 2 (Number) → Random incorrect answer

Reward Image (Image)

  1. Import Your CSV file into this collection.

Step 2: Create Screens in Adalo

  1. Home Screen (Start Button → Leads to Quiz Screen)

  2. Quiz Screen (Displays question and answer options)

  3. Success Screen (Shows reward image when correct)


Step 3: Display a Random Question

  1. On the Quiz Screen, add Text Component → Set it to:

Current Question → Factor A " × " Current Question → Factor B

  1. Add Three Buttons for answer choices:

Button 1: Set Label to Current Question → Correct Answer

Button 2 & 3: Set Labels to Current Question → Option 1 & Option 2

  1. Add an Input Field (Optional) → If the child wants to type the answer.

Step 4: Set Up Correct Answer Logic

  1. For the Button Click Actions:

If Clicked Button’s Value = Correct Answer → Navigate to Success Screen

If Wrong Answer → Show Alert “Try Again!”

  1. For Keyboard Input Option:

Add an Action Button → When clicked, check if the Input Field Value = Correct Answer

If correct → Navigate to Success Screen

If wrong → Show Alert


Step 5: Success Screen (Reward System)

  1. Show Current Question → Reward Image

  2. Add “Next Question” Button → Loads a new random question.


Bonus: Track Progress

Create a User Collection to store scores.

Add a Points System → Increase score for correct answers.

Show progress with a Progress Bar.


This will create a fun and interactive multiplication game for your child using Adalo with no coding! :tada:

Would you like help with randomizing questions or tracking progress? :rocket:

Thanks you Wiseman for your answer! Can you be more specyfic in step 3?

Step 3: Display a Random Question (Detailed Guide)

In this step, we will set up the Quiz Screen so that each time the child plays, a random multiplication question appears with three possible answers.


  1. Add a Text Component to Show the Multiplication Question

Go to the Quiz Screen in Adalo.

Add a Text Component to display the question.

Set the Text to:

Magic Text → Current Question → Factor A
" × "
Magic Text → Current Question → Factor B

Example Output:
If Factor A = 7 and Factor B = 8, the text will show:
7 × 8 = ?


  1. Add Three Buttons for Answer Choices

Now, add three buttons for the child to choose the correct answer.

Button 1 (Correct Answer)

Set Label to: Magic Text → Current Question → Correct Answer

Action: If clicked → Navigate to “Success Screen” (where the reward image appears).

Button 2 (Wrong Answer 1)

Set Label to: Magic Text → Current Question → Option 1

Action: If clicked → Show an Alert: “Try Again!”

Button 3 (Wrong Answer 2)

Set Label to: Magic Text → Current Question → Option 2

Action: If clicked → Show an Alert: “Try Again!”


  1. Add an Input Field (For Typing the Answer) [Optional]

If the child prefers typing the answer instead of selecting a button:

  1. Add an Input Field (Numeric Type).

  2. Add a Submit Button.

  3. Set the Button Action:

If Input Field Value = Magic Text → Current Question → Correct Answer, go to Success Screen.

If incorrect, show “Try Again!” alert.


  1. Ensure a New Question Appears After Each Attempt

When the user selects an answer, make sure the app picks a new random question from the database.

You can do this by using a List Component to display a random record from the “Multiplication Questions” collection.


Next Steps?

Would you like help with randomizing the questions or adding a score system? :rocket:

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.