what are depricated methods ?

Answers were Sorted based on User's Feedback



what are depricated methods ?..

Answer / lavanya

methods that r not in use now though they were defined
initially . this is done in order to provide a secure and
robust language

Is This Answer Correct ?    1 Yes 0 No

what are depricated methods ?..

Answer / d. kalaivani natarajan

You can not avail deprecated methods in the furture
versions.

Is This Answer Correct ?    1 Yes 0 No

what are depricated methods ?..

Answer / vijay

methods which r not safe to use are called deprecated
methods

Is This Answer Correct ?    0 Yes 0 No

what are depricated methods ?..

Answer / kalpit

Threads suspend,resume and stop are eg of deprecated methods
and are not safe to use.

Is This Answer Correct ?    0 Yes 0 No

what are depricated methods ?..

Answer / sitaram

we can't use the deprecated method in the latest versions.
For example: Thread.stop()--> deprecated method.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Core Java Interview Questions

how to make a un-checked exception as a checked exception one.

2 Answers  


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.

0 Answers  


Difference between stack and queue?

0 Answers   Flextronics,


What is data and its types?

0 Answers  


In java, what is the difference between method overloading and method overriding?

0 Answers  






What is the difference between static class and normal class?

0 Answers  


Is java map thread safe?

0 Answers  


What is method in java with example?

0 Answers  


What is the internal implementation of set in java?

0 Answers  


How much is a java license?

0 Answers  


Which variable is the independent variable?

0 Answers  


Can subclass overriding method declare an exception if parent class method doesn't throw an exception?

0 Answers  


Categories