Как рассчитать процент сравнения 2 массивов?

Как я могу получить процент правильных ответов, если у меня есть 2 массива в PHP или javascript, предпочтительно в PHP?

Итак, у меня есть эти два массива, и я хочу сравнить результат теста с правильными ответами и получить процентную оценку:

$quiz_results = array( 'q1' => 'no',
'q2' => 'yes',
'q3' => 'no',
)

$answers = array( 1 => 'yes',
2 => 'no',
3 => 'yes'
)

-1

Решение

Просмотрите ответы и сравните их с вопросами. Если они одинаковые, увеличьте количество правильных ответов.

$quiz_results = array( 'q1' => 'yes',
'q2' => 'yes',
'q3' => 'no',
);
$answers = array( 1 => 'yes',
2 => 'no',
3 => 'yes'
);

$totalquestions = count($answers);
$correct = 0;
foreach($answers as $key => $answer){
//q + the key should do it. Its easier if they are the same obviously
if($answer == $quiz_results['q'.$key]){
// correct
$correct++;
}
}

echo 100 / $totalquestions * $correct; //returns 33.333333%
3

Другие решения

Немного другой подход к проблеме

$rating=array_merge(
array_fill_keys( range(0,32), 'Poor' ),
array_fill_keys( range(33,65), 'Moderate' ),
array_fill_keys( range(66,89), 'Above average' ),
array_fill_keys( range(90,100), 'Excellent' )
);
$quiz_results = array(
'q1' => 'no',
'q2' => 'yes',
'q3' => 'no'
);
$answers = array(
1 => 'yes',
2 => 'no',
3 => 'yes'
);

$i=1;
$score=0;

while( $answer = current( $quiz_results ) ) {
$score += ( $answer==$answers[ $i ] ) ? 1 : 0;
echo 'Question [ '.$i.' ]: You answered: '.$answer.', The correct answer is: '.$answers[ $i ].'<br />';
$i++;
next( $quiz_results );
}
echo 'Score: '.$score.'/'.count( $quiz_results ).' - '.round( abs( ( $score / count( $quiz_results ) ) * 100 ),2).'%';
echo '<br />Rating: '. $rating[ ceil( abs( ( $score / count( $quiz_results ) ) * 100 ) ) ];

Будет выводить:

You answered: no, The correct answer is: yes
You answered: yes, The correct answer is: no
You answered: no, The correct answer is: yes
Score: 0/3 - 0%
Rating: Poor
1

По вопросам рекламы [email protected]