I am trying to put four figures in one page. I have tried using \clearpage, \afterpage{\clearpage} with afterpage package as suggested and worked successfully in many other cases. I have also tried scaling down the image, using h, H, p etc. with figure command. None did work in my case.
Help me please putting these four pictures on a page. My code at present is:
\documentclass[addpoints,11pt]{exam}
\usepackage{graphicx} %to display graphics!
\usepackage{afterpage}
\firstpagefootrule
\begin{document}
\begin{questions}
\question[] True/False questions.
\label{label:a}
\begin{parts}
\part[2] True or False.
An image:
\begin{figure}[h]
\centering
\includegraphics[scale=0.5]{test}
\caption{Figure of Q.\ref{label:a}}
\label{label:q1}
\end{figure}
\end{parts}
\question[] True/False questions.
\begin{parts}
\part[2] True or False.
An image:
\begin{figure}[h]
\includegraphics[scale=0.5]{test}
\caption{Figure of Q.2}
\label{label:q2}
\end{figure}
\end{parts}
\question[] True/False questions.
\begin{parts}
\part[2] True or False.
An image:
\begin{figure}[h]
\includegraphics[scale=0.5]{test}
\caption{Figure of Q.3}
\label{label:q3}
\end{figure}
\end{parts}
\question[] True/False questions.
\begin{parts}
\part[2] True or False.
An image:
\begin{figure}[h]
\includegraphics[scale=0.5]{test}
\caption{Figure of Q.4}
\label{label:q4}
\end{figure}
\end{parts}
\end{questions}
\end{document}
I am unable to upload the image test.jpg (of size 168x126) as well as the pdf I have created by running the above code. I am sorry for not able to upload the output I got.

demoI usually place a little note warning about its usage and meaning, but I forgot it in my answer to your question; I'll add it right now. – Gonzalo Medina Sep 13 '12 at 13:44