What is the difference between math floor and math round?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More Core Java Interview Questions

write java code to print second max number in the array

12 Answers   Huawei, IBAB,


What is an object’s lock and which object’s have locks?

0 Answers  


What is the difference between length and length() method in java?

0 Answers  


What services that container provides?

2 Answers  


What is a parameter example?

0 Answers  






What do you mean by of string::valueof expression in java 8?

0 Answers  


Can we declare a constructor as final?

0 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  


What is string data type?

0 Answers  


What is compareto?

0 Answers  


What do you mean by garbage collection used in java?

0 Answers  


What is a function in java?

0 Answers  


Categories