Practical usages of these variables: integer: FISH% = 10 realtype: X = 0.167 string: NAME$ = "daniel mcgee" array: DIM ARR[10] ARR[0] = 99 PRINT ARR[0] string array: DIM ARR$[10] ARR$[0] = "hello world" PRINT ARR$[0]