| 310-035 Exam |
| 310-035 - Exam Information |
| Question of the day |
Given: 1. public class Alpha{ 2. public static void main( string[] args ){ 3. if ( args.length == 2 ) { 4. if ( args.[0].equalsIgnoreCase("-b") ) 5. System.out.println( new Boolean( args[1] )); 6. } 7. } 8. } And the code is invoked by using the command: java Alpha -b TRUE What is the result?
Answer(s)
true