+ 1
Java based
what is output and descrip Q: 2 Given 12. public class Yippee2 { 13. 14. static public void main(String [] yahoo) { 15. for(int x = 1; x < yahoo.length; x++) { 16. System.out.print(yahoo[x] + " "); 17. } 18. } 19. } and the command line invocation: java Yippee2 a b c What is the result? A. a b B. b c C. a b c D. Compilation fails. E. An exception is thrown at runtime.
2 Answers
+ 1
The answer is B
But, why don't you use Code Playground?
https://code.sololearn.com/#java
There you can test your code to see what is the result; I invite you to use it and practices your debugging acknowledge.
Happy Codes!
+ 1
but in this program we should compile then only we receive the answer ...
your code.sololearn is direct runtime environment sir