variables.php 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. <?php
  2. /*
  3. * Copyright (C) 2021 Echedey López Romero <elr@disroot.org>
  4. *
  5. * This program is free software: you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation, either version 3 of the License, or
  8. * (at your option) any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  17. */
  18. $Preguntas = [
  19. [
  20. 'numero' => '1',
  21. 'pregunta' => '¿El alcohol influye en la distancia de detención?',
  22. 'opciones' => [
  23. 'a) Sí, disminuyéndola.',
  24. 'b) Sí, aumentándola.',
  25. 'c) No, la distancia de detención sólo depende de la velocidad.'
  26. ],
  27. 'respuesta' => 0,
  28. 'imagen' => './images/alcohol.webp'
  29. ],
  30. [
  31. 'numero' => '2',
  32. 'pregunta' => 'Circulando por una vía frecuentada por peatones, '
  33. . 'especialmente niños o ancianos, ¿qué haremos?',
  34. 'opciones' => [
  35. 'a) Reducir la velocidad, incluso llegando a detenerme.',
  36. 'b) Adoptaré las medidas necesarias para su seguridad, sin tener '
  37. . 'que moderar obligatoriamente la velocidad.'
  38. ],
  39. 'respuesta' => 1,
  40. 'imagen' => './images/calle_peatones.webp'
  41. ],
  42. [
  43. 'numero' => '3',
  44. 'pregunta' => 'Circulando por una vía frecuentada por peatones, '
  45. . 'especialmente niños o ancianos, ¿qué haremos?',
  46. 'opciones' => [
  47. 'a) Reducir la velocidad, incluso llegando a detenerme.',
  48. 'b) Adoptaré las medidas necesarias para su seguridad, sin tener '
  49. . 'que moderar obligatoriamente la velocidad.'
  50. ],
  51. 'respuesta' => 1,
  52. 'imagen' => './images/calle_peatones.webp'
  53. ],
  54. [
  55. 'numero' => '4',
  56. 'pregunta' => '¿El alcohol influye en la distancia de detención?',
  57. 'opciones' => [
  58. 'a) Sí, disminuyéndola.',
  59. 'b) Sí, aumentándola.',
  60. 'c) No, la distancia de detención sólo depende de la velocidad.'
  61. ],
  62. 'respuesta' => 0,
  63. 'imagen' => './images/alcohol.webp'
  64. ]
  65. ];
  66. $Comprobar = false;
  67. $RespuestasUsuario = [];
  68. $Puntuaciones = [
  69. 'Aciertos' => 0,
  70. 'Fallos' => 0,
  71. 'No contestadas' => 0
  72. ];