programming languages Online Quiz - 270
Description: programming languages Online Quiz - 270 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: programming languages |
First broswer to incorporate Java technology is
Which one of the following is true
'java' command converts source code into Java bytecode
public class AQuestion{ public static void main(String args[]){ System.out.println("Before Try"); try{ } catch(Throwable t){ System.out.println("Inside Catch"); } System.out.println("At the End"); } }
The class java.lang.Exception
ASMX and WSE do not provide efficient ways for providing security,routing,reliable messaging and transaction handling.
ASMX and WSE technologies do not provide interoperable model.
Contents in AQuestion.java private class AQuestion { public void method(Object o){ System.out.println("Object Verion"); } public void method(String s){ System.out.println("String Version"); } public static void main(String args[]){ AQuestion question = new AQuestion(); question.method(null); } }