PC Review


Reply
Thread Tools Rate Thread

how do i make Quizzes

 
 
=?Utf-8?B?QmlibGlvZ3JhZmljIEdlZWs=?=
Guest
Posts: n/a
 
      3rd Oct 2005
I've figured out how to do the questions, but I cant figure out the grader
yet!!I need help.
 
Reply With Quote
 
 
 
 
p c
Guest
Posts: n/a
 
      3rd Oct 2005
HOW do you make the questions?

That and wht tecnolgoies your web server supports will afect how you
grade the answers. Would you like to elaborate?

...PC

Bibliografic Geek wrote:
> I've figured out how to do the questions, but I cant figure out the grader
> yet!!I need help.

 
Reply With Quote
 
=?Utf-8?B?QmlibGlvZ3JhZmljIEdlZWs=?=
Guest
Posts: n/a
 
      3rd Oct 2005
here's a sample: Quesion here<P>

<INPUT TYPE=RADIO NAME="favcolor" VALUE="value name1">awnser1<BR>
<INPUT TYPE=RADIO NAME="favcolor" VALUE="value name2">awnser2<BR>
<INPUT TYPE=RADIO NAME="favcolor" VALUE="value name3">awnser3<P>

just fill in the "anwser1/2/3"s, and "value name1/2/3"s

"p c" wrote:

> HOW do you make the questions?
>
> That and wht tecnolgoies your web server supports will afect how you
> grade the answers. Would you like to elaborate?
>
> ...PC
>
> Bibliografic Geek wrote:
> > I've figured out how to do the questions, but I cant figure out the grader
> > yet!!I need help.

>

 
Reply With Quote
 
p c
Guest
Posts: n/a
 
      3rd Oct 2005
There are different ways of presenting and grading the quiz.

Do you wan to present all the questions with a single submit or do you
want to present one question at a time.

Do you want to present the questions and choices by grabbing them form a
database or hard coding them on the page?

Do you want to grade them on the client by storing the correct answers
on the page and use javascript to grade them or do you wan to store them
in a database and grab them from the database to score them onthe server.

For a simple quiz with javascript on the client search for "Javascrip
quiz" w/o quotes.

...PC

Bibliografic Geek wrote:

> here's a sample: Quesion here<P>
>
> <INPUT TYPE=RADIO NAME="favcolor" VALUE="value name1">awnser1<BR>
> <INPUT TYPE=RADIO NAME="favcolor" VALUE="value name2">awnser2<BR>
> <INPUT TYPE=RADIO NAME="favcolor" VALUE="value name3">awnser3<P>
>
> just fill in the "anwser1/2/3"s, and "value name1/2/3"s
>
> "p c" wrote:
>
>
>>HOW do you make the questions?
>>
>>That and wht tecnolgoies your web server supports will afect how you
>>grade the answers. Would you like to elaborate?
>>
>>...PC
>>
>>Bibliografic Geek wrote:
>>
>>>I've figured out how to do the questions, but I cant figure out the grader
>>>yet!!I need help.

>>

 
Reply With Quote
 
mb301@hotmail.com
Guest
Posts: n/a
 
      3rd Oct 2005
see http://www.wsabstract.com/

do a search for "quiz" you should find a couple of Js quiz type script,
wotk just fine in FP.

Regards

Mark

 
Reply With Quote
 
=?Utf-8?B?QmlibGlvZ3JhZmljIEdlZWs=?=
Guest
Posts: n/a
 
      4th Oct 2005
I want to present all questions with a single submit.I have an asp file but I
cant figure out how to do it that way.

"p c" wrote:

> There are different ways of presenting and grading the quiz.
>
> Do you wan to present all the questions with a single submit or do you
> want to present one question at a time.
>
> Do you want to present the questions and choices by grabbing them form a
> database or hard coding them on the page?
>
> Do you want to grade them on the client by storing the correct answers
> on the page and use javascript to grade them or do you wan to store them
> in a database and grab them from the database to score them onthe server.
>
> For a simple quiz with javascript on the client search for "Javascrip
> quiz" w/o quotes.
>
> ...PC
>
> Bibliografic Geek wrote:
>
> > here's a sample: Quesion here<P>
> >
> > <INPUT TYPE=RADIO NAME="favcolor" VALUE="value name1">awnser1<BR>
> > <INPUT TYPE=RADIO NAME="favcolor" VALUE="value name2">awnser2<BR>
> > <INPUT TYPE=RADIO NAME="favcolor" VALUE="value name3">awnser3<P>
> >
> > just fill in the "anwser1/2/3"s, and "value name1/2/3"s
> >
> > "p c" wrote:
> >
> >
> >>HOW do you make the questions?
> >>
> >>That and wht tecnolgoies your web server supports will afect how you
> >>grade the answers. Would you like to elaborate?
> >>
> >>...PC
> >>
> >>Bibliografic Geek wrote:
> >>
> >>>I've figured out how to do the questions, but I cant figure out the grader
> >>>yet!!I need help.
> >>

>

 
Reply With Quote
 
Stefan B Rusynko
Guest
Posts: n/a
 
      4th Oct 2005
You are going to need to do a lot of hand server side scripting for each question
In your example the form had 3 fields

<INPUT TYPE=RADIO NAME="favcolor" VALUE="value name1">awnser1<BR>
<INPUT TYPE=RADIO NAME="favcolor" VALUE="value name2">awnser2<BR>
<INPUT TYPE=RADIO NAME="favcolor" VALUE="value name3">awnser3<P>

You would then check for the right answer (say it is answer2) on the form action .asp page as say

<%
response.write "The answer to favcolor is: "
If Request.Form("favcolor") = "value name2" Then
response.write " Correct"
Else
response.write " Wrong"
End if
%>



_____________________________________________
SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
"Warning - Using the F1 Key will not break anything!" (-;
To find the best Newsgroup for FrontPage support see:
http://www.net-sites.com/sitebuilder/newsgroups.asp
_____________________________________________


"Bibliografic Geek" <(E-Mail Removed)> wrote in message
news2B3AE45-0652-485C-BEFF-(E-Mail Removed)...
|I want to present all questions with a single submit.I have an asp file but I
| cant figure out how to do it that way.
|
| "p c" wrote:
|
| > There are different ways of presenting and grading the quiz.
| >
| > Do you wan to present all the questions with a single submit or do you
| > want to present one question at a time.
| >
| > Do you want to present the questions and choices by grabbing them form a
| > database or hard coding them on the page?
| >
| > Do you want to grade them on the client by storing the correct answers
| > on the page and use javascript to grade them or do you wan to store them
| > in a database and grab them from the database to score them onthe server.
| >
| > For a simple quiz with javascript on the client search for "Javascrip
| > quiz" w/o quotes.
| >
| > ...PC
| >
| > Bibliografic Geek wrote:
| >
| > > here's a sample: Quesion here<P>
| > >
| > > <INPUT TYPE=RADIO NAME="favcolor" VALUE="value name1">awnser1<BR>
| > > <INPUT TYPE=RADIO NAME="favcolor" VALUE="value name2">awnser2<BR>
| > > <INPUT TYPE=RADIO NAME="favcolor" VALUE="value name3">awnser3<P>
| > >
| > > just fill in the "anwser1/2/3"s, and "value name1/2/3"s
| > >
| > > "p c" wrote:
| > >
| > >
| > >>HOW do you make the questions?
| > >>
| > >>That and wht tecnolgoies your web server supports will afect how you
| > >>grade the answers. Would you like to elaborate?
| > >>
| > >>...PC
| > >>
| > >>Bibliografic Geek wrote:
| > >>
| > >>>I've figured out how to do the questions, but I cant figure out the grader
| > >>>yet!!I need help.
| > >>
| >


 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Quizzes for websites =?Utf-8?B?WmVsZGEgRmFu?= Microsoft Access 0 16th Dec 2006 11:18 PM
how do you make quizzes with timers on them? =?Utf-8?B?THVja3lNYW4=?= Microsoft Frontpage 6 16th Dec 2006 12:11 PM
300 Science quizzes Tramp Freeware 0 19th May 2006 02:15 PM
Tests & Quizzes Martin Microsoft Access 0 11th Oct 2004 09:11 AM
quizzes Fay Yocum Microsoft Powerpoint 6 2nd Aug 2004 07:21 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 03:35 PM.