program the following exercises using JAVA and JENA API:
SPARQL endpoint to be queried: https://services.data.gov.uk/education/sparql
QUERY: What are the school’s names that belong to the “local authority district” 00AA?
ANSWER:
PREFIX sch-ont: <https://education.data.gov.uk/def/school/>
SELECT ?name WHERE {
?school a sch-ont:School.
?school sch-ont:establishmentName ?name.
?school sch-ont:districtAdministrative <https://statistics.data.gov.uk/id/local-authority-district/00AA>.
}
The previous code is in SPARQL.Make a JAVA application that displays the answer in the console.
Eclipse SDK Version: 4.2.0