\documentclass{beamer}
\mode<presentation>
\usetheme{ParitRaja}
\usepackage[english]{babel}
\usepackage[scaled=.90]{helvet}
\usepackage{courier}
\title{UTHM Beamer Theme}
\subtitle{A Minimal Working Example} 
\author{Johnson Lim}
\institute{FPTV, UTHM}
\date{5 May 2016}
% Delete this, if you do not want the table of contents to pop up at
% the beginning of each section:
\AtBeginSection[]
{
  \begin{frame}<beamer>
    \frametitle{Outline}
    {
    \tableofcontents[currentsection]
        }
  \end{frame}
}
\begin{document}
\begin{frame}
  \titlepage
\end{frame}
\section{Introduction}
\begin{frame}
  \frametitle{Features of \LaTeX beamer}
\begin{itemize}
	\item Complicated, elegant templates
	\item Viewers can see the progress of the presentation
	\item Nice boxes for theorems, definitions, etc.
	\item With extra options and goodness comes complication
\end{itemize}
\end{frame}
\section{Numbering}
\begin{frame}
	\frametitle{Numbering}
	\begin{enumerate}
		\item This is point one
		\item This is point two
		\item This is point three
		\item This is point four
	\end{enumerate}
\end{frame}
\section{Definition and Boxes}
\begin{frame}
	\frametitle{Definition and Boxes}
	\begin{definition}
		Manufacturing resource planning is defined as a method for the effective planning of all resources of a manufacturing company. 
	\end{definition}
	
	\begin{block}{Block title}
		This is an example block text.
	\end{block}
\end{frame}
\end{document}