answersLogoWhite

0


Best Answer

It depends on whether the program responds to a hangup signal or not. If you start the program with a 'nohup' command then it will continue to execute.

User Avatar

Wiki User

13y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: IF we r terminated at the middle of the program execution in UNIX what will happen to the program it will continue running or terminate or the op will be send to your mail?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

What is terminate stay resident?

A Terminate Stay Resident (TSR) program is a DOS program that stays in memory following its execution. This allows installation of drivers in DOS.


Difference between break and continue statements in wml?

Break statements:-its terminates the current while or for loop and continue the program execution from the statement following the terminated.NOTE:-note that it is wmlscript syntax error to use the break statement outside of while or a for statements.example;Breakstatement:Break;Continue statement:-this statement terminate execution of a block of statementin while or for loop and continues execution of loop with the next iteration.note that the continue statement does not terminate the execution of loop and also is wmlscript syntax error to use the break statement outside of while or a for statements.-> in while loop, it jumps back to the condition.-> in for loop,it jumpsto the update expression.syntax:continuestatement:continue;


IS Throwing an exception always causes program termination?

No Not necessarily.. You can catch an exception and then continue to execute your program as if nothing happened. If in your catch block you have code like System.exit then your program would terminate.


What is meant by TSR in C?

It means Terminate-Stay-Resident. A TSR is a program that remains in memory when the program ends.


What is meant by flow of execution a program?

That means to load a computer program into a computer's memory, and have the computer carry out the instructions in the program.

Related questions

What is terminate stay resident?

A Terminate Stay Resident (TSR) program is a DOS program that stays in memory following its execution. This allows installation of drivers in DOS.


Difference between break and continue statements in wml?

Break statements:-its terminates the current while or for loop and continue the program execution from the statement following the terminated.NOTE:-note that it is wmlscript syntax error to use the break statement outside of while or a for statements.example;Breakstatement:Break;Continue statement:-this statement terminate execution of a block of statementin while or for loop and continues execution of loop with the next iteration.note that the continue statement does not terminate the execution of loop and also is wmlscript syntax error to use the break statement outside of while or a for statements.-> in while loop, it jumps back to the condition.-> in for loop,it jumpsto the update expression.syntax:continuestatement:continue;


IS Throwing an exception always causes program termination?

No Not necessarily.. You can catch an exception and then continue to execute your program as if nothing happened. If in your catch block you have code like System.exit then your program would terminate.


What role does the CIO play in determining to continue or terminate an IT program?

Advises respective agency head on continuing, modifying or terminating IT programs


What is Program execution in operating system?

Program Execution means that you open or run a program installed at the computer. my question how to do program execution


What is the meaning of execution and terminating the programmes?

execution is the process by which a computer carries out the instructions of a computer program. terminating program is to stop the program from execution.


What is meant by TSR in C?

It means Terminate-Stay-Resident. A TSR is a program that remains in memory when the program ends.


What is meant by flow of execution a program?

That means to load a computer program into a computer's memory, and have the computer carry out the instructions in the program.


What is executive a c program?

I think it is 'execution of a C program'.


What is execution of program?

Exec. Of program is the compilation of document or the run of a type program.


What are break and continue statement in c language?

Break is used to exit the closest loop. Continue will cause the program to go to the beginning of the loop. for(int x=0;x<10;x++) { //continue; for(int y=0;y<10;y++) { break; } } The break statement causes the inner loop to stop at the first iteration. If the continue statement was uncommented, the inner loop would never be executed because the program would jump back to the beginning(until x = 10 of course).


What is persistence in oops explain with example?

The phenomenon where the object outlives the program execution time & exists between execution of a program is known as persistance