Signal Handling Question: Another signal that cannot be caught is: a) SIGPIPE b) SIGHUP c) SIGSTOP d) SIGUSR1 Linux Signal Handling Interview QuestionAnswer: c) SIGSTOP Previous QuestionNext QuestionWhat will happen as we press the "Ctrl+c" key after running this program? #include<stdio.h> #include<signal.h> void response (int); void response (int sig_no) { printf("Linuxn"); } int main() { signal(SIGINT,response); while(1){ printf("googlen"); sleep(1); } return 0; } a) the string "Linux" will print b) the process will be terminated after printing the string "Linux" c) the process will terminate d) none of the mentionedWhen real interval timer expires which signal is generated? a) SIGINT b) SIGCHLD c) SIGKILL d) SIGALRM