Ti-83 Programming Tutorials

Home About Projects Links Tutorials

Chapter 5

Beginner Quiz

1) Which of the following usage of Input is correct?
a) Input "X"
b) Input "X:",X
c) Input X,"X"
d) Input "X:",Ans

2) Which of the following code examples are incorrectly used??
a)
If X=1
Goto Y
Else
Goto Z
b) Disp "THIS IS AN EXAMPLE OF A SENTENCE."
c) Output(8,16,"Hello World!")
d) Pause "PAUSED!"

3) True or False: You have to end all programs with the Stop statement.
a) True
b) False

4) Which of the following code blocks are incorrectly implemented?
a)
Disp "PRESS ANY KEY"
Repeat Ans
getKey
End
b)
Disp "PRESS ANY KEY"
getKey
While Ans=0
getKey
End
c)
Disp "PRESS CLEAR"
Repeat K=45
getKey->K
End
d)
Disp "PRESS CLEAR"
getKey
While Ans=45
getKey->K
End

5) True or False: The home screen is smaller in size because it uses a smaller font size.
a) True
b) False

6) True or False: You must use a For loop for all loops involving incrementing?
a) True
b) False

7) True or False: The Ans variable is useful because you can store any type of variable you want in it.
a) True
b) False

8) True or False: You must pair all If statements with an End statement.
a) True
b) False

9) True or False: Pseudocode can be as specific or general as you want it to be.
a) True
b) False

10) Which variable should you store a high score list in?
a) Single variable
b) List
c) String
d) Matrix

Quiz script provided by
JavaScriptKit.com



This site best viewed in Microsoft Internet Explorer (6.0+).
Copyright 2003 by Lue Her and Andy Becker.
1