2
\documentclass{exam} 

\begin{document} 
\bf {This is easy enough}
\begin{questions}
\question What is the sum of 1 and 1
\end{questions}
\vspace{2cm}
But what I really want is :\\\\
Question 1. What is the sum of 1 and 1

\end{document}
Gary Horan
  • 93
  • 5
  • 1
    Unrelated to your question, but you shouldn't use two letter font commands like \bf this millennium, see https://tex.stackexchange.com/questions/516/does-it-matter-if-i-use-textit-or-it-bfseries-or-bf-etc – samcarter_is_at_topanswers.xyz Oct 27 '22 at 12:20

1 Answers1

1
\documentclass{exam} 

\renewcommand\questionlabel{Question \thequestion.}

\begin{document} 
\textbf{This is easy enough}
\begin{questions}
\question What is the sum of 1 and 1
\end{questions}

\end{document}

enter image description here