question
stringlengths
9
150
query
stringlengths
109
692
dataset-id
stringclasses
12 values
Which successor of Philippine Ports Authority is the state of origin of Ruben J. Villote ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Philippine_Ports_Authority onto:successor ?uri. res:Ruben_J._Villote onto:stateOfOrigin ?uri}
lcquad
What awards have been won by the executive producer of Timmy Time ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Timmy_Time onto:executiveProducer ?x . ?x onto:award ?uri . }
lcquad
Which american football team is owned by Mark davis and is located in O.co Colliseum ?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:owner <http://dbpedia.org/resource/Mark_Davis_(American_football)> . ?uri onto:locationCity <http://dbpedia.org/resource/O.co_Coliseum> . ?uri rdf:type onto:AmericanFootballTeam}
lcquad
The successor of Ulrich II, Count of East Frisia was born in what place?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ulrich_II,_Count_of_East_Frisia> prop:successor ?x . ?x prop:placeOfBirth ?uri . }
lcquad
Who is the prime minister of Michael Jeffery who is also the minister of Williuam Deane ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Michael_Jeffery prop:primeminister ?uri. res:William_Deane onto:primeMinister ?uri}
lcquad
Who is the owner of the FC which owns the Cobham Training Centre?
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/Cobham_Training_Centre> prop:owner ?x . ?x prop:owner ?uri . ?x rdf:type onto:SoccerClub}
lcquad
Who is considered to be the deciding person when it comes to crustaceans from the Balanidae family?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:family <http://dbpedia.org/resource/Balanidae> . ?x onto:binomialAuthority ?uri . ?x rdf:type onto:Crustacean}
lcquad
What have some US citizens died of?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:citizenship res:United_States . ?x onto:deathCause ?uri . }
lcquad
What are some apes?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:family res:Ape . }
lcquad
Who is buried at the place governed by National Park Service?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { ?x prop:governingBody res:National_Park_Service . ?uri prop:restingplace ?x . }
lcquad
Name the municipality of Roberto Clemente Bridge ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Roberto_Clemente_Bridge onto:municipality ?uri }
lcquad
Which past members of the The Conglomerate (American group) also sang Take Me There (Blackstreet & Ma song)?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Conglomerate_(American_group)> prop:pastMembers ?uri. <http://dbpedia.org/resource/Take_Me_There_(Blackstreet_&_Mýa_song)> onto:musicalBand ?uri}
lcquad
List all the notable works of Russell T Davies?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Russell_T_Davies onto:notableWork ?uri }
lcquad
Which military unit garrison is Arlington County, Virginia and The Pentagon?
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 onto:garrison <http://dbpedia.org/resource/Arlington_County,_Virginia> . ?uri prop:garrison <http://dbpedia.org/resource/The_Pentagon> . ?ur...
lcquad
Name all the products produced by the producer of United States dollar ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:product res:United_States_dollar . ?x onto:product ?uri . }
lcquad
What is the launch site of Aquarius (rocket) ?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Aquarius_(rocket)> onto:launchSite ?uri }
lcquad
What are the players whose former teams are Carolina Panthers and Indianapolis Colts?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?uri onto:formerTeam res:Carolina_Panthers . ?uri onto:formerTeam res:Indianapolis_Colts . }
lcquad
Count the total number of mammals whose phylum is Chordate and order (taxonomy) is Diprotodontia?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:phylum <http://dbpedia.org/resource/Chordate> . ?uri onto:order <http://dbpedia.org/resource/Diprotodontia> }
lcquad
Who is the music composer of Kenny Dies ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Kenny_Dies onto:musicComposer ?uri }
lcquad
How many cities are around the sea into which the aegean sea flows?
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 { <http://dbpedia.org/resource/Aegean_Sea> onto:outflow ?x . ?x prop:cities ?uri . ?x rdf:type onto:Sea}
lcquad
Where did the office holder who is predecessor to Marco Aurelio Robles died ?
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:predecessor <http://dbpedia.org/resource/Marco_Aurelio_Robles> . ?x prop:placeOfDeath ?uri . ?x rdf:type onto:OfficeHolder}
lcquad
Who is associated with the musical artists from Africa '70 (band) and Tony Allen ?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?uri onto:associatedMusicalArtist <http://dbpedia.org/resource/Africa_'70_(band)> . ?uri onto:associatedMusicalArtist <http://dbpedia.org/resource/Tony_Allen_(musician)> . ?uri rdf:type ont...
lcquad
Is the Hyundai Lavita assembled in Kulim?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> ASK WHERE { res:Hyundai_Lavita onto:assembly res:Kulim }
lcquad
What is the programme format of WWTR ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:WWTR onto:programmeFormat ?uri }
lcquad
list the founders of Bream Bay ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Bream_Bay prop:founder ?uri }
lcquad
Is Essex the Ceremonial County of West Tilbury?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> ASK WHERE { res:West_Tilbury onto:ceremonialCounty res:Essex }
lcquad
What is the total number of participant in conflict of SFOR?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:battles <http://dbpedia.org/resource/SFOR> . ?x onto:battle ?uri . }
lcquad
Name the people whose academic advisor has also mentored the thesis of Alexius Meinong?
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:doctoralStudents <http://dbpedia.org/resource/Alexius_Meinong> . ?uri onto:academicAdvisor ?x . ?uri rdf:type onto:Person}
lcquad
Where is Denver Broncos located ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Denver_Broncos onto:locationCity ?uri }
lcquad
Which serving railway line of the Daund Junction railway station is the home port of INS Viraat ?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/INS_Viraat_(R22)> onto:homeport ?uri. <http://dbpedia.org/resource/Daund_Junction_railway_station> onto:servingRailwayLine ?uri}
lcquad
Which river flows through Hudson Highlands State park and also through Troy, New york ?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Hudson_Highlands_State_Park> prop:river ?uri. <http://dbpedia.org/resource/Troy,_New_York> onto:river ?uri}
lcquad
What is the university to which Erica Frank went, and where Ivan Toplak was a club manager?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Erica_Frank onto:institution ?uri. res:Ivan_Toplak onto:managerClub ?uri}
lcquad
How many movies have been directed by Orson Welles ?
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:director <http://dbpedia.org/resource/Orson_Welles> . ?uri rdf:type onto:Film}
lcquad
Which borough is common for Duddeston and Bordesley railway station ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Duddeston_railway_station prop:borough ?uri. res:Bordesley_railway_station prop:borough ?uri . }
lcquad
Does Mauritius follow a parliamentary republic?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> ASK WHERE { res:Mauritius prop:governmentType res:Parliamentary_republic }
lcquad
Who is the performer of the album whose subsequent work is Willie Nelson and Family ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:subsequentWork res:Willie_Nelson_and_Family . ?x onto:artist ?uri . }
lcquad
What is the birthplace of Ludovic Boi which is also the residence of Fernando Augustin?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Ludovic_Boi onto:birthPlace ?uri. res:Fernando_Augustin prop:residence ?uri . }
lcquad
Who is the producer of album, which has the song Eclipse ?
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/Eclipse_(song)> onto:album ?x . ?x prop:producer ?uri . ?x rdf:type onto:Album}
lcquad
Which parties have their members live in the PM House, Colombo?
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:residence <http://dbpedia.org/resource/Prime_Minister's_House_(Colombo)> . ?uri onto:leader ?x . ?uri rdf:type onto:PoliticalParty}
lcquad
Which awards have been given to scientists that graduated from NKU athens?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:almaMater <http://dbpedia.org/resource/National_and_Kapodistrian_University_of_Athens> . ?x onto:award ?uri . ?x rdf:type onto:Scientist}
lcquad
Ricky Gervais is the executive producer of the series having how many fictional characters?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:executiveProducer <http://dbpedia.org/resource/Ricky_Gervais> . ?uri onto:series ?x . ?uri rdf:type onto:FictionalCharacter}
lcquad
Did Jerry Rice study in Oktoc Mississippi?
PREFIX prop: <http://dbpedia.org/property/> ASK WHERE { <http://dbpedia.org/resource/Jerry_Rice> prop:highSchool <http://dbpedia.org/resource/Oktoc,_Mississippi> }
lcquad
Cable stayed bridges have been used to cross over how many things?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:design <http://dbpedia.org/resource/Cable-stayed_bridge> . ?x prop:crosses ?uri . }
lcquad
Is north caucasian emirate have an islamic government?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> ASK WHERE { res:North_Caucasian_Emirate onto:governmentType res:Islam }
lcquad
What are the television shows whose starting music is composed by Ron Grainer?
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:themeMusicComposer <http://dbpedia.org/resource/Ron_Grainer> . ?uri rdf:type onto:TelevisionShow}
lcquad
Who influenced the author of The Shooting of Dan McGrew ?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Shooting_of_Dan_McGrew_(1924_film)> onto:writer ?x . ?x prop:influences ?uri . }
lcquad
Raymond Johansen is the mayor of what city?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:leaderName res:Raymond_Johansen . }
lcquad
What region was Gloria Schaffer born in, which also contains Newington?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Gloria_Schaffer> prop:birthPlace ?uri. <http://dbpedia.org/resource/Newington,_Connecticut> onto:isPartOf ?uri . }
lcquad
List some teams for which someone who has played as a defender, now plays?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:position res:Defenceman . ?x onto:team ?uri . }
lcquad
Which rivers start from the Provinces of Zambia?
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:settlementType <http://dbpedia.org/resource/Provinces_of_Zambia> . ?uri onto:sourceRegion ?x . ?uri rdf:type onto:River}
lcquad
Who are the scientists known for the Manhattan 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 ?uri WHERE {?uri prop:knownFor <http://dbpedia.org/resource/Manhattan_Project> . ?uri rdf:type onto:Scientist}
lcquad
What are some dishes from the family of dishes which primarily use flour?
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:mainIngredient <http://dbpedia.org/resource/Flour> . ?uri onto:type ?x . ?uri rdf:type onto:Food}
lcquad
Which religion do the people follow, whose constituency is Jadavpur?
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:constituency <http://dbpedia.org/resource/Jadavpur_(Lok_Sabha_constituency)> . ?x prop:religion ?uri . ?x rdf:type onto:Person}
lcquad
In which region is the rival school of Somerset, Massachusetts located?
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:rival <http://dbpedia.org/resource/Somerset,_Massachusetts> . ?x onto:region ?uri . ?x rdf:type onto:School}
lcquad
Which key person of Clinton Foundation is also the president of Jim Sasser ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Clinton_Foundation prop:keyPeople ?uri. res:Jim_Sasser onto:president ?uri}
lcquad
Where did the athlete start his career, who did his highschool in Red Lion Area School District?
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:highschool <http://dbpedia.org/resource/Red_Lion_Area_School_District> . ?x prop:debutteam ?uri . ?x rdf:type onto:Athlete}
lcquad
Name a person who works in Open Society Foundation and has wife named Susan Weber Soros ?
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:employer <http://dbpedia.org/resource/Open_Society_Foundations> . ?uri prop:spouse <http://dbpedia.org/resource/Susan_Weber_Soros> . ?u...
lcquad
How many things are crossed over by bridges which can carry cars?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:carries <http://dbpedia.org/resource/Motor_vehicle> . ?x prop:crosses ?uri . }
lcquad
Which fictional character sculpted by Josh Friedmann was portrayed in Terminator 3 ?
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:creator <http://dbpedia.org/resource/Josh_Friedman> . ?uri onto:portrayer <http://dbpedia.org/resource/Terminator_3:_Rise_of_the_Machine...
lcquad
Which team won the American Football League?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:American_Football_League prop:champion ?uri }
lcquad
Which currency can I use both in Kerguelen islands and French southern and antarctic lands?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:French_Southern_and_Antarctic_Lands onto:currency ?uri. res:Kerguelen_Islands onto:currency ?uri . }
lcquad
Who is the founder of the trade union which affiliates Amalgamated Association of Iron and Steel Workers?
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/Amalgamated_Association_of_Iron_and_Steel_Workers> onto:affiliation ?x . ?x prop:founded ?uri . ?x rdf:type onto:Tr...
lcquad
Which leader of United States House of Representatives was the appinter of ohn Drayton ?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/United_States_House_of_Representatives_elections,_1788_and_1789> prop:leader ?uri. <http://dbpedia.org/resource/John_Drayton> prop:appointer ?uri}
lcquad
Is fox belong to the phylum of Chordate?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> ASK WHERE { res:Fox onto:phylum res:Chordate }
lcquad
Which researchers received fellowship from Royal Society?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:award <http://dbpedia.org/resource/Royal_Society> . ?uri rdf:type onto:Scientist}
lcquad
Which president of United States had vice president as John Adams?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:vicePresident <http://dbpedia.org/resource/John_Adams> . ?uri rdf:type onto:OfficeHolder}
lcquad
Where was James H. Fields buried ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:James_H._Fields prop:placeofburial ?uri }
lcquad
Is Henry Knox a commander of Continental Artillery Regiment?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> ASK WHERE { res:Continental_Artillery_Regiment onto:notableCommander res:Henry_Knox }
lcquad
What is the commander of Battle of Brownstown ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Battle_of_Brownstown onto:commander ?uri }
lcquad
Is Baker's Dozen Donuts in the coffee industry?
PREFIX onto: <http://dbpedia.org/ontology/> ASK WHERE { <http://dbpedia.org/resource/Baker's_Dozen_Donuts> onto:industry <http://dbpedia.org/resource/Coffee> }
lcquad
What is Jon Speelman famous for?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Jon_Speelman onto:field ?uri }
lcquad
Who is the fictional character whose family member is Padme Amidala?
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/Padmé_Amidala> . ?uri rdf:type onto:FictionalCharacter}
lcquad
What company is the one which wrote the google web toolkit and PlayN?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Google_Web_Toolkit onto:author ?uri. res:PlayN onto:author ?uri . }
lcquad
How many different songwriters have had their songs recorded in London?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:recordedIn <http://dbpedia.org/resource/London> . ?x onto:writer ?uri . }
lcquad
Which are the automobile platform whose one of the automobile platform is Dodge ?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:automobilePlatform <http://dbpedia.org/resource/Dodge> . ?x onto:automobilePlatform ?uri . ?x rdf:type onto:Automobile}
lcquad
What is the total number of other combatant of the military conflicts whose combatant is Choctaw?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:combatant <http://dbpedia.org/resource/Choctaw> . ?x prop:combatant ?uri }
lcquad
List some pupils of National Science Medal winning scientists?
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:prizes <http://dbpedia.org/resource/National_Medal_of_Science> . ?x prop:doctoralStudents ?uri . ?x rdf:type onto:Scientist}
lcquad
Relatives of Moses used to follow which religions?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Moses onto:relative ?x . ?x onto:veneratedIn ?uri . }
lcquad
Where was Ne daj se, Nina first aired ?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ne_daj_se,_Nina> prop:firstAired ?uri }
lcquad
Where did the 2015 MLS All-Star Game take place?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/2015_MLS_All-Star_Game> prop:city ?uri }
lcquad
Is Nikolai Morozov the former coach of Stanislav Morozov?
PREFIX onto: <http://dbpedia.org/ontology/> ASK WHERE { <http://dbpedia.org/resource/Stanislav_Morozov> onto:formerCoach <http://dbpedia.org/resource/Nikolai_Morozov_(figure_skater)> }
lcquad
Did Alexandre Tichonov study at the Moscow university?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> ASK WHERE { res:Alexandre_Tichonov prop:university res:Moscow }
lcquad
What is the name of the homeground of football team Panionios G.S.S.?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:2013–14_Panionios_G.S.S._season onto:ground ?uri }
lcquad
List presidents of the school whose one of the president is Charles. Prince of Wales ?
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:president <http://dbpedia.org/resource/Charles,_Prince_of_Wales> . ?x prop:president ?uri . ?x rdf:type onto:School}
lcquad
Does Timothy Morton study Buddhism?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> ASK WHERE { res:Timothy_Morton prop:mainInterests res:Buddhism }
lcquad
Brian Moriarty designed video games written by whom?
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:designer <http://dbpedia.org/resource/Brian_Moriarty> . ?x prop:writer ?uri . ?x rdf:type onto:VideoGame}
lcquad
What are some movies whose distributors are led by Kevin Tsujihara?
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:keyPerson <http://dbpedia.org/resource/Kevin_Tsujihara> . ?uri prop:distributor ?x . ?uri rdf:type onto:Film}
lcquad
Name the common associate band of Blayse and Teddy Riley ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Blayse onto:associatedBand ?uri. res:Teddy_Riley onto:associatedBand ?uri . }
lcquad
What did Steven T Mason's father die from?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:child res:Stevens_T._Mason . ?x onto:deathCause ?uri . }
lcquad
Whose military units are VMF-218 and VMF-155?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?uri onto:militaryUnit <http://dbpedia.org/resource/VMF-218> . ?uri onto:militaryUnit <http://dbpedia.org/resource/VMF-155> . }
lcquad
What automobile engine's successor is BMW M40
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:successor <http://dbpedia.org/resource/BMW_M40> . ?uri rdf:type onto:AutomobileEngine}
lcquad
Name the company which produces both Boeing F/A-18 E/F Hornet nad CH-46 Chinook ?
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 onto:product <http://dbpedia.org/resource/Boeing_F/A-18E/F_Super_Hornet> . ?uri prop:products <http://dbpedia.org/resource/Boeing_CH-47_Chino...
lcquad
What is the district of Methodist Central Hall Westminster ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Methodist_Central_Hall_Westminster onto:district ?uri }
lcquad
Who develops the computation platform of Microsoft Expression Encoder ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Microsoft_Expression_Encoder onto:computingPlatform ?x . ?x onto:developer ?uri . }
lcquad
What is the official language of Ladonia, which is the target area of Probus Journal?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ladonia_(micronation)> onto:officialLanguage ?uri. <http://dbpedia.org/resource/Probus_(journal)> onto:academicDiscipline ?uri}
lcquad
Where did the conflict take place where Louis Briere de I'Isle was a commander?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:commander <http://dbpedia.org/resource/Louis_Brière_de_l'Isle> . ?x onto:territory ?uri . ?x rdf:type onto:MilitaryConflict}
lcquad
In which team was the person drafted who has studied at the Worcester college, Oxford?
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:almaMater <http://dbpedia.org/resource/Worcester_College,_Oxford> . ?x prop:draftTeam ?uri . ?x rdf:type onto:Person}
lcquad
How many people hold important positions alongwith Donna Shalala?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:keyPerson <http://dbpedia.org/resource/Donna_Shalala> . ?x prop:keyPeople ?uri . }
lcquad
What other things are provided by the producer of Office 365?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:service res:Office_365 . ?x prop:services ?uri . }
lcquad
Who owns the company that made the Edsel Villager?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { ?x prop:products res:Edsel_Villager . ?x prop:parent ?uri . }
lcquad