I have been using LaTex for isolated mathematical expressions, so I'm quite a newbie in the text layout questions.
Here's the layout i'm trying to achieve:

The gray outline boxes are shown just for the clarity, there should be no borders in the resulting render. So, the width of the page is split in 6 columns, and the 1st and 6th have titles. And the content in each column is controlled, no dynamic flow of text into the next column is allowed. So maybe I am looking for table layout rather than column layout.
Here's my lame attempt to achieve this:
\documentclass{article}
\usepackage[cm]{fullpage}
\usepackage{vwcol}
\begin{document}
\begin{vwcol}[widths={0.8,0.2},sep=1.2cm,justify=flush,rule=0pt,indent=1em]
\noindent
\normalsize{\underline{\textbf{Part A}}}
\newpage
\noindent
\normalsize{\underline{\textbf{Part B}}}
\end{vwcol}
\begin{vwcol}[widths={0.2,0.2,0.2,0.2,0.2},sep=.3cm,justify=flush,rule=0pt,indent=1em]
\begin{enumerate}
\item one
\item two
\item three
\item four
\item five
\end{enumerate}
\newpage
\begin{enumerate}
\setcounter{enumi}{6}
\item six
\item seven
\item eight
\item nine
\item ten
\end{enumerate}
\newpage
more
\newpage
more
\end{vwcol}
\end{document}
This is rendered very weird, with only four items visible in the first column, and the fifth item at far right side. The other column content is not visible.
\documentclassand ending with\end{document}. – Bobyandbob Apr 23 '18 at 07:13\begin{multicols}{6} \begin{enumerate} \item \item \item \end{enumerate} \end{multicols}– Bobyandbob Apr 23 '18 at 09:14\begin{multicols}{6} A \vfill\null\columnbreak B \vfill\null\columnbreak C \vfill\null\columnbreak D \vfill\null\columnbreak E \vfill\null\columnbreak F \vfill\null\columnbreak \begin{enumerate}...– Bobyandbob Apr 23 '18 at 09:19