Sorry, José, but the download.php file you attached belongs to the survey module, not the questionnaire module.
If it's OK for you to hack your Questionnaire files, here is how you can get the ratings to start at zero. In file questionnaire/locallib.php, version $Id: locallib.php,v 1.49.2.66 2009/12/26 10:29:30 joseph_rezeau Exp $
line 1371
change
if (is_numeric($q4)) {$q4++;
}
to
if (is_numeric($q4)) {
$q4;
}
Joseph