#!C:/perl/bin/perl.exe use CGI::Carp qw(fatalsToBrowser); use CGI; $query = new CGI; $v01= "I like reading articles."; $v02= "I like analyzing data."; $v03= "I like writing manuscripts."; print $query->header; print $query->start_html(-title=>'Do You Like to Research?'); print ""; print "
Do You Like to Research?


Please respond to the following statements.

"; @item = ("v01", "v02", "v03"); for($i = 0; $i <= 2; ++$i){ $items= $item[$i]; print " $$items
"; print "
Strongly Disagree Strongly Agree

"; } print "
"; print $query->end_html;