All I see your code doing is moving a sprite around the screen. I see nothing there about a quiz game of any type.
Use code tags in the future, makes it easier to read.
rem 4th grade standard project
rem created 12/5/13
rem title : Math Maze
set text size 25
cls rgb(192,192,192)
Print ""
center text 200,300, "USE YOUR MATH SKILLS TO BEAT THE GAME"
center text 200,320, "YOU ARE MAKYA THE NATIVE AMERICAN"
center text 200,340,"PRESS ANY KEY TO CONTINUE"
wait key
cls rgb(192,192,192)
sync on : sync rate 60
autocam off
hide mouse
randomize timer()
rem title page pic
rem instructions title text
cls 0
rem pictures
Sync on : hide mouse : sync rate 60
load image "logo.bmp", 2
load image "numbers.bmp", 1
load image "fire1.bmp", 3
x = 0 : y = 0
sprite 2, x, y, 2
sprite 1, x, y, 1
sprite 3, x, y, 3
rem starting of game
do
sprite 2, x, y, 2
if upkey()
y = y - 4
endif
if downkey()
y = y + 4
endif
if leftkey()
x = x - 4
endif
if rightkey()
x = x + 4
endif
sync
loop