The mcexam package has a 'fixlast' option for mcanswerslist, allowing the last option (e.g. 'none of the above') to be fixed while the others are randomised.
I would like a 'fixlasttwo' option so that I can specify 'all of the above' followed by 'none of the above'.
Here is an MWE showing the fixlasttwo option I'd like, and the existing fixlast option:
\documentclass{article}
\usepackage[output=exam
,numberofversions=1
,version=1
,seed=1
,randomizequestions=true
,randomizeanswers=true
,writeRfile=false
]{mcexam}
\begin{document}
\begin{mcquestions}
\question Is this going to be on the exam?
\begin{mcanswerslist}[fixlasttwo] % desired option
\answer Russell's antinomy
\answer Gödel's numbering
\answer Borges' library
\answer[correct] none of the above
\answer all of the above
\end{mcanswerslist}
\begin{mcanswerslist}[fixlast] % existing option
\answer Russell's antinomy
\answer Gödel's numbering
\answer Borges' library
\answer[correct] none of the above
\answer all of the above
\end{mcanswerslist}
\end{mcquestions}
\end{document}

mcexamwith randomization, with one question in it for which you want the last two options fixed? That would make it easier to start working on a solution for your question without spending time on such preparatory tasks. You can add code to your question by clicking theeditbutton below your post. – Marijn Nov 01 '19 at 16:27