A poor man's solution using longtable:
\documentclass{article}
\usepackage{amssymb,graphicx}
\usepackage{array}
\usepackage{longtable}
\newcounter{rowno}
\setcounter{rowno}{0}
\renewcommand\arraystretch{2}
\newcommand{\mybox}{\resizebox{.5cm}{!}{\raisebox{-.5ex}{$\Box$}}}
\begin{document}
\begin{longtable}{>{\stepcounter{rowno}\therowno.}cp{.5\textwidth}@{\hspace{5\tabcolsep}}cc}
\multicolumn{1}{r}{}& & \fbox{\parbox{.75cm}{True}} & \fbox{\parbox{.75cm}{False}} \\
& This is a sample text. & \mybox & \mybox \\
& This is another sample short text. & \mybox & \mybox \\
& This is a long line containing text and wrapping into second line without hitting the boxes & \mybox & \mybox
\end{longtable}
\end{document}

The boxes can be automatically included as in this code (Thanks to Gonzalo):
\documentclass{article}
\usepackage{amssymb,graphicx}
\usepackage{array}
\usepackage{longtable}
\newcounter{rowno}
\setcounter{rowno}{0}
\renewcommand\arraystretch{2}
\newcommand{\mybox}{\resizebox{.5cm}{!}{\raisebox{-.5ex}{$\Box$}}}
\begin{document}
\begin{longtable}{>{\stepcounter{rowno}\therowno.}cp{.5\textwidth}@{\hspace{5\tabcolsep}}
>{\mybox}c >{\mybox}c }
\multicolumn{1}{r}{}& & \multicolumn{1}{c}{\fbox{\parbox{.75cm}{True}}} & \multicolumn{1}{c}{\fbox{\parbox{.75cm}{False}}} \\
& This is a sample text. & & \\
& This is another sample short text. & & \\
& This is a long line containing text and wrapping into second line without hitting the boxes & &
\end{longtable}
\end{document}
Update:
With a new environment truefalse
\documentclass{article}
\usepackage{amssymb,graphicx}
\usepackage{array}
\usepackage{longtable}
\newcounter{tfno}
\renewcommand\arraystretch{2}
\newcommand{\mybox}{\resizebox{.5cm}{!}{\raisebox{-.5ex}{$\Box$}}}
%
\newenvironment{truefalse}{%
\setcounter{tfno}{0}
\setlength\LTleft{0pt}
\setlength\LTright{0pt}
\begin{longtable}{>{\stepcounter{tfno}\thetfno.}cp{.5\textwidth}@{\extracolsep{\fill}}cc}
\multicolumn{1}{r}{}& & \fbox{\parbox{.75cm}{True}} & \fbox{\parbox{.75cm}{False}} \\
}{%
\end{longtable}
}
\newcommand\tfquestion[1]{ & #1 & \mybox & \mybox \\}
\begin{document}
\begin{truefalse}
\tfquestion{This is a sample text.}
\tfquestion{This is another sample short text.}
\tfquestion{This is a long line containing text and wrapping into second line without hitting the boxes}
\end{truefalse}
%
\begin{truefalse}
\tfquestion{This is a sample text.}
\tfquestion{This is another sample short text.}
\tfquestion{This is a long line containing text and wrapping into second line without hitting the boxes}
\end{truefalse}
\end{document}
