Explain differences between collection api and stream api?
No Answer is Posted For this Question
Be the First to Post Answer
What is Connection pooling? Explain Pros and Cons?
How to declare an arraylist in java?
How will you calculate the depth of a binary tree if the tree contains 15 nodes?
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.
Explain listiterator and methods in listiterator?
Why is a constant variable important?
How can we make a class virtual?
What are interfaces?
What is data structure in java?
We are seeing so many videos/audios as many web sited. But question is these videos or audios are stored in Databases ( Oracle, Mysql, Sybase,... ) or stored any file directory from there they will give the link for that? Pls explain and give sample code to achieve this one? Thanks, Seenu.
why to use transient variables when static variables can be used for Serialization
Why bytecode is called bytecode?