34.7k views
5 votes
What does the SPARQL 1.1 Update Language provide?

a) Data Deletion
b) Data Insertion
c) Data Modification
d) Data Querying

User Oblivion
by
7.9k points

1 Answer

4 votes

Final answer:

The SPARQL 1.1 Update Language provides data deletion, data insertion, data modification, and data querying on RDF datasets.

Step-by-step explanation:

The SPARQL 1.1 Update Language provides several capabilities for working with RDF data. It enables data deletion, data insertion, data modification, and data querying on RDF datasets.

For data deletion, SPARQL Update provides the DELETE clause that allows you to remove specific triples or entire graphs from the dataset.

For data insertion, SPARQL Update provides the INSERT clause that allows you to add new triples or graphs to the dataset.

For data modification, SPARQL Update provides the DELETE/INSERT clause that allows you to modify existing triples in the dataset.

Lastly, SPARQL Update also provides the SELECT clause, which allows you to query the RDF dataset to retrieve specific information.

User Hzane
by
8.4k points