21.6k views
0 votes
PLS HURRY
Look at the image below

PLS HURRY Look at the image below-example-1

1 Answer

2 votes

Answer:


\large\boxed{\text{A. Press the Control key together with the C key.}}

Step-by-step explanation:

When you have an infinite program running, say


\texttt{while 1==1:}


\texttt{print(

(which will run forever, since 1 is always equal 1)

You can press "Control C" to terminate the program.

Most bash's use Control+C as the terminating process, however there is also Control+Z which sends a protocol named SIGTSTP which temporarily "sleeps" the program - this can be undone. However, with Control+C, the program is stopped unless you start it from the beginning again.

Hope this helped!

User Mariusz Nowak
by
6.6k points