Need 2+ yrs experienced java techinical question papaer for
company Iflex
Answer Posted / mkcreddy
just search in net u will find lot a questions
and companies does not ask questions depending on
experience it asks depends on the technologies in your CV
so be thorough with the technologies in your CV
| Is This Answer Correct ? | 27 Yes | 7 No |
Post New Answer View All Answers
Is map sorted in java?
What is meant by object?
What is a method in programming?
Explain how can you debug the Java code?
What is purpose of find feature?
Why put method is used?
What is package protected in java?
What is the meaning of flag day?
What is compiler and what its output.
What is meant by oops concept in java?
What is the difference between member variables initialization and assignment in a constructor?
What is the old name of java?
What is the synonym of procedure?
Is sizeof a preprocessor?
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.