What is javac_g?


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

Post New Answer

More Core Java Interview Questions

Hi.... I applied for the post of scientific officer/Engineer-SB(Programmer).Please post the syllabus and sample papers.

0 Answers  


How java enabled high performance?

0 Answers  


How to sort an array from smallest to largest java?

0 Answers  


What modifiers may be used with an inner class that is a member of an outer class in java programming?

0 Answers  


What is the difference between a local variable and an instance variable?

0 Answers  






C and C++ has constructors and distructors, why does Java does not have distructors?

1 Answers   T3 Softwares,


Can we pass a primitive type by reference in java? How

0 Answers  


Convert a binary search tree to a sorted doubly linked list inplace.

1 Answers   Amazon,


what is meant by Byte code concept in Java?

0 Answers   Aspire,


what is a working thread? : Java thread

0 Answers  


Why do we need public static void main(String args[]) method in Java...?

1 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  


Categories