1

I am working on an exercise sheet using the Exam class and I want to achieve the following using parts:

enter image description here

Can anyone here help me?

I tried using the Multicolumn environment however it produces the parts in the incorrect order

enter image description here

1 Answers1

1

Seems to be a task for tasks. (As Zarko is saying not many are eager to type in texts from a screen shot.)

\documentclass{article}
\usepackage{tasks}
\begin{document}
\settasks{counter-format=(tsk[a]),label-width=1.5em}
\begin{enumerate}
\item    Which one of the following statements are true?
    \begin{tasks}(3)
        \task \dots
        \task \dots
        \task \dots
        \task \dots
        \task \dots
        \task \dots
    \end{tasks}
\end{enumerate}
\end{document}

enter image description here