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
'javac' is the loader for Java applications
Which one of the following is true
'java' command converts source code into Java bytecode
'javadoc' component is part of JDK from Sun microsystems
JVM is an instance of JRE (Java runtime environment)
what is Manifest file?
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
Which of the following visual studio 2008 features are deployment enhancements?
ASMX and WSE do not provide efficient ways for providing security,routing,reliable messaging and transaction handling.
The default bindings that WCF uses to automatically configure a service are...
ASMX and WSE technologies do not provide interoperable model.
If CHECK statement is outside the loop structure and if the condition fails?
Which of the following, if inserted at the comment //Here will allow the code to compile and run without error class MyCast{} public class Base extends MyCast{ static boolean b1=false; static int i = 1; static double d = 10.1; public static void main(String argv[]){ MyCast m = new MyCast (); Base b = new Base(); //………..Here }}
Which of the following lines will compile without error? String s = "Hello"; long l = 99; double d = 1.11; int i = 1; int j = 0;
if("String".toString() == "String") System.out.println("Equal");else System.out.println("Not Equal");
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); } }
Can threads be killed manually
if("String".toString() == "String") System.out.println("Equal"); else System.out.println("Not Equal");