The ASP Emporium
Free Active Server Applications and Examples by Bill Gearhart
Online since Friday January 7, 2000

 home > code > classic asp apps > Quiz Object - Simple Quiz System

enter a phrase to search:(advanced search)


 h o m e 

 w h a t 's  n e w 

 a l l   c o d e 
  .net:
    • Fundamentals
    • C# Classes
  classic asp:
    • Code Library
    • ASP Apps
  general:
    • Tutorials
    • SQL

 d o w n l o a d s 

 u s e r   f o r u m s 

 l i n k s 

 s e a r c h 

 s u p p o r t 


Quiz Object - Simple Quiz System

The quiz class allows you to create a simple quiz and offer it to your users. Quizzes are stored in text files and are parsed and graded by the class. Results can be optionally persisted to a database.


1.) Which of the following is NOT a way to loop through choices in ASP?
For Each ... Next Do ... Loop All of the above None of the above

2.) What is the purpose of a class in ASP?
To further encapsulate code To create reusable code blocks easily used in multiple pages with no modifications All of the above None of the above

3.) Which one of the following is a built in object of ASP?
Session object Response object All of the above None of the above

4.) How do you enable error handling in vbscript?
On Error GoTo 0 If err <> 0 then ... On Error Resume Next vbscript has no built in error handling object