Which two statements are true about RESTful web services?
A.
They can be both stateful and stateless.
B.
They support Remote Procedure Call (RPC) and message-Oriented Middleware (MOM)
integration styles.
C.
They are independent of the transport protocol.
D.
They support the use of AJAX in web applications.
E.
They are often similar than their Simple Object Access protocol (SOAP) equivalents.
c is wrong . SOAP is independent of the transport protocol.
D E is correct
A is wrong as REStful service is stateless by default.RESTful web service can be made stateful, by sending back and forth a session-id, same goes with SOAP web service.
B is wrong – This is a feature for SOAP web services.
C is wrong -Its depend on HTTP
Correct Ans : DE
E – typo mistake , it should be simpler **