Latest Answer : Yes. Because Swing uses light weight components. Light weight components are the components which are independent of platform and are written in Java. ...
Latest Answer : Applet : Applet is client side java program which extends the functionality of web browserApplet must have GUIApplet execution starts with init()Application: Application is standaloneApplication need not have GUIApplication execution starts with main() ...
Latest Answer : Web Server contains only web container which can handle only http requests and Application server contains both web container and EJB Container. ...
Can give answer to the folloing questionQuestion 2You are in charge of implementing a Grand Prix Car Racing Results system for a sports magazine, to be used for entering and processing data concerning each Formula 1 Grand Prix that has been run in the season.As you know, each driver is part of the team, and has a number. At the end of each race, the driver who arrived first is assigned 9 points, and the following five drivers receive 6,4,3,2 and 1 point each. Drivers who come in after the sixth
A) FalseB) True
Latest Answer : False. The word synchronized can also be used to make a block of code synchronized.Eg: synchronized(object) { ............code........... }Raghu. ...
A) Java CompilerB) Java Interpreter.C) Both of the aboveD) None of the aboveExplanation: The Java Compiler is used for compilation and the Java Interpreter is used for execution of the application.
Latest Answer : ContradictoryFor executing, Interpreter is used. Answer should be Bif you are going logically to the question, there is no answer,to execute a java program, 1. Check for java pakages, 2. Check for jre, 3. write java program, 4. compile, 5. execute.My ...
A) TrueB) False
Latest Answer : A) TRUE ...
Latest Answer : The POI open-source package at http://jakarta.apache.org/poi handles Word 97 and Excel 97-2002 formats. ...
I can get the size(length) of any array (let a[]) by a.length. please tell me what is this "length" word actually signifies, where it is defined in java and what is its actual definition ?