MWE
\documentclass[11pt,paper=a4,answers]{exam} \usepackage{environ} \newtoks\allanswers \NewEnviron{answer} {% \edef\temp{% \the\allanswers % the previous ones \thequestion) \thechoice \noexpand\par % maybe \par has been redefined \unexpanded\expandafter{\BODY}% } \global\allanswers=\expandafter{\temp} } \newcommand{\Cchoice}{\CorrectChoice\begin{answer}\end{answer}} \newcommand{\showallanswers}{% \ifprintanswers {\centering ANSWER KEYS \par} \textbf{\the\allanswers} \fi} \begin{document} \begin{questions} \question One \begin{choices} \Cchoice True \choice False \choice False \choice False \choice False \end{choices} \question Two \begin{choices} \choice False \choice False \Cchoice True \choice False \choice False \end{choices} \end{questions} \showallanswers \end{document} That I want output,
That is, I want all true choices counting.
Number of choice A's
Number of choice B's
Number of choice C's
Number of choice D's
Number of choice E's
Is it possible?
