Answer Posted / deepakkumar1887
operating system is a software application , consists of set
of instruction to interact/communicate with the underlying
hardware resource like keyboard, processor,HDD etc. so windows
operating system need windows native code
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What is the default value of byte datatype in java?
What are the types of strings?
What is <> used for in java?
What does int argc char * argv [] mean?
What are assembly attributes?
What is the function of log?
What does the string method compareto () do?
What is Applet Stub Interface ?
What is boolean strategy?
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.
What is final method in java?
What are alternatives to java serialization?
How java enabled high performance?
Is arraylist an object in java?
How do I find and replace in word?