Viewing file: 9.php (4.91 KB) -rw-rw-rw- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<html>
<title>
Concurso de Calidad
</title>
<HEAD>
<style>
body { font-family:arial, verdana; font-size:12px; margin-left:40px; margin-right:40px;background-color:#f0f0f0;}
table { font-family:arial, verdana; font-size:12px;}
</style>
<SCRIPT LANGUAGE="JavaScript">
<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->
<!-- Begin
var ans = new Array;
var done = new Array;
var yourAns = new Array;
var explainAnswer = new Array;
var score = 0;
ans[1] = "c";
ans[2] = "b";
ans[3] = "b";
ans[4] = "a";
ans[5] = "b";
function Engine(question, answer) {
yourAns[question]=answer;
}
function Score(){
var answerText = "Como lo hice?\n------------------------------------\n";
for(i=1;i<=5;i++){
answerText=answerText+"\nPregunta :"+i+"";
if(ans[i]!=yourAns[i]){
//answerText=answerText+"\nLa respuesta correcta es "+ans[i]+"\n"+explainAnswer[i]+"\n";
answerText=answerText+"\nIncorrecto\nLa respuesta correcta es "+ans[i]+"\n";
}
else{
answerText=answerText+" \nRespuesta correcta! \n";
score++;
}
}
answerText=answerText+"\n\nPuntaje total : "+score+"\n";
alert(answerText);
window.location="http://192.168.10.3/php/reqintranet.php";
}
// End -->
</script>
</HEAD>
<!-- STEP TWO: Copy this code into the BODY of your HTML document -->
<BODY>
<DIV ALIGN="CENTER">
<table width="100%" border="0" cellspacing="0" cellpadding="6" style="border:1px solid #ccc" bgcolor="#FFFFFF">
<tr>
<td bgcolor="#0033CC"><font color="#FFFFFF" size="5"><strong>Cuestionario
MECI</strong></font></td>
</tr>
<tr>
<td bgcolor="#FFFFFF"><b><font color="#990000">Pruebe su conocimiento!</font></b>
</td>
</tr>
<tr><form>
<td style="background-image:url('img/fondo.jpg'); background-repeat:repeat-y; padding-left:30px">
<p><b> 1. De las siguientes opciones, seleccione la que No corresponde
a un principio del Sistema de Gestión de la Calidad establecido
en la NTCGP 100-2004.</b><br>
<input type=radio name="q1" value="a" onClick="Engine(1, this.value)">
a) Transparencia <br>
<input type=radio name="q1" value="b" onClick="Engine(1, this.value)">
b) Relaciones mutuamente beneficiosas con los proveedores<br>
<input type=radio name="q1" value="c" onClick="Engine(1, this.value)">
c) Economía<br>
<input type=radio name="q1" value="d" onClick="Engine(1, this.value)">
d) Coordinación, cooperación y articulación<br>
<br>
<b>2. El concepto de impacto, se relaciona con eficiencia.</b><br>
<input type=radio name="q2" value="a" onClick="Engine(2, this.value)">
a) Verdadero<br>
<input type=radio name="q2" value="b" onClick="Engine(2, this.value)">
b) Falso<br>
<br>
<b>3 . La autogestión es la capacidad de cada servidor público
de considerar el control como inherente e intrínseco al manejo
de responsabilidades, decisiones, tareas y actuaciones.</b><br>
<input type=radio name="q3" value="a" onClick="Engine(3, this.value)">
a) Verdadero<br>
<input type=radio name="q3" value="b" onClick="Engine(3, this.value)">
b) Falso<br>
<br>
<b> 4. Es el mecanismo que se utilizara para evaluar, reconocer y
estimular los avances que en materia del Sistema de Gestión
de la Calidad, han logrado tanto las entidades como los servidores
públicos. Este objetivo corresponde al Premio Distrital de
la Calidad</b><br>
<input type=radio name="q4" value="a" onClick="Engine(4, this.value)">
a) Verdadero<br>
<input type=radio name="q4" value="b" onClick="Engine(4, this.value)">
b) Falso<br>
<br>
<b>5. Documento que presenta los resultados obtenidos o proporciona
evidencia de actividades desempeñadas; esta definición
corresponde a Información:</b><br>
<input type=radio name="q5" value="a" onClick="Engine(5, this.value)">
a) Verdadero<br>
<input type=radio name="q5" value="b" onClick="Engine(5, this.value)">
b) Falso</p>
<div align="center">
<input name="button" type=button onClick="Score()" value="Enviar respuestas" style="color:blue; padding:10px; width:180px; font-weight:bold">
<input name="button" type=reset value="Borrar respuestas" style="color:blue; padding:10px; width:180px; font-weight:bold">
</div>
</td></form>
</tr>
</table>
<h1> </h1>
</DIV>
</body>
</html>
|