Latest Answer : Applets are executed within a web browser, and there's an easy way to load show a specific URL. 1. Get a reference to the applet context 2. Call the showDocument method with a URL object as parameter. The following code snippet shows you how this can ...
In an HTML form I have a Button which makes us to open another page in 15 seconds. How will do you that
Using Java Reflection how can i call a method which i specify in a JSP page.i mean if i have 3 methods in my java class when i specify one of my method name in Jsp page in a textbox when i submit the page that particular method has to be called using java Reflection
The default__ of objects protects private and trancient data, and supports the __ of the classes 1.evolution 2.encoding Choose the correct sequence.
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) String[ ] s;B) String [ ]s:C) String[ s]:D) String s[ ]:
Latest Answer : String s[] ={"HAPPY DAYS"};String []s1 ={"SMILE FOR EVER"}; String[] s2 ={"WISH ALL THE BEST"};//String [s] = {"ITS WONT WORKS"}The above three statements works properly ...
A) TrueB) False
Latest Answer : True ...
A) The class declarationB) The access modifiersC) The encapsulation of data & methods with in objectsD) The use of pointers
Latest Answer : A, B, C are common features of both Java and C++ ...