How to display itemizes next to each other?

There are quite a few different ways to do this, for example

using minipage environments, top aligned

\begin{minipage}[t]{.33\textwidth}
    \begin{itemize}
        \item [\textbf{*A:}]
        \item 1: Some text
        \item 2: Some text
        \item 3: Some text
        \item 4: Some text
    \end{itemize}   
\end{minipage}%
\begin{minipage}[t]{.33\textwidth}
        \begin{itemize}
        \item [\textbf{*B:}]
        \item Some text
        \item Some text
        \item Some text
        \item Some text
        \item Some text
        \item Some text
        \item Some text
        \item Some text
    \end{itemize}
\end{minipage}%
\begin{minipage}[t]{.33\textwidth}
       \begin{itemize}
        \item [\textbf{*C:}]
        \item Some text
        \item Some text
        \item Some text
    \end{itemize}
\end{minipage}

using tabular and p{<width>} columns

\begin{tabular}{p{.33\textwidth}p{.33\textwidth}p{.33\textwidth}}
    \begin{itemize}
        \item [\textbf{*A:}]
        \item 1: Some text 
        \item 2: Some text
        \item 3: Some text
        \item 4: Some text
    \end{itemize}   
&
        \begin{itemize}
        \item [\textbf{*B:}]
        \item Some text
        \item Some text
        \item Some text
        \item Some text
        \item Some text
        \item Some text
        \item Some text
        \item Some text
    \end{itemize}
&
       \begin{itemize}
        \item [\textbf{*C:}]
        \item Some text
        \item Some text
        \item Some text
    \end{itemize}
\end{tabular}

using parbox

\parbox[t]{.33\textwidth}{%
    \begin{itemize}
        \item [\textbf{*A:}]
        \item 1: Some text 
        \item 2: Some text
        \item 3: Some text
        \item 4: Some text
    \end{itemize}   
    }%
\parbox[t]{.33\textwidth}{%
        \begin{itemize}
        \item [\textbf{*B:}]
        \item Some text
        \item Some text
        \item Some text
        \item Some text
        \item Some text
        \item Some text
        \item Some text
        \item Some text
    \end{itemize}
    }%
\parbox[t]{.33\textwidth}{%
       \begin{itemize}
        \item [\textbf{*C:}]
        \item Some text
        \item Some text
        \item Some text
    \end{itemize}
}%

If you happen to write up an exam sheet, you can use exsheets and the tasks package.

vingtoftTasks

\documentclass{article}
\usepackage{exsheets}
\usepackage{tasks}
\SetupExSheets{counter-format=qu[A]:}
\begin{document}
\begin{question}
    Which animal is the best?
    \begin{tasks}(3)
        \task Wombat 
        \task Duck
        \task Capybara
        \task Mara
        \task Why make a difference? They are all equally great
    \end{tasks}
\end{question}
\begin{question}
    What to not drink in the morning? 
    \begin{tasks}(3)
        \task Coffee
        \task Orange juice
        \task Water
        \task Milk
        \task Beer
    \end{tasks}
\end{question}
\begin{question}
    Which animal is the best?
    \begin{tasks}(3)
        \task Wombat 
        \task Duck
        \task Capybara
        \task Mara
        \task*(2) Why make a difference? They are all equally great
    \end{tasks}
\end{question}
\end{document}

If you would work with multicols...

\documentclass{article}
\usepackage{multicol}
\setlength{\columnsep}{5pt} %space between columns 

\raggedcolumns % for NOT stretching the columns with manual columnbreak
\begin{document}

\begin{multicols}{3}
       \begin{itemize}
        \item [\textbf{*A:}]
        \item 1: Some text
        \item 2: Some text
        \item 3: Some text
        \item 4: Some text
    \end{itemize}
    \columnbreak %% end of a column
    \begin{itemize}
        \item [\textbf{*B:}]
        \item Some text
        \item Some text
        \item Some text
        \item Some text
        \item Some text
        \item Some text
        \item Some text
        \item Some text
    \end{itemize}
    \columnbreak

    \begin{itemize}
        \item [\textbf{*C:}]
        \item Some text
        \item Some text
        \item Some text
    \end{itemize}
\end{multicols}

\end{document}

enter image description here