* a) HTTP.
CORRETO. O HTTP 1.1 é persistente (mantem a conexão aberta) mas não mantém estado. Cada requisição é tratada como uma nova requisição. Para superar essa limitação usa-se cookies.
* b) FTP.
ERRADO. Você permanece conectado durate a sessão e seus comandos anteriores são sempre lembrados na mesma sessão
* c) SMTP.
ERRADO. Quando você permanece conectado ao servidor de email, suas ações são lembradas na mesma sessão.
* d) DHCP.
ERRADO. O DHCP lembra para quem foi feito leasings de IPs e a cada nova solicitação ele tem como verificar o estado atual de sua base.
* e) NFS.
CORRETO. Concordo com o colega abaixo. Vejam:
The NFS protocol was intended to be as stateless as possible. That is, a server should not need to maintain any protocol state information about any of its clients in order to function correctly.
Fonte: http://www.ietf.org/rfc/rfc1094.txt
Mas eu ainda assim iria de HTTP. Praticando questões vocês verão que esse bizu de HTTP persistente/stateless é frequente em várias provas de todas as bancas. Portanto, "Don't Blame the Player Blame the Game "
a-
In computing, a stateless protocol is a communications protocol in which no session information is retained by the receiver, usually a server. A stateless protocol does not require the server to retain session information or status about each communicating partner for the duration of multiple requests. In contrast, a protocol that requires keeping of the internal state on the server is known as a stateful protocol. A TCP connection-oriented session is a stateful connection because both systems maintain information about the session itself during its life. Examples of stateless protocols include the Internet Protocol (IP), which is the foundation for the Internet, and the Hypertext Transfer Protocol (HTTP), which is the foundation of data communication for the World Wide Web.
https://en.wikipedia.org/wiki/Stateless_protocol