The small group of Sun engineers called ______ were the originators of Java.
Sun group
Green Team
Oak Team
Green group
First broswer to incorporate Java technology is
Internet explorer
Safari
Firefox
Netscape navigator
'javac' is the loader for Java applications
True
False
Which one of the following is true
The JDK and SDK holds the same features with different name
The JDK forms an extended subset of a SDK
The SDK forms an extended subset of a JDK
None
'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?
the meta data file that contains name-value pairs organized in different sections
specific file contained within a JAR archive
the manifest file is named MANIFST.MFT
All the above
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"); } }
Compiler error complaining about the catch block where no IOException object can ever be thrown.
Compiler error - IOException not found. It must be imported in the first line of the code.
No compiler error. The lines “Before Try” and “At the end” are printed on the screen.
None of Above
The class java.lang.Exception
Is public
Extends Throwable
Implements Throwable
Is serializable