Is there a standard package for generating a matching question such as: Match the following states with its capitals:
Michigan Raleigh
North Carolina Lansing
Minnesota St.Paul
Is there a standard package for generating a matching question such as: Match the following states with its capitals:
Michigan Raleigh
North Carolina Lansing
Minnesota St.Paul
Maybe this user-defined environment matchtabular might be what you are looking for:

\documentclass{article}
\usepackage{tabularx}
\newcounter{matchleft}
\newcounter{matchright}
\newenvironment{matchtabular}{%
\setcounter{matchleft}{0}%
\setcounter{matchright}{0}%
\tabularx{\textwidth}{%
>{\leavevmode\hbox to 1.5em{\stepcounter{matchleft}\arabic{matchleft}.}}X%
>{\leavevmode\hbox to 1.5em{\stepcounter{matchright}\alph{matchright})}}X%
}%
}{\endtabularx}
\begin{document}
\begin{matchtabular}
France & Washington DC \\
The United States of America & Berlin \\
The Czech Republic & Paris \\
Germany & Prague \\
\end{matchtabular}
\end{document}
tabular(see here for example). – Willie Wong Jul 10 '12 at 11:37