Is Java is 100% pure OOPS? Explain?

Answer Posted / guest

no

Is This Answer Correct ?    64 Yes 16 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What do you mean by flow of struts?

738


What are the new features in java 8?

556


What is an image buffer?

531


Is .net better than java?

548


What is the private method modifier?

567






What is a marker interface?

566


Define inheritance with reference to java.

572


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.

1576


Where and how can you use a private constructor?

526


How many bits are in a sentence?

577


what is thread? What are the high-level thread states? Or what are the states associated in the thread? : Java thread

486


Can we make constructors static?

713


What are access specifiers in java ?

586


What is a java developer salary?

534


Can a static block throw exception?

649