Question 1
Consider a simple web server using command prompt.
Filename - Hello.sh
#!/bin/bashwhile true; do echo -e "Today's date and time is \n\t $(date)" | nc -l localhost 3500;doneIf this program is executed in one terminal, and it is waiting for a request, then identify the client part that generates the request to this server.
