-
Notifications
You must be signed in to change notification settings - Fork 2
/
Corrector.js
48 lines (40 loc) · 1009 Bytes
/
Corrector.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
function Corrector() {
function calculaNota(enunciado,respuestas) {
var nota = 0;
respuestas.forEach(function(respuesta) {
var pregunta = respuesta["pregunta"];
var valor = respuesta["respuesta"];
var correcto = buscaPregunta(enunciado,pregunta);
if (valor == correcto)
nota += 1;
else
nota -= 0.25;
});
return nota;
}
function buscaPregunta(enunciado,pregunta) {
var busca = enunciado.filter(function(e) {
return e["pregunta"] == pregunta;
});
if (busca.length > 0) {
return busca[0]["correcta"];
} else {
throw "No encontrado";
}
}
function corrige(enunciado,examen) {
var resultado = [];
examen.forEach(function(prueba) {
var id = prueba["alumno"];
var respuestas = prueba["respuestas"];
var nota = calculaNota(enunciado,respuestas);
var valor = { "alumno" : id, "nota": nota };
resultado.push(valor);
});
return resultado;
}
return {
corrige: corrige
};
}
module.exports = Corrector;