question
stringlengths
9
150
query
stringlengths
109
692
dataset-id
stringclasses
12 values
What is the religious affiliation of Neungin High School?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Neungin_High_School prop:religiousAffiliation ?uri }
lcquad
Is Maria Sharapova the silver medalist of Tennis at the 2012 Summer Olympics Women's singles?
PREFIX onto: <http://dbpedia.org/ontology/> ASK WHERE { <http://dbpedia.org/resource/Tennis_at_the_2012_Summer_Olympics_–_Women's_singles> onto:silverMedalist <http://dbpedia.org/resource/Maria_Sharapova> }
lcquad
Name the office holder with successor as Adrian A Basora and child as Lori Black ?
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:child <http://dbpedia.org/resource/Lori_Black> . ?uri prop:successor <http://dbpedia.org/resource/Adrian_A._Basora> . ?uri rdf:type ont...
lcquad
Who is the owner of the South end ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:The_South_End prop:owners ?uri }
lcquad
What is the colour of Xocolatlite ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Xocolatlite onto:colour ?uri }
lcquad
For how many other teams have the members of Atlant Moscow Oblast played?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:playedFor <http://dbpedia.org/resource/Atlant_Moscow_Oblast> . ?x onto:formerTeam ?uri . }
lcquad
What is the state of origin of the president whose alma mater is Hellenic Naval Academy ?
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:almaMater <http://dbpedia.org/resource/Hellenic_Naval_Academy> . ?x onto:stateOfOrigin ?uri . ?x rdf:type onto:President}
lcquad
What is the common ethnicity of the Maike Evers and Francisco Lachowski ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Maike_Evers onto:ethnicity ?uri. res:Francisco_Lachowski onto:ethnicity ?uri . }
lcquad
In which places do companies founded in Newcastle operate?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:foundationPlace <http://dbpedia.org/resource/City_of_Newcastle> . ?x onto:regionServed ?uri . ?x rdf:type onto:Company}
lcquad
Which senator served in military units VMF-155 and VMF-218?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?uri onto:militaryUnit <http://dbpedia.org/resource/VMF-155> . ?uri onto:militaryUnit <http://dbpedia.org/resource/VMF-218> . ?uri rdf:type onto:Senator}
lcquad
What kind of games are made by Interplay Entertainment?
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:publisher <http://dbpedia.org/resource/Interplay_Entertainment> . ?x prop:genre ?uri . ?x rdf:type onto:VideoGame}
lcquad
Which producer of Purvis Eureka engine is also the owner of Ford Theatre ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Purvis_Eureka prop:engine ?uri. res:Ford_Theatre prop:company ?uri}
lcquad
What developed EMMS?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:EMMS onto:developer ?uri }
lcquad
Which music band made Take Me There, and to which Tedd Riley was associated?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Teddy_Riley> onto:associatedBand ?uri. <http://dbpedia.org/resource/Take_Me_There_(Blackstreet_&_Mýa_song)> onto:musicalBand ?uri}
lcquad
In which time zone is Pong Pha?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Pong_Pha onto:timeZone ?uri }
lcquad
How many fictional characters are there in a series in which Craig Robinson acted?
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:starring <http://dbpedia.org/resource/Craig_Robinson_(actor)> . ?uri onto:series ?x . ?uri rdf:type onto:FictionalCharacter}
lcquad
Which political party of Chandra Shekhar is also the political party of Datl Satyanarayana Raju ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Chandra_Shekhar onto:otherParty ?uri. res:Datla_Satyanarayana_Raju onto:party ?uri}
lcquad
Who owns the airport in Paphos?
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:city <http://dbpedia.org/resource/Paphos_District> . ?x prop:owner ?uri . ?x rdf:type onto:Airport}
lcquad
What is the baseball team whose club manager is Chip Hale?
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:manager <http://dbpedia.org/resource/Chip_Hale> . ?uri rdf:type onto:BaseballTeam}
lcquad
Which bacteria's taxonomic class is Bacilli?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:class <http://dbpedia.org/resource/Bacilli> . ?uri rdf:type onto:Bacteria}
lcquad
What honours did Reigh Count receive?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Reigh_Count onto:honours ?uri }
lcquad
What are some products of the the company whose subsidiary is Sony Corp shareholders and subsidies?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:subsidiary res:Sony_Corporation_shareholders_and_subsidiaries . ?uri onto:manufacturer ?x . }
lcquad
Who built the stadiums where 2014 FIFA under 17 woman's world cup took place?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:tenant <http://dbpedia.org/resource/2014_FIFA_U-17_Women's_World_Cup> . ?x onto:builder ?uri . }
lcquad
Which area operataed by the South Side Elevated Railroad is also the palce of death of the Sakari Suzuki ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:South_Side_Elevated_Railroad onto:operatedBy ?uri. res:Sakari_Suzuki prop:deathPlace ?uri}
lcquad
What is the television show whose related with Doctor Who Confidential?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:related <http://dbpedia.org/resource/Doctor_Who_Confidential> . ?uri rdf:type onto:TelevisionShow}
lcquad
In which city wasThe Triple Door (The Courage album) performed live?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Live_at_The_Triple_Door_(The_Courage_album)> prop:recorded ?uri }
lcquad
Which nearest city of Jurgens Site is the death plce of Jimmie Heuga ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Jurgens_Site prop:nearestCity ?uri. res:Jimmie_Heuga prop:deathPlace ?uri}
lcquad
List the battles fought by Ali Habib Mahmud ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Ali_Habib_Mahmud prop:battles ?uri }
lcquad
How many companies were started in the states?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:foundationPlace <http://dbpedia.org/resource/United_States> . ?uri rdf:type onto:Company}
lcquad
Is Charles Drummond Ellis a doctoral student of James Chadwick?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> ASK WHERE { res:James_Chadwick onto:doctoralStudent res:Charles_Drummond_Ellis }
lcquad
How many movies are distributed by Cinema International Corporation?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:distributor <http://dbpedia.org/resource/Cinema_International_Corporation> . ?uri rdf:type onto:Film}
lcquad
Name the local authority of Trinity School, Brentwood ?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Trinity_School,_Brentwood> onto:localAuthority ?uri }
lcquad
Name the president of Wyche Fowler ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Wyche_Fowler onto:president ?uri }
lcquad
In which fields have people born in Lausanne worked?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { ?x prop:placeOfBirth res:Lausanne . ?x prop:fields ?uri . }
lcquad
Which Texas based company was founded by Jim Harris ?
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:locationCity <http://dbpedia.org/resource/Texas> . ?uri prop:founder <http://dbpedia.org/resource/Jim_Harris_(entrepreneur)> . ?uri rdf...
lcquad
Name a show hosted by Brian Dunkleman and judged by Harry Connick, Jr.?
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:presenter <http://dbpedia.org/resource/Brian_Dunkleman> . ?uri prop:judges <http://dbpedia.org/resource/Harry_Connick,_Jr.> . ?uri rdf:...
lcquad
To which educational institute does Cornell University Press belong to?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Cornell_University_Press onto:parentCompany ?uri }
lcquad
In which country's cuisine, ham is an important part?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { ?x prop:mainIngredient res:Ham . ?x prop:country ?uri . }
lcquad
List the softwares which runs on Microsoft Windows and has license as Software as a service?
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 onto:license <http://dbpedia.org/resource/Software_as_a_service> . ?uri rdf:type onto:Software}
lcquad
Which ppolitical party of Yashpal Kapur is also the owner of National Herald ?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_National_Herald_(India)> onto:owner ?uri. <http://dbpedia.org/resource/Yashpal_Kapur> onto:party ?uri}
lcquad
Who all have been presenters on shows by the NBC?
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:channel <http://dbpedia.org/resource/NBC> . ?x prop:presenter ?uri . ?x rdf:type onto:TelevisionShow}
lcquad
Give me the list of cars which are the predecessor of Full Sized Cars?
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:class <http://dbpedia.org/resource/Full-size_car> . ?x onto:predecessor ?uri . ?x rdf:type onto:Automobile}
lcquad
List the people with final resting place as Plymouth, Vermont and has Samuel W. McCall as predecessor?
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:restingPlace <http://dbpedia.org/resource/Plymouth,_Vermont> . ?uri prop:predecessor <http://dbpedia.org/resource/Samuel_W._McCall> . ?...
lcquad
What disease led to the demise of Letitia MacTavish Hargrave and Martino Martini ?
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/Letitia_MacTavish_Hargrave> onto:deathCause ?uri. <http://dbpedia.org/resource/Martino_Martini> onto:deathCause ?uri . ?uri rdf:type onto:Disease}
lcquad
What are some software which are written in languages that are run on Unix like OS?
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:operatingSystem <http://dbpedia.org/resource/Unix-like> . ?uri prop:programmingLanguage ?x . ?uri rdf:type onto:Software}
lcquad
List all the movies whose directors were born in Kenosha, Wisconsin?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:birthPlace <http://dbpedia.org/resource/Kenosha,_Wisconsin> . ?uri prop:director ?x . }
lcquad
Does the St lawrence river start in Kingston, Ontario?
PREFIX onto: <http://dbpedia.org/ontology/> ASK WHERE { <http://dbpedia.org/resource/Saint_Lawrence_River> onto:sourceMountain <http://dbpedia.org/resource/Kingston,_Ontario> }
lcquad
What stadium's operator is Stan Kroenke
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:operator <http://dbpedia.org/resource/Stan_Kroenke> . ?uri rdf:type onto:Stadium}
lcquad
Is Mike Babcock the head coach of Toronto Maple Leafs?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> ASK WHERE { res:Toronto_Maple_Leafs prop:headCoach res:Mike_Babcock }
lcquad
Whose commanders are John Mc Ewen and Park Chunghee?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?uri onto:commander <http://dbpedia.org/resource/John_McEwen> . ?uri onto:commander <http://dbpedia.org/resource/Park_Chung-hee> . }
lcquad
Who gave guest appearances on the show which is the next episode after the Bombshell one?
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:previousWork <http://dbpedia.org/resource/Bombshell_(Smash)> . ?x prop:guests ?uri . ?x rdf:type onto:TelevisionEpisode}
lcquad
What is manufactured by a company headed by Kazuo Hirai?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:keyPeople res:Kazuo_Hirai . ?uri onto:manufacturer ?x . }
lcquad
Under which presidents have politicians from the Continental army served?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { ?x prop:branch res:Continental_Army . ?x prop:president ?uri . }
lcquad
Philadelphia City Council is the governing body of which city?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE {?uri prop:governingBody res:Philadelphia_City_Council }
lcquad
What are the binomial authority of Menetries's warbler?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Menetries's_warbler> onto:binomialAuthority ?uri }
lcquad
Name the movie which has music composed by Elliot Goldenthal and screenplay by Akiva Goldsman ?
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:music <http://dbpedia.org/resource/Elliot_Goldenthal> . ?uri prop:screenplay <http://dbpedia.org/resource/Akiva_Goldsman> . ?uri rdf:ty...
lcquad
Name the fictional character whose relative are Duck family and Clan McDuck?
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:relative <http://dbpedia.org/resource/Duck_family_(Disney)> . ?uri prop:relatives <http://dbpedia.org/resource/Clan_McDuck> . ?uri rdf:...
lcquad
Which university with athletics department in NCAA Division I Football Bowl Subdivision has nickname Tulane Green Wave ?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:mouthMountain <http://dbpedia.org/resource/St._Louis> . ?uri onto:rightTributary <http://dbpedia.org/resource/Madison_River> . ?uri rdf:type onto:University}
lcquad
Which state does Jerome B. Chaffee belong ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Jerome_B._Chaffee prop:state ?uri }
lcquad
In which of the parties that have governed over Rishikesh, does Govinda belong too?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Govinda_(actor)> onto:party ?uri. <http://dbpedia.org/resource/Rishikesh> onto:leaderName ?uri}
lcquad
What awards are won by the screenwriter of Lucky You?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lucky_You_(film)> prop:screenplay ?x . ?x onto:award ?uri . }
lcquad
Name the Pole driver of 1994 Spanish Grand Prix ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:1994_Spanish_Grand_Prix prop:poleDriver ?uri }
lcquad
Where did Georges Wolinski and Judson Huss die/
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Georges_Wolinski prop:placeOfDeath ?uri. res:Judson_Huss prop:deathPlace ?uri}
lcquad
What is the parent company of the airline whose hub is in Detroit?
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:hubs <http://dbpedia.org/resource/Detroit> . ?x onto:parentCompany ?uri . ?x rdf:type onto:Airline}
lcquad
What is the appliance which uses the central processing unit manufactured by Marvell Technology Group?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:cpu <http://dbpedia.org/resource/Marvell_Technology_Group> . ?uri rdf:type onto:InformationAppliance}
lcquad
Give me all magazines whose founder died in Berkeley, California?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:deathPlace <http://dbpedia.org/resource/Berkeley,_California> . ?uri onto:founder ?x . ?uri rdf:type onto:Magazine}
lcquad
Which technological products were manufactured by Foxconn?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:manufacturer <http://dbpedia.org/resource/Foxconn> . ?uri rdf:type onto:InformationAppliance}
lcquad
Is George Lucas the cinematographer of 6-18-67?
PREFIX prop: <http://dbpedia.org/property/> ASK WHERE { <http://dbpedia.org/resource/6-18-67> prop:cinematography <http://dbpedia.org/resource/George_Lucas> }
lcquad
Whose predecessor had Jenny Macklin as a deputy ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { ?x prop:deputy res:Jenny_Macklin . ?uri prop:predecessor ?x . }
lcquad
How many cars are similar to the ones assembled in the Jefferson North Assembly?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:assembly <http://dbpedia.org/resource/Jefferson_North_Assembly> . ?x prop:related ?uri . }
lcquad
Count the number of region of AN/FSQ-7 Combat Direction Central?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/AN/FSQ-7_Combat_Direction_Central> onto:region ?uri . }
lcquad
What are the common houses of US Congress and the Kansas Legislature?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:United_States_Congress prop:houses ?uri. res:Kansas_Legislature onto:house ?uri}
lcquad
Was John Muir the first one to ascend one of the peaks in the cathedral peak?
PREFIX onto: <http://dbpedia.org/ontology/> ASK WHERE { <http://dbpedia.org/resource/Cathedral_Peak_(California)> onto:firstAscentPerson <http://dbpedia.org/resource/John_Muir> }
lcquad
From how many different places have people gone to the Harward Medical School?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:institution <http://dbpedia.org/resource/Harvard_Medical_School> . ?x onto:birthPlace ?uri . }
lcquad
Name the television show where Mona Marshall has given voice and is distributed by Comedy Central?
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/Mona_Marshall> . ?uri prop:distributor <http://dbpedia.org/resource/Comedy_Central> . ?uri rdf:type...
lcquad
What are Jerry Bock's musicals based upon?
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:music <http://dbpedia.org/resource/Jerry_Bock> . ?x onto:basedOn ?uri . ?x rdf:type onto:Musical}
lcquad
Give me list of people who were the first to climb a peak in the Yosemite park?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:locatedInArea res:Yosemite_National_Park . ?x onto:firstAscentPerson ?uri . }
lcquad
What is Naval Support Activity Naples a part of?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Naval_Support_Activity_Naples onto:type ?uri }
lcquad
Who has allegiance is Colony of Virginia and buried in Montpelier?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE {?uri prop:allegiance <http://dbpedia.org/resource/Colony_of_Virginia> . ?uri prop:restingplace <http://dbpedia.org/resource/Montpelier_(Orange,_Virginia)> . }
lcquad
Was Tim Gunn a guest on The Broken Code?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> ASK WHERE { res:The_Broken_Code prop:guests res:Tim_Gunn }
lcquad
What is the successor of PlayStation 4
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE {?uri prop:successor res:PlayStation_4 . }
lcquad
What is the sovereign state of the Dafydd Benfras where Jasmine Lowson is also citizen of ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Dafydd_Benfras onto:country ?uri. res:Jasmine_Lowson onto:citizenship ?uri}
lcquad
Who did their highschool from a school whose mascot was a fighting tiger?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:mascot res:Fighting_Tiger . ?uri onto:highschool ?x . }
lcquad
Which destination of Emerald Air is also the city served by houston Fort Bend Airport ?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Emerald_Air_(United_States)> onto:destination ?uri. <http://dbpedia.org/resource/Houston_Fort_Bend_Airport> prop:cityServed ?uri}
lcquad
name the region served by Jerusalem Institue of Justice which was also the conflict region in GazaIsrael ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Jerusalem_Institute_of_Justice onto:service ?uri. res:Gaza–Israel_conflict prop:result ?uri}
lcquad
Name the company whose key person is Raymond Conner and produces Boeing CH-47 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 prop:keyPeople <http://dbpedia.org/resource/Raymond_Conner> . ?uri prop:products <http://dbpedia.org/resource/Boeing_CH-47_Chinook> . ?uri r...
lcquad
What is the total number of professions in which someone who has suicided worked?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:deathCause <http://dbpedia.org/resource/Suicide> . ?x onto:occupation ?uri . }
lcquad
How many golf players are there in Arizona State Sun Devils ?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:college <http://dbpedia.org/resource/Arizona_State_Sun_Devils> . ?uri rdf:type onto:GolfPlayer}
lcquad
Count the number of characters in Batman Live?
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/Batman_Live> prop:characters ?uri . ?uri rdf:type onto:ComicsCharacter}
lcquad
List the services provided by the company which provides Microsoft azure as one of the service ?
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:services <http://dbpedia.org/resource/Microsoft_Azure> . ?x prop:services ?uri . ?x rdf:type onto:Company}
lcquad
What are some team members of the team based in Camp Nou?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:homeStadium res:Camp_Nou . ?x prop:name ?uri . }
lcquad
Which universities are also known as the Tulane Green wave?
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:nickname <http://dbpedia.org/resource/Tulane_Green_Wave> . ?uri rdf:type onto:University}
lcquad
What is the branch of the politicians whose governor is Bill Clements?
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:governor <http://dbpedia.org/resource/Bill_Clements> . ?x prop:branch ?uri . ?x rdf:type onto:Politician}
lcquad
Who composed the episode after which came Butter's Very own Episode?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:subsequentWork <http://dbpedia.org/resource/Butters'_Very_Own_Episode> . ?x onto:musicComposer ?uri . ?x rdf:type onto:TelevisionEpisode}
lcquad
What is the location country of Teperberg 1870 ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Teperberg_1870 prop:locationCountry ?uri }
lcquad
List the software developed by Shawn Fanning ?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:developer <http://dbpedia.org/resource/Shawn_Fanning> . ?uri rdf:type onto:Software}
lcquad
What is the stylistic origin of the music genres where the Bass guitar is important?
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:instruments <http://dbpedia.org/resource/Bass_guitar> . ?x onto:stylisticOrigin ?uri . ?x rdf:type onto:MusicGenre}
lcquad
What are the other notable work of the executive producer of The Runaway Bride episode of Doctor Who?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Runaway_Bride_(Doctor_Who)> onto:executiveProducer ?x . ?x prop:notableworks ?uri . }
lcquad
Who was the voice actor of allen walker also gave voice to kimihiro watanuki?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Allen_Walker onto:voice ?uri. res:Kimihiro_Watanuki onto:voice ?uri . }
lcquad
Name the office holder whose final resting place is North Bend and was part of Siege of fort recovery conflict ?
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:battle <http://dbpedia.org/resource/Siege_of_Fort_Recovery> . ?uri prop:restingplace <http://dbpedia.org/resource/North_Bend,_Ohio> . ?...
lcquad