What is the difference between the program and the process?
Answer / nashiinformaticssolutions
A programme is a non-active entity that includes the collection of codes necessary to carry out a specific operation. When a programme is run, an active instance of the programme called a process is launched. A process is begun by a programme once it has been run. The process carries out the program's specified instructions.
| Is This Answer Correct ? | 0 Yes | 0 No |
When do you get classcastexception?
what is j2se
What is parameter example?
What is :: operator in java 8?
What is deserialization and how do we do deserialization?
Linked List reverese program
Matrix multiplication only using OOP concepts .
What is user defined exception in Java?
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.
Write a program to check string is palindrome without using loop?
How many types of thread in java? give the name
Can java list be null?