✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Reemplace la cadena de caracteres '***' con la secuencia de instrucciones que considere es la correcta para completar el siguiente fragmento de código:
public int pop() throws StackException { int popped; if(isEmpty()){ throw new StackException(“Ejecución no válida en una pila vacia”); } else{ popped = '***' }
return popped;}