question
stringlengths
9
150
query
stringlengths
63
685
dataset-id
stringclasses
12 values
Who is the coach of Ankara's ice hockey team?
SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/city> <http://dbpedia.org/resource/Ankara> . ?x <http://dbpedia.org/ontology/league> <http://dbpedia.org/resource/Turkish_Ice_Hockey_First_League> . ?x <http://dbpedia.org/ontology/coach> ?uri . }
qald-6
Who is the son of Sonny and Cher?
SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/parent> <http://dbpedia.org/resource/Cher> . ?uri <http://dbpedia.org/ontology/parent> <http://dbpedia.org/resource/Sonny_Bono> . }
qald-6
What are the five boroughs of New York?
SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/governmentType> <http://dbpedia.org/resource/Borough_(New_York_City)> . }
qald-6
Show me Hemingway's autobiography.
SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/author> <http://dbpedia.org/resource/Ernest_Hemingway> . ?uri <http://dbpedia.org/ontology/literaryGenre> <http://dbpedia.org/resource/Autobiography> . }
qald-6
What kind of music did Lou Reed play?
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lou_Reed> <http://dbpedia.org/ontology/genre> ?uri . }
qald-6
In which city does Sylvester Stallone live?
SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/City> . <http://dbpedia.org/resource/Sylvester_Stallone> <http://dbpedia.org/ontology/residence> ?uri . }
qald-6
Who was Vincent van Gogh inspired by?
SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/influenced> <http://dbpedia.org/resource/Vincent_van_Gogh> . }
qald-6
What are the names of the Teenage Mutant Ninja Turtles?
SELECT DISTINCT ?s WHERE { <http://dbpedia.org/resource/Teenage_Mutant_Ninja_Turtles> <http://dbpedia.org/property/members> ?x . ?x <http://dbpedia.org/property/characterName> ?s . }
qald-6
What are the zodiac signs?
SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/element> <http://dbpedia.org/resource/Astrological_sign> . }
qald-6
What languages do they speak in Pakistan?
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Pakistan> <http://dbpedia.org/ontology/language> ?uri . }
qald-6
Who became president after JFK died?
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/John_F._Kennedy> <http://dbpedia.org/property/presidentEnd> ?x . ?uri <http://dbpedia.org/property/presidentStart> ?x . }
qald-6
In what city is the Heineken brewery?
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Heineken> <http://dbpedia.org/ontology/manufacturer> ?x . ?x <http://dbpedia.org/ontology/locationCity> ?uri . }
qald-6
What is Elon Musk famous for?
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Elon_Musk> <http://dbpedia.org/ontology/knownFor> ?uri . }
qald-6
What is Batman's real name?
SELECT DISTINCT ?s WHERE { <http://dbpedia.org/resource/Batman> <http://dbpedia.org/property/alterEgo> ?s . }
qald-6
Are there other solar systems?
ask where { ?proj text:"other" . ?proj text:"solar systems" . }
qald-7
Did George Washington want to be a teacher?
PREFIX res: <http://dbpedia.org/resource/> ask where { res:George_Washington text:"want" . res:George_Washington text:"be" . res:George_Washington text:"teacher" . }
qald-7
Does Johns Hopkins Bayview Medical Center have a burn victim unit?
PREFIX res: <http://dbpedia.org/resource/> ask where { res:Johns_Hopkins_Bayview_Medical_Center text:"burn victim unit" . }
qald-7
Give me all greek gods.
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX owl: <http://www.w3.org/2002/07/owl#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type owl:Thing . ?uri text:"greek god" . }
qald-7
Give me the names of all of the people who signed the American Declaration of Independence.
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX dbo: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:person . ?uri text:"signed" . { ?uri text:"American Declaration of Independence" . } UNION { ?uri text:"Declaration of Independence" . } }
qald-7
The name of which ocean refers to Atlas of Greek mythology?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX owl: <http://www.w3.org/2002/07/owl#> PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> SELECT DISTINCT ?uri WHERE { ?uri rdf:type owl:Thing . ?uri dct:subject dbc:Oceans . ?uri text:"refers" . ?uri text:"Atlas" ....
qald-7
Which star is about 4.24 light-years from the Sun.
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX dbo: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Star . ?uri text:"star" . ?uri text:"4.24 light-years" . ?uri text:"Sun" . }
qald-7
Which transmission does the German car with a top speed of 407 km/h have?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX dbo: <http://dbpedia.org/ontology/> SELECT DISTINCT ?trans WHERE { ?uri rdf:type dbo:Automobile . ?uri dbo:transmission ?trans . ?uri text:"German" . ?uri text:"top speed" . ?uri text:"407 km/h" . }
qald-7
Which star's diameter is about 109 times that of Earth?
SELECT DISTINCT ?uri WHERE { ?uri text:"star" . ?uri text:"diameter" . ?uri text:"109 times" . ?uri text:"Earth" . }
qald-7
Which writer was involved in two successive plane crashes?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX dbo: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Writer . ?uri text:"two successive plane crashes" . }
qald-7
How many children did the person have that began their concerts with 'Hello, I'm Johnny Cash'?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX dbo: <http://dbpedia.org/ontology/> SELECT DISTINCT (COUNT(?child) AS ?count) WHERE { ?uri rdf:type dbo:Person . ?uri dbo:child ?child . ?uri text:"began" . ?uri text:"concerts" . ?uri text:"Hello" . ?uri text:"I'm Johnny Cash" . }
qald-7
What is the team size of the sport that is practiced by 250 million players in over 200 nations?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX dbo: <http://dbpedia.org/ontology/> select distinct ?size where { ?uri rdf:type dbo:Sport . ?uri dbo:teamSize ?size .?uri text:"250 million" . ?uri text:"players, " . ?uri text:"200" . ?uri text:"nations" . }
qald-7
Were there more than 1000 different species of non-avian dinosaurs?
ask where { ?proj text:"more" . ?proj text:"1000 different species" . ?proj text:"non-avian" . ?proj text:"dinosaur" . }
qald-7
Which indigenous language includes a large proportion of non-indigenous people?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX dbo: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Language . ?uri text:"includes a large proportion of non-indigenous people" . }
qald-7
Which animal is primarily responsible for the extinction of 33 species of birds?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX dbo: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Animal . ?uri text:"responsible" . ?uri text:"extinction" . ?uri text:"33 species" . ?uri text:"birds" . }
qald-7
Was the Earth formed about 4.54 billion years ago?
PREFIX res: <http://dbpedia.org/resource/> ask where { res:Earth text:"formed" . res:Earth text:"4.54 billion" . res:Earth text:"years" . }
qald-7
Which television series is about the survivors of a passenger jet crash on a tropical island?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX dbo: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:TelevisionShow . ?uri text:"survivors" . ?uri text:"passenger jet" . ?uri text:"crash" . ?uri text:"tropical island" . }
qald-7
In what present-day country did the Protestant Reformation begin?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX dbo: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Country . ?uri text:"Protestant Reformation" . ?uri text:"begin" . }
qald-7
Is Michael Jordan the MVP of all time?
ask where { ?proj text:"Michael Jordan" . ?proj text:"MVP of all time" . }
qald-7
Which company is a portmanteau of the words microcomputer and software?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX dbo: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Company . ?uri text:"portmanteau" . ?uri text:"words" . ?uri text:"microcomputer" . ?uri text:"software" . }
qald-7
What causes earthquakes?
SELECT DISTINCT ?uri WHERE { ?uri text:"causes earthquakes" . }
qald-7
Who was the first European to reach India by sea?
SELECT DISTINCT ?uri WHERE { ?uri text:"first European" . ?uri text:"reach India" . ?uri text:"by sea" . }
qald-7
For which video game was an Apple II version planned but never released.
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX dbo: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:VideoGame . ?uri text:"Apple II version" . ?uri text:"planned" . ?uri text:"never released" . }
qald-7
Is an eggshell made of Calcium carbonate?
PREFIX res: <http://dbpedia.org/resource/> ask where { { res:Eggshell text:"made of" . } UNION { res:Eggshell text:"contain" . } res:Eggshell text:"Calcium carbonate" . }
qald-7
What is California's state bird?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX dbo: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Bird . ?uri text:"California" . ?uri text:"state bird" . }
qald-7
What is the worldwide best-selling album of all time?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX dbo: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Album . ?uri text:"best-selling album of all time" . ?uri text:"worldwide" . }
qald-7
What is the alias of the band which member was ranked the 17th greatest guitarist of all time by a Guitar World magazine reader's poll in 2012?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX dbo: <http://dbpedia.org/ontology/> SELECT DISTINCT ?alias WHERE { ?uri rdf:type dbo:Band . ?uri dbo:alias ?alias . ?uri dbo:bandMember ?member . ?member text:"17th greatest guitarist of all time" . ?member text:"Guitar World magazine" . ?member text:"rea...
qald-7
What is the best-selling book of all time?
SELECT DISTINCT ?uri WHERE { ?uri text:"best-selling book of all time" . }
qald-7
What is the maximum depth of the lake with the alleged sighted monster Nessie?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX dbo: <http://dbpedia.org/ontology/> SELECT DISTINCT ?depth WHERE { ?uri rdf:type dbo:Lake . ?uri dbo:maximumDepth ?depth . ?uri text:"allege" . ?uri text:"sight" . ?uri text:"monster" . ?uri text:"Nessie" . }
qald-7
How many bits does the CPU of the device have that IGN named the 9th greatest video game console of all time?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbp: <http://dbpedia.org/property/> SELECT DISTINCT ?bits WHERE { ?uri rdf:type dbo:Device . ?uri dbp:cpu ?bits . ?uri text:"IGN" . ?uri text:"name" . ?uri text:"9th greatest video game console of all time" . }
qald-7
What is created by tanning animal rawhide?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX owl: <http://www.w3.org/2002/07/owl#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type owl:Thing . ?uri text:"tanning" . ?uri text:"animal" . ?uri text:"rawhide" . }
qald-7
What is the capital of the state whose flag reflects Hispanic and Native American influences?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX dbo: <http://dbpedia.org/ontology/> SELECT DISTINCT ?capital WHERE { ?uri rdf:type dbo:Place . ?uri dbo:capital ?capital . ?uri text:"flag" . ?uri text:"Hispanic" . ?uri text:"Native American" . ?uri text:"influence" . }
qald-7
What causes the sound of thunder?
SELECT DISTINCT ?uri WHERE { ?uri text:"causes" . ?uri text:"sound" . ?uri text:"thunder" . }
qald-7
Which animal is the largest flying land bird in the western hemisphere?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX dbo: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Animal . ?uri text:"largest" . ?uri text:"flying" . ?uri text:"land bird" . ?uri text:"Western Hemisphere" . }
qald-7
What is the total population of the town that port wine is named after?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX dbo: <http://dbpedia.org/ontology/> SELECT DISTINCT ?proj WHERE { ?uri rdf:type dbo:Location. ?uri dbo:populationTotal ?proj . ?uri text:"port wine" . ?uri text:"named" . }
qald-7
Give me the completion date of the ship sunken in the North Atlantic Ocean in 1912 and rediscovered in 1985.
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX dbo: <http://dbpedia.org/ontology/> SELECT DISTINCT ?date WHERE { ?uri rdf:type dbo:Ship. ?uri dbo:completionDate ?date . ?uri text:"sunken" . ?uri text:"North Atlantic Ocean" . ?uri text:"1912" . ?uri text:"rediscovered" . ?uri text:"1985" . }
qald-7
When did the person who worked on short satirical poems together with Goethe die?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX dbo: <http://dbpedia.org/ontology/> SELECT DISTINCT ?date WHERE { ?uri rdf:type dbo:Person . ?uri dbo:deathDate ?date . ?uri text:"work" . ?uri text:"short satirical poem" . ?uri text:"Goethe" . }
qald-7
Which food's name derived from the verb 'empanar'?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX dbo: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Food . ?uri text:"name" . ?uri text:"derived" . ?uri text:"verb" . ?uri text:"empanar" . }
qald-7
When was the leader of the first Antarctic expedition to reach the South Pole born?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX dbo: <http://dbpedia.org/ontology/> SELECT DISTINCT ?date WHERE { ?uri rdf:type dbo:Person . ?uri dbo:birthDate ?date . ?uri text:"leader" . ?uri text:"first" . ?uri text:"Antarctic expedition" . ?uri text:"reach" . ?uri text:"South Pole" . }
qald-7
Which urban fire in the United States burned from October 8 to October 10, 1871?
PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> SELECT DISTINCT ?uri WHERE { ?uri dct:subject dbc:Urban_fires_in_the_United_States . ?uri text:"Sunday" . ?uri text:"October 8" . ?uri text:"Tuesday" . ?uri text:"October 10" . ?uri text:"1871" . }
qald-7
What is the official name of the host city of the Summer Olympic Games in 1932 and 1984?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbp: <http://dbpedia.org/property/> SELECT DISTINCT ?name WHERE { ?uri rdf:type dbo:City . ?uri dbp:officialName ?name . ?uri text:"host" . ?uri text:"Summer Olympic Games" . ?uri text:"1932" . ?uri text:"1984" ....
qald-7
When was the band found whose performance in 1998 was documented by Wim Wenders?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX dbo: <http://dbpedia.org/ontology/> SELECT DISTINCT ?date WHERE { ?uri rdf:type dbo:Band . ?uri dbo:activeYearsStartYear ?date . ?uri text:"performance" . ?uri text:"1998" . ?uri text:"document" . ?uri text:"Wim Wenders" . }
qald-7
Which battle in 1757 marked the beginning of the expansion of the British Empire in Asia?
PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri dbo:date ?date . ?uri rdf:type dbo:MilitaryConflict . FILTER(year(?date)=1757) ?uri text:"begin" . ?uri text:"expand" . ?uri text:"British Empire" . ?uri text:"Asia" . }
qald-7
Which Hindu deity is also known as 'Vinayaka'?
SELECT DISTINCT ?uri WHERE { ?uri text:"Hindu deity" . ?uri text:"known as" . ?uri text:"Vinayaka" . }
qald-7
Which newspaper had an average daily circulation of 189000 copies in August 2013?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX dbo: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Newspaper . ?uri text:"average daily circulation" . ?uri text:"189000 copies" . ?uri text:"August 2013" . }
qald-7
Which tiger reserve in India shares the north-eastern boundary with Nepal?
PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> SELECT DISTINCT ?uri WHERE { ?uri dct:subject dbc:Tiger_reserves_of_India . ?uri text:"shares" . ?uri text:"north-eastern boundary" . ?uri text:"Nepal" . }
qald-7
Who was the first deaf-blind person to receive a bachelor of arts degree?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX dbo: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Person . ?uri text:"first deaf-blind" . ?uri text:"receive" . ?uri text:"bachelor of arts degree" . }
qald-7
Who was the first man to walk on the moon?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX dbo: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Person . ?uri text:"first man" . ?uri text:"walk" . ?uri text:"moon" . }
qald-7
How many floors does the tower on the Champ de Mars in Paris have?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX dbo: <http://dbpedia.org/ontology/> SELECT DISTINCT ?proj WHERE { ?uri rdf:type dbo:Building . ?uri dbo:floorCount ?proj . ?uri text:"tower" . ?uri text:"Champ de Mars" . ?uri text:"Paris" .}
qald-7
The net worth of which actor is estimated by Forbes magazine to be $350 million?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX dbo: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Actor . ?uri text:"net worth" . ?uri text:"estimated" . ?uri text:"$350 million" . ?uri text:"Forbes magazine" . }
qald-7
Are there any castles in the United States?
PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> ask where {?uri dct:subject dbc:Castles_in_the_United_States}
qald-7
Can you find frescoes in Crete?
PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX dbp: <http://dbpedia.org/property/> PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> ask where { ?uri dct:subject dbc:Minoan_frescos . ?uri dbp:museum ?museum . ?museum dbo:location db...
qald-7
Do Urdu and Persian have a common root?
PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> ask where { dbr:Urdu dbo:languageFamily ?uri . dbr:Persian_language dbo:languageFamily ?uri . }
qald-7
Does the Ford Motor Company have a manufacturing plant in Malaysia?
PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> ask where { ?uri dbo:assembly dbr:Malaysia . ?uri dbo:manufacturer dbr:Ford_Motor_Company . }
qald-7
How many years was the Ford Model T manufactured?
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#> PREFIX res: <http://dbpedia.org/resource/> PREFIX dbo: <http://dbpedia.org/ontology/> SELECT (year(xsd:date(?end))-year(xsd:date(?start)) AS ?years) WHERE { res:Ford_Model_T dbo:productionEndYear ?end. res:Ford_Model_T dbo:productionStartYear ?start. }
qald-7
Give me all American presidents in the last 20 years.
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX dbp: <http://dbpedia.org/property/> select distinct ?uri where { ?uri rdf:type dbo:Person . ?uri dct:subject dbc:Preside...
qald-7
Give me all gangsters from the prohibition era.
PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> select distinct ?uri where { ?uri dbo:occupation dbr:Gangster . ?uri dct:subject dbc:Prohibition-era_gangsters . }
qald-7
Give me all Seven Wonders of the Ancient World.
PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> select ?uri where { ?uri dct:subject dbc:Seven_Wonders_of_the_Ancient_World }
qald-7
Give me all chemical elements.
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX owl: <http://www.w3.org/2002/07/owl#> PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> select distinct ?uri where { ?uri rdf:type owl:Thing . ?uri dct:subject dbc:Chemical_elements . }
qald-7
How many rivers and lakes are in South Carolina?
PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> select (COUNT(distinct ?uri) as ?count) where { { ?uri dbo:location dbr:South_Caroli...
qald-7
How many states are in Mexico?
PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> select (count(?uri) as ?count) where { ?uri dbo:type dbr:States_of_Mexico }
qald-7
How many theories did Albert Einstein come up with?
PREFIX dbr: <http://dbpedia.org/resource/> PREFIX dbo: <http://dbpedia.org/ontology/> select (count(?uri) as ?count) where { dbr:Albert_Einstein dbo:knownFor ?uri}
qald-7
Is horse racing a sport?
PREFIX dbr: <http://dbpedia.org/resource/> PREFIX dbo: <http://dbpedia.org/ontology/> ask where { dbr:Horse_racing a dbo:Sport }
qald-7
Is Pluto really a planet?
PREFIX dbr: <http://dbpedia.org/resource/> PREFIX dbo: <http://dbpedia.org/ontology/> ask where { dbr:Pluto a dbo:Planet }
qald-7
Was Sigmund Freud married?
PREFIX dbr: <http://dbpedia.org/resource/> PREFIX dbo: <http://dbpedia.org/ontology/> ask where { dbr:Sigmund_Freud dbo:spouse ?uri }
qald-7
What form of government is found in South Africa?
PREFIX dbr: <http://dbpedia.org/resource/> PREFIX dbo: <http://dbpedia.org/ontology/> select ?uri where { dbr:South_Africa dbo:governmentType ?uri }
qald-7
What is the largest state in the United States?
PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX dbo: <http://dbpedia.org/ontology/> select ?uri where { ?uri dct:subject dbc:States_of_the_United_States. ?uri rdf:type dbo:AdministrativeRegion. ?uri dbo:areaTota...
qald-7
What is the longest river in the world?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX dbo: <http://dbpedia.org/ontology/> select ?uri where { ?uri rdf:type dbo:BodyOfWater . ?uri dbo:length ?length } ORDER BY DESC(?length) LIMIT 1
qald-7
Which building after the Burj Khalifa has the most floors?
PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX dbo: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Burj_Khalifa dbo:floorCount ?burj . ?uri rdf:type dbo:Building . ?uri dbo:floorCount ?proj . FILTER(?proj < ?burj) } ORDER BY DESC(?proj) LIMIT...
qald-7
What is the wavelength of indigo?
PREFIX dbr: <http://dbpedia.org/resource/> PREFIX dbo: <http://dbpedia.org/ontology/> select ?n where { dbr:Indigo dbo:wavelength ?n }
qald-7
What was the name of the famous battle in 1836 in San Antonio?
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> select ?uri where { ?uri rdf:type dbo:MilitaryConflict. ?uri dbo:place dbr:San_Antonio. ?uri dbo:date ?date. FILTER ( ?date > '1...
qald-7
What were the names of the three ships used by Columbus?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> select ?uri where { ?uri rdf:type dbo:Ship. ?uri dct:subject dbc:Christopher_Columbus. ?uri dct:subject dbc:Exploration_ships. ...
qald-7
What were the original 13 British colonies?
PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> select distinct ?uri where { ?uri dct:subject dbc:Former_British_colonies. ?uri dct:subject dbc:Thirteen_Colonies. }
qald-7
When did Muhammad die?
PREFIX res: <http://dbpedia.org/resource/> PREFIX dbo: <http://dbpedia.org/ontology/> select distinct ?date where { res:Muhammad dbo:deathDate ?date. }
qald-7
When was the De Beers company founded?
PREFIX res: <http://dbpedia.org/resource/> PREFIX dbo: <http://dbpedia.org/ontology/> select distinct ?date where { res:De_Beers dbo:foundingYear ?date. }
qald-7
When was John Adams born?
PREFIX res: <http://dbpedia.org/resource/> PREFIX dbo: <http://dbpedia.org/ontology/> select distinct ?date where { res:John_Adams dbo:birthDate ?date. }
qald-7
Which American presidents were in office during the Vietnam War?
PREFIX res: <http://dbpedia.org/resource/> PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> select distinct ?uri where { res:Vietnam_War dbo:commander ?uri . ?uri dct:subject dbc:Presidents_of_the_United_States . }
qald-7
Which city has the oldest running metro?
PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> select ?loc where { ?uri dbo:type dbr:Rapid_transit . ?uri dbo:openingYear ?date . ?uri dbo:location ?loc . ?loc rdf:type dbo:City . } ORDER BY ASC(?date) LIMIT 1
qald-7
Which holidays are celebrated around the world?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX dbo: <http://dbpedia.org/ontology/> select distinct ?uri where { ?uri rdf:type dbo:Holiday. }
qald-7
Who assassinated President McKinley?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> select distinct ?uri where { ?uri rdf:type dbo:Person . ?uri dct:subject dbc:American_assassins . ?uri dct:subject dbc:Assassi...
qald-7
Who discovered Pluto?
PREFIX dbr: <http://dbpedia.org/resource/> PREFIX dbo: <http://dbpedia.org/ontology/> select ?uri where { dbr:Pluto dbo:discoverer ?uri }
qald-7
Who killed Caesar?
PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> select distinct ?uri where { ?uri dct:subject dbc:Assassins_of_Julius_Caesar. }
qald-7
Who was buried in the Great Pyramid of Giza?
PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> select ?uri where { ?uri dbo:restingPlace dbr:Great_Pyramid_of_Giza . }
qald-7
Who was the first King of England?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX yago: <http://dbpedia.org/class/yago/> select distinct ?uri where { ?uri rdf:type dbo:Royalty. ?uri rdf:type yago:WikicatEnglishMonarchs . ?uri dbo:activeYearsStartYear ?date . } ORDER BY ASC(?date) OFFSET 0 LIMI...
qald-7
What was the final result of the War of the Roses?
PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> select distinct ?result where { ?uri dbo:isPartOfMilitaryConflict dbr:Wars_of_the_Roses. ?uri dbo:result ?result . ?uri dbo:date ?date } ORDER BY DESC(?date) OFFSET 0 LIMIT 1
qald-7
Who writes the Farmers' Almanac?
PREFIX dbp: <http://dbpedia.org/property/> select ?uri where { <http://dbpedia.org/resource/Farmers'_Almanac> dbp:editor ?uri. }
qald-7