Consider the following code.
int fun()  
{
if(isEmpty())
{
return -10;
}
else
{
int n;
n= q[front];
front++;
return n;
}
}



Which operation does the above code perform?


Posted on by