why did you choose your career in IT?
Answer / v arvind
I decided to work in IT because it has scope & by working in this we get exposure to computers. Now-a-days computer is used in almost all the works, so by working in IT we can have nice salary.
| Is This Answer Correct ? | 0 Yes | 1 No |
Difference between this(), super()?
12 Answers College School Exams Tests, Oracle,
How do you escape json?
What are byte codes?
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.
Describe string intern() methodology
Which methods cannot be overridden in java?
is it possible to add a object in a HASHMAP
What are java methods?
What do you mean by singleton class in java?
why would you use a synchronized block vs. Synchronized method? : Java thread
What are the types of sockets in java?
What is better - 'bit-shift a value' or 'multiply by 2'?