Answer Posted / abilash
Serialization is a Process of translating a state of object
into a stream of bytes.
| Is This Answer Correct ? | 2 Yes | 2 No |
Post New Answer View All Answers
Can we execute a program without main?
What restrictions are placed on method overloading in java programming?
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.
Which is bigger float or double?
What are the types of sockets in java?
What is sizeof in java?
What is the do while loop syntax?
What does null mean in java?
a thread is runnable, how does that work? : Java thread
What type of variable is error flag?
What are the two ways to create a thread?
how to deploy tomcatserver to weblogic server? write d following steps?
Is empty string in java?
What is the this keyword?
What is the scope or life time of instance variables?