Feat: QF pour les 2nd
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Bertrand Benjamin 2022-04-04 09:17:07 +02:00
parent 027aff050d
commit cbd8eaa62c
4 changed files with 150 additions and 0 deletions

Binary file not shown.

View File

@ -0,0 +1,75 @@
\documentclass[14pt]{classPres}
\usepackage{tkz-fct}
\usepackage{listings}
\author{}
\title{}
\date{}
\begin{document}
\begin{frame}{Questions flash}
\begin{center}
\vfill
2nd
\vfill
30 secondes par calcul
\vfill
{\Large Calculatrice autorisée}
\vfill
\tiny \jobname
\end{center}
\end{frame}
\begin{frame}[fragile]{Calcul 1}
% Tableaux signe et variations
\vfill
\begin{tikzpicture}
\tkzTabInit[lgt=2,espcl=2]{$ x $/1,$ z(x) $/2}{$-\infty$, -4, 3, $+\infty$}
\tkzTabLine{, -, z, +, z, - , }
\end{tikzpicture}
\vfill
Résoudre l'inéquation $z(x) > 0$
\vfill
\end{frame}
\begin{frame}{Calcul 2}
% Information chiffrée
\vfill
Quel taux d'évolution doit-on appliquer pour revenir à la valeur initial après une augmentation de 30\%?
\vfill
\end{frame}
\begin{frame}[fragile]{Calcul 3}
% Programmation
\begin{center}
\begin{lstlisting}[language=Python, basicstyle=\small, frame=]
a = 1
for i in range(3):
a = a + i
print(a)
\end{lstlisting}
\end{center}
\vfill
Que va afficher le programme?
\vfill
\end{frame}
\begin{frame}[fragile]{Calcul 4}
% Inéquations
Résoudre l'inéquation suivante
\vfill
\[
-3x + 5 > 14
\]
\vfill
\end{frame}
\begin{frame}{Fin}
\begin{center}
On retourne son papier.
\end{center}
\end{frame}
\end{document}

Binary file not shown.

View File

@ -0,0 +1,75 @@
\documentclass[14pt]{classPres}
\usepackage{tkz-fct}
\usepackage{listings}
\author{}
\title{}
\date{}
\begin{document}
\begin{frame}{Questions flash}
\begin{center}
\vfill
2nd
\vfill
30 secondes par calcul
\vfill
{\Large Calculatrice autorisée}
\vfill
\tiny \jobname
\end{center}
\end{frame}
\begin{frame}[fragile]{Calcul 1}
% Tableaux signe et variations
\vfill
\begin{tikzpicture}
\tkzTabInit[lgt=2,espcl=2]{$ x $/1,$ z(x) $/2}{$-\infty$, -4, $+\infty$}
\tkzTabLine{, -, z, +, }
\end{tikzpicture}
\vfill
Résoudre l'inéquation $z(x) < 0$
\vfill
\end{frame}
\begin{frame}{Calcul 2}
% Information chiffrée
\vfill
Quel taux d'évolution doit-on appliquer pour revenir à la valeur initial après une diminution de 20\%?
\vfill
\end{frame}
\begin{frame}[fragile]{Calcul 3}
% Programmation
\begin{center}
\begin{lstlisting}[language=Python, basicstyle=\small, frame=]
score = 1
for i in range(4):
score = score * i
print(score)
\end{lstlisting}
\end{center}
\vfill
Que va afficher le programme?
\vfill
\end{frame}
\begin{frame}[fragile]{Calcul 4}
% Inéquations
Résoudre l'inéquation suivante
\vfill
\[
3 \leq 5 + 4x
\]
\vfill
\end{frame}
\begin{frame}{Fin}
\begin{center}
On retourne son papier.
\end{center}
\end{frame}
\end{document}