#!/usr/bin/perl require "cgi-lib.pl"; MAIN: { if (&ReadParse(*input)) {&ProcessForm;} else {&ShowForm;} } # end of MAIN # ************** sub ShowForm { # Display the initial form print &PrintHeader; print < Decision Making Exercise

Decision Making Exercise

Purpose:

The purpose of this exercise is twofold:

  1. To provide feedback on the class understanding of the techniques of presentation, and to share these understandings with fellow students,
  2. To create an excercise in decision making in a large group, and
  3. To provide a democratic means of evaluation of presentations by students by their peers.

Time: Action

Individuals will make their choice of the three most important evaluation criteria in each of the three categories of content, presentation, and graphics for judging the performance of each group in their debate summary presentation. Each person fills in sheet 1.

Each group will meet together, select a leader, and chose the four most important criteria. Leader fills in sheet 2.

In the next three phases, one extra chair will be available within each discussion group so that any individual can occupy it for NO MORE THAN 1 MINUTE to participate in further discussion. The chair of each discussion group must enforce the time limit.

Committees of leaders (to be assigned) will meet together, select a representative of each committee, and will chose the five most important criteria. The Representative fills in sheet 3.

The representatives of the committees will meet together (at the front of the room), choose a chairman who will present the final selection to the whole class. The representatives meet and choose the six most important criteria in each category. The chairman fills in sheet 4.

The chairman will present the final choice of criteria to the whole class, filling in the form below. The password will be provided by the instructor.

This process involves discussion -- I suggest you review the guidelines for discussion included in this set of notes.

The final choices of criteria for judging individual presentations will be posted on the WWW as soon as possible.


INDIVIDUAL CRITERIA

CONTENT
PRESENTATION
GRAPHICS
     
     
     


GROUP CRITERIA

CONTENT
PRESENTATION
GRAPHICS
     
     
     
     


LEADERS CRITERIA

CONTENT
PRESENTATION
GRAPHICS
     
     
     
     
     


CLASS CRITERIA

CONTENT
PRESENTATION
GRAPHICS

Enter password:   Enter date (YY/MM/DD):

   


Click here to see the last set of results.


Last updated 98/09/23
© J.A.N. Lee, 1995, 1996, 1997

STUFF print &HtmlBot; } # end of ShowForm # ******************** sub ProcessForm { print &PrintHeader; print &HtmlTop("Debate Evaluation Criteria"); if ($input{'pwd'} ne "babbage") {# check password print "

UNAUTHORIZED ENTRY, TRY AGAIN

" } else # show new results on web { print <

CLASS CRITERIA

CONTENT
PRESENTATION
GRAPHICS
$input{'content1'}
$input{'present1'}
$input{'graphic1'}
$input{'content2'}
$input{'present2'}
$input{'graphic2'}
$input{'content3'}
$input{'present3'}
$input{'graphic3'}
$input{'content4'}
$input{'present4'}
$input{'graphic4'}
$input{'content5'}
$input{'present5'}
$input{'graphic5'}
$input{'content6'}
$input{'present6'}
$input{'graphic6'}

STUFF1 # Now save file of results as decisions.html open (resultFile, ">decisions.html"); print(resultFile ""); print(resultFile "Debate Evaluation Criteria"); print(resultFile ""); print(resultFile "

Debate Evaluation Criteria

"); print(resultFile "

Name: ________________ Group: _____

"); print(resultFile "

"); print(resultFile ""); print(resultFile ""); print(resultFile ""); print(resultFile ""); print(resultFile ""); print(resultFile ""); print(resultFile ""); print(resultFile ""); print(resultFile "

CLASS CRITERIA

CONTENT
PRESENTATION
GRAPHICS
$input{'content1'}
"); print(resultFile "
$input{'present1'}
"); print(resultFile "
$input{'graphic1'}
$input{'content2'}
"); print(resultFile "
$input{'present2'}
"); print(resultFile "
$input{'graphic2'}
$input{'content3'}
"); print(resultFile "
$input{'present3'}
"); print(resultFile "
$input{'graphic3'}
$input{'content4'}
"); print(resultFile "
$input{'present4'}
"); print(resultFile "
$input{'graphic4'}
$input{'content5'}
"); print(resultFile "
$input{'present5'}
"); print(resultFile "
$input{'graphic5'}
$input{'content6'}
"); print(resultFile "
$input{'present6'}
"); print(resultFile "
$input{'graphic6'}

"); print(resultFile "

OVERALL GRADE (A_F): _____

"); print(resultFile "


"); print(resultFile "Last updated $input{'date'}
"); print(resultFile ""); print(resultFile ""); close(resultFile); print "

File saved

"; print &HtmlBot } # end of else part } # end of ProcessForm