Create, Read, Update, Delete is the correct answer.
Those actions are:
Create: Allows the client to create some new instances of variables and data structures at the server and initialize their values as kept at the server.
Read: Allows the client to retrieve (read) the current value of variables that exist at the server, storing a copy of the variables, structures, and values at the client.
Update: Allows the client to change (update) the value of variables that exist at the server.
Delete: Allows the client to delete from the server different instances of data variables.
Comments
Post a Comment