Genau für Aufgaben wie diese habe ich das [`tasks`-Paket][1] mal geschrieben (ursprünglich mal als Teil von [`exsheets`][2]):
\documentclass[11pt, a4paper,twoside]{scrartcl}
\usepackage{amsmath}
\usepackage{tasks}
\begin{document}
\begin{tasks}(4)
\task $\sqrt{169}$
\task $\sqrt{0,36}$
\task $\frac{\sqrt{45}}{\sqrt{80}}$
\task $\sqrt{32}$
\task $\sqrt{2}$
\task $\sqrt{1,44}$
\task $\sqrt{\frac{75}{12}}$
\end{tasks}
\end{document}
![alt text][3]
(Dass die Dezimalbrüche falsch aussehen, wie man sie korrekt eingibt, und was man machen kann, wenn eine Wurzel ein bisschen tief über Zahlen hängt, ist Topic einer anderen Frage, ist freundlicherweise aber in @saputellos Antwort dennoch erklärt und hier deshalb nicht mehr).
Die `tasks`-Umgebung erlaubt auch, das ein einzelnes Item mal etwas länger ist. Dafür hat `\task` einen optionalen Stern, dem man wiederum optional in Klammern die Anzahl der Spalten angeben kann. Ohne Angabe der Spaltenzahl werden einfach die restlichen verfügbaren Spalten einer Zeile verwendet. Wenn die gewünschte Anzahl Spalten im optionalen Argument nicht erreicht werden kann, weil weniger zur Verfügung stehen, wird die angegebene Anzahl ignoriert und die maximal mögliche Anzahl verwendet.
\documentclass[11pt, a4paper,twoside]{scrartcl}
\usepackage{amsmath}
\usepackage{tasks}
\begin{document}
\begin{tasks}(4)
\task the first
\task the second
\task the third
\task the fourth
\task*(3) the fifth item is way too long for this and needs three columns
\task the sixth
\task the seventh
\task*(2) the eighth item is way too long for this and needs two columns
\task the nineth
\task the tenth
\task the eleventh
\task the twelth
\task the thirteenth
\task* the fourteenth item is way too long for this and needs two columns
\end{tasks}
\end{document}
![alt text][4]
[1]: http://www.ctan.org/pkg/tasks
[2]: http://www.ctan.org/pkg/exsheets
[3]: http://texwelt.de/wissen/upfiles/tasks.pnghttp://texwelt.de/wissen/upfiles/tasks.png
[4]: http://texwelt.de/wissen/upfiles/tasks_1.png