[Tex/LaTex] How to remove Overfull \hbox (12.0pt too wide) in paragraph at lines 11–11 []

line-breakingwarnings

\documentclass[10pt,twocolumn]{article}
\usepackage{graphicx}
\usepackage{amsmath}
\newcommand{\Keywords}[1]{\par\noindent
{\small{\em Keywords\/}: #1}}
\title{strong text}
\author{ \and
\centerline{Department of Computer Engineering,College of engineering,city}}
\date{}
\begin{document}

\maketitle
\begin{abstract}

Best Answer

There is no need for \centerline within the \author declaration, since the \author - set as part of \maketitle - is already centred. So, remove it (and the seemingly superfluous \and):

enter image description here

\documentclass[twocolumn]{article}

\title{strong text}
\author{Department of Computer Engineering, College of Engineering, City}

\begin{document}

\maketitle

\begin{abstract}
Some abstract
\end{abstract}

\end{document}