Passé Composé vs Imparfait: Exercises with Faire
Exercise: Practicing the Verb “Faire”
Here are some exercises to practice conjugating the verb faire (to do/make) in French:
- Conjugate the verb “faire” in the present tense for the following subjects:
- Je un gâteau.
- Tu du sport.
- Il/Elle ses devoirs.
- Nous une promenade.
- Vous un voyage.
- Ils/Elles du bruit.
Fill in the blanks with the correct form of “faire” in the past tense (passé composé):
- Hier, j’ une tarte.
- La semaine dernière, nous une randonnée.
- Est-ce que tu tes devoirs ?
- Ils/Elles une fête.
- Vous un bon travail.
- Il/Elle une erreur.
Fill in the blanks with the correct form of “faire” in the plus-que-parfait:
- Avant de partir, j’ mes valises.
- Quand nous sommes arrivés, ils le ménage.
- Elle une erreur avant de corriger son travail.
- Vous une réservation avant d’arriver à l’hôtel.
- Nous une promenade avant qu’il ne pleuve.
- Tu tes devoirs avant de jouer.
Compare the passé composé and plus-que-parfait forms of “faire” in the following sentences:
- Hier, j’ une tarte, mais avant cela, j’ les courses.
- Nous une randonnée après que nous un bon petit-déjeuner.
- Elle une erreur, mais elle de son mieux pour la corriger.
- Vous un bon travail parce que vous beaucoup d’efforts auparavant.
Translate the following sentences into French using the verb “faire” in the passé composé:
I made a cake.
They made noise.
We made a decision.
- Write a short paragraph about what you and your friends have done recently using different forms of “faire.”
{=html} <textarea placeholder="Write your paragraph here" rows="5" cols="50"></textarea>
<button onclick="checkParagraphAnswers()">
Check Paragraph Answer
</button>
```{=html}
<script>
function checkParagraphAnswers() {
const paragraphInput = document.querySelector('textarea');
const feedback = paragraphInput.nextElementSibling || document.createElement('span');
if (!feedback.parentNode) {
feedback.style.marginLeft = '10px';
paragraphInput.parentNode.appendChild(feedback);
}
const userParagraph = paragraphInput.value.trim();
if (userParagraph.toLowerCase().includes('faire')) {
feedback.textContent = "Good job! You used the verb 'faire' in your paragraph.";
feedback.style.color = "green";
} else {
feedback.textContent = "Try again! Make sure to include the verb 'faire' in your paragraph.";
feedback.style.color = "red";
}
}
</script>
```