A2 · temario
2.3tema 3 de 23

Past Simple — Questions

Cómo preguntar sobre acciones en el pasado

En programación, cuando necesitas obtener información de una función, haces una llamada con parámetros. Las preguntas en Past Simple son exactamente eso: invocas una función que devuelve información sobre el pasado. El 'keyword' que activa esta función es `DID`.

La estructura es: `DID + SUJETO + VERBO (base) + ?`. `DID` actúa como un 'dispatcher' que pregunta al sistema: ¿esta acción se ejecutó? El verbo siempre queda en forma base porque `DID` ya maneja la marca temporal. Es como si `DID` fuera un middleware que intercepta la petición y gestiona el contexto temporal.

Para preguntas con respuestas cortas (yes/no), la estructura es eficiente: `Yes, I did.` o `No, I didn't.` — como un booleano que devuelve la función. Las preguntas con `WH- words` añaden un parámetro extra al middleware: `What did you do?`, `Where did she go?`. Son como llamadas a función con parámetros de búsqueda.

structure.txt
DID + SUJETO + VERBO (base) + COMPLEMENTO + ?
Did  + you  + work   + yesterday + ?
Did  + she + go     + to the store + ?
WH-  + DID + SUJETO + VERBO (base) + COMPLEMENTO + ?
What + did + you  + eat + for lunch + ?

Debugging lab

Corrige o completa la línea. 7 ejercicios por tema.

0/11 tests passing0%
  1. 2.3.7.1

    Did she went to the museum?

  2. 2.3.7.2

    What did you did yesterday?

  3. 2.3.7.3

    Where he went last summer?

  4. 2.3.7.4

    Did they played soccer?

  5. 2.3.7.5

    When she arrived to the party?

  6. 2.3.7.6

    Did he liked the restaurant?

  7. 2.3.7.7

    Why you didn't call me?

  8. 2.3.7.8

    Did she was happy with the result?

  9. 2.3.7.9

    What did you ate for dinner?

  10. 2.3.7.10

    Where did they went on holiday?

  11. 2.3.7.11

    How long you waited for the bus?