[Tex/LaTex] Simple multiple choice exam

exam

Good day. Im new to latex and I want ti create a simple multiple choice test as shown below:

  1. What is the sum of the sides of a polygon called?

    A. Leg B. Perimeter C. Area D. Volume
    
  2. Wat is the product of -2 and 3?

    A. -6 B. 6 C. 5 D. -5

*I want the A, B, C, D to be be aligned with the choices in the other numbers.

Best Answer

You can use, for example, the package tasks.

MWE:

\documentclass{article}
\usepackage{tasks}

\NewTasks[style=enumerate,counter-format=tsk[A].,label-width=3ex]{choice}[\item](4)

\begin{document}

\begin{enumerate}
  \item What is the sum of the sides of a polygon called?
  \begin{choice}
    \item Leg
    \item Perimeter
    \item Area
    \item Volume
  \end{choice}
  \item What is the product of $-2$ and $3$?
  \begin{choice}
    \item $-6$
    \item $6$
    \item $5$
    \item $-5$
  \end{choice}
\end{enumerate}
\end{document} 

Output:

enter image description here