Answer Posted / vamsi
jdk:java devlopement Kit
jvm:java verchuval machine
class:class is model for creating objects,it is a physically
not exist in the world
| Is This Answer Correct ? | 4 Yes | 2 No |
Post New Answer View All Answers
Can It is possible to synchronize the constructor of a Java Class?
What is a package in java? List down various advantages of packages.
Explain what is Marker interface?
What initialize variables?
How many static init can you have?
What are static blocks and static initalizers in java ?
Can we sort set in java?
When throw keyword is used?
What are streams?
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.
What is fail fast in java?
What is a parameter in matrices?
What is the common usage of serialization?
Does printwriter create a file?
what is object-oriented programming in java?