question
stringlengths
9
150
query
stringlengths
109
692
dataset-id
stringclasses
12 values
who is the governer of New Castile?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE {?uri prop:order res:Governorate_of_New_Castile }
lcquad
Does MSX BASIC have a license of microsoft?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> ASK WHERE { res:MSX_BASIC prop:license res:Microsoft }
lcquad
How many teams have someone playing at the defenceman position?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:position <http://dbpedia.org/resource/Defenceman> . ?x onto:team ?uri . ?uri rdf:type onto:SportsTeam}
lcquad
List all the teams which have someone who played their first game for the Yankees?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:debutteam res:New_York_Yankees . ?x onto:team ?uri . }
lcquad
Cricket is played by which countries' citizens?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:occupation res:Cricket . ?x onto:stateOfOrigin ?uri . }
lcquad
Which religion is followed by the PM who was served by Chea Sim?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Chea_Sim prop:primeminister ?x . ?x onto:religion ?uri . }
lcquad
Name some shows similar to the one whose theme song is made by Murray Gold.
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:themeMusicComposer <http://dbpedia.org/resource/Murray_Gold> . ?uri onto:related ?x . ?uri rdf:type onto:TelevisionShow}
lcquad
What is the constituency of the people who died in Lampedusa?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:deathPlace <http://dbpedia.org/resource/Lampedusa> . ?x prop:constituency ?uri . ?x rdf:type onto:Person}
lcquad
Who are the relatives of the character after which Quagmire's Quagmire was made?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:subsequentWork <http://dbpedia.org/resource/Quagmire's_Quagmire> . ?uri onto:relative ?x . }
lcquad
Name the driver who was at pole in 1997 Canadian Grand Prix and also 1994 Spanish Grand Prix ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:1997_Canadian_Grand_Prix prop:poleDriver ?uri. res:1994_Spanish_Grand_Prix onto:poleDriver ?uri}
lcquad
Which fictional character portrayed by Roger barton has Darth Vader as family member ?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri prop:family <http://dbpedia.org/resource/Darth_Vader> . ?uri prop:portrayer <http://dbpedia.org/resource/Roger_Barton_(film_editor)> . ?uri ...
lcquad
Which band was left by Kevin Jonas?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:formerBandMember <http://dbpedia.org/resource/Kevin_Jonas> . ?uri rdf:type onto:Band}
lcquad
What is the place of death of the gymnast who was the silver medalist at the 1956 Summer Olympics Men's rings ?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Gymnastics_at_the_1956_Summer_Olympics_–_Men's_rings> onto:silverMedalist ?x . ?x prop:placeOfDeath ?uri . }
lcquad
Name the narrators of the album which has been narrated by Alan Thicke ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { ?x prop:narrated res:Alan_Thicke . ?x prop:narrated ?uri . }
lcquad
Whose children died in North Bend, Ohio?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:deathPlace <http://dbpedia.org/resource/North_Bend,_Ohio> . ?uri onto:child ?x . }
lcquad
Name the presenter of Shirley Temple's Storybook ?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Shirley_Temple's_Storybook> prop:presenter ?uri }
lcquad
What is the place of birth of the stars of Auto Shankar ?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Auto_Shankar_(film)> prop:starring ?x . ?x onto:birthPlace ?uri . }
lcquad
Name the television show created by CE Webber and also has actor named Companion?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:starring <http://dbpedia.org/resource/Companion_(Doctor_Who)> . ?uri onto:creator <http://dbpedia.org/resource/C._E._Webber> . ?uri rdf:type onto:TelevisionShow}
lcquad
Give me the characters who last appeared in Star Wars Episode 3
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE {?uri prop:last res:Star_Wars:_Episode_III_–_Revenge_of_the_Sith }
lcquad
How many awards have been awarded to people who are buried in Glendale, California?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:restingPlace <http://dbpedia.org/resource/Glendale,_California> . ?x onto:award ?uri . }
lcquad
Count the number of tenants whose one of the tenant is Toronto Phantoms ?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:tenant <http://dbpedia.org/resource/Toronto_Phantoms> . ?x onto:tenant ?uri }
lcquad
In which war did the units garrisoned at Turin fight?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:garrison res:Turin . ?x onto:battle ?uri . }
lcquad
Which software uses GTK+ as programming language?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri prop:programmingLanguage <http://dbpedia.org/resource/GTK+> . ?uri rdf:type onto:Software}
lcquad
Producers of what have died in Mississippi?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:deathPlace res:Mississippi . ?uri onto:producer ?x . }
lcquad
Where is the birthplace of Ferrel Harris ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Ferrel_Harris prop:birthplace ?uri }
lcquad
Did Stan Lee write the Daredevils?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> ASK WHERE { res:The_Daredevils prop:writers res:Stan_Lee }
lcquad
Which sports exist in the universities whose president is Emanuel de Guzman?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:president <http://dbpedia.org/resource/Emanuel_de_Guzman> . ?x onto:sport ?uri . ?x rdf:type onto:University}
lcquad
How many scientists are known for the Manhatten Project?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:knownFor <http://dbpedia.org/resource/Manhattan_Project> . ?uri rdf:type onto:Scientist}
lcquad
Who designed the stadiums which have been rented by Oakland athletics?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:tenant <http://dbpedia.org/resource/Oakland_Athletics> . ?x prop:architect ?uri . ?x rdf:type onto:Stadium}
lcquad
Who were the producers of the tenderfoot?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Tenderfoot_(miniseries)> onto:producer ?uri }
lcquad
Name the route start of Saint Petersburg Moscow Railway ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Saint_Petersburg_–_Moscow_Railway onto:routeStart ?uri }
lcquad
Name the sport league of Hampton Roads Rhinos ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Hampton_Roads_Rhinos prop:league ?uri }
lcquad
How many Thesaban towns are there?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:settlementType <http://dbpedia.org/resource/Thesaban> . ?uri rdf:type onto:Town}
lcquad
Name all the broadcast area of the TV stations which has Rodrigues as one of the broadcast area ?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:broadcastArea <http://dbpedia.org/resource/Rodrigues> . ?x prop:broadcastArea ?uri . ?x rdf:type onto:TelevisionStation}
lcquad
Which share holder of outlook is also the content license of the MSX Basics ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:MSX_BASIC prop:license ?uri. res:Outlook_on_the_web prop:owner ?uri}
lcquad
Name the shows whose theme was composed by a band in which Jay Lane used to be?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:formerBandMember <http://dbpedia.org/resource/Jay_Lane> . ?uri prop:themeMusicComposer ?x . ?uri rdf:type onto:TelevisionShow}
lcquad
Name the office holder with predecessor as Mark Latham and partner Tim Mathieson ?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri prop:predecessor <http://dbpedia.org/resource/Mark_Latham> . ?uri onto:partner <http://dbpedia.org/resource/Tim_Mathieson> . ?uri rdf:type o...
lcquad
Which newspaper owned by Schibsted is published in Swedish ?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri prop:language <http://dbpedia.org/resource/Swedish_language> . ?uri prop:owners <http://dbpedia.org/resource/Schibsted> . ?uri rdf:type onto...
lcquad
Was Yabanc Damat first aired in UAE?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> ASK WHERE { res:Yabancı_Damat prop:firstAired res:United_Arab_Emirates }
lcquad
How many other people are in a band with Robert de Niro?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:currentMembers <http://dbpedia.org/resource/Robert_De_Niro> . ?x onto:bandMember ?uri . ?uri rdf:type onto:Person}
lcquad
Which river goes through cohoes, NY
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Cohoes,_New_York> onto:river ?uri }
lcquad
List the software which uses Microsoft Windows as their operating system ?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:operatingSystem <http://dbpedia.org/resource/Microsoft_Windows> . ?uri rdf:type onto:Software}
lcquad
What all has been created by Jerry Siegel?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE {?uri prop:creators res:Jerry_Siegel }
lcquad
What is the common party of the Manthena Venkata Raju and B. Shiva Rao?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Manthena_Venkata_Raju onto:party ?uri. res:B._Shiva_Rao prop:party ?uri}
lcquad
Is Philosophy the academic discipline of Think (journal)?
PREFIX onto: <http://dbpedia.org/ontology/> ASK WHERE { <http://dbpedia.org/resource/Think_(journal)> onto:academicDiscipline <http://dbpedia.org/resource/Philosophy> }
lcquad
List the country of Tokaj wine region ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Tokaj_wine_region prop:country ?uri }
lcquad
Who all were venerated in Islam?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:veneratedIn <http://dbpedia.org/resource/Islam> . }
lcquad
Which country has outflow of Lake Uniamsi and inflows of the Cahora Bassa?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Lake_Uniamési prop:outflow ?uri. res:Cahora_Bassa prop:inflow ?uri}
lcquad
How many items belong to the Science Fiction genre?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:genre <http://dbpedia.org/resource/Science_fiction> . }
lcquad
For what is Abhijit Kunte known ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Abhijit_Kunte prop:knownFor ?uri }
lcquad
Who is the author of Karakuri Dji Ultimo ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Karakuri_Dôji_Ultimo prop:author ?uri }
lcquad
How many shows belong to the networks one of whose sister station is BBC News?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:sisterNames <http://dbpedia.org/resource/BBC_News_(TV_channel)> . ?uri onto:network ?x . ?uri rdf:type onto:TelevisionShow}
lcquad
Which spouse of Ptolemy XIV had a mother named Ptolemy XII auletes ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:parent res:Ptolemy_XII_Auletes . ?uri onto:spouse res:Ptolemy_XIV_of_Egypt . }
lcquad
What is the mascot of Galatasaray Handball Team ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Galatasaray_Handball_Team prop:mascot ?uri }
lcquad
Name some dishes made with flowering plants.
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:division <http://dbpedia.org/resource/Flowering_plant> . ?uri onto:ingredient ?x . ?uri rdf:type onto:Food}
lcquad
Whose artworks are in Sao Paulo Museum of Art?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:museum <http://dbpedia.org/resource/São_Paulo_Museum_of_Art> . ?x prop:artist ?uri . ?x rdf:type onto:Artwork}
lcquad
Which country are the players of the Atletico Petroleos de Luanda from?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:club <http://dbpedia.org/resource/Atlético_Petróleos_de_Luanda_(handball)> . ?x onto:nationality ?uri . ?x rdf:type onto:Athlete}
lcquad
What is the ethnicity of the people working for the Philippines house of representatives?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:occupation <http://dbpedia.org/resource/House_of_Representatives_of_the_Philippines> . ?x onto:ethnicity ?uri . ?x rdf:type onto:Person}
lcquad
Where was Ganefo hosted?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:GANEFO prop:hostCity ?uri }
lcquad
What is the religion of the governors whose office is the Bank of Thailand?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:office <http://dbpedia.org/resource/Bank_of_Thailand> . ?x onto:religion ?uri . ?x rdf:type onto:Governor}
lcquad
Count everyone who was in a youthclub chaired by Josep Maria Bartomeu ?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:chairman <http://dbpedia.org/resource/Josep_Maria_Bartomeu> . ?uri prop:youthclubs ?x . }
lcquad
What is the common branch of military of Edward Joseph Schwartz and John Tower ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Edward_Joseph_Schwartz prop:branch ?uri. res:John_Tower onto:militaryBranch ?uri}
lcquad
Which TNT show has Christopher Franke as artist?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri prop:artist <http://dbpedia.org/resource/Christopher_Franke> . ?uri prop:network <http://dbpedia.org/resource/TNT_(TV_channel)> . ?uri rdf:t...
lcquad
What would be a common border of Siberia and the shimsa plateau?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Shimōsa_Plateau onto:border ?uri. res:Siberia onto:border ?uri . }
lcquad
The Information: A History, a Theory, a Flood is a work of Isaac Newton?
PREFIX onto: <http://dbpedia.org/ontology/> ASK WHERE { <http://dbpedia.org/resource/The_Information:_A_History,_a_Theory,_a_Flood> onto:previousWork <http://dbpedia.org/resource/Isaac_Newton> }
lcquad
List all the locations of the companies whose are also located in Rancho Cucamonga, California ?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:locationCountry <http://dbpedia.org/resource/Rancho_Cucamonga,_California> . ?x onto:locationCountry ?uri . ?x rdf:type onto:Company}
lcquad
Name the university with affiliations as Graham Holdings Company and campus at Indiana?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri prop:affiliations <http://dbpedia.org/resource/Graham_Holdings_Company> . ?uri onto:campus <http://dbpedia.org/resource/Indiana> . ?uri rdf:...
lcquad
Greek writers have won which award?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:ethnicity <http://dbpedia.org/resource/Greeks> . ?x onto:award ?uri . ?x rdf:type onto:Writer}
lcquad
In which nation does the league take place where C.D. Primeiro de Agosto play?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/C.D._Primeiro_de_Agosto_(basketball)> onto:league ?x . ?x onto:country ?uri . ?x rdf:type onto:SportsLeague}
lcquad
Where are ethnic group located which speak Nebraskan?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Nebraska> onto:language ?x . ?x prop:region ?uri . ?x rdf:type onto:EthnicGroup}
lcquad
In which war did Roh Tae Woo and Lee Leffingwell fight?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Roh_Tae-woo> onto:battle ?uri. <http://dbpedia.org/resource/Lee_Leffingwell> onto:battle ?uri . }
lcquad
For which reasons have the ones born in Edinburgh, died?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:placeOfBirth res:Edinburgh . ?x onto:deathCause ?uri . }
lcquad
What company developed Mac OS 9 and also brought Tiny Tower to the market?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Mac_OS_9 onto:developer ?uri. res:Tiny_Tower prop:distributor ?uri . }
lcquad
What is the largest city of the country which have an assembly of Plymouth Savoy?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Plymouth_Savoy onto:assembly ?x . ?x onto:largestCity ?uri . }
lcquad
What is the religion of the ethnic group to which Clara Ng belongs?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Clara_Ng> onto:ethnicity ?x . ?x onto:religion ?uri . ?x rdf:type onto:EthnicGroup}
lcquad
What is the affiliation of Vanderbilt University Medical Center ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Vanderbilt_University_Medical_Center prop:affiliation ?uri }
lcquad
How many scientist became famous for the battle of Occupation of Japan?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:battle <http://dbpedia.org/resource/Occupation_of_Japan> . ?uri prop:knownFor ?x . ?uri rdf:type onto:Scientist}
lcquad
Did Steve Sampson manage a club of Santa Clara university
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> ASK WHERE { res:Steve_Sampson onto:managerClub res:Santa_Clara_University }
lcquad
In which municipalities does the NYC housing authority own buildings?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:owningOrganisation <http://dbpedia.org/resource/New_York_City_Housing_Authority> . ?x onto:municipality ?uri . ?x rdf:type onto:Building}
lcquad
What have been made in the state whose capital is Boston?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:capital res:Boston . ?uri onto:location ?x . }
lcquad
Name the military conflict whose commander was Colin Powell and took place in israel ?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:commander <http://dbpedia.org/resource/Colin_Powell> . ?uri onto:place <http://dbpedia.org/resource/Israel> . ?uri rdf:type onto:MilitaryConflict}
lcquad
Where do the judge advocate general corps live?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { ?x prop:rank <http://dbpedia.org/resource/Judge_Advocate_General's_Corps> . ?x prop:residence ?uri . }
lcquad
List the universities with athletics NCAA Division I Football Bowl Subdivision ?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri prop:athletics <http://dbpedia.org/resource/NCAA_Division_I_Football_Bowl_Subdivision> . ?uri rdf:type onto:University}
lcquad
Who is the builder of the Stadium of Costa Rica women's national football team?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Costa_Rica_women's_national_football_team> onto:stadium ?x . ?x onto:builder ?uri . ?x rdf:type onto:Stadium}
lcquad
How many sitcoms were produced by the company whose predecessor was the Desilu Productions
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:predecessor <http://dbpedia.org/resource/Desilu_Productions> . ?uri prop:company ?x . ?uri rdf:type onto:TelevisionShow}
lcquad
What city is the residence of Cheryl Teigs?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Cheryl_Tiegs onto:residence ?uri }
lcquad
Which basketball team's coach is Kurt Rambis?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:coach res:Kurt_Rambis }
lcquad
Who is the successor of Quest Software ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Quest_Software prop:successor ?uri }
lcquad
What are some other destinations covered by the airlines whose flights go to the Mediterranean sea?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:destinations <http://dbpedia.org/resource/Mediterranean_Sea> . ?x onto:destination ?uri . ?x rdf:type onto:Airline}
lcquad
Where is the assembly of Caterpillar 797 ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Caterpillar_797 onto:assembly ?uri }
lcquad
What is the official residence of the senator who is the deputy of Everett Dirksen?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Everett_Dirksen> prop:deputy ?x . ?x onto:residence ?uri . ?x rdf:type onto:Senator}
lcquad
What are the organisation founded in Texas and Dallas?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?uri onto:foundationPlace <http://dbpedia.org/resource/Texas> . ?uri onto:foundationPlace <http://dbpedia.org/resource/Dallas> . ?uri rdf:type onto:Organisation}
lcquad
Name the television show whose voice is given by April Stewart and theme music composer is Primus (band)?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri prop:voices <http://dbpedia.org/resource/April_Stewart> . ?uri prop:themeMusicComposer <http://dbpedia.org/resource/Primus_(band)> . ?uri rd...
lcquad
Name the constituency of Jonas Gahr Stre ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Jonas_Gahr_Støre prop:constituency ?uri }
lcquad
Which players have represented Los Angeles Angels of Anaheim?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:team <http://dbpedia.org/resource/Los_Angeles_Angels_of_Anaheim> . ?uri rdf:type onto:BaseballPlayer}
lcquad
Where did Goran Cengic die?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Goran_Čengić prop:deathPlace ?uri }
lcquad
What is the profession of Claiborne Pell ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Claiborne_Pell onto:profession ?uri }
lcquad
Which former team of the Harry Parker (baseball) is the debut team of the Carl Sitton?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Harry_Parker_(baseball)> onto:formerTeam ?uri. <http://dbpedia.org/resource/Carl_Sitton> prop:debutteam ?uri}
lcquad
What are the county seats of the region which operates the Boeing Field?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Boeing_Field> onto:operator ?x . ?x onto:countySeat ?uri . ?x rdf:type onto:Region}
lcquad
Where is the hometown of A Bartlett Giamatti?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:A._Bartlett_Giamatti onto:hometown ?uri }
lcquad