123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- <?php
- /*
- * Copyright (C) 2021 Echedey López Romero <elr@disroot.org>
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
- $Preguntas = [
- [
- 'numero' => '1',
- 'pregunta' => '¿El alcohol influye en la distancia de detención?',
- 'opciones' => [
- 'a) Sí, disminuyéndola.',
- 'b) Sí, aumentándola.',
- 'c) No, la distancia de detención sólo depende de la velocidad.'
- ],
- 'respuesta' => 0,
- 'imagen' => './images/alcohol.webp'
- ],
- [
- 'numero' => '2',
- 'pregunta' => 'Circulando por una vía frecuentada por peatones, '
- . 'especialmente niños o ancianos, ¿qué haremos?',
- 'opciones' => [
- 'a) Reducir la velocidad, incluso llegando a detenerme.',
- 'b) Adoptaré las medidas necesarias para su seguridad, sin tener '
- . 'que moderar obligatoriamente la velocidad.'
- ],
- 'respuesta' => 1,
- 'imagen' => './images/calle_peatones.webp'
- ],
- [
- 'numero' => '3',
- 'pregunta' => 'Circulando por una vía frecuentada por peatones, '
- . 'especialmente niños o ancianos, ¿qué haremos?',
- 'opciones' => [
- 'a) Reducir la velocidad, incluso llegando a detenerme.',
- 'b) Adoptaré las medidas necesarias para su seguridad, sin tener '
- . 'que moderar obligatoriamente la velocidad.'
- ],
- 'respuesta' => 1,
- 'imagen' => './images/calle_peatones.webp'
- ],
- [
- 'numero' => '4',
- 'pregunta' => '¿El alcohol influye en la distancia de detención?',
- 'opciones' => [
- 'a) Sí, disminuyéndola.',
- 'b) Sí, aumentándola.',
- 'c) No, la distancia de detención sólo depende de la velocidad.'
- ],
- 'respuesta' => 0,
- 'imagen' => './images/alcohol.webp'
- ]
- ];
- $Comprobar = false;
- $RespuestasUsuario = [];
- $Puntuaciones = [
- 'Aciertos' => 0,
- 'Fallos' => 0,
- 'No contestadas' => 0
- ];
|