📚 Practice Mode
Java and ABAP Programming Fundamentals
Learn at your own pace with hints and detailed explanations
1 / 20
Multiple Choice
Given: class Alien { String invade(short ships) { return "a few"; } String invade(short... ships) { return "many"; } } class Defender { public static void main(String [] args) { System.out.println(new Alien().invade(7)); } } What is the result?
- many
- a few
- Compilation fails.
- An exception is thrown at runtim