Explanation: 1. SELECT ?nom ?prenom: specifies that we want to display the values of the ?nom and ?prenom variables. 2. WHERE { ... }: defines the conditions the data must meet to be included in the results.
SELECT ?nom ?prenom
?nom
?prenom
WHERE { ... }