How do i create table shown in image in latex 
\documentclass{resume} % Use the custom resume.cls style
\usepackage[left=0.75in,top=0.6in,right=0.75in,bottom=0.6in]{geometry} %
Document margins
\usepackage{array}
\usepackage{booktabs}% http://ctan.org/pkg/booktabs
\newcommand{\tabitem}{~~\llap{\textbullet}~~}
\usepackage{multirow}
\begin{document}
\begin{tabular}{ c | l }
\multirow{2}{2.6cm}{Achievements} & \tabitem reviwed 20+ publication \\
& \tabitem Performed comparative analysis of MATLAB results with FEA results
from material strength aspect \\
\hline
Impact & \tabitem Generated 2 Gear Design models based on feasibility
analysis of geometric parameters of spur gear \\
\end{tabular}
\end{document}
