✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
A developer successfully implements polymorphism with the following line of code: Soldier mySoldier = new ArmouredSoldier(50); The ArmouredSoldier subclass contains a unique, public method declared as public void releaseArmour(). What happens if the developer attempts to execute the command mySoldier.releaseArmour(); on the next line?