-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtut.tex
41 lines (27 loc) · 1.5 KB
/
tut.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
% Tutorials must only have the tut option enabled
\documentclass[tut]{yqteach}
%% Add in any additional settings needed here
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% set the appropriate details for the module here
\input{module_details}
% Write the details of the tutorial here
\setdocumenttitle{Tutorial 1}
\setdocumentsubtitle{Design}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{document}
\maketitle
\section*{Multiple Choice Questions}
% Use the \q command to start a question.
% You may also add an additional topic like \q[Algebra] to give Question 1 (Algebra).
\q[Security Fundamentals] Which of the following statements is \textbf{not} a fundamental concept in security?
\sq Lol.
% Use the letteroptions environment for MCQ letter options
\begin{letteroptions}
\item Assume Breach: organizations should take active steps to mitigate, monitor, detect and deal with threats to their applications and systems.
\item Maximum Functionality: privileged users (like administrators) should be given the maximum amount of access to features of their applications to deal with threats swiftly.
\item Defence-in-Depth: Having multiple layers of security so that threats are mitigated even if they successfully gets around one security measure.
\item Attack Surface Reduction: creating smaller systems that have a lower attack surface so that there are fewer vectors that an attacker may take to exploit the application.
\end{letteroptions}
%%% Don't touch the following
\endofdocument
\end{document}