What is instance means in java?
No Answer is Posted For this Question
Be the First to Post Answer
what is purpose of collections.unmodified() method..?
What is covariant return type?
What are the advantages of compiled language?
Draw a UML class diagram for the code fragment given below: public class StringApplet extends Applet { private Label sampleString; private Button showTheString; private ButtonHandler bHandler; private FlowLayout layout; public StringApplet() { sampleString = new Label(" "); showTheString = new Button (" Show the String"); bHandler = new ButtonHandler(); layout = new FlowLayout(); showTheString.addActionListener(bHandler); setLayout(layout); add(sampleString); add(showTheString); } class ButtonHandler implements ActionListener { public void actionPerformed(ActionEvent e) { samplestring.setText("Good Morning"); } } } Note: The methods need not be indicated on the diagram.
How do you load an HTML page from an Applet ?
How many types of memory areas are allocated by jvm?
What is the functionality of Webserver?
Write the code for Palindrome ?
Can we make main() thread as daemon?
Does java trim remove newline?
what is difference betweem home interface and remote interface?
Can we force garbage collector to run ?