Hello do you know Katakana you can see how much you know by taking this quiz i made on DBP check it out..
load image "C:/K-A.JPG",1
load image "C:/K-I.JPG",2
load image "C:/K-U.JPG",3
load image "C:/K-E.JPG",4
load image "C:/K-O.JPG",5
load image "C:/K-KA.JPG",6
load image "C:/K-KI.JPG",7
load image "C:/K-KU.JPG",8
load image "C:/K-KE.JPG",9
load image "C:/K-KO.JPG",10
load image "C:/K-SA.JPG",11
load image "C:/K-SI.JPG",12
load image "C:/K-SU.JPG",13
load image "C:/K-SE.JPG",14
load image "C:/K-SO.JPG",15
load image "C:/K-TA.JPG",16
load image "C:/K-TI.JPG",17
load image "C:/K-TU.JPG",18
load image "C:/K-TE.JPG",19
load image "C:/K-TO.JPG",20
load image "C:/K-HA.JPG",21
load image "C:/K-HI.JPG",22
load image "C:/K-HU.JPG",23
load image "C:/K-HE.JPG",24
load image "C:/K-HO.JPG",25
load image "C:/K-NA.JPG",26
load image "C:/K-NI.JPG",27
load image "C:/K-NU.JPG",28
load image "C:/K-NE.JPG",29
load image "C:/K-NO.JPG",30
load image "C:/K-RA.JPG",31
load image "C:/K-RI.JPG",32
load image "C:/K-RU.JPG",33
load image "C:/K-RE.JPG",34
load image "C:/K-RO.JPG",35
load image "C:/K-YA.JPG",36
load image "C:/K-YU.JPG",37
load image "C:/K-YO.JPG",38
load image "C:/K-N.JPG",39
load image "C:/K-WA.JPG",40
load image "C:/K-WO.JPG",41
load image "C:/K-GA.JPG",42
load image "C:/K-GI.JPG",43
load image "C:/K-GU.JPG",44
load image "C:/K-GE.JPG",45
load image "C:/K-GO.JPG",46
load image "C:/K-DA.JPG",47
load image "C:/K-DI.JPG",48
load image "C:/K-DU.JPG",49
load image "C:/K-DE.JPG",50
load image "C:/K-DO.JPG",51
load image "C:/K-BA.JPG",52
load image "C:/K-BI.JPG",53
load image "C:/K-BU.JPG",54
load image "C:/K-BE.JPG",55
load image "C:/K-BO.JPG",56
load image "C:/K-ZA.JPG",57
load image "C:/K-ZI.JPG",58
load image "C:/K-ZU.JPG",59
load image "C:/K-ZE.JPG",60
load image "C:/K-ZO.JPG",61
load image "C:/K-PA.JPG",62
load image "C:/K-PI.JPG",63
load image "C:/K-PU.JPG",64
load image "C:/K-PE.JPG",65
load image "C:/K-PO.JPG",66
load image "C:/katakanachart.jpg",67
paste image 67,X,Y
print " press space"
print " to start the quiz"
wait key : cls
if spacekey()=1 then delete image 67
rem set a new random seed
randomize timer()
rem array to store answers
dim answers$(66) as string
answers$(1) = "a"
answers$(2) = "i"
answers$(3) = "u"
answers$(4) = "e"
answers$(5) = "o"
answers$(6) = "ka"
answers$(7) = "ki"
answers$(8) = "ku"
answers$(9) = "ke"
answers$(10) = "ko"
answers$(11) = "sa"
answers$(12) = "shi"
answers$(13) = "su"
answers$(14) = "se"
answers$(15) = "so"
answers$(16) = "ta"
answers$(17) = "chi"
answers$(18) = "tsu"
answers$(19) = "te"
answers$(20) = "to"
answers$(21) = "ha"
answers$(22) = "hi"
answers$(23) = "hu"
answers$(24) = "he"
answers$(25) = "ho"
answers$(26) = "na"
answers$(27) = "ni"
answers$(28) = "nu"
answers$(29) = "ne"
answers$(30) = "no"
answers$(31) = "ra"
answers$(32) = "ri"
answers$(33) = "ru"
answers$(34) = "re"
answers$(35) = "ro"
answers$(36) = "ya"
answers$(37) = "yu"
answers$(38) = "yo"
answers$(39) = "n"
answers$(40) = "wa"
answers$(41) = "wo"
answers$(42) = "ga"
answers$(43) = "gi"
answers$(44) = "gu"
answers$(45) = "ge"
answers$(46) = "go"
answers$(47) = "da"
answers$(48) = "di"
answers$(49) = "du"
answers$(50) = "de"
answers$(51) = "do"
answers$(52) = "ba"
answers$(53) = "bi"
answers$(54) = "bu"
answers$(55) = "be"
answers$(56) = "bo"
answers$(57) = "za"
answers$(58) = "ji"
answers$(59) = "zu"
answers$(60) = "ze"
answers$(61) = "zo"
answers$(62) = "pa"
answers$(63) = "pi"
answers$(64) = "pu"
answers$(65) = "pe"
answers$(66) = "po"
do
rem random number between 1 and 41
question = rnd(65)+1
paste image question,X,Y
input " ", guess$
if guess$ = answers$(question)
print "correct"
sleep 1000
else
print "wrong"
sleep 1000
end
endif
loop
Vid