Contact Us!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place. Commercial Alternative to JupyterHub.

| Download
Project: Bulk-tests
Views: 69
Visibility: Unlisted (only visible to those who know the link)
1
\documentclass{article}
2
\usepackage[output = exam, numberofversions=3, version = 3]{mcexam}
3
\usepackage{sagetex}
4
\usepackage{etex}
5
\usepackage{amsmath}
6
7
\begin{document}
8
9
10
\begin{sagesilent}
11
var('x')
12
a= ZZ.random_element(2,7)
13
f(x) = x^a
14
\end{sagesilent}
15
16
17
18
Here goes the title
19
20
21
\begin{mcquestions}
22
\question How much is $2+2$?
23
\begin{mcanswerslist}
24
\answer two
25
\answer[correct] four
26
\answer five
27
\end{mcanswerslist}
28
29
30
\question How much is $5-3$?
31
\begin{mcanswerslist}
32
\answer 1
33
\answer[correct] $\sage{5-3}$
34
\answer 3
35
\end{mcanswerslist}
36
37
38
\question How much is $0 \times 2$?
39
40
\begin{mcanswerslist}[fixlast]
41
\answer 1
42
\answer 2
43
\answer[correct] none of the above
44
\end{mcanswerslist}
45
46
\question Find the derivative of $\sage{f(x)}$
47
\begin{mcanswerslist}[fixlast]
48
\answer $x^\sage{a-1}$
49
\answer $x^\sage{a+1}$
50
\answer[correct] $\sage{a}x^\sage{a-1}$
51
\end{mcanswerslist}
52
\end{mcquestions}
53
54
\end{document}
55
56
57
58
59
60