Here is an option using the defined \newitem command. The contents is set in a \parbox that naturally flows left-to-right, providing the enumeration in the style you're after:

\documentclass{article}
\usepackage{amsmath,amssymb}% http://ctan.org/pkg/{amsmath,amssymb}
\usepackage{enumitem,multicol,setspace}% http://ctan.org/pkg/{enumitem,multicol,setspace}
\newcounter{subenum}[enumi]
\renewcommand{\thesubenum}{\alph{subenum}}
\newcommand{\newitem}[1]{%
\refstepcounter{subenum}%
\parbox{\dimexpr.5\linewidth-.5\columnsep}{%
\makebox[\labelwidth][r]{(\thesubenum)\hspace*{\labelsep}}%
#1}\hfill%
}
\begin{document}
\begin{enumerate}[start=8]
\item Evaluate each of the following if $x$ is a non-zero real number.
\begin{multicols}{2}
\begin{enumerate}[itemsep=1cm]% The item sep is my choice here.
\item $\dfrac{|x|}{x}$
\item $\dfrac{x}{|x|}$
\item $\dfrac{|-x|}{-x}$
\item $|x|-|-x|$
\end{enumerate}
\end{multicols}
\item Evaluate each of the following if $x$ is a non-zero real number.\par
\setstretch{3}%
\newitem{$\dfrac{|x|}{x}$}
\newitem{$\dfrac{x}{|x|}$}
\newitem{$\dfrac{|-x|}{-x}$}
\newitem{$|x|-|-x|$}
\end{enumerate}
\end{document}
Spacing consideration is provided by setspace and can be tweaked (also removing some additional "\topsep" white space, if needed).
For a slightly more automated approach to changing the number of columns, add
\usepackage[nomessages]{fp}% http://ctan.org/pkg/fp
to your document preamble, and use
\FPeval\thecolwidth{round(1/4:4)}% Specify number of columns -> column width
\newcommand{\newitem}[1]{%
\refstepcounter{subenum}%
\parbox{\dimexpr\thecolwidth\linewidth-.5\columnsep}{%
\makebox[\labelwidth][r]{(\thesubenum)\hspace*{\labelsep}}%
#1}\hfill%
}
as your definition for \newitem. Modify 1/4 to 1/<col nums> to increase the number of columns.
multicolsandresumetheenumerate, but hopefully someone has a more elegant way – cmhughes Aug 20 '12 at 20:14mathmodeenvironment rather some listing method such as theenumitempackage along with themulticolpackage. – azetina Aug 20 '12 at 20:29taskspackage was designed for this purpose – cgnieder Aug 02 '14 at 19:23partsandsubpartsin the LaTeXexamclass: https://tex.stackexchange.com/questions/597536/exam-parts-in-multicols-left-to-right-numbering – EthanAlvaree May 18 '21 at 20:36