question,query,dataset-id Give me all school types.,"PREFIX rdfs: PREFIX rdf: PREFIX yago: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type yago:SchoolTypes . OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } }",qald-1 Which presidents were born in 1945?,"PREFIX rdfs: PREFIX rdf: PREFIX onto: PREFIX yago: SELECT DISTINCT ?uri ?string WHERE { { ?uri rdf:type onto:President . ?uri onto:birthDate ?date . FILTER regex(?date,'^1945') . OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } } UNION { ?uri rdf:type yago:President. ?uri onto:birthDate ?date . FILTER regex(?date, '^1945') . OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } } }",qald-1 Who are the presidents of the United States?,"PREFIX rdf: PREFIX yago: PREFIX onto: PREFIX res: PREFIX rdfs: PREFIX prop: SELECT DISTINCT ?uri ?string WHERE { { ?uri rdf:type yago:PresidentsOfTheUnitedStates. } UNION { ?uri rdf:type onto:President. ?uri prop:title res:President_of_the_United_States. } OPTIONAL {?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } }",qald-1 Who was the wife of President Lincoln?,"PREFIX rdfs: PREFIX rdf: PREFIX foaf: PREFIX onto: SELECT ?uri ?string WHERE { ?person rdf:type onto:President . ?person foaf:surname 'Lincoln'@en . ?person onto:spouse ?uri. OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } }",qald-1 Who developed the video game World of Warcraft?,"PREFIX rdfs: PREFIX rdf: PREFIX onto: SELECT ?uri ?string WHERE { ?subject rdf:type onto:Software . ?subject rdfs:label 'World of Warcraft'@en . ?subject onto:developer ?uri . OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } }",qald-1 What is the official website of Tom Hanks?,"PREFIX rdfs: PREFIX foaf: SELECT ?uri WHERE { ?subject rdfs:label 'Tom Hanks'@en . ?subject foaf:homepage ?uri }",qald-1 List all episodes of the first season of the HBO television series The Sopranos!,"PREFIX rdfs: PREFIX onto: PREFIX res: SELECT ?uri ?string WHERE { ?uri onto:series res:The_Sopranos . ?uri onto:seasonNumber 1 . OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } }",qald-1 Who produced the most films?,"PREFIX rdfs: PREFIX rdf: PREFIX onto: SELECT ?uri ?string WHERE { ?film rdf:type onto:Film . ?film onto:producer ?uri . OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } } ORDER BY DESC(COUNT(?film)) LIMIT 1",qald-1 Which people have as their given name Jimmy?,"PREFIX rdfs: PREFIX rdf: PREFIX foaf: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type foaf:Person. ?uri foaf:givenName 'Jimmy'@en . OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } }",qald-1 Is there a video game called Battle Chess?,"PREFIX rdf: PREFIX onto: PREFIX rdfs: ASK WHERE { ?software rdf:type onto:Software . ?software rdfs:label ?name . FILTER (regex(?name, 'Battle Chess')) }",qald-1 Which mountains are higher than the Nanga Parbat?,"PREFIX rdfs: PREFIX rdf: PREFIX onto: PREFIX prop: SELECT ?uri ?string WHERE { ?uri rdf:type onto:Mountain . ?acon rdfs:label 'Nanga Parbat'@en . ?acon prop:elevationM ?elevation . ?uri prop:elevationM ?allelevation . FILTER (?allelevation > ?elevation) . OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } }",qald-1 Who created English Wikipedia?,"PREFIX onto: PREFIX rdf: PREFIX rdfs: SELECT ?uri ?string WHERE { ?website rdf:type onto:Website . ?website onto:author ?uri . ?website rdfs:label 'English Wikipedia'@en . OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } }",qald-1 Give me all actors starring in Batman Begins.,"PREFIX rdfs: PREFIX rdf: PREFIX foaf: PREFIX onto: SELECT ?uri ?string WHERE { ?film rdf:type onto:Film . ?film onto:starring ?uri . ?film foaf:name 'Batman Begins'@en . OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } }",qald-1 Which software has been developed by organizations founded in California?,"PREFIX rdfs: PREFIX onto: PREFIX res: SELECT ?uri ?string WHERE { ?company rdf:type onto:Organisation . ?company onto:foundationPlace res:California . ?uri onto:developer ?company . ?uri rdf:type onto:Software . OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } }",qald-1 Which companies work in the aerospace industry as well as on nuclear reactor technology?,"PREFIX rdfs: PREFIX rdf: PREFIX onto: PREFIX res: PREFIX prop: SELECT ?uri ?string WHERE { ?uri rdf:type onto:Company . ?uri prop:industry res:Aerospace . ?uri prop:industry res:Nuclear_reactor_technology . OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } }",qald-1 Is Christian Bale starring in Batman Begins?,"PREFIX rdf: PREFIX foaf: PREFIX onto: ASK WHERE { ?film rdf:type onto:Film . ?film onto:starring ?actors . ?actors rdfs:label 'Christian Bale'@en . ?film foaf:name 'Batman Begins'@en }",qald-1 Give me the websites of companies with more than 500000 employees.,"PREFIX rdf: PREFIX prop: PREFIX xsd: PREFIX foaf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?subject rdf:type onto:Company . ?subject prop:numEmployees ?employees . FILTER( ?employees >= 500000 ) . ?subject foaf:homepage ?uri . }",qald-1 Which actors were born in Germany?,"PREFIX rdfs: PREFIX rdf: PREFIX onto: PREFIX res: PREFIX yago: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type onto:Actor . { ?uri onto:birthPlace res:Germany . } UNION { ?uri onto:birthPlace ?city . ?city rdf:type yago:StatesOfGermany . } OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } }",qald-1 Which country does the Airedale Terrier come from?,"PREFIX rdfs: PREFIX prop: SELECT ?string WHERE { ?dog rdfs:label 'Airedale Terrier'@en . ?dog prop:country ?string }",qald-1 Which birds are there in the United States?,"PREFIX yago: PREFIX rdfs: PREFIX rdf: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type yago:BirdsOfTheUnitedStates. OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } }",qald-1 Give me all European Capitals!,"PREFIX yago: PREFIX rdfs: PREFIX rdf: SELECT ?uri ?string WHERE { ?uri rdf:type yago:CapitalsInEurope. OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } }",qald-1 Which cities have more than 2 million inhabitants?,"PREFIX rdfs: PREFIX rdf: PREFIX prop: PREFIX xsd: PREFIX onto: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type onto:City. { ?uri prop:population ?population. } UNION { ?uri prop:populationUrban ?population. } FILTER (?population > 2000000) . OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } }",qald-1 Who was Tom Hanks married to?,"PREFIX rdfs: PREFIX prop: SELECT DISTINCT ?uri ?string WHERE { ?person rdfs:label 'Tom Hanks'@en . ?person prop:spouse ?string . OPTIONAL { ?uri rdfs:label ?string . } }",qald-1 When was DBpedia released?,"PREFIX onto: PREFIX rdf: PREFIX rdfs: SELECT ?date WHERE { ?website rdf:type onto:Software . ?website onto:releaseDate ?date . ?website rdfs:label 'DBpedia'@en }",qald-1 Which people were born in Heraklion?,"PREFIX rdfs: PREFIX rdf: PREFIX onto: PREFIX yago: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type onto:Person . ?uri onto:birthPlace ?city . ?city rdfs:label 'Heraklion'@en OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } }",qald-1 Which caves have more than 3 entrances?,"PREFIX rdfs: PREFIX onto: PREFIX rdf: SELECT ?uri ?string WHERE { ?uri rdf:type onto:Cave . ?uri onto:numberOfEntrances ?entrance . FILTER (?entrance > 3) . OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } }",qald-1 Give me all films produced by Hal Roach.,"PREFIX rdfs: PREFIX rdf: PREFIX foaf: PREFIX onto: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type onto:Film . ?uri onto:producer ?producer . ?producer rdfs:label 'Hal Roach'@en . OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } }",qald-1 Which software has been published by Mean Hamster Software?,"PREFIX rdfs: PREFIX rdf: PREFIX onto: PREFIX prop: PREFIX res: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type onto:Software . { ?uri prop:publisher 'Mean Hamster Software'@en . } UNION { ?uri onto:publisher res:Mean_Hamster_Software . } OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } }",qald-1 What languages are spoken in Estonia?,"PREFIX rdfs: PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri ?string WHERE { ?country rdf:type onto:Country. { ?country onto:language ?uri . } UNION { ?uri onto:spokenIn ?country . } FILTER (regex(?country, 'Estonia')). OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } }",qald-1 Who owns Aldi?,"PREFIX rdfs: PREFIX rdf: PREFIX onto: SELECT ?uri ?string WHERE { ?orga rdf:type onto:Organisation . ?orga onto:keyPerson ?uri . ?orga rdfs:label 'Aldi'@en . OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } FILTER (lang(?string) = 'en') }",qald-1 Which capitals in Europe were host cities of the summer olympic games?,"PREFIX rdfs: PREFIX rdf: PREFIX yago: SELECT ?uri ?string WHERE { ?uri rdf:type yago:CapitalsInEurope . ?uri rdf:type yago:HostCitiesOfTheSummerOlympicGames . OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } }",qald-1 Who has been the 5th president of the United States of America?,"PREFIX rdf: PREFIX onto: PREFIX rdfs: SELECT ?uri ?string WHERE { ?uri rdf:type onto:President . ?uri onto:orderInOffice '5th President of the United States'@en . OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } }",qald-1 Who is called Dana?,"PREFIX rdf: PREFIX rdfs: PREFIX foaf: PREFIX prop: SELECT DISTINCT ?uri ?string WHERE { { ?uri rdf:type foaf:Person. ?uri foaf:givenName 'Dana'@en. } UNION { ?uri prop:alias ?alias . FILTER regex(?alias,'Dana') . } OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } }",qald-1 Which music albums contain the song Last Christmas?,"PREFIX rdfs: PREFIX rdf: PREFIX foaf: PREFIX onto: SELECT DISTINCT ?uri ?string WHERE { ?single rdf:type onto:Single . ?single onto:album ?uri . ?single foaf:name 'Last Christmas'@en . OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } }",qald-1 Which books were written by Danielle Steel?,"PREFIX rdfs: PREFIX rdf: PREFIX foaf: PREFIX onto: SELECT ?uri ?string WHERE { ?uri rdf:type onto:Book . ?uri onto:author ?author . ?author foaf:name 'Danielle Steel'@en . OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } }",qald-1 "Which companies are located in California, USA?","PREFIX rdfs: PREFIX onto: PREFIX res: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type onto:Organisation . ?uri onto:location res:California . OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } }",qald-1 Which genre does DBpedia belong to?,"PREFIX prop: PREFIX onto: PREFIX rdf: PREFIX rdfs: SELECT ?uri ?string WHERE { ?dbpedia rdf:type onto:Software . ?dbpedia onto:genre ?uri . ?dbpedia rdfs:label 'DBpedia'@en . OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } }",qald-1 Which country has the most official languages?,"PREFIX onto: PREFIX rdf: PREFIX rdfs: SELECT ?uri ?string WHERE { ?uri rdf:type onto:Country . ?uri onto:language ?language . OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en')} } ORDER BY DESC(count(?language)) LIMIT 1",qald-1 In which programming language is GIMP written?,"PREFIX prop: PREFIX res: SELECT ?string WHERE { res:GIMP prop:programmingLanguage ?string . }",qald-1 Who produced films starring Natalie Portman?,"PREFIX rdfs: PREFIX rdf: PREFIX foaf: PREFIX onto: SELECT DISTINCT ?uri ?string WHERE { ?film rdf:type onto:Film . ?film onto:starring ?actors . ?actors foaf:name 'Natalie Portman'@en . ?film onto:producer ?uri . OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } }",qald-1 Give me all movies with Tom Cruise!,"PREFIX rdfs: PREFIX onto: PREFIX res: PREFIX rdf: PREFIX prop: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type onto:Film. { ?uri prop:starring res:Tom_Cruise . } UNION { ?uri onto:starring res:Tom_Cruise . } OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } }",qald-1 In which films did Julia Roberts as well as Richard Gere play?,"PREFIX rdfs: PREFIX rdf: PREFIX onto: PREFIX res: SELECT ?uri ?string WHERE { ?uri rdf:type onto:Film . ?uri onto:starring res:Julia_Roberts . ?uri onto:starring res:Richard_Gere. OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } }",qald-1 Give me all female German chancellors!,"PREFIX rdf: PREFIX rdfs: PREFIX yago: PREFIX prop: SELECT ?uri ?string WHERE { ?uri rdf:type yago:FemaleHeadsOfGovernment. ?uri prop:office ?office . FILTER regex(?office, 'Chancellor of Germany'). OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } }",qald-1 Who wrote the book The pillars of the Earth?,"PREFIX rdfs: PREFIX rdf: PREFIX rdfs: PREFIX onto: SELECT ?uri ?string WHERE { ?books rdf:type onto:Book . ?books onto:author ?uri . ?books rdfs:label 'The Pillars of the Earth'@en . OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } }",qald-1 How many films did Leonardo DiCaprio star in?,"PREFIX rdf: PREFIX foaf: PREFIX onto: SELECT COUNT(?film) WHERE { ?film rdf:type onto:Film . ?film onto:starring ?actors . ?actors foaf:name 'Leonardo DiCaprio'@en . }",qald-1 Give me all soccer clubs in the Premier League.,"PREFIX rdfs: PREFIX onto: PREFIX res: SELECT DISTINCT ?uri ?string WHERE { ?uri onto:league res:Premier_League . OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } }",qald-1 When was Capcom founded?,"PREFIX res: PREFIX prop: SELECT ?date WHERE { res:Capcom prop:foundation ?date . }",qald-1 Which organizations were founded in 1950?,"PREFIX rdf: PREFIX onto: PREFIX prop: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type onto:Organisation . ?uri prop:foundation ?date . FILTER regex(?date,'^1950') . OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } }",qald-1 What is the highest mountain?,"PREFIX rdfs: PREFIX onto: PREFIX rdf: SELECT ?uri ?string WHERE { ?uri rdf:type onto:Mountain . ?uri onto:elevation ?elevation . OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } } ORDER BY DESC(?elevation) LIMIT 1",qald-1 Is Natalie Portman an actress?,"PREFIX rdfs: PREFIX rdf: PREFIX onto: ASK WHERE { ?subject rdf:type onto:Actor. ?subject rdfs:label 'Natalie Portman'@en. }",qald-1 Give me the official websites of actors of the television show Charmed.,"PREFIX rdfs: PREFIX rdf: PREFIX foaf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?film rdf:type onto:TelevisionShow . ?film rdfs:label 'Charmed'@en . ?film onto:starring ?actors . ?actors foaf:homepage ?uri . }",qald-1 Who is the daughter of Bill Clinton married to?,"PREFIX res: PREFIX prop: PREFIX onto: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:Bill_Clinton onto:child ?child . ?child prop:spouse ?string . ?uri rdfs:label ?string . }",qald-1 Which river does the Brooklyn Bridge cross?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri ?string WHERE { res:Brooklyn_Bridge prop:crosses ?string . ?uri prop:name ?string . }",qald-1 How many monarchical countries are there in Europe?,"PREFIX onto: PREFIX yago: PREFIX rdf: SELECT COUNT(DISTINCT ?uri) WHERE { ?uri rdf:type yago:EuropeanCountries . ?uri onto:governmentType ?govern . FILTER regex(?govern,'monarchy') . }",qald-1 Where did Abraham Lincoln die?,"PREFIX onto: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:Abraham_Lincoln onto:deathPlace ?uri . OPTIONAL {?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } }",qald-1 Is the wife of President Obama called Michelle?,"PREFIX rdfs: PREFIX onto: PREFIX res: ASK WHERE { res:Barack_Obama onto:spouse ?spouse . ?spouse rdfs:label ?name . FILTER(regex(?name,'Michelle')) }",qald-1 Which states of Germany are governed by the Social Democratic Party?,"PREFIX onto: PREFIX res: PREFIX rdf: PREFIX rdfs: PREFIX yago: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type yago:StatesOfGermany . ?uri onto:leaderParty res:Social_Democratic_Party_of_Germany . OPTIONAL {?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } }",qald-1 Which U.S. states possess gold minerals?,"PREFIX yago: PREFIX rdf: PREFIX rdfs: PREFIX prop: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type yago:StatesOfTheUnitedStates . ?uri prop:mineral ?mineral . FILTER (regex(?mineral,'Gold')) . OPTIONAL {?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } }",qald-1 In which country does the Nile start?,"PREFIX onto: PREFIX rdfs: PREFIX res: SELECT ?uri ?string WHERE { res:Nile onto:sourceCountry ?uri . OPTIONAL {?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } }",qald-1 Is proinsulin a protein?,"PREFIX res: PREFIX rdf: PREFIX onto: ASK WHERE { res:Proinsulin rdf:type onto:Protein . }",qald-1 Which classis does the Millepede belong to?,"PREFIX prop: PREFIX res: SELECT ?string WHERE { res:Millipede prop:classis ?string . }",qald-1 How tall is Claudia Schiffer?,"PREFIX res: PREFIX onto: SELECT ?number WHERE { res:Claudia_Schiffer onto:height ?number . }",qald-1 Who created Goofy?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri ?string WHERE { res:Goofy prop:creator ?string . ?uri prop:name ?string . }",qald-1 Give me the capitals of all U.S. states.,"PREFIX onto: PREFIX rdf: PREFIX rdfs: PREFIX yago: SELECT DISTINCT ?uri ?string WHERE { ?states rdf:type yago:StatesOfTheUnitedStates . ?states onto:capital ?uri . OPTIONAL {?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } }",qald-1 Give me all cities in New Jersey with more than 100000 inhabitants.,"PREFIX rdf: PREFIX rdfs: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type onto:City . ?uri prop:subdivisionName ?location . FILTER (regex(?location, 'New Jersey')) . ?uri prop:populationTotal ?inhabitants . FILTER (?inhabitants > 100000) . OPTIONAL {?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } }",qald-1 Which museum exhibits The Scream by Munch?,"PREFIX res: PREFIX prop: PREFIX rdfs: SELECT ?uri ?string WHERE { res:The_Scream prop:museum ?string . OPTIONAL { ?uri rdfs:label ?string. } }",qald-1 Is Egypts largest city also its capital?,"PREFIX res: PREFIX onto: ASK WHERE { res:Egypt onto:largestCity ?large . res:Egypt onto:capital ?capital . FILTER (?large = ?capital) }",qald-1 What is the revenue of IBM?,"PREFIX onto: PREFIX res: SELECT ?number WHERE { res:IBM onto:revenue ?number . }",qald-1 Which states border Utah?,"PREFIX res: PREFIX prop: PREFIX yago: SELECT DISTINCT ?uri ?string WHERE { {res:Kansas prop:north ?string.} UNION {res:Kansas prop:northeast ?string.} UNION {res:Kansas prop:south ?string.} UNION {res:Kansas prop:southeast ?string.} UNION {res:Kansas prop:east ?string.} UNION {res:Kansas prop:west ?string.} OPTIONAL { ?uri rdf:type yago:StatesOfTheUnitedStates . ?uri prop:name ?string . } }",qald-1 In which country is the Limerick Lake?,"PREFIX onto: PREFIX rdfs: PREFIX res: SELECT DISTINCT ?uri ?string WHERE { res:Limerick_Lake onto:country ?uri . OPTIONAL { ?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } }",qald-1 Which television shows were created by Walt Disney?,"PREFIX onto: PREFIX rdf: PREFIX rdfs: PREFIX res: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type onto:TelevisionShow . ?uri onto:creator res:Walt_Disney . OPTIONAL {?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } }",qald-1 Which mountain is the highest after the Annapurna?,"PREFIX onto: PREFIX rdf: PREFIX rdfs: PREFIX res: SELECT ?uri ?string WHERE { res:Annapurna onto:elevation ?elev . ?uri rdf:type onto:Mountain . ?uri onto:elevation ?all . FILTER (?all < ?elev) . OPTIONAL {?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } } ORDER BY DESC(?all) LIMIT 1",qald-1 In which films directed by Garry Marshall was Julia Roberts starring?,"PREFIX rdf: PREFIX rdfs: PREFIX onto: PREFIX res: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type onto:Film . ?uri onto:starring res:Julia_Roberts . ?uri onto:director res:Garry_Marshall . OPTIONAL {?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } }",qald-1 Which bridges are of the same type as the Manhattan Bridge?,"PREFIX onto: PREFIX rdf: PREFIX rdfs: PREFIX res: PREFIX prop: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type onto:Bridge . ?uri prop:design ?design . res:Manhattan_Bridge prop:design ?manha . FILTER (regex(?design, ?manha)). FILTER (?uri != res:Manhattan_Bridge) . OPTIONAL {?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } }",qald-1 Was U.S. president Jackson involved in a war?,"PREFIX onto: PREFIX yago: PREFIX rdf: PREFIX rdfs: PREFIX prop: ASK WHERE { ?uri rdf:type yago:PresidentsOfTheUnitedStates . ?uri prop:name ?name . FILTER (regex(?name, 'Jackson')) . OPTIONAL {?uri onto:battle ?battle .} FILTER BOUND(?battle). }",qald-1 Which European countries are a constitutional monarchy?,"PREFIX onto: PREFIX yago: PREFIX rdf: PREFIX rdfs: PREFIX res: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type yago:EuropeanCountries . ?uri onto:governmentType res:Constitutional_monarchy . OPTIONAL {?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } }",qald-1 Who is the author of WikiLeaks?,"PREFIX res: PREFIX rdfs: PREFIX onto: SELECT ?uri ?string WHERE { res:WikiLeaks onto:author ?uri . OPTIONAL {?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } }",qald-1 Which state of the United States of America has the highest density?,"PREFIX yago: PREFIX rdf: PREFIX rdfs: PREFIX prop: SELECT ?uri ?string WHERE { ?uri rdf:type yago:StatesOfTheUnitedStates . ?uri prop:densityrank ?density OPTIONAL {?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } } ORDER BY ASC(?density) LIMIT 1",qald-1 What is the currency of the Czech Republic?,"PREFIX prop: PREFIX res: PREFIX rdfs: SELECT ?uri ?string WHERE { res:Czech_Republic prop:currency ?string . ?uri rdfs:label ?string . }",qald-1 Which countries in the European Union adopted the Euro?,"PREFIX prop: PREFIX res: PREFIX rdfs: PREFIX yago: PREFIX rdf: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type yago:EuropeanUnionMemberStates . { ?uri prop:currency res:Euro . } UNION { ?uri prop:currencyCode ?code . FILTER regex(?code,'EUR') } OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } }",qald-1 What is the area code of Berlin?,"PREFIX onto: PREFIX res: SELECT ?string WHERE { res:Berlin onto:areaCode ?string . }",qald-1 Who is the owner of Universal Studios?,"PREFIX onto: PREFIX res: PREFIX rdfs: SELECT ?uri ?string WHERE { res:Universal_Studios onto:owner ?uri . OPTIONAL {?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } }",qald-1 Through which countries does the Yenisei river flow?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri ?string WHERE { res:Yenisei_River prop:country ?string . OPTIONAL { ?uri prop:commonName ?name . } FILTER regex(?name,?string) . OPTIONAL { ?uri prop:dateEnd ?date . } FILTER (!BOUND(?date)) }",qald-1 When did Germany join the EU?,"PREFIX res: PREFIX prop: SELECT ?date WHERE { res:Germany prop:accessioneudate ?date . }",qald-1 Which monarchs of the United Kingdom were married to a German?,"PREFIX yago: PREFIX onto: PREFIX rdf: PREFIX rdfs: PREFIX res: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type yago:MonarchsOfTheUnitedKingdom . { ?uri onto:spouse ?spouse . } UNION { ?spouse onto:spouse ?uri . } ?spouse onto:birthPlace res:Germany. OPTIONAL {?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } }",qald-1 When was the Battle of Gettysburg?,"PREFIX res: PREFIX onto: SELECT ?string WHERE { res:Battle_of_Gettysburg onto:date ?string . }",qald-1 What is the highest mountain in Germany?,"PREFIX rdf: PREFIX rdfs: PREFIX onto: SELECT ?uri ?string WHERE { ?uri rdf:type onto:Mountain . ?uri onto:elevation ?elevation . ?uri onto:locatedInArea ?area . FILTER (regex(?area,'Germany')) . OPTIONAL {?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } } ORDER BY DESC(?elevation) LIMIT 1",qald-1 Give me all soccer clubs in Spain.,"PREFIX rdf: PREFIX rdfs: PREFIX onto: PREFIX prop: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type onto:SoccerClub . { ?uri onto:ground ?ground . } UNION { ?uri prop:ground ?ground . } FILTER (regex(?ground, 'Spain')) . OPTIONAL {?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } }",qald-1 What are the official languages of the Philippines?,"PREFIX onto: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:Philippines onto:officialLanguage ?uri . OPTIONAL {?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } }",qald-1 Who is the mayor of New York City?,"PREFIX res: PREFIX onto: PREFIX rdfs: SELECT ?uri ?string WHERE { res:New_York_City onto:leaderName ?uri . OPTIONAL {?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } }",qald-1 Who designed the Brooklyn Bridge?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri ?string WHERE { res:Brooklyn_Bridge prop:designer ?string . ?uri prop:name ?string . }",qald-1 Which telecommunications organizations are located in Belgium?,"PREFIX rdfs: PREFIX rdf: PREFIX prop: PREFIX onto: PREFIX res: SELECT ?uri ?string WHERE { ?uri rdf:type onto:Organisation . ?uri prop:industry ?indus . { ?uri onto:location res:Belgium. } UNION { ?uri prop:location res:Belgium. } UNION { ?uri prop:locationCountry 'Belgium'@en . } FILTER (regex(?indus, 'Telecommunication')) . OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } }",qald-1 What is the profession of Frank Herbert?,"PREFIX prop: PREFIX res: SELECT DISTINCT ?string WHERE { res:Frank_Herbert prop:occupation ?string . }",qald-1 What is the highest place of Karakoram?,"PREFIX onto: PREFIX rdfs: PREFIX res: SELECT ?uri ?string WHERE { res:Karakoram onto:highestPlace ?uri . OPTIONAL {?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } }",qald-1 Give me the homepage of Forbes.,"PREFIX res: PREFIX foaf: SELECT DISTINCT ?uri WHERE { res:Forbes foaf:homepage ?uri . }",qald-1 Which companies are in the computer software industry?,"PREFIX rdfs: PREFIX rdf: PREFIX prop: PREFIX onto: PREFIX res: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type onto:Company . ?uri prop:industry ?indus . FILTER regex(?indus,'Computer') . FILTER regex(?indus,'software','i') . OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } }",qald-1 What did Bruce Carver die from?,"PREFIX res: PREFIX onto: SELECT ?uri ?string WHERE { res:Bruce_Carver onto:deathCause ?uri . OPTIONAL {?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } }",qald-1 Give me all female Russian astronauts.,"PREFIX yago: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type yago:RussianCosmonauts . ?uri rdf:type yago:FemaleAstronauts . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } }",qald-2 Give me the birthdays of all actors of the television show Charmed.,"PREFIX onto: PREFIX res: SELECT DISTINCT ?date WHERE { res:Charmed onto:starring ?actor . ?actor onto:birthDate ?date . }",qald-2 Is the wife of president Obama called Michelle?,"PREFIX onto: PREFIX res: PREFIX rdfs: ASK WHERE { res:Barack_Obama onto:spouse ?spouse . ?spouse rdfs:label ?name . FILTER(regex(?name,'Michelle')) }",qald-2 Which countries have places with more than two caves?,"PREFIX onto: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?cave rdf:type onto:Cave . ?cave onto:location ?uri . ?uri rdf:type onto:Country . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } } GROUP BY ?uri ?string HAVING (COUNT(?cave) > 2)",qald-2 Give me the capitals of all countries in Africa.,"PREFIX onto: PREFIX yago: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?states rdf:type yago:AfricanCountries . ?states onto:capital ?uri . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } }",qald-2 How many employees does IBM have?,"PREFIX onto: PREFIX res: SELECT ?number WHERE { res:IBM onto:numberOfEmployees ?number . }",qald-2 Which states border Illinois?,"PREFIX res: PREFIX prop: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:Illinois prop:borderingstates ?uri . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') . } }",qald-2 Which European countries have a constitutional monarchy?,"PREFIX onto: PREFIX res: PREFIX yago: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type yago:EuropeanCountries . ?uri onto:governmentType res:Constitutional_monarchy . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } }",qald-2 Which awards did WikiLeaks win?,"PREFIX res: PREFIX prop: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:WikiLeaks prop:awards ?uri . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } }",qald-2 Which state of the USA has the highest population density?,"PREFIX yago: PREFIX prop: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type yago:StatesOfTheUnitedStates . ?uri prop:densityrank ?rank . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } } ORDER BY ASC(?rank) LIMIT 1",qald-2 When did Finland join the EU?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?date WHERE { res:Finland prop:accessioneudate ?date . }",qald-2 What is the highest mountain in Australia?,"PREFIX onto: PREFIX res: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type onto:Mountain . ?uri onto:locatedInArea res:Australia . ?uri onto:elevation ?elevation . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } } ORDER BY DESC(?elevation) LIMIT 1",qald-2 Is Frank Herbert still alive?,"PREFIX onto: PREFIX res: ASK WHERE { res:Frank_Herbert onto:deathDate ?date . FILTER (!BOUND(?date)) }",qald-2 Give me all companies in the advertising industry.,"PREFIX prop: PREFIX onto: PREFIX res: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type onto:Company . ?uri prop:industry ?industry . FILTER regex(?industry,'advertising','i') . OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } }",qald-2 Give me all presidents of the United States.,"PREFIX yago: PREFIX onto: PREFIX prop: PREFIX res: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type onto:Person . { ?uri rdf:type yago:PresidentsOfTheUnitedStates. } UNION { ?uri rdf:type onto:President. ?uri prop:title res:President_of_the_United_States. } ?uri rdfs:label ?string. FILTER (lang(?string) = 'en' && !regex(?string,'Presidency','i') && !regex(?string,'and the')) . }",qald-2 Who was the wife of U.S. president Lincoln?,"PREFIX onto: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:Abraham_Lincoln onto:spouse ?uri. OPTIONAL { ?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } }",qald-2 What is the official website of Tom Cruise?,"PREFIX foaf: PREFIX res: SELECT DISTINCT ?string WHERE { res:Tom_Cruise foaf:homepage ?string . }",qald-2 Give me all people with first name Jimmy.,"PREFIX foaf: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type foaf:Person. ?uri foaf:givenName 'Jimmy'@en . OPTIONAL { ?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } }",qald-2 Who created Wikipedia?,"PREFIX onto: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:Wikipedia onto:author ?uri . OPTIONAL { ?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } }",qald-2 Give me all video games published by Mean Hamster Software.,"PREFIX onto: PREFIX prop: PREFIX res: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type onto:VideoGame . { ?uri prop:publisher 'Mean Hamster Software'@en . } UNION { ?uri onto:publisher res:Mean_Hamster_Software . } OPTIONAL { ?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } }",qald-2 Which languages are spoken in Estonia?,"PREFIX onto: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { { res:Estonia onto:language ?uri . } UNION { ?uri onto:spokenIn res:Estonia . } OPTIONAL { ?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } }",qald-2 How many films did Hal Roach produce?,"PREFIX onto: PREFIX res: SELECT COUNT(DISTINCT ?uri) WHERE { ?uri onto:producer res:Hal_Roach . }",qald-2 Give me all books written by Danielle Steel.,"PREFIX onto: PREFIX res: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type onto:Book . ?uri onto:author res:Danielle_Steel . OPTIONAL { ?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } }",qald-2 "Which airports are located in California, USA?","PREFIX onto: PREFIX res: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type onto:Airport . ?uri onto:location res:California . OPTIONAL { ?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } }",qald-2 Give me all Canadian Grunge record labels.,"PREFIX onto: PREFIX res: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type onto:RecordLabel . ?uri onto:genre res:Grunge . ?uri onto:country res:Canada . OPTIONAL { ?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } }",qald-2 Give me all movies with Tom Cruise.,"PREFIX onto: PREFIX res: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type onto:Film. ?uri onto:starring res:Tom_Cruise . OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } }",qald-2 Give me all female German chancellors.,"PREFIX yago: PREFIX prop: PREFIX res: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type yago:FemaleHeadsOfGovernment. ?uri prop:office res:Chancellor_of_Germany . OPTIONAL { ?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } }",qald-2 Was Natalie Portman born in the United States?,"PREFIX onto: PREFIX res: ASK WHERE { res:Natalie_Portman onto:birthPlace ?city . ?city onto:country res:United_States . }",qald-2 Which German cities have more than 250000 inhabitants?,"PREFIX onto: PREFIX res: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { { ?uri rdf:type onto:City . } UNION { ?uri rdf:type onto:Town . } ?uri onto:country res:Germany . ?uri onto:populationTotal ?population . FILTER ( ?population > 250000 ) OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } }",qald-2 Who was the successor of John F. Kennedy?,"PREFIX onto: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:John_F._Kennedy onto:successor ?uri . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } }",qald-2 Who is the mayor of Berlin?,"PREFIX onto: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:Berlin onto:leader ?uri . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } }",qald-2 How many students does the Free University in Amsterdam have?,"PREFIX onto: PREFIX res: SELECT ?num WHERE { res:Vrije_Universiteit onto:numberOfStudents ?num . }",qald-2 What is the second highest mountain on Earth?,"PREFIX onto: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type onto:Mountain . ?uri onto:elevation ?elevation . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } } ORDER BY DESC(?elevation) OFFSET 1 LIMIT 1",qald-2 Give me all professional skateboarders from Sweden.,"PREFIX onto: PREFIX prop: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri onto:occupation res:Skateboarding . { ?uri onto:birthPlace res:Sweden . } UNION { ?uri onto:birthPlace ?place . ?place onto:country res:Sweden . } OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } }",qald-2 When was Alberta admitted as province?,"PREFIX prop: PREFIX res: SELECT ?date WHERE { res:Alberta prop:admittancedate ?date . }",qald-2 To which countries does the Himalayan mountain system extend?,"PREFIX onto: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:Himalayas onto:country ?uri . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } }",qald-2 Give me a list of all trumpet players that were bandleaders.,"PREFIX onto: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri onto:occupation res:Bandleader . ?uri onto:instrument res:Trumpet . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } }",qald-2 What is the total amount of men and women serving in the FDNY?,"PREFIX prop: PREFIX res: SELECT ?num WHERE { res:New_York_City_Fire_Department prop:strength ?num . }",qald-2 Who is the Formula 1 race driver with the most races?,"PREFIX onto: PREFIX res: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type onto:FormulaOneRacer . ?uri onto:races ?x . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } } ORDER BY DESC(?x) OFFSET 0 LIMIT 1",qald-2 Give me all world heritage sites designated within the past five years.,"PREFIX onto: PREFIX prop: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type onto:WorldHeritageSite . ?uri prop:year ?x . FILTER ( ?x >= ""2007""^^xsd:integer) OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } }",qald-2 Who is the youngest player in the Premier League?,"PREFIX onto: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri onto:team ?x . ?x onto:league res:Premier_League . ?uri onto:birthDate ?y . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } } ORDER BY DESC(?y) OFFSET 0 LIMIT 1",qald-2 Give me all members of Prodigy.,"PREFIX onto: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:The_Prodigy onto:bandMember ?uri . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } }",qald-2 What is the longest river?,"PREFIX onto: PREFIX prop: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type onto:River . ?uri prop:length ?x . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } } ORDER BY DESC(?x) OFFSET 0 LIMIT 1",qald-2 Does the new Battlestar Galactica series have more episodes than the old one?,"PREFIX onto: PREFIX res: ASK WHERE { onto:numberOfEpisodes ?x . onto:numberOfEpisodes ?y . FILTER (?y > ?x) }",qald-2 Give me all cars that are produced in Germany.,"PREFIX onto: PREFIX prop: PREFIX res: PREFIX yago: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type onto:Automobile . { ?uri prop:production res:Germany . } UNION { ?uri prop:assembly res:Germany . } UNION { ?uri prop:manufacturer ?x . { ?x onto:locationCountry res:Germany . } UNION { ?x rdf:type yago:AutomotiveCompaniesOfGermany . } } OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } }",qald-2 Give me all people that were born in Vienna and died in Berlin.,"PREFIX onto: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri onto:birthPlace res:Vienna . ?uri onto:deathPlace res:Berlin . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } }",qald-2 How tall is Michael Jordan?,"PREFIX onto: PREFIX res: SELECT ?num WHERE { res:Michael_Jordan onto:height ?num . }",qald-2 What is the capital of Canada?,"PREFIX onto: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:Canada onto:capital ?uri . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } }",qald-2 Who is the governor of Texas?,"PREFIX res: PREFIX prop: PREFIX foaf: SELECT DISTINCT ?uri ?string WHERE { res:Texas prop:governor ?string . ?uri foaf:name ?string. }",qald-2 "Do Harry and William, Princes of Wales, have the same mother?","PREFIX prop: ASK WHERE { prop:mother ?x . prop:mother ?y . FILTER (?x = ?y) }",qald-2 Who was the father of Queen Elizabeth II?,"PREFIX res: PREFIX prop: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:Elizabeth_II prop:father ?uri . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } }",qald-2 Which U.S. state has been admitted latest?,"PREFIX res: PREFIX prop: PREFIX yago: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string ?x WHERE { ?uri rdf:type yago:StatesOfTheUnitedStates . ?uri prop:admittancedate ?x . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } } ORDER BY DESC(?x) OFFSET 0 LIMIT 1",qald-2 How many official languages are spoken on the Seychelles?,"PREFIX onto: PREFIX res: SELECT COUNT(DISTINCT ?x) WHERE { res:Seychelles onto:officialLanguage ?x . }",qald-2 Sean Parnell is the governor of which U.S. state?,"PREFIX yago: PREFIX prop: PREFIX res: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type yago:StatesOfTheUnitedStates . ?uri prop:governor res:Sean_Parnell . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } }",qald-2 Give me all movies directed by Francis Ford Coppola.,"PREFIX onto: PREFIX res: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type onto:Film . ?uri onto:director res:Francis_Ford_Coppola . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } }",qald-2 Give me all actors starring in movies directed by and starring William Shatner.,"PREFIX onto: PREFIX prop: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?x onto:director res:William_Shatner . ?x onto:starring res:William_Shatner . { ?x onto:starring ?uri . } UNION { ?x prop:starring ?uri . } OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } }",qald-2 What is the birth name of Angela Merkel?,"PREFIX prop: PREFIX res: SELECT DISTINCT ?string WHERE { res:Angela_Merkel prop:birthName ?string . }",qald-2 Give me all current Methodist national leaders.,"PREFIX prop: PREFIX res: PREFIX yago: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type yago:CurrentNationalLeaders . ?uri prop:religion res:Methodism . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } }",qald-2 How often did Nicole Kidman marry?,"PREFIX onto: PREFIX res: SELECT COUNT(DISTINCT ?x) WHERE { res:Nicole_Kidman onto:spouse ?x . }",qald-2 Give me all Australian nonprofit organizations.,"PREFIX onto: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri onto:type res:Nonprofit_organization . { ?uri onto:locationCountry res:Australia . } UNION { ?uri onto:location ?x . ?x onto:country res:Australia . } OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } }",qald-2 In which military conflicts did Lawrence of Arabia participate?,"PREFIX onto: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:T._E._Lawrence onto:battle ?uri . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } }",qald-2 Who developed Skype?,"PREFIX onto: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:Skype onto:developer ?uri . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } }",qald-2 How many inhabitants does Maribor have?,"PREFIX onto: PREFIX res: SELECT ?num WHERE { res:Maribor onto:populationTotal ?num . }",qald-2 Give me all companies in Munich.,"PREFIX onto: PREFIX res: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type onto:Company . { ?uri onto:location res:Munich . } UNION { ?uri onto:headquarter res:Munich . } UNION { ?uri onto:locationCity res:Munich . } OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } }",qald-2 List all boardgames by GMT.,"PREFIX onto: PREFIX res: PREFIX rdfs: SELECT ?uri ?string WHERE { ?uri onto:publisher res:GMT_Games . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } }",qald-2 Who founded Intel?,"PREFIX onto: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:Intel onto:foundedBy ?uri . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } }",qald-2 Who is the husband of Amanda Palmer?,"PREFIX prop: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:Amanda_Palmer prop:spouse ?uri . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } }",qald-2 Give me all breeds of the German Shepherd dog.,"PREFIX prop: PREFIX res: PREFIX rdfs: SELECT ?uri WHERE { ?uri prop:breed res:German_Shepherd_Dog . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } }",qald-2 Which cities does the Weser flow through?,"PREFIX onto: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:Weser onto:city ?uri . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } }",qald-2 Which countries are connected by the Rhine?,"PREFIX onto: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:Rhine onto:country ?uri . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } }",qald-2 Which professional surfers were born on the Philippines?,"PREFIX onto: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri onto:occupation res:Surfing . ?uri onto:birthPlace res:Philippines . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } }",qald-2 In which UK city are the headquarters of the MI6?,"PREFIX res: PREFIX onto: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:Secret_Intelligence_Service onto:headquarter ?uri . ?uri onto:country res:United_Kingdom . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } }",qald-2 Which other weapons did the designer of the Uzi develop?,"PREFIX onto: PREFIX prop: PREFIX res: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type onto:Weapon . ?uri prop:designer ?x . res:Uzi prop:designer ?x . FILTER (?uri != res:Uzi) OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } }",qald-2 Was the Cuban Missile Crisis earlier than the Bay of Pigs Invasion?,"PREFIX onto: PREFIX res: ASK WHERE { res:Cuban_Missile_Crisis onto:date ?x . res:Bay_of_Pigs_Invasion onto:date ?y . FILTER (?x < ?y) }",qald-2 Give me all Frisian islands that belong to the Netherlands.,"PREFIX onto: PREFIX res: PREFIX yago: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type yago:FrisianIslands . ?uri onto:country res:Netherlands . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } }",qald-2 What is the ruling party in Lisbon?,"PREFIX prop: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:Lisbon prop:leaderParty ?uri . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } }",qald-2 What are the nicknames of San Francisco?,"PREFIX prop: PREFIX res: SELECT DISTINCT ?string WHERE { res:San_Francisco prop:nickname ?string . }",qald-2 Which Greek goddesses dwelt on Mount Olympus?,"PREFIX prop: PREFIX res: PREFIX yago: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type yago:GreekGoddesses . ?uri prop:abode res:Mount_Olympus . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } }",qald-2 When were the Hells Angels founded?,"PREFIX prop: PREFIX res: SELECT ?date WHERE { res:Hells_Angels prop:founded ?date . }",qald-2 Give me the Apollo 14 astronauts.,"PREFIX onto: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri onto:mission res:Apollo_14 . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } }",qald-2 What is the time zone of Salt Lake City?,"PREFIX res: PREFIX prop: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:Salt_Lake_City prop:timezone ?uri . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } }",qald-2 Which U.S. states are in the same timezone as Utah?,"PREFIX res: PREFIX prop: PREFIX yago: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:Utah prop:timezone ?x . ?uri rdf:type yago:StatesOfTheUnitedStates . ?uri prop:timezone ?x . FILTER (?uri != res:Utah) OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } }",qald-2 Give me a list of all lakes in Denmark.,"PREFIX onto: PREFIX res: PREFIX yago: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { { ?uri rdf:type onto:Lake . ?uri onto:country res:Denmark . } UNION { ?uri rdf:type yago:LakesOfDenmark . } OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } }",qald-2 How many space missions have there been?,"PREFIX res: PREFIX onto: PREFIX rdf: SELECT COUNT(DISTINCT ?uri) WHERE { ?uri rdf:type onto:SpaceMission . }",qald-2 Did Socrates influence Aristotle?,"PREFIX onto: PREFIX res: PREFIX rdfs: ASK WHERE { res:Aristotle onto:influencedBy res:Socrates . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } }",qald-2 Give me all Argentine films.,"PREFIX onto: PREFIX prop: PREFIX res: PREFIX yago: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { { ?uri rdf:type yago:ArgentineFilms . } UNION { ?uri rdf:type onto:Film . { ?uri onto:country res:Argentina . } UNION { ?uri prop:country 'Argentina'@en . } } OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } }",qald-2 Give me all launch pads operated by NASA.,"PREFIX onto: PREFIX res: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type onto:LaunchPad . ?uri onto:operator res:NASA . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } }",qald-2 Which instruments did John Lennon play?,"PREFIX onto: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:John_Lennon onto:instrument ?uri . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } }",qald-2 Which ships were called after Benjamin Franklin?,"PREFIX res: PREFIX prop: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri prop:shipNamesake res:Benjamin_Franklin . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } }",qald-2 Who are the parents of the wife of Juan Carlos I?,"PREFIX onto: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:Juan_Carlos_I_of_Spain onto:spouse ?x . ?x onto:parent ?uri . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } }",qald-2 How many employees does Google have?,"PREFIX res: PREFIX onto: SELECT ?num WHERE { res:Google onto:numberOfEmployees ?num . }",qald-2 Did Tesla win a nobel prize in physics?,"PREFIX onto: PREFIX res: ASK WHERE { res:Nikola_Tesla onto:award res:Nobel_Prize_in_Physics . }",qald-2 Is Michelle Obama the wife of Barack Obama?,"PREFIX onto: PREFIX res: ASK WHERE { res:Barack_Obama onto:spouse res:Michelle_Obama . }",qald-2 When was the Statue of Liberty built?,"PREFIX prop: PREFIX res: SELECT ?num WHERE { res:Statue_of_Liberty prop:built ?num . }",qald-2 In which U.S. state is Area 51 located?,"PREFIX onto: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:Area_51 onto:location ?uri . ?uri onto:country res:United_States . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } }",qald-2 How many children did Benjamin Franklin have?,"PREFIX res: PREFIX onto: SELECT COUNT(DISTINCT ?uri) { res:Benjamin_Franklin onto:child ?uri . }",qald-2 When did Michael Jackson die?,"PREFIX onto: PREFIX res: SELECT DISTINCT ?date WHERE { res:Michael_Jackson onto:deathDate ?date . }",qald-2 Which daughters of British earls died in the same place they were born in?,"PREFIX onto: PREFIX yago: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type yago:DaughtersOfBritishEarls . ?uri onto:birthPlace ?x . ?uri onto:deathPlace ?y . FILTER (?x != ?y) . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } }",qald-2 List the children of Margaret Thatcher.,"PREFIX res: PREFIX onto: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:Margaret_Thatcher onto:child ?uri . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } }",qald-2 Who was called Scarface?,"PREFIX prop: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri prop:nickname res:Scarface . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } }",qald-2 Was Margaret Thatcher a chemist?,"PREFIX res: PREFIX onto: ASK WHERE { res:Margaret_Thatcher onto:profession res:Chemist . }",qald-2 Was Dutch Schultz a jew?,"PREFIX prop: PREFIX res: ASK WHERE { res:Dutch_Schultz prop:ethnicity 'Jewish'@en . }",qald-2 Give me all books by William Goldman with more than 300 pages.,"PREFIX onto: PREFIX res: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type onto:Book . ?uri onto:author res:William_Goldman . ?uri onto:numberOfPages ?x . FILTER (?x > 300) OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } }",qald-2 Which books by Kerouac were published by Viking Press?,"PREFIX onto: PREFIX res: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type onto:Book . ?uri onto:publisher res:Viking_Press . ?uri onto:author res:Jack_Kerouac . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } }",qald-2 Give me a list of all American inventions.,"PREFIX yago: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type yago:AmericanInventions . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } }",qald-2 How high is the Mount Everest?,"PREFIX onto: PREFIX res: SELECT ?num WHERE { res:Mount_Everest onto:elevation ?num. }",qald-2 Who created the comic Captain America?,"PREFIX onto: PREFIX res: PREFIX rdfs: SELECT ?uri ?string WHERE { res:Captain_America onto:creator ?uri . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } }",qald-2 How many people live in the capital of Australia?,"PREFIX onto: PREFIX res: SELECT ?num WHERE { res:Australia onto:capital ?x . ?x onto:populationTotal ?num . }",qald-2 What is the largest city in Australia?,"PREFIX onto: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:Australia onto:largestCity ?uri . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } }",qald-2 Who composed the music for Harold and Maude?,"PREFIX res: PREFIX onto: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:Harold_and_Maude onto:musicComposer ?uri . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } }",qald-2 Which films starring Clint Eastwood did he direct himself?,"PREFIX onto: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri onto:director res:Clint_Eastwood . ?uri onto:starring res:Clint_Eastwood . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } }",qald-2 In which city was the former Dutch queen Juliana buried?,"PREFIX onto: PREFIX res: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:Juliana_of_the_Netherlands onto:restingPlace ?uri. ?uri rdf:type onto:Settlement . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } }",qald-2 Where is the residence of the prime minister of Spain?,"PREFIX prop: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:Prime_Minister_of_Spain prop:residence ?uri . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } }",qald-2 Which U.S. State has the abbreviation MN?,"PREFIX prop: PREFIX res: PREFIX yago: PREFIX rdf: PREFIX rdfs: SELECT ?uri ?string WHERE { ?uri rdf:type yago:StatesOfTheUnitedStates . ?uri prop:postalabbreviation 'MN'@en . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } }",qald-2 Show me all songs from Bruce Springsteen released between 1980 and 1990.,"PREFIX onto: PREFIX res: PREFIX yago: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type onto:Song . ?uri onto:artist res:Bruce_Springsteen . ?uri onto:releaseDate ?date . FILTER (?date >= '1980-01-01'^^xsd:date && ?date <= '1990-12-31'^^xsd:date) OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } }",qald-2 Which movies did Sam Raimi direct after Army of Darkness?,"PREFIX onto: PREFIX prop: PREFIX res: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type onto:Film . ?uri onto:director res:Sam_Raimi . { ?uri onto:releaseDate ?x . } UNION { ?uri prop:released ?x . } res:Army_of_Darkness onto:releaseDate ?y . FILTER (?x > ?y) OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } }",qald-2 What is the founding year of the brewery that produces Pilsner Urquell?,"PREFIX prop: PREFIX res: PREFIX rdfs: SELECT ?num WHERE { res:Pilsner_Urquell prop:brewery ?uri . ?uri prop:foundation ?num . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } }",qald-2 Who wrote the lyrics for the Polish national anthem?,"PREFIX onto: PREFIX prop: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:Poland onto:anthem ?x . ?x prop:author ?uri . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } }",qald-2 Give me all B-sides of the Ramones.,"PREFIX onto: PREFIX prop: PREFIX res: SELECT DISTINCT ?string WHERE { ?x onto:musicalArtist res:Ramones . ?x prop:bSide ?string . }",qald-2 Who painted The Storm on the Sea of Galilee?,"PREFIX prop: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:The_Storm_on_the_Sea_of_Galilee prop:artist ?uri . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } }",qald-2 Which country does the creator of Miffy come from?,"PREFIX onto: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:Miffy onto:creator ?x . ?x onto:nationality ?uri . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } }",qald-2 For which label did Elvis record his first album?,"PREFIX onto: PREFIX res: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?x rdf:type onto:Album . ?x onto:artist res:Elvis_Presley . ?x onto:releaseDate ?y . ?x onto:recordLabel ?uri . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } } ORDER BY ASC(?y) LIMIT 1",qald-2 Who produces Orangina?,"PREFIX onto: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri onto:product res:Orangina . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } }",qald-2 Who is the daughter of Ingrid Bergman married to?,"PREFIX onto: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri WHERE { res:Ingrid_Bergman onto:child ?child . ?child onto:spouse ?uri . }",qald-3 In which city did John F. Kennedy die?,"PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { res:John_F._Kennedy onto:deathPlace ?uri . ?uri rdf:type onto:City . }",qald-3 Which classis do tree frogs belong to?,"PREFIX prop: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Hylidae prop:classis ?uri . }",qald-3 When did Latvia join the EU?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?date WHERE { res:Latvia prop:accessioneudate ?date . }",qald-3 Give me all actors starring in Last Action Hero.,"PREFIX prop: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Last_Action_Hero prop:starring ?uri . }",qald-3 Who wrote the book Les Piliers de la terre?,"PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:The_Pillars_of_the_Earth onto:author ?uri . }",qald-3 Who is the governor of Wyoming?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Wyoming prop:governor ?uri . }",qald-3 Do Prince Harry and Prince William have the same mother?,"PREFIX prop: ASK WHERE { prop:mother ?x . prop:mother ?y . FILTER (?x = ?y) }",qald-3 Who developed Minecraft?,"PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Minecraft onto:developer ?uri . }",qald-3 List all games by GMT.,"PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri onto:publisher res:GMT_Games . }",qald-3 In which U.S. state is Fort Knox located?,"PREFIX onto: PREFIX prop: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Fort_Knox prop:location ?uri . ?uri onto:country res:United_States . }",qald-3 Which U.S. state has the abbreviation MN?,"PREFIX prop: PREFIX yago: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:StatesOfTheUnitedStates . ?uri prop:postalabbreviation 'MN'@en . }",qald-3 Which movies did Kurosawa direct after Rashomon?,"PREFIX onto: PREFIX prop: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Film . ?uri onto:director res:Akira_Kurosawa . { ?uri onto:releaseDate ?x . } UNION { ?uri prop:released ?x . } onto:releaseDate ?y . FILTEr (?y > ?x) }",qald-3 Which diseases is Cetuximab used for?,"PREFIX rdfs: SELECT DISTINCT ?v WHERE { ?x rdfs:label ?l. FILTER(REGEX(?l,'Cetuximab','i')). ?x ?v. ?v a . }",qald-4 What are the diseases caused by Valdecoxib?,"PREFIX rdfs: SELECT DISTINCT ?x WHERE { ?v1 rdfs:label ?l. FILTER(REGEX(?l,'Valdecoxib','i')). ?v2 ?v1. ?v2 ?x. ?x a ?c. ?c . }",qald-4 What is the side effects of drugs used for Tuberculosis?,"PREFIX rdfs: SELECT DISTINCT ?x WHERE { ?v2. ?v2 a . ?v3 ?v2. ?v3 ?x. }",qald-4 What are the side effects of Valdecoxib?,"PREFIX rdfs: SELECT DISTINCT ?x WHERE { ?v1 rdfs:label ?l. FILTER(REGEX(?l,'Valdecoxib','i')). ?v2 ?v1. ?v2 ?x. }",qald-4 Give me all cosmonauts.,"PREFIX rdf: PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Astronaut . { ?uri onto:nationality res:Russia . } UNION { ?uri onto:nationality res:Soviet_Union . } }",qald-4 Who was John F. Kennedy's vice president?,"PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:John_F._Kennedy onto:vicePresident ?uri . }",qald-4 Give me a list of all bandleaders that play trumpet.,"PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri onto:occupation res:Bandleader . ?uri onto:instrument res:Trumpet . }",qald-4 Which countries have more than ten caves?,"PREFIX onto: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Country . ?cave rdf:type onto:Cave . { ?cave onto:location ?uri . } UNION { ?cave onto:location ?loc . ?loc onto:country ?uri . } } GROUP BY ?uri HAVING(COUNT(?cave) > 10)",qald-4 Give me all world heritage sites designated within the past two years.,"PREFIX onto: PREFIX prop: PREFIX rdf: PREFIX xsd: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:WorldHeritageSite . ?uri prop:year ?x . FILTER ( ?x >= '2012'^^xsd:integer) }",qald-4 Does Breaking Bad have more episodes than Game of Thrones?,"PREFIX onto: PREFIX res: ASK WHERE { res:Breaking_Bad onto:numberOfEpisodes ?x . res:Game_of_Thrones onto:numberOfEpisodes ?y . FILTER (?y > ?x) }",qald-4 How many languages are spoken in Turkmenistan?,"PREFIX onto: PREFIX res: SELECT COUNT(DISTINCT ?x) WHERE { res:Turkmenistan onto:language ?x . }",qald-4 Give me all actors starring in movies directed by William Shatner.,"PREFIX onto: PREFIX prop: PREFIX res: SELECT DISTINCT ?uri WHERE { ?x onto:director res:William_Shatner . ?x onto:starring ?uri . }",qald-4 Are tree frogs a type of amphibian?,"PREFIX onto: PREFIX res: ASK WHERE { res:Hylidae onto:class res:Amphibian . }",qald-4 Give me all Methodist politicians.,"PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Politician . ?uri onto:religion res:Methodism . }",qald-4 How often did Jane Fonda marry?,"PREFIX onto: PREFIX res: SELECT COUNT(DISTINCT ?uri) WHERE { res:Jane_Fonda onto:spouse ?uri . }",qald-4 Which professional surfers were born in Australia?,"PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri onto:occupation res:Surfing . ?uri onto:birthPlace res:Australia . }",qald-4 Give me all islands that belong to Japan.,"PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Island . ?uri onto:country res:Japan . }",qald-4 Give me all Apollo 14 astronauts.,"PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri onto:mission res:Apollo_14 . }",qald-4 Which U.S. states are in the same time zone as Utah?,"PREFIX res: PREFIX prop: PREFIX yago: PREFIX rdf: SELECT DISTINCT ?uri WHERE { res:Utah prop:timezone ?x . ?uri rdf:type yago:StatesOfTheUnitedStates . ?uri prop:timezone ?x . FILTER (?uri != res:Utah) }",qald-4 Give me all Danish films.,"PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Film . ?uri onto:country res:Denmark . }",qald-4 Which instruments does Cat Stevens play?,"PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Cat_Stevens onto:instrument ?uri . }",qald-4 Which Chess players died in the same place they were born in?,"PREFIX onto: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:ChessPlayer . ?uri onto:birthPlace ?x . ?uri onto:deathPlace ?y . FILTER (?x = ?y) . }",qald-4 Was Marc Chagall a jew?,"PREFIX prop: PREFIX res: ASK WHERE { res:Marc_Chagall prop:ethnicity 'Jewish'@en . }",qald-4 Give me all communist countries.,"PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Country . { ?uri onto:governmentType res:Communism . } UNION { ?uri onto:governmentType res:Communist_state . } }",qald-4 Which U.S. state has the highest population density?,"PREFIX yago: PREFIX prop: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:StatesOfTheUnitedStates . ?uri prop:densityrank ?rank . } ORDER BY ASC(?rank) OFFSET 0 LIMIT 1",qald-4 Which countries adopted the Euro?,"PREFIX prop: PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Country . { ?uri onto:currency res:Euro . } UNION { ?uri prop:currencyCode 'EUR'@en . } }",qald-4 Which monarchs were married to a German?,"PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Monarch . ?uri onto:spouse ?spouse . { ?spouse onto:birthPlace res:Germany. } UNION { ?spouse onto:birthPlace ?p . ?p onto:country res:Germany. } }",qald-4 What is the official language of Suriname?,"PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Suriname onto:officialLanguage ?uri . }",qald-4 Who is the mayor of Tel Aviv?,"PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Tel_Aviv onto:leaderName ?uri . }",qald-4 What is the highest place of the Urals?,"PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Ural_Mountains onto:highestPlace ?uri . }",qald-4 Who is the editor of Forbes?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Forbes onto:editor ?uri . }",qald-4 How many countries are there in Europe?,"PREFIX yago: PREFIX rdf: SELECT COUNT(DISTINCT ?uri) WHERE { ?uri rdf:type yago:EuropeanCountries . }",qald-4 Give me all libraries established earlier than 1400.,"PREFIX onto: PREFIX prop: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Library . ?uri prop:established ?year . FILTER (?year < 1400) }",qald-4 Give me all federal chancellors of Germany.,"PREFIX prop: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri prop:office res:Chancellor_of_Germany . }",qald-4 List all episodes of the first season of the HBO television series The Sopranos.,"PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri onto:series res:The_Sopranos . ?uri onto:seasonNumber 1 . }",qald-4 Which companies work in the aerospace industry as well as in medicine?,"PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Company . ?uri onto:industry res:Aerospace . ?uri onto:industry res:Medicine . }",qald-4 Is Christian Bale starring in Velvet Goldmine?,"PREFIX onto: PREFIX res: ASK WHERE { res:Velvet_Goldmine onto:starring res:Christian_Bale . }",qald-4 How many Aldi stores are there?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?number WHERE { res:Aldi onto:numberOfLocations ?number . }",qald-4 Who was the first president of the United States?,"PREFIX onto: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Person . ?uri onto:office '1st President of the United States'@en . }",qald-4 Give me all female given names.,"PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:GivenName . ?uri onto:gender res:Female . }",qald-4 Who wrote the book The Pillars of the Earth?,"PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:The_Pillars_of_the_Earth onto:author ?uri . }",qald-4 In which U.S. state is Mount McKinley located?,"PREFIX yago: PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:StatesOfTheUnitedStates . res:Mount_McKinley onto:locatedInArea ?uri . }",qald-4 Which organizations were founded in 1930?,"PREFIX onto: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Organisation . { ?uri onto:formationYear ?date . } UNION { ?uri onto:foundingYear ?date. } FILTER regex(?date,'^1930') . }",qald-4 Give me all taikonauts.,"PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Astronaut . ?uri onto:nationality res:China . }",qald-4 How many languages are spoken in Colombia?,"PREFIX onto: PREFIX res: SELECT COUNT(DISTINCT ?uri) WHERE { ?uri rdf:type onto:Language . res:Colombia onto:language ?uri . }",qald-4 Which poet wrote the most books?,"PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri onto:occupation res:Poet . ?x onto:author ?uri . ?x rdf:type onto:Book . } ORDER BY DESC(COUNT(?x)) OFFSET 0 LIMIT 1",qald-4 How many programming languages are there?,"PREFIX onto: PREFIX rdf: SELECT COUNT(DISTINCT ?uri) WHERE { ?uri rdf:type onto:ProgrammingLanguage . }",qald-4 Give me all Dutch parties.,"PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:PoliticalParty . ?uri onto:country res:Netherlands . }",qald-4 When was Carlo Giuliani shot?,"PREFIX prop: PREFIX res: SELECT DISTINCT ?date WHERE { res:Death_of_Carlo_Giuliani prop:dateOfDeath ?date . }",qald-4 Does the Isar flow into a lake?,"PREFIX onto: PREFIX res: PREFIX rdf: ASK WHERE { ?x onto:inflow res:Isar . ?x rdf:type onto:Lake . }",qald-4 Which rivers flow into a German lake?,"PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:River . ?x onto:inflow ?uri . ?x rdf:type onto:Lake . ?x onto:country res:Germany . }",qald-4 How heavy is Jupiter's lightest moon?,"PREFIX onto: PREFIX prop: PREFIX res: SELECT DISTINCT ?n WHERE { ?uri prop:satelliteOf res:Jupiter . ?uri onto:mass ?n . } ORDER BY ASC(?n) OFFSET 0 LIMIT 1",qald-4 Who is the youngest Darts player?,"PREFIX onto: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:DartsPlayer . ?uri onto:birthDate ?date . } ORDER BY DESC(?date) OFFSET 0 LIMIT 1",qald-4 Give me all animals that are extinct.,"PREFIX onto: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Animal . ?uri onto:conservationStatus ""EX""@en . }",qald-4 How many pages does War and Peace have?,"PREFIX onto: PREFIX res: SELECT DISTINCT ?n WHERE { res:War_and_Peace onto:numberOfPages ?n . }",qald-4 Which ingredients do I need for carrot cake?,"PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Carrot_cake onto:ingredient ?uri . }",qald-4 What is the most frequent death cause?,"PREFIX onto: SELECT DISTINCT ?x WHERE { ?uri onto:deathCause ?x . } ORDER BY DESC(COUNT(DISTINCT ?uri)) OFFSET 0 LIMIT 1",qald-4 Who has Tom Cruise been married to?,"PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri onto:spouse res:Tom_Cruise. }",qald-4 Who is the tallest player of the Atlanta Falcons?,"PREFIX onto: PREFIX prop: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri onto:team res:Atlanta_Falcons . ?uri onto:height ?h . } ORDER BY DESC(?h) OFFSET 0 LIMIT 1",qald-4 What is the bridge with the longest span?,"PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Bridge . ?uri onto:mainspan ?s . } ORDER BY DESC(?s) OFFSET 0 LIMIT 1",qald-4 Give me all films produced by Steven Spielberg with a budget of at least $80 million.,"PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Film . ?uri onto:director res:Steven_Spielberg . ?uri onto:budget ?b . FILTER( xsd:double(?b) >= 8.0E7 ) }",qald-4 Is Cola a beverage?,"PREFIX onto: PREFIX res: PREFIX rdf: ASK WHERE { res:Cola rdf:type onto:Beverage . }",qald-4 Which actor was casted in the most movies?,"PREFIX onto: PREFIX prop: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Actor . ?f rdf:type onto:Film . ?f onto:starring ?uri . } ORDER BY DESC(COUNT(DISTINCT(?f))) OFFSET 0 LIMIT 1",qald-4 Where was Bach born?,"PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Johann_Sebastian_Bach onto:birthPlace ?uri . }",qald-4 Which of Tim Burton's films had the highest budget?,"PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri onto:director res:Tim_Burton . ?uri onto:budget ?b . } ORDER BY ?b OFFSET 0 LIMIT 1",qald-4 Does Abraham Lincoln's death place have a website?,"PREFIX onto: PREFIX res: ASK WHERE { res:Abraham_Lincoln onto:deathPlace ?p . ?p onto:website ?w . }",qald-4 Who are the four youngest MVP basketball players?,"PREFIX onto: PREFIX prop: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:BasketballPlayer . ?uri onto:birthDate ?date. ?uri prop:highlights ?h . FILTER regex(?h,""MVP"") } ORDER BY DESC(?date) OFFSET 0 LIMIT 4",qald-4 What are the top-10 action role-playing video games according to IGN?,"PREFIX onto: PREFIX prop: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri . ?uri prop:ign ?score . } ORDER BY DESC(?score) LIMIT 10",qald-4 Give me all actors who were born in Berlin.,"PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Actor . ?uri onto:birthPlace res:Berlin . }",qald-4 Give me all actors who were born in Paris after 1950.,"PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Actor . ?uri onto:birthPlace res:Paris . ?uri onto:birthDate ?date . FILTER ( ?date >= xsd:dateTime(""1950-12-31T00:00:00Z"")) }",qald-4 What was Brazil's lowest rank in the FIFA World Ranking?,"PREFIX prop: PREFIX res: SELECT DISTINCT ?n WHERE { res:Brazil_national_football_team prop:fifaMin ?n . }",qald-4 Give me all Australian metalcore bands.,"PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Band . ?uri onto:genre res:Metalcore . { ?uri onto:hometown res:Australia . } UNION { ?uri onto:hometown ?h . ?h onto:country res:Australia . } }",qald-4 When is Halloween?,"PREFIX prop: PREFIX res: SELECT DISTINCT ?date WHERE { res:Halloween prop:date ?date . }",qald-4 How many inhabitants does the largest city in Canada have?,"PREFIX onto: PREFIX res: SELECT DISTINCT ?num WHERE { res:Canada onto:largestCity ?city . ?city onto:populationTotal ?num . }",qald-4 In which countries can you pay using the West African CFA franc?,"PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri onto:currency res:West_African_CFA_franc . }",qald-4 Give me the capitals of all countries that the Himalayas run through.,"PREFIX prop: PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Himalayas prop:country ?country . ?country onto:capital ?uri . }",qald-4 Who was the first to climb Mount Everest?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Mount_Everest onto:firstAscentPerson ?uri . }",qald-4 To which artistic movement did the painter of The Three Dancers belong?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:The_Three_Dancers onto:author ?person . ?person onto:movement ?uri . }",qald-4 Which pope succeeded John Paul II?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Pope_John_Paul_II prop:successor ?uri . }",qald-4 What was the last movie with Alec Guinness?,"PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Film . ?uri onto:starring res:Alec_Guinness . ?uri onto:releaseDate ?date . } ORDER BY DESC(?date) LIMIT 1",qald-4 How many James Bond movies are there?,"PREFIX rdf: PREFIX yago: SELECT COUNT(DISTINCT ?uri) WHERE { ?uri rdf:type yago:JamesBondFilms . }",qald-4 Which actor played Chewbacca?,"PREFIX prop: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Chewbacca prop:portrayer ?uri . }",qald-4 Give me the grandchildren of Bruce Lee.,"PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Bruce_Lee onto:child ?child . ?child onto:child ?uri . }",qald-4 Give me all writers that won the Nobel Prize in literature.,"PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Writer . ?uri onto:award res:Nobel_Prize_in_Literature . }",qald-4 What is the official color of the University of Oxford?,"PREFIX onto: PREFIX res: SELECT DISTINCT ?string WHERE { res:University_of_Oxford onto:officialSchoolColour ?string . }",qald-4 Give me all Swedish oceanographers.,"PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri onto:field res:Oceanography . ?uri onto:birthPlace res:Sweden . }",qald-4 How deep is Lake Placid?,"PREFIX onto: SELECT DISTINCT ?n WHERE { onto:depth ?n . }",qald-4 Is James Bond married?,"PREFIX onto: PREFIX res: ASK WHERE { res:James_Bond onto:spouse ?uri . }",qald-4 Which spaceflights were launched from Baikonur?,"PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri onto:launchPad res:Baikonur_Cosmodrome . }",qald-4 Give me all actors called Baldwin.,"PREFIX onto: PREFIX res: PREFIX foaf: SELECT DISTINCT ?uri WHERE { ?uri foaf:surname ""Baldwin""@en . { ?uri onto:occupation res:Actor . } UNION { ?uri rdf:type onto:Actor . } }",qald-4 What does CPU stand for?,"PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri onto:abbreviation ""CPU""@en . }",qald-4 In which country does the Ganges start?,"PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Ganges onto:sourceCountry ?uri . }",qald-5 Do Prince Harry and Prince William have the same parents?,"PREFIX onto: ASK WHERE { onto:parent ?x . onto:parent ?x . }",qald-5 How many missions does the Soyuz programme have?,"PREFIX prop: PREFIX res: SELECT COUNT(DISTINCT ?uri) WHERE { ?uri prop:programme res:Soyuz_programme . }",qald-5 Give me all Danish movies.,"PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Film . ?uri onto:country res:Denmark . }",qald-5 Is Rita Wilson the wife of Tom Hanks?,"PREFIX onto: PREFIX res: ASK WHERE { res:Tom_Hanks onto:spouse res:Rita_Wilson . }",qald-5 Who was called Frank The Tank?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { ?uri prop:nickname 'Frank The Tank'@en . }",qald-5 Which movies did Kurosawa direct?,"PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Film . ?uri onto:director res:Akira_Kurosawa . }",qald-5 Which television shows were created by John Cleese?,"PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:TelevisionShow . ?uri onto:creator res:John_Cleese . }",qald-5 Which awards did Douglas Hofstadter win?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Douglas_Hofstadter onto:award ?uri . }",qald-5 Who is the daughter of Robert Kennedy married to?,"PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Robert_F._Kennedy onto:child ?child . ?child onto:spouse ?uri . }",qald-5 Who is the owner of Rolls-Royce?,"PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Rolls-Royce_Motors onto:owner ?uri . }",qald-5 Was the wife of president Lincoln called Mary?,"PREFIX onto: PREFIX res: PREFIX rdfs: ASK WHERE { res:Abraham_Lincoln onto:spouse ?spouse . ?spouse rdfs:label ?name . FILTER(regex(?name,'Mary')) }",qald-5 Who was the 16th president of the United States?,"PREFIX onto: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri onto:office 'President of the United States' . ?uri onto:orderInOffice '16th' . }",qald-5 What is the most frequent cause of death?,"PREFIX onto: SELECT DISTINCT ?x WHERE { ?uri onto:deathCause ?x . } ORDER BY DESC(COUNT(DISTINCT ?uri)) OFFSET 0 LIMIT 1",qald-5 Which rockets were launched from Baikonur?,"PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Rocket . ?uri onto:launchSite res:Baikonur_Cosmodrome . }",qald-5 What does IYCM stand for?,"PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri onto:abbreviation 'IYCM' . }",qald-5 Which companies have more than 1 million employees?,"PREFIX onto: PREFIX prop: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Company . { ?uri onto:numberOfEmployees ?n . } UNION { ?uri prop:numEmployees ?n . } FILTER ( ?n > 1000000 ) }",qald-5 Give all swimmers that were born in Moscow.,"PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Swimmer . ?uri onto:birthPlace res:Moscow . }",qald-5 Who was called Rodzilla?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { ?uri prop:nickname ""Rodzilla""@en . }",qald-5 Show me the book that Muhammad Ali wrote.,"PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Book . ?uri onto:author res:Muhammad_Ali . }",qald-5 How many museums does Paris have?,"PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Museum . ?uri onto:location res:Paris . }",qald-5 Which city has the most inhabitants?,"PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:City . ?uri onto:populationTotal ?pop . } ORDER BY DESC(?pop) OFFSET 0 LIMIT 1",qald-5 Which city has the least inhabitants?,"PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:City . ?uri onto:populationTotal ?pop . } ORDER BY ASC(?pop) OFFSET 0 LIMIT 1",qald-5 Give me all the TV shows with Neil Patrick Harris.,"PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:TelevisionShow . ?uri onto:starring res:Neil_Patrick_Harris . }",qald-5 Who wrote The Hunger Games?,"PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:The_Hunger_Games onto:author ?uri . }",qald-5 Show a list of soccer clubs that play in the Bundesliga.,"PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:SoccerClub . ?uri onto:league res:Bundesliga . }",qald-5 What country is Mount Everest in?,"PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { res:Mount_Everest onto:locatedInArea ?uri . ?uri rdf:type onto:Country . }",qald-5 Who is the founder of Penguin Books?,"PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { res:Penguin_Books onto:founder ?uri . }",qald-5 Which programming languages influenced Javascript?,"PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:ProgrammingLanguage . ?uri onto:influenced res:JavaScript . }",qald-5 Did Che Guevara have children?,"PREFIX onto: PREFIX res: ASK WHERE { res:Che_Guevara onto:child ?uri . }",qald-5 List all the musicals with music by Elton John.,"PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Musical . ?uri onto:musicBy res:Elton_John . }",qald-5 Show me all the breweries in Australia.,"PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri ?x WHERE { ?uri rdf:type onto:Brewery . { ?uri onto:location res:Australia . } UNION { ?uri onto:location ?x . ?x onto:country res:Australia . } }",qald-5 When was the Titanic completed?,"PREFIX onto: PREFIX res: SELECT DISTINCT ?date WHERE { res:RMS_Titanic onto:completionDate ?date . }",qald-5 How much did Pulp Fiction cost?,"PREFIX onto: PREFIX res: SELECT DISTINCT ?n WHERE { res:Pulp_Fiction onto:budget ?n . }",qald-5 How many airlines are there?,"PREFIX onto: PREFIX rdf: SELECT COUNT(DISTINCT ?uri) WHERE { ?uri rdf:type onto:Airline . }",qald-5 Who played Agent Smith in Matrix?,"PREFIX prop: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Agent_Smith prop:portrayer ?uri . }",qald-5 How much carbs does peanut butter have?,"PREFIX prop: PREFIX res: SELECT DISTINCT ?carbs WHERE { res:Peanut_butter prop:carbs ?carbs . }",qald-5 Which book has the most pages?,"PREFIX onto: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Book . ?uri onto:numberOfPages ?n . } ORDER BY DESC(?n) OFFSET 0 LIMIT 1",qald-5 Which bridges cross the Seine?,"PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Bridge . ?uri onto:crosses res:Seine . }",qald-5 Who is the mayor of the capital of French Polynesia?,"PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:French_Polynesia onto:capital ?x . ?x onto:mayor ?uri . }",qald-5 When did Dracula's creator die?,"PREFIX onto: PREFIX res: SELECT DISTINCT ?date WHERE { res:Count_Dracula onto:creator ?x . ?x onto:deathDate ?date . }",qald-5 What is the location of the Houses of Parliament?,"PREFIX onto: PREFIX res: PREFIX rdf: SELECT ?uri WHERE { res:Palace_of_Westminster onto:location ?uri . }",qald-5 Show me all English Gothic buildings in Kent.,"PREFIX onto: PREFIX res: PREFIX rdf: SELECT ?uri WHERE { ?uri rdf:type onto:Building . ?uri onto:architecturalStyle res:English_Gothic_architecture . ?uri onto:location res:Kent . }",qald-5 Who was the pope that founded the Vatican Television?,"PREFIX onto: PREFIX res: PREFIX rdf: SELECT ?uri WHERE { ?uri rdf:type onto:Pope . res:Vatican_Television_Center onto:foundedBy ?uri . }",qald-5 What airlines are part of the SkyTeam alliance?,"PREFIX res: PREFIX prop: PREFIX onto: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Airline . { ?uri prop:alliance res:SkyTeam . } UNION { ?uri onto:Alliance res:SkyTeam . } }",qald-5 "What is the total population of Melbourne, Florida?","PREFIX onto: SELECT ?uri WHERE { onto:populationTotal ?uri . }",qald-5 Which airports does Air China serve?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Air_China onto:targetAirport ?uri . }",qald-5 In which year was Rachel Stevens born?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Rachel_Stevens onto:birthYear ?uri . }",qald-5 Where was JFK assassinated?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:John_F._Kennedy onto:deathPlace ?uri . }",qald-5 How many politicians graduated from Columbia University?,"PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?uri onto:profession res:Politician . ?uri onto:almaMater res:Columbia_University . }",qald-5 Which scientist is known for the Manhattan Project and the Nobel Peace Prize?,"PREFIX res: PREFIX onto: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri onto:knownFor res:Manhattan_Project . ?uri rdf:type onto:Scientist . ?uri onto:knownFor res:Nobel_Peace_Prize . }",qald-5 What is the highest volcano in Africa?,"PREFIX onto: PREFIX res: PREFIX rdf: PREFIX yago: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Volcano . ?uri onto:locatedInArea ?area . ?area rdf:type yago:AfricanCountries . ?uri onto:elevation ?elevation . } ORDER BY DESC(?elevation) OFFSET 0 LIMIT 1",qald-5 Which beer originated in Ireland?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?uri prop:type res:Beer . ?uri prop:origin ""Ireland""@en . }",qald-5 What are the specialities of the UNC Health Care?,"PREFIX onto: PREFIX res: PREFIX prop: PREFIX rdf: SELECT DISTINCT ?uri WHERE { res:UNC_Health_Care prop:speciality ?uri . }",qald-5 Who is the owner of Facebook?,"PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Facebook onto:foundedBy ?uri . }",qald-5 From which region is the Melon de Bourgogne?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Melon_de_Bourgogne onto:wineRegion ?uri . }",qald-5 Who was influenced by Socrates?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:influencedBy res:Socrates . }",qald-5 Who was president of Pakistan in 1978?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?uri prop:title res:President_of_Pakistan . ?uri prop:years 1978 . }",qald-5 Give me English actors starring in Lovesick.,"PREFIX res: PREFIX onto: PREFIX yago: SELECT DISTINCT ?uri WHERE { res:Lovesick onto:starring ?uri . { ?uri onto:birthPlace res:England . } UNION { ?uri rdf:type yago:EnglishFilmActors . } }",qald-5 Give me all types of eating disorders.,"PREFIX yago: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:EatingDisorders . }",qald-5 Who was married to president Chirac?,"PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Jacques_Chirac onto:spouse ?uri . }",qald-5 What is the largest metropolitan area in Washington state?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:largestmetro ?uri . }",qald-5 Where in France is sparkling wine produced?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:wineProduced res:Sparkling_wine . ?uri onto:location res:France . }",qald-5 Where did Hillel Slovak die?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Hillel_Slovak onto:deathPlace ?uri . }",qald-5 What is the timezone in San Pedro de Atacama?,"PREFIX res: PREFIX timezone: SELECT DISTINCT ?uri WHERE { res:San_Pedro_de_Atacama timezone:timezone ?uri . }",qald-5 In which city does the Chile Route 68 end?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Chile_Route_68 onto:routeEnd ?uri . }",qald-5 Give me all ESA astronauts.,"PREFIX rdf: PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Astronaut . ?uri onto:type res:European_Space_Agency . }",qald-5 Give me all Swedish holidays.,"PREFIX rdf: PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Holiday . ?uri onto:country res:Sweden . }",qald-5 Who is the youngest Pulitzer Prize winner?,"PREFIX rdf: PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri onto:award res:Pulitzer_Prize . ?uri onto:birthDate ?d . } ORDER BY DESC(?d) OFFSET 0 LIMIT 1",qald-5 Which animals are critically endangered?,"PREFIX onto: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Animal . ?uri onto:conservationStatus 'CR' . }",qald-5 Which soccer players were born on Malta?,"PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:SoccerPlayer . ?uri onto:birthPlace res:Malta . }",qald-5 Did Arnold Schwarzenegger attend a university?,"PREFIX onto: PREFIX res: PREFIX rdf: ASK WHERE { res:Arnold_Schwarzenegger onto:almaMater ?x . ?x rdf:type onto:University . }",qald-5 Which programming languages were influenced by Perl?,"PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:ProgrammingLanguage . { ?uri onto:influencedBy res:Perl . } UNION { res:Perl onto:influenced ?uri . } }",qald-5 Is Barack Obama a democrat?,"PREFIX onto: PREFIX res: ASK WHERE { res:Barack_Obama onto:party . }",qald-5 How many children does Eddie Murphy have?,"PREFIX prop: PREFIX res: SELECT DISTINCT ?n WHERE { res:Eddie_Murphy prop:children ?n . }",qald-5 Who is the oldest child of Meryl Streep?,"PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Meryl_Streep onto:child ?uri . ?uri onto:birthDate ?d . } ORDER BY ASC(?d) OFFSET 0 LIMIT 1",qald-5 Who killed John Lennon?,"PREFIX rdf: PREFIX onto: PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Person. ?uri prop:conviction res:Death_of_John_Lennon. }",qald-5 Which frequent flyer program has the most airlines?,"PREFIX onto: PREFIX prop: PREFIX rdf: PREFIX yago: SELECT ?uri WHERE { ?airline rdf:type onto:Airline. ?airline prop:frequentFlyer ?uri. ?uri rdf:type yago:FrequentFlyerPrograms. } ORDER BY DESC(COUNT(DISTINCT ?airline)) OFFSET 0 LIMIT 1",qald-5 In which city is Air China headquartered?,"PREFIX res: PREFIX yago: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Air_China onto:headquarter ?uri . ?uri rdf:type yago:City108524735 . }",qald-5 Which artists were born on the same date as Rachel Stevens?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Artist. res:Rachel_Stevens prop:dateOfBirth ?date . ?uri prop:dateOfBirth ?date . }",qald-5 How many scientists graduated from an Ivy League university?,"PREFIX res: PREFIX onto: SELECT DISTINCT count (?uri) WHERE { ?uri rdf:type onto:Scientist . ?uri onto:almaMater ?university . ?university onto:affiliation res:Ivy_League . }",qald-5 Which types of grapes grow in Oregon?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Oregon_wine onto:growingGrape ?uri . }",qald-5 Who is starring in Spanish movies produced by Benicio del Toro?,"PREFIX res: PREFIX onto: PREFIX rdf: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?film rdf:type onto:Film . ?film onto:country res:Spain . ?film onto:producer res:Benicio_del_Toro . ?film onto:starring ?uri . ?uri rdf:type onto:Person . }",qald-5 Who is the manager of Real Madrid?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:manager ?uri . }",qald-5 Give me the currency of China.,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:China onto:currency ?uri . }",qald-5 Which movies starring Brad Pitt were directed by Guy Ritchie?,"PREFIX res: PREFIX onto: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Film . ?uri onto:starring res:Brad_Pitt . ?uri onto:director res:Guy_Ritchie . }",qald-5 How many companies were founded by the founder of Facebook?,"PREFIX onto: PREFIX res: SELECT DISTINCT COUNT(?c) WHERE { res:Facebook onto:foundedBy ?uri . ?c onto:foundedBy ?uri . }",qald-5 How many companies were founded in the same year as Google?,"PREFIX onto: PREFIX res: SELECT COUNT(DISTINCT ?c) WHERE { ?c rdf:type onto:Company . ?c onto:foundingYear ?year . res:Google onto:foundingYear ?year . }",qald-5 Which subsidiary of Lufthansa serves both Dortmund and Berlin Tegel?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Lufthansa onto:subsidiary ?uri . ?uri onto:targetAirport res:Dortmund_Airport . ?uri onto:targetAirport res:Berlin_Tegel_Airport . }",qald-5 How many airlines are members of the Star Alliance?,"PREFIX onto: PREFIX onto: PREFIX res: PREFIX rdf: SELECT COUNT(DISTINCT ?uri) WHERE { ?uri rdf:type onto:Airline . ?uri onto:alliance res:Star_Alliance . }",qald-5 Give me all spacecrafts that flew to Mars.,"PREFIX onto: PREFIX prop: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Spacecraft . ?uri prop:planet res:Mars . }",qald-5 Which musician wrote the most books?,"PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri onto:occupation res:Musician . ?x onto:author ?uri . ?x rdf:type onto:Book . } ORDER BY DESC(COUNT(?x)) OFFSET 0 LIMIT 1",qald-5 Show me everyone who was born on Halloween.,"PREFIX prop: PREFIX res: PREFIX onto: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Person . { ?uri onto:birthDate ?date . } UNION { ?uri prop:birthDate ?date . } res:Halloween prop:date ?date . }",qald-5 Give me all Swiss non-profit organizations.,"PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri onto:type res:Nonprofit_organization . { ?uri onto:locationCountry res:Switzerland . } UNION { ?uri onto:location ?x . ?x onto:country res:Switzerland . } }",qald-5 In which country is Mecca located?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Mecca onto:country ?uri . }",qald-5 What is the net income of Apple?,"PREFIX onto: SELECT DISTINCT ?ni WHERE { onto:netIncome ?ni . }",qald-5 What does the abbreviation FIFA stand for?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?name WHERE { res:FIFA prop:name ?name . }",qald-5 When did the Ming dynasty dissolve?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?date WHERE { res:Ming_dynasty onto:dissolutionDate ?date . }",qald-5 Which museum in New York has the most visitors?,"PREFIX res: PREFIX onto: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Museum . ?uri onto:location res:New_York_City . ?uri onto:numberOfVisitors ?num . } ORDER BY DESC(?num) OFFSET 0 LIMIT 1",qald-5 Is Lake Baikal bigger than the Great Bear Lake?,"PREFIX res: PREFIX onto: ASK WHERE { res:Lake_Baikal onto:areaTotal ?a1 . res:Great_Bear_Lake onto:areaTotal ?a2 . FILTER (?a1 > ?a2) }",qald-5 Desserts from which country contain fish?,"PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { ?x onto:type res:Dessert . ?x onto:origin ?uri . ?x onto:ingredient res:Fish . }",qald-5 What is the highest mountain in Italy?,"PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Mountain . ?uri onto:locatedInArea res:Italy . ?uri onto:elevation ?num . } ORDER BY DESC(?num) OFFSET 0 LIMIT 1",qald-5 Where did the architect of the Eiffel Tower study?,"PREFIX prop: PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Eiffel_Tower onto:architect ?x . ?x prop:almaMater ?uri . }",qald-5 Which Greek parties are pro-European?,"PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:PoliticalParty . ?uri onto:country res:Greece . ?uri onto:ideology res:Pro-Europeanism . }",qald-5 What is the height difference between Mount Everest and K2?,"PREFIX onto: PREFIX res: SELECT DISTINCT (?h1-?h2) WHERE { res:Mount_Everest onto:elevation ?h1 . res:K2 onto:elevation ?h2 . }",qald-5 Who is the mayor of Rotterdam?,"PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Rotterdam onto:leaderName ?uri . }",qald-5 How high is the Yokohama Marine Tower?,"PREFIX onto: PREFIX res: SELECT DISTINCT ?num WHERE { res:Yokohama_Marine_Tower onto:height ?num . }",qald-5 Are Taiko a kind of Japanese musical instruments?,"PREFIX yago: PREFIX res: ASK WHERE { res:Taiko rdf:type yago:JapaneseMusicalInstruments . }",qald-5 How many ethnic groups live in Slovenia?,"PREFIX onto: PREFIX res: SELECT COUNT(DISTINCT ?uri) WHERE { res:Slovenia onto:ethnicGroup ?uri . }",qald-5 List the seven kings of Rome.,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?uri prop:title res:King_of_Rome . }",qald-5 Who were the parents of Queen Victoria?,"PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Queen_Victoria onto:parent ?uri . }",qald-5 Who is the heaviest player of the Chicago Bulls?,"PREFIX onto: PREFIX prop: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Person . ?uri onto:weight ?num . { ?uri prop:team res:Chicago_Bulls . } UNION { ?uri prop:draftTeam res:Chicago_Bulls . } UNION { ?uri onto:draftTeam res:Chicago_Bulls . } } ORDER BY DESC(?num) OFFSET 0 LIMIT 1",qald-5 Which volcanos in Japan erupted since 2000?,"PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Volcano . ?uri onto:locatedInArea res:Japan . ?uri onto:eruptionYear ?date . FILTER (year(?date) >= 2000) }",qald-5 Who is the tallest basketball player?,"PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:BasketballPlayer . ?uri onto:height ?num . } ORDER BY DESC(?num) OFFSET 0 LIMIT 1",qald-5 Are there any castles in the United States?,PREFIX dct: PREFIX dbc: ask where {?uri dct:subject dbc:Castles_in_the_United_States},qald-7 Can you find frescoes in Crete?,PREFIX dct: PREFIX dbc: PREFIX prop: PREFIX onto: PREFIX res: ask where { ?uri dct:subject dbc:Minoan_frescos . ?uri prop:museum ?museum . ?museum onto:location res:Crete . },qald-7 Do Urdu and Persian have a common root?,PREFIX onto: PREFIX res: ask where { res:Urdu onto:languageFamily ?uri . res:Persian_language onto:languageFamily ?uri . },qald-7 Does the Ford Motor Company have a manufacturing plant in Malaysia?,PREFIX onto: PREFIX res: ask where { ?uri onto:assembly res:Malaysia . ?uri onto:manufacturer res:Ford_Motor_Company . },qald-7 How many years was the Ford Model T manufactured?,PREFIX xsd: PREFIX res: PREFIX onto: SELECT (year(xsd:date(?end))-year(xsd:date(?start)) AS ?years) WHERE { res:Ford_Model_T onto:productionEndYear ?end. res:Ford_Model_T onto:productionStartYear ?start. },qald-7 Give me all American presidents in the last 20 years.,PREFIX rdf: PREFIX onto: PREFIX dct: PREFIX dbc: PREFIX prop: select distinct ?uri where { ?uri rdf:type onto:Person . ?uri dct:subject dbc:Presidents_of_the_United_States . ?uri prop:termEnd ?termEnd . FILTER(year(NOW()) - year(?termEnd) <= 20) },qald-7 Give me all gangsters from the prohibition era.,PREFIX onto: PREFIX res: PREFIX dct: PREFIX dbc: select distinct ?uri where { ?uri onto:occupation res:Gangster . ?uri dct:subject dbc:Prohibition-era_gangsters . },qald-7 Give me all Seven Wonders of the Ancient World.,PREFIX dct: PREFIX dbc: select ?uri where { ?uri dct:subject dbc:Seven_Wonders_of_the_Ancient_World },qald-7 Give me all chemical elements.,PREFIX rdf: PREFIX owl: PREFIX dct: PREFIX dbc: 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 onto: PREFIX res: PREFIX rdf: PREFIX dct: PREFIX dbc: select (COUNT(distinct ?uri) as ?count) where { { ?uri onto:location res:South_Carolina . ?uri rdf:type onto:Lake . } UNION { ?uri dct:subject dbc:Rivers_and_streams_of_South_Carolina . } },qald-7 How many states are in Mexico?,PREFIX onto: PREFIX res: select (count(?uri) as ?count) where { ?uri onto:type res:States_of_Mexico },qald-7 How many theories did Albert Einstein come up with?,PREFIX res: PREFIX onto: select (count(?uri) as ?count) where { res:Albert_Einstein onto:knownFor ?uri},qald-7 Is horse racing a sport?,PREFIX res: PREFIX onto: ask where { res:Horse_racing a onto:Sport },qald-7 Is Pluto really a planet?,PREFIX res: PREFIX onto: ask where { res:Pluto a onto:Planet },qald-7 Was Sigmund Freud married?,PREFIX res: PREFIX onto: ask where { res:Sigmund_Freud onto:spouse ?uri },qald-7 What form of government is found in South Africa?,PREFIX res: PREFIX onto: select ?uri where { res:South_Africa onto:governmentType ?uri },qald-7 What is the largest state in the United States?,PREFIX dct: PREFIX dbc: PREFIX rdf: PREFIX onto: select ?uri where { ?uri dct:subject dbc:States_of_the_United_States. ?uri rdf:type onto:AdministrativeRegion. ?uri onto:areaTotal ?area } ORDER BY DESC(?area) OFFSET 0 LIMIT 1,qald-7 What is the longest river in the world?,PREFIX rdf: PREFIX onto: select ?uri where { ?uri rdf:type onto:BodyOfWater . ?uri onto:length ?length } ORDER BY DESC(?length) LIMIT 1,qald-7 Which building after the Burj Khalifa has the most floors?,PREFIX res: PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Burj_Khalifa onto:floorCount ?burj . ?uri rdf:type onto:Building . ?uri onto:floorCount ?proj . FILTER(?proj < ?burj) } ORDER BY DESC(?proj) LIMIT 1,qald-7 What is the wavelength of indigo?,PREFIX res: PREFIX onto: select ?n where { res:Indigo onto:wavelength ?n },qald-7 What was the name of the famous battle in 1836 in San Antonio?,PREFIX xsd: PREFIX rdf: PREFIX onto: PREFIX res: select ?uri where { ?uri rdf:type onto:MilitaryConflict. ?uri onto:place res:San_Antonio. ?uri onto:date ?date. FILTER ( ?date > '1835-12-31T00:00:00Z'^^xsd:dateTime). FILTER ( ?date <= '1836-12-31T00:00:00Z'^^xsd:dateTime) },qald-7 What were the names of the three ships used by Columbus?,PREFIX rdf: PREFIX onto: PREFIX dct: PREFIX dbc: select ?uri where { ?uri rdf:type onto:Ship. ?uri dct:subject dbc:Christopher_Columbus. ?uri dct:subject dbc:Exploration_ships. },qald-7 What were the original 13 British colonies?,PREFIX dct: PREFIX dbc: 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: PREFIX onto: select distinct ?date where { res:Muhammad onto:deathDate ?date. },qald-7 When was the De Beers company founded?,PREFIX res: PREFIX onto: select distinct ?date where { res:De_Beers onto:foundingYear ?date. },qald-7 When was John Adams born?,PREFIX res: PREFIX onto: select distinct ?date where { res:John_Adams onto:birthDate ?date. },qald-7 Which American presidents were in office during the Vietnam War?,PREFIX res: PREFIX onto: PREFIX dct: PREFIX dbc: select distinct ?uri where { res:Vietnam_War onto:commander ?uri . ?uri dct:subject dbc:Presidents_of_the_United_States . },qald-7 Which city has the oldest running metro?,PREFIX onto: PREFIX res: PREFIX rdf: select ?loc where { ?uri onto:type res:Rapid_transit . ?uri onto:openingYear ?date . ?uri onto:location ?loc . ?loc rdf:type onto:City . } ORDER BY ASC(?date) LIMIT 1,qald-7 Which holidays are celebrated around the world?,PREFIX rdf: PREFIX onto: select distinct ?uri where { ?uri rdf:type onto:Holiday. },qald-7 Who assassinated President McKinley?,PREFIX rdf: PREFIX onto: PREFIX dct: PREFIX dbc: select distinct ?uri where { ?uri rdf:type onto:Person . ?uri dct:subject dbc:American_assassins . ?uri dct:subject dbc:Assassination_of_William_McKinley . },qald-7 Who discovered Pluto?,PREFIX res: PREFIX onto: select ?uri where { res:Pluto onto:discoverer ?uri },qald-7 Who killed Caesar?,PREFIX dct: PREFIX dbc: select distinct ?uri where { ?uri dct:subject dbc:Assassins_of_Julius_Caesar. },qald-7 Who was buried in the Great Pyramid of Giza?,PREFIX onto: PREFIX res: select ?uri where { ?uri onto:restingPlace res:Great_Pyramid_of_Giza . } ,qald-7 Who was the first King of England?,PREFIX rdf: PREFIX onto: PREFIX yago: select distinct ?uri where { ?uri rdf:type onto:Royalty. ?uri rdf:type yago:WikicatEnglishMonarchs . ?uri onto:activeYearsStartYear ?date . } ORDER BY ASC(?date) OFFSET 0 LIMIT 1,qald-7 What was the final result of the War of the Roses?,PREFIX onto: PREFIX res: select distinct ?result where { ?uri onto:isPartOfMilitaryConflict res:Wars_of_the_Roses. ?uri onto:result ?result . ?uri onto:date ?date } ORDER BY DESC(?date) OFFSET 0 LIMIT 1,qald-7 Who writes the Farmers' Almanac?,PREFIX prop: select ?uri where { prop:editor ?uri. },qald-7 How big is the earth's diameter?,PREFIX xsd: PREFIX res: PREFIX onto: select distinct (xsd:double(?radius)*2 AS ?diameter) where { res:Earth onto:meanRadius ?radius . },qald-7 When did Paraguay proclaim its independence?,PREFIX res: PREFIX prop: select distinct ?date where { res:Paraguay prop:establishedDate ?date . },qald-7 How many people live in Eurasia?,PREFIX res: PREFIX onto: select distinct ?population where { res:Eurasia onto:populationTotal ?population . },qald-7 Give me the runtime of Toy Story.,PREFIX res: PREFIX onto: select distinct ?runtime where { res:Toy_Story onto:runtime ?runtime . },qald-7 What was the first name of the band Queens of the Stone Age?,PREFIX res: PREFIX onto: select distinct ?name where { res:Queens_of_the_Stone_Age onto:alias ?name . },qald-7 Give me the birth place of Frank Sinatra.,PREFIX res: PREFIX onto: select distinct ?place where { res:Frank_Sinatra onto:birthPlace ?place . },qald-7 Which university did Angela Merkel attend?,PREFIX res: PREFIX onto: select distinct ?university where { res:Angela_Merkel onto:almaMater ?university . },qald-7 What is the alma mater of the chancellor of Germany Angela Merkel?,PREFIX onto: PREFIX res: SELECT ?Almamater WHERE { res:Angela_Merkel onto:almaMater ?Almamater },qald-8 How large is the area of UK?,PREFIX onto: PREFIX res: SELECT ?area WHERE { res:United_Kingdom onto:areaTotal ?area },qald-8 Who is the author of the interpretation of dreams?,PREFIX onto: PREFIX res: SELECT ?Author WHERE { res:The_Interpretation_of_Dreams onto:author ?Author },qald-8 What is the birth name of Adele?,PREFIX onto: PREFIX res: SELECT ?bn WHERE { res:Adele onto:birthName ?bn },qald-8 What are the top selling luxury vehicle brands in Germany?,PREFIX onto: PREFIX dct: PREFIX dbc: SELECT ?company WHERE { ?company dct:subject dbc:Car_manufacturers_of_Germany ; onto:equity ?equity ; onto:netIncome ?netIncome ; onto:production ?production ; onto:revenue ?revenue } ORDER BY DESC(?equity),qald-8 How many awards has Bertrand Russell?,PREFIX res: PREFIX prop: SELECT (COUNT(?Awards) AS ?Counter) WHERE { res:Bertrand_Russell prop:awards ?Awards },qald-8 Who is Dan Jurafsky?,PREFIX onto: PREFIX res: SELECT ?Dan WHERE { VALUES ?Dan {res:Daniel_Jurafsky } },qald-8 When will start the final match of the football world cup 2018?,PREFIX res: PREFIX prop: SELECT ?Date WHERE { res:2018_FIFA_World_Cup prop:date ?Date } OFFSET 24 LIMIT 1,qald-8 how much is the elevation of Düsseldorf Airport ?,PREFIX onto: PREFIX res: SELECT ?ele WHERE { res:Düsseldorf_Airport onto:elevation ?ele } LIMIT 1,qald-8 how much is the total population of european union?,PREFIX onto: PREFIX res: SELECT ?europop WHERE { res:European_Union onto:populationTotal ?europop },qald-8 when was the founding date of french fifth republic?,PREFIX onto: PREFIX res: SELECT ?ff WHERE { res:French_Fifth_Republic onto:foundingDate ?ff },qald-8 Who are the founders of BlaBlaCar?,PREFIX res: PREFIX prop: SELECT ?founder WHERE { res:BlaBlaCar prop:founders ?founder },qald-8 how many foreigners speak German?,PREFIX res: PREFIX prop: SELECT ?Ger_lang WHERE { res:German_language prop:speakers ?Ger_lang } OFFSET 1 LIMIT 1,qald-8 Where is the birthplace of Goethe?,PREFIX onto: PREFIX res: SELECT ?Goethe WHERE { res:Johann_Wolfgang_von_Goethe onto:birthPlace ?Goethe },qald-8 Where is the origin of Carolina reaper?,PREFIX onto: PREFIX res: SELECT ?uri WHERE { res:Carolina_Reaper onto:origin ?uri },qald-8 How much is the population of Mexico City ?,PREFIX onto: PREFIX res: SELECT ?Mexico_City WHERE { res:Mexico_City onto:populationTotal ?Mexico_City },qald-8 What is the nick name of Baghdad?,PREFIX res: PREFIX foaf: SELECT ?nm WHERE { res:Baghdad foaf:nick ?nm },qald-8 Who is the novelist of the work a song of ice and fire?,PREFIX res: PREFIX prop: SELECT ?Novelist WHERE { res:A_Song_of_Ice_and_Fire prop:author ?Novelist },qald-8 What is the percentage of area water in Brazil?,PREFIX onto: PREFIX res: SELECT ?percentage WHERE { res:Brazil onto:percentageOfAreaWater ?percentage },qald-8 How much is the population of Iraq?,PREFIX onto: PREFIX res: SELECT ?pIraq WHERE { res:Iraq onto:populationTotal ?pIraq },qald-8 What is the population of Cairo?,PREFIX onto: PREFIX res: SELECT ?pop WHERE { res:Cairo onto:populationTotal ?pop },qald-8 How much is the population density rank of Germany?,PREFIX res: PREFIX prop: SELECT ?rank WHERE { res:Germany prop:populationDensityRank ?rank },qald-8 What is the relation between Resource Description Framework and Web Ontology Language?,PREFIX onto: PREFIX res: SELECT ?rdf_owl WHERE { res:Web_Ontology_Language onto:abstract ?rdf_owl } LIMIT 1,qald-8 How large is the total area of North Rhine-Westphalia?,PREFIX onto: PREFIX res: SELECT ?tarea WHERE { res:North_Rhine-Westphalia onto:areaTotal ?tarea },qald-8 What is the original title of the interpretation of dreams?,PREFIX res: PREFIX foaf: SELECT ?title WHERE { res:The_Interpretation_of_Dreams foaf:name ?title },qald-8 Who are the writers of the Wall album of Pink Floyd?,PREFIX res: PREFIX prop: SELECT ?writers WHERE { res:The_Wall prop:writer ?writers },qald-8 When was the death of Shakespeare?,PREFIX onto: PREFIX res: SELECT ?x WHERE { res:William_Shakespeare onto:deathDate ?x } LIMIT 1,qald-8 With how many countries Iran has borders?,PREFIX res: PREFIX prop: SELECT ?border WHERE { res:Geography_of_Iran prop:borders ?border } LIMIT 8,qald-8 What is the smallest city by area in Germany?,PREFIX onto: PREFIX skos: PREFIX dbc: PREFIX dct: SELECT ?city WHERE { ?m skos:broader dbc:Cities_in_Germany . ?city dct:subject ?m ; onto:areaTotal ?area } ORDER BY ?area LIMIT 1,qald-8 Which beer brewing comapnies are located in North-Rhine Westphalia?,PREFIX onto: PREFIX dct: PREFIX dbc: PREFIX rdf: SELECT ?company WHERE { ?company dct:subject dbc:Companies_based_in_North_Rhine-Westphalia ; rdf:type onto:Brewery },qald-8 What is the largest city in america?,PREFIX onto: PREFIX res: SELECT ?lcity WHERE { res:United_States onto:largestCity ?lcity },qald-8 Who is the current federal minister of finance in Germany?,PREFIX onto: SELECT ?leader WHERE { onto:leader ?leader },qald-8 What is the highest mountain in the Bavarian Alps?,PREFIX prop: PREFIX onto: PREFIX res: SELECT ?m WHERE { res:Bavarian_Alps prop:highest ?m} ,qald-8 Who is 8th president of US?,PREFIX onto: PREFIX prop: PREFIX res: SELECT ?name WHERE { res:8th_President_of_the_United_States onto:wikiPageRedirects ?link . ?link prop:name ?name },qald-8 Where is the most deep point in the ocean?,"PREFIX rdfs: PREFIX dct: PREFIX res: SELECT ?point WHERE { res:Extreme_points_of_Earth dct:subject ?x . ?point dct:subject ?x ; rdfs:comment ?comment FILTER ( lang(?comment) = ""en"" ) } OFFSET 13 LIMIT 1",qald-8 In which state Penn State University is located?,PREFIX onto: PREFIX res: SELECT ?s WHERE { res:Pennsylvania_State_University onto:state ?s },qald-8 Which species does an elephant belong?,PREFIX res: PREFIX prop: SELECT ?species WHERE { res:Elephant prop:species ?species },qald-8 What is Donald Trump's main business?,PREFIX onto: PREFIX res: SELECT ?owner WHERE { ?owner onto:owner res:Donald_Trump },qald-8 What is the last work of Dan Brown?,PREFIX onto: PREFIX prop: PREFIX res: SELECT ?book ?date WHERE { ?book onto:author res:Dan_Brown . ?book prop:releaseDate|onto:publicationDate ?date } ORDER BY DESC(?date),qald-8 What other books have been written by the author of The Fault in Our Stars?,PREFIX onto: SELECT ?books WHERE { ?books onto:author },qald-8 When was the last episode of the TV series Friends aired?,PREFIX onto: PREFIX res: SELECT ?date WHERE { res:Friends onto:completionDate ?date },qald-8 What is the highest mountain in Saxony Germany?,PREFIX onto: PREFIX res: SELECT ?m WHERE { ?m onto:mountainRange res:Ore_Mountains ; onto:elevation ?height } ORDER BY DESC(?height) LIMIT 1,qald-9 How much is the population of mexico city ?,PREFIX onto: PREFIX res: SELECT ?Mexico_City WHERE { res:Mexico_City onto:populationTotal ?Mexico_City },qald-9 how much is the total population of european union?,PREFIX onto: PREFIX res: SELECT ?europop WHERE { res:European_Union onto:populationTotal ?europop },qald-9 Where is Sungkyunkwan University?,PREFIX onto: PREFIX res: SELECT DISTINCT ?country WHERE { res:Sungkyunkwan_University onto:city ?city ; onto:country ?country },qald-9 When was the death of Shakespeare?,PREFIX onto: PREFIX res: SELECT ?x WHERE { res:William_Shakespeare onto:deathDate ?x } LIMIT 1,qald-9 how big is the total area of North Rhine- Westphalia?,PREFIX onto: PREFIX res: SELECT ?tarea WHERE { res:North_Rhine-Westphalia onto:areaTotal ?tarea },qald-9 how much is the population Iraq?,PREFIX onto: PREFIX res: SELECT ?pIraq WHERE { res:Iraq onto:populationTotal ?pIraq },qald-9 how much is the population densty rank of germany?,PREFIX res: PREFIX prop: SELECT ?rank WHERE { res:Germany prop:populationDensityRank ?rank },qald-9 How many gold medals did Michael Phelps win at the 2008 Olympics?,"PREFIX onto: PREFIX res: PREFIX rdf: PREFIX rdfs: SELECT Count(?sub) as ?c WHERE { ?sub onto:goldMedalist res:Michael_Phelps . filter (contains (str(?sub), ""2008"") && contains (str(?sub), ""Olympics"")) }",qald-9 What is Angela Merkel’s birth name?,PREFIX res: PREFIX prop: SELECT DISTINCT ?string WHERE { res:Angela_Merkel prop:birthName ?string },qald-9 Which classes does the Millepede belong to?,PREFIX res: PREFIX prop: SELECT DISTINCT ?String WHERE { res:Millipede prop:taxon ?String },qald-9 Sean Parnell was the governor of which U.S. state?,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Sean_Parnell onto:region ?uri },qald-9 Is Pamela Anderson a vegan?,PREFIX res: ASK WHERE { res:Pamela_Anderson a },qald-9 Give me all American presidents of the last 20 years.,PREFIX onto: PREFIX prop: PREFIX dct: PREFIX dbc: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Person ; dct:subject dbc:Presidents_of_the_United_States ; onto:activeYearsEndDate ?termEnd FILTER ( ( year(now()) - year(?termEnd) ) <= 20 ) },qald-9 When is the movie Worst Case Scenario going to be in cinemas in the Netherlands?,"PREFIX onto: PREFIX rdfs: PREFIX res: PREFIX rdf: PREFIX foaf: SELECT DISTINCT ?rel WHERE { ?p ?o ; onto:releaseDate ?rel FILTER contains(lcase(str(?o)), ""netherlands"") }",qald-9 What is the wavelength of Indigo?,PREFIX onto: PREFIX res: SELECT ?n WHERE { res:Indigo onto:wavelength ?n },qald-9 Which daughters of British earls died at the same place they were born at?,PREFIX onto: PREFIX yago: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:WikicatDaughtersOfBritishEarls ; onto:birthPlace ?x ; onto:deathPlace ?y FILTER ( ?x = ?y ) },qald-9 In which studio did the Beatles record their first album?,PREFIX onto: PREFIX prop: PREFIX res: PREFIX rdf: PREFIX rdfs: PREFIX db: SELECT ?studio WHERE { ?album onto:artist res:The_Beatles ; rdf:type onto:Album ; onto:releaseDate ?date ; prop:studio ?studio } ORDER BY ASC(?date) LIMIT 1,qald-9 Which beer brewing companies are located in North-Rhine Westphalia?,PREFIX onto: PREFIX dct: PREFIX dbc: PREFIX rdf: SELECT ?company WHERE { ?company dct:subject dbc:Companies_based_in_North_Rhine-Westphalia ; rdf:type onto:Brewery },qald-9 What were the names of the three ships by Columbus?,PREFIX onto: PREFIX dct: PREFIX dbc: PREFIX rdf: SELECT ?uri WHERE { ?uri rdf:type onto:Ship ; dct:subject dbc:Christopher_Columbus ; dct:subject dbc:Exploration_ships },qald-9 Which type of sector is receiving the most Finland foreign aid in India?, PREFIX lso: select ?result { ?obs lso:finland-aid-recipient-country . ?obs lso:finland-aid-amount ?amount. ?obs lso:finland-aid-sector ?result. } order by desc(sum(xsd:decimal(?amount))) limit 1,qald-6 What types of foreign aid from Finland did Belarus receive in 2011?,PREFIX lso: select distinct(?result) { ?obs lso:finland-aid-recipient-country . ?obs lso:finland-aid-type-of-aid ?result . ?obs lso:refYear ?year. filter(year(?year)=2011). },qald-6 Butch Otter is the governor of which U.S. state?,"PREFIX rdf: PREFIX prop: PREFIX yago: SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:StatesOfTheUnitedStates . ?uri prop:governor . }",qald-6 How tall is Amazon Eve?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?height WHERE { res:Amazon_Eve onto:height ?height . } ",qald-6 Which weapons did Heckler & Koch develop?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Weapon . ?uri prop:designer . }",qald-6 Where is Fort Knox located?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Fort_Knox prop:location ?uri . }",qald-6 Who created Batman?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Batman onto:creator ?uri . } ",qald-6 Which politicians were married to a German?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Politician . ?uri onto:spouse ?spouse . { ?spouse onto:birthPlace . } UNION { ?spouse onto:birthPlace ?p . ?p onto:country . } } ",qald-6 When was Jack Wolfskin founded?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?year WHERE { res:Jack_Wolfskin onto:foundingYear ?year . } ",qald-6 How deep is Lake Chiemsee?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?n WHERE { res:Chiemsee onto:depth ?n . } ",qald-6 Give me the grandchildren of Elvis Presley.,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Elvis_Presley onto:child ?child . ?child onto:child ?uri . }",qald-6 What does ICRO stand for?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:abbreviation 'ICRO'^^ . } ",qald-6 When was Olof Palme shot?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?date WHERE { res:Olof_Palme onto:deathDate ?date . } ",qald-6 List all the musicals with music by Leonard Bernstein.,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Musical . ?uri onto:musicBy . } ",qald-6 Which airports does Yeti Airlines serve?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Yeti_Airlines onto:targetAirport ?uri . }",qald-6 Which movies starring Mickey Rourke were directed by Guy Ritchie?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Film . ?uri onto:starring . ?uri onto:director . } ",qald-6 Is Darth Vader Luke’s father?,"PREFIX res: PREFIX prop: ASK WHERE { res:Darth_Vader prop:children ""Luke Skywalker""@en . }",qald-6 Which subsidiary of TUI Travel serves both Glasgow and Dublin?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:TUI_Travel onto:subsidiary ?uri . ?uri onto:targetAirport res:Glasgow_Airport . ?uri onto:targetAirport res:Dublin_Airport . } ",qald-6 How high is the lighthouse in Colombo?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?num WHERE { res:Colombo_Lighthouse onto:height ?num . } ",qald-6 Who was the doctoral supervisor of Albert Einstein?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Albert_Einstein onto:doctoralAdvisor ?uri . }",qald-6 Did Kaurismäki ever win the Grand Prix at Cannes?,"PREFIX onto: ASK WHERE { onto:award . }",qald-6 Who wrote the song Hotel California?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Hotel_California onto:writer ?uri . }",qald-6 Who was on the Apollo 11 mission?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Apollo_11 prop:crewMembers ?uri . }",qald-6 Which electronics companies were founded in Beijing?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri a onto:Company . ?uri onto:industry res:Electronics . ?uri onto:foundationPlace res:Beijing . }",qald-6 What is in a chocolate chip cookie?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Chocolate_chip_cookie onto:ingredient ?uri . }",qald-6 What is the atmosphere of the Moon composed of?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Moon prop:atmosphereComposition ?uri . }",qald-6 How many movies did Park Chan-wook direct?,"PREFIX onto: SELECT COUNT(DISTINCT ?uri) WHERE { ?uri onto:director . }",qald-6 Who are the developers of DBpedia?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:DBpedia onto:developer ?uri . }",qald-6 Which Indian company has the most employees?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri a onto:Company . ?uri onto:location . ?uri onto:numberOfEmployees ?n . } ORDER BY DESC(?n) OFFSET 0 LIMIT 1",qald-6 What is the name of the school where Obama's wife studied?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?s WHERE { res:Barack_Obama prop:spouse ?x . ?x prop:almaMater ?s . } ",qald-6 Where does Piccadilly start?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:routeStart res:Piccadilly. } ",qald-6 What is the capital of Cameroon?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Cameroon onto:capital ?uri. } ",qald-6 When did the Boston Tea Party take place?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?d WHERE { res:Boston_Tea_Party prop:date ?d . } ",qald-6 Who played Gus Fring in Breaking Bad?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Gus_Fring onto:portrayer ?uri . }",qald-6 Who wrote Harry Potter?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Harry_Potter prop:author ?uri . } ",qald-6 Which actors play in Big Bang Theory?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:The_Big_Bang_Theory onto:starring ?uri . } ",qald-6 What is the largest country in the world?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri a onto:Country . ?uri onto:areaTotal ?n . } ORDER BY DESC(?n) OFFSET 0 LIMIT 1",qald-6 Who is the president of Eritrea?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:leader ?uri . onto:leaderTitle 'President'@en . } ",qald-6 Which computer scientist won an oscar?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { { ?uri onto:field . } UNION { ?uri ?s . FILTER regex(?s,'computer scientist','i') } ?uri onto:award . } ",qald-6 Who created Family Guy?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Family_Guy onto:creator ?uri . } ",qald-6 How many people live in Poland?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Poland onto:populationTotal ?uri . } ",qald-6 To which party does the mayor of Paris belong?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Paris onto:mayor ?x . ?x onto:party ?uri . }",qald-6 Who does the voice of Bart Simpson?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Bart_Simpson prop:voiceactor ?uri . }",qald-6 Who composed the soundtrack for Cameron's Titanic?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:musicComposer ?uri . } ",qald-6 When did Boris Becker end his active career?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?d WHERE { res:Boris_Becker onto:activeYearsEndDate ?d . } ",qald-6 Show me all basketball players that are higher than 2 meters.,"PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri a onto:BasketballPlayer . ?uri onto:height ?n . FILTER (?n > 2.0) }",qald-6 What country is Sitecore from?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Sitecore onto:foundationPlace ?uri . }",qald-6 Which country was Bill Gates born in?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Bill_Gates onto:birthPlace ?x . ?x onto:country ?uri . }",qald-6 Who developed Slack?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:product . }",qald-6 In which city did Nikos Kazantzakis die?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Nikos_Kazantzakis onto:deathPlace ?uri . ?uri a onto:Town . }",qald-6 How many grand-children did Jacques Cousteau have?,"PREFIX onto: SELECT COUNT(DISTINCT ?y) WHERE { onto:child ?x . ?x onto:child ?y . }",qald-6 Which films did Stanley Kubrick direct?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:director res:Stanley_Kubrick . }",qald-6 Does Neymar play for Real Madrid?,"PREFIX res: PREFIX onto: ASK WHERE { res:Neymar onto:team . }",qald-6 How many seats does the home stadium of FC Porto have?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?n WHERE { res:FC_Porto onto:ground ?x . ?x onto:seatingCapacity ?n . } ",qald-6 Show me all books in Asimov's Foundation series.,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:series res:Foundation_series . } ",qald-6 Which movies star both Liz Taylor and Richard Burton?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:starring res:Elizabeth_Taylor . ?uri onto:starring res:Richard_Burton . } ",qald-6 In which city are the headquarters of the United Nations?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Headquarters_of_the_United_Nations onto:location ?uri . ?uri a onto:City . } ",qald-6 In which city was the president of Montenegro born?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:office res:President_of_Montenegro . ?x onto:birthPlace ?uri . ?uri a onto:City . } ",qald-6 Which writers studied in Istanbul?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri a onto:Writer . { ?uri onto:almaMater ?x . } UNION { ?uri onto:education ?x . } { ?x onto:city res:Istanbul . } UNION { ?x prop:city res:Istanbul . } } ",qald-6 Who is the mayor of Paris?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Paris onto:mayor ?uri . }",qald-6 What is the full name of Prince Charles?,"PREFIX onto: SELECT DISTINCT ?s WHERE { onto:alias ?s . } ",qald-6 What is the longest river in China?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri a onto:River . ?uri onto:country . ?uri prop:length ?l . } ORDER BY DESC(?l) OFFSET 0 LIMIT 1",qald-6 Who discovered Ceres?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:discoverer ?uri . }",qald-6 When did princess Diana die?,"PREFIX onto: SELECT DISTINCT ?d WHERE { onto:deathDate ?d . }",qald-6 Who is the host of the BBC Wildlife Specials?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:BBC_Wildlife_Specials onto:presenter ?uri . }",qald-6 How many moons does Mars have?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?n WHERE { res:Mars prop:satellites ?n . } ",qald-6 What was the first Queen album?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri a onto:Album . ?uri onto:artist . ?uri onto:releaseDate ?d . } ORDER BY ASC(?d) OFFSET 0 LIMIT 1",qald-6 Did Elvis Presley have children?,"PREFIX res: PREFIX onto: ASK WHERE { res:Elvis_Presley onto:child ?uri . } ",qald-6 Give me a list of all Canadians that reside in the U.S.,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:birthPlace res:Canada . ?uri onto:residence res:United_States . } ",qald-6 Where is Syngman Rhee buried?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Syngman_Rhee onto:restingPlace ?uri . } ",qald-6 In which countries do people speak Japanese?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri a onto:Country . ?uri onto:language res:Japanese_language . } ",qald-6 Who is the king of the Netherlands?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Netherlands onto:leader ?uri . ?uri a onto:Royalty . } ",qald-6 When did the Dodo become extinct?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?s WHERE { res:Dodo prop:extinct ?s . } ",qald-6 Show me all Czech movies.,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri a onto:Film . ?uri onto:country res:Czech_Republic . } ",qald-6 Which rivers flow into the North Sea?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri a onto:River . ?uri onto:riverMouth res:North_Sea . } ",qald-6 When did Operation Overlord commence?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?d WHERE { res:Operation_Overlord onto:date ?d . } ",qald-6 Where do the Red Sox play?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Boston_Red_Sox prop:ballpark ?uri . } ",qald-6 In which time zone is Rome?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Rome onto:timeZone ?uri . } ",qald-6 Give me a list of all critically endangered birds.,"PREFIX dct: PREFIX dbc: PREFIX onto: SELECT DISTINCT ?uri ?p WHERE { ?uri a onto:Bird . { ?uri onto:conservationStatus 'CR'^^ . } UNION { ?uri dct:subject dbc:Critically_endangered_animals . } }",qald-6 How much did the Lego Movie cost?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?n WHERE { res:The_Lego_Movie onto:budget ?n . } ",qald-6 What was the original occupation of the inventor of Lego?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Lego prop:inventor ?x . ?x prop:occupation ?uri . } ",qald-6 Which countries have more than ten volcanoes?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x a onto:Volcano . ?x onto:locatedInArea ?uri . ?uri a onto:Country . } GROUP BY ?uri HAVING (COUNT(?x) > 10) ",qald-6 Show me all U.S. states.,"PREFIX yago: SELECT DISTINCT ?uri WHERE { ?uri a yago:StatesOfTheUnitedStates . } ",qald-6 Who wrote the Game of Thrones theme?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Game_of_Thrones onto:composer ?uri. }",qald-6 How many calories does a baguette have?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?n WHERE { res:Baguette onto:approximateCalories ?n. }",qald-6 Which companies produce hovercrafts?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri a onto:Company . ?uri onto:product res:Hovercraft . }",qald-6 How many emperors did China have?,"PREFIX prop: SELECT COUNT(DISTINCT ?uri) WHERE { ?uri prop:title . }",qald-6 Show me hiking trails in the Grand Canyon where there's no danger of flash floods.,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?uri prop:trailheads res:Grand_Canyon . FILTER NOT EXISTS { ?uri prop:hazards res:Flash_flood . } }",qald-6 In which ancient empire could you pay with cocoa beans?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:currency res:Cocoa_bean . }",qald-6 How did Michael Jackson die?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?s WHERE { res:Michael_Jackson prop:deathCause ?s . }",qald-6 Which space probes were sent into orbit around the sun?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?uri prop:satelliteOf res:Sun . }",qald-6 When was Coca Cola invented?,"PREFIX prop: SELECT DISTINCT ?n WHERE { prop:introduced ?n . } ",qald-6 What is the biggest stadium in Spain?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri a onto:Stadium . ?uri onto:location . ?uri onto:seatingCapacity ?n . } ORDER BY DESC(?n) OFFSET 0 LIMIT 1",qald-6 On which day is Columbus Day?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?d WHERE { res:Columbus_Day prop:date ?d . } ",qald-6 How short is the shortest active NBA player?,"PREFIX onto: SELECT DISTINCT ?n WHERE { ?x a onto:BasketballPlayer . ?x onto:league . ?x onto:height ?n . FILTER NOT EXISTS { ?x onto:activeYearsEndYear ?d . } } ORDER BY ASC(?n) OFFSET 0 LIMIT 1",qald-6 Whom did Lance Bass marry?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:spouse res:Lance_Bass . } ",qald-6 What form of government does Russia have?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Russia onto:governmentType ?uri . } ",qald-6 What movies does Jesse Eisenberg play in?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri a onto:Film . ?uri onto:starring res:Jesse_Eisenberg . }",qald-6 What color expresses loyalty?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:connotation res:Loyalty . }",qald-6 Show me all museums in London.,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri a onto:Museum . ?uri onto:location res:London . }",qald-6 Give me all South American countries.,"PREFIX yago: SELECT DISTINCT ?uri WHERE { ?uri a yago:SouthAmericanCountries . }",qald-6 Who is the coach of Ankara's ice hockey team?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:city res:Ankara . ?x onto:league res:Turkish_Ice_Hockey_First_League . ?x onto:coach ?uri . }",qald-6 Who is the son of Sonny and Cher?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:parent res:Cher . ?uri onto:parent res:Sonny_Bono . }",qald-6 What are the five boroughs of New York?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:governmentType . }",qald-6 Show me Hemingway's autobiography.,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:author res:Ernest_Hemingway . ?uri onto:literaryGenre res:Autobiography . }",qald-6 What kind of music did Lou Reed play?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Lou_Reed onto:genre ?uri . }",qald-6 In which city does Sylvester Stallone live?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri a onto:City . res:Sylvester_Stallone onto:residence ?uri . }",qald-6 Who was Vincent van Gogh inspired by?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:influenced res:Vincent_van_Gogh . }",qald-6 What are the names of the Teenage Mutant Ninja Turtles?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?s WHERE { res:Teenage_Mutant_Ninja_Turtles prop:members ?x . ?x prop:characterName ?s . }",qald-6 What are the zodiac signs?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?uri prop:element res:Astrological_sign . }",qald-6 What languages do they speak in Pakistan?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Pakistan onto:language ?uri . }",qald-6 Who became president after JFK died?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:John_F._Kennedy prop:presidentEnd ?x . ?uri prop:presidentStart ?x . }",qald-6 In what city is the Heineken brewery?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Heineken onto:manufacturer ?x . ?x onto:locationCity ?uri . }",qald-6 What is Elon Musk famous for?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Elon_Musk onto:knownFor ?uri . }",qald-6 What is Batman's real name?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?s WHERE { res:Batman prop:alterEgo ?s . }",qald-6 Are Taiko some kind of Japanese musical instrument?,"PREFIX res: PREFIX yago: ASK WHERE { res:Taiko a yago:WikicatJapaneseMusicalInstruments }",qald-9 How many students does the Free University of Amsterdam have?,"PREFIX onto: PREFIX res: SELECT DISTINCT ?num WHERE { res:Vrije_Universiteit_Amsterdam onto:numberOfStudents ?num }",qald-9 How many James Bond movies do exist?,"PREFIX dbc: PREFIX dct: SELECT (COUNT(DISTINCT ?uri) AS ?c) WHERE { ?uri dct:subject dbc:James_Bond_films }",qald-9 What languages are spoken in Pakistan?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Pakistan onto:language ?uri }",qald-9 What is the name of the university where Obama's wife studied?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?s WHERE { res:Barack_Obama onto:spouse ?x . ?x onto:almaMater ?s }",qald-9 In which city is the headquarter of Air China?,"PREFIX res: PREFIX onto: PREFIX yago: SELECT DISTINCT ?uri WHERE { res:Air_China onto:headquarter ?uri . ?uri a yago:City108524735 }",qald-9 Give me all libraries established before 1400.,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri a onto:Library ; prop:established ?year FILTER ( ?year < 1400 ) }",qald-9 How many movies did Stanley Kubrick direct?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:director . }",lcquad Which city's foundeer is John Forbes?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:founder . ?uri rdf:type onto:City}",lcquad What is the river whose mouth is in deadsea?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:riverMouth . ?uri rdf:type onto:River}",lcquad What is the allegiance of John Kotelawala ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:John_Kotelawala prop:allegiance ?uri } ",lcquad How many races have the horses bred by Jacques Van't Hart participated in?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:breeder . ?x prop:race ?uri . }",lcquad "What is the incumbent of the Al Gore presidential campaign, 2000 and also the president of the Ann Lewis ?","PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:incumbent ?uri. onto:president ?uri} ",lcquad What is the region of Tom Perriello ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Tom_Perriello onto:region ?uri } ",lcquad What layout can be found in cars similar to the Subaru Outback?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:related . ?x onto:layout ?uri . ?x rdf:type onto:Automobile}",lcquad Starwood operates in which places?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:operator res:Starwood_Hotels_and_Resorts_Worldwide . ?x prop:address ?uri . }",lcquad Name the mascot of Austin College ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Austin_College prop:mascot ?uri } ",lcquad What was the university of the rugby player who coached the Stanford rugby teams during 1906-1917?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:1906–17_Stanford_rugby_teams prop:headcoach ?x . ?x onto:university ?uri . }",lcquad "How many people live in Wilton, Connecticut?","PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:residence . }",lcquad What awards did the film director of The Haunted House win ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:director ?x . ?x onto:award ?uri . }",lcquad Name the origin of Henry Cluney ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Henry_Cluney prop:origin ?uri } ",lcquad List the things for which people of New Orleans are famous for?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:placeOfBirth . ?x prop:knownFor ?uri . ?x rdf:type onto:Person}",lcquad What sports are played in schools in the capital region?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:region . ?x onto:sport ?uri . ?x rdf:type onto:School}",lcquad "What company brought Riddim Ribbon to the market, and developed the batch monitor?","PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Batch_Monitor prop:developer ?uri. res:Riddim_Ribbon_feat._The_Black_Eyed_Peas prop:distributor ?uri} ",lcquad In which part of the world can i find Xynisteri and Mavro?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Xynisteri onto:origin ?uri. res:Mavro onto:origin ?uri . }",lcquad which awards have been given to people who fought in the Battle of France?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:battle . ?x onto:award ?uri . ?x rdf:type onto:Person}",lcquad Name the resting place of Charles Edward Magoon ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Charles_Edward_Magoon prop:restingplace ?uri } ",lcquad Who built the stadium which was rented for the 2013 Copa Centroamericana ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:tenant . ?x onto:builder ?uri . ?x rdf:type onto:Stadium}",lcquad Who was the silver medalist of Gymnastics at the 2008 Summer Olympics Women's artistic individual all-around ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:silverMedalist ?uri } ",lcquad what are some common surnames of female people?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:gender res:Female } ",lcquad Which company owns the manufacturer of the Edsel Ranger?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:products res:Edsel_Ranger . ?x prop:parent ?uri . }",lcquad List the total number of board members who share board with Creative commons ?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:board . ?x onto:board ?uri }",lcquad "Who is the leader of United States House of Representatives elections, 1788 and 1789 ?","PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:leader ?uri } ",lcquad The fugitive Kind and the Notebook of Trigorin is written by what author?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:The_Fugitive_Kind prop:writer ?uri. res:The_Notebook_of_Trigorin onto:author ?uri . }",lcquad Name the mountain whose range is Sierra Nevada (U.S.) and parent mountain peak is Nevado de Toluca?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:mountainRange . ?uri onto:parentMountainPeak . ?uri rdf:type onto:Mountain}",lcquad Where did the designer of Monument to Salavat Yulaev die?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Monument_to_Salavat_Yulaev onto:designer ?x . ?x prop:placeOfDeath ?uri . }",lcquad How many mammals are in the Chordate phylum?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:phylum . ?uri rdf:type onto:Mammal}",lcquad List the battles fought by Roh Tae-woo ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:battles ?uri } ",lcquad Which genre of books are published by Random House?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:publisher . ?x prop:subject ?uri . ?x rdf:type onto:Book}",lcquad "Which famous political figure appointed william cushing, and also founded Pittsburgh>","PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Pittsburgh onto:founder ?uri. res:William_Cushing onto:appointer ?uri} ",lcquad Which newspapers are owned by companies which are under Rolv Erik Ryssdal?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:keyPerson . ?uri prop:owners ?x . ?uri rdf:type onto:Newspaper}",lcquad Which series has an episode called The lost special and also a character named Sherlock Holmes ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:series ?uri. prop:characters ?uri} ",lcquad What are some Louisiana based models known for?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:placeOfBirth . ?x prop:knownFor ?uri . ?x rdf:type onto:Model}",lcquad List the common official language of the ladonia and Empire of Atlantium ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:officialLanguage ?uri. onto:officialLanguage ?uri . }",lcquad What are the prizes won by the animator of The Skeleton Dance ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:The_Skeleton_Dance onto:animator ?x . ?x onto:award ?uri . }",lcquad Which office holder's constituency is Haight-Ashbury and has military unit as USS Kittiwake ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:constituency . ?uri onto:militaryUnit . ?uri rdf:type onto:OfficeHolder}",lcquad What is the region of the ethnic group which speaks the language of Arkansas?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:language ?x . ?x prop:region ?uri . ?x rdf:type onto:EthnicGroup}",lcquad What is the religion of the member of parliament who is a relative of Sarathchandra Rajakaruna?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:relation . ?x onto:religion ?uri . ?x rdf:type onto:MemberOfParliament}",lcquad What organisation regulates and controls the New Sanno Hotel?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:New_Sanno_Hotel onto:tenant ?uri } ",lcquad Who is the common manager of Aston Villa 2000-02 season and aldo the manager of Middlesbrough F.C. season 2009-10,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:2000–01_Aston_Villa_F.C._season prop:name ?uri. res:2009–10_Middlesbrough_F.C._season onto:manager ?uri} ",lcquad Was Ganymede discovered by Galileo Galilei?,"PREFIX prop: ASK WHERE { prop:discoverer }",lcquad Name the F1 racer with relative as Ralf Schumacher and has child named Mick Schumacher?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:relatives . ?uri onto:child . ?uri rdf:type onto:FormulaOneRacer}",lcquad Does the Toyota Verossa have the front engine design platform?,"PREFIX onto: ASK WHERE { onto:automobilePlatform . }",lcquad What are some other products of the banks which makes Postbanken?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:product . ?x prop:products ?uri . ?x rdf:type onto:Bank}",lcquad What is the occupation of the Irving Chernev and Karen Grigorian?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Irving_Chernev onto:occupation ?uri. res:Karen_Grigorian onto:occupation ?uri . }",lcquad Who produces the trains operated by the MTR?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:operator . ?x onto:manufacturer ?uri . ?x rdf:type onto:Train}",lcquad Name the TV show with distributor as Broadcast syndication and has theme music composed by Primus ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:distributor . ?uri prop:themeMusicComposer . ?uri rdf:type onto:TelevisionShow}",lcquad In which countries can i find some feminist writers?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:movement . ?x onto:nationality ?uri . ?x rdf:type onto:Writer}",lcquad "In which teams did anyone who played as a defencemen, play previously?","PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:position res:Defenceman . ?x onto:formerTeam ?uri . }",lcquad What are the other band member of the Bands whose current members is Hynief?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:currentMembers . ?x onto:bandMember ?uri . ?x rdf:type onto:Band}",lcquad Which line of the Vadodara Junction railway station is the route end of Mumbai Vadodara Expressway ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Mumbai_Vadodara_Expressway onto:routeEnd ?uri. res:Vadodara_Junction_railway_station prop:line ?uri} ",lcquad Who authored the works published in the Jump Square Magazine?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:magazine res:Jump_Square . ?x prop:author ?uri . }",lcquad How many things are aired on BBC HD?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:network . }",lcquad Which work of Craig van Tilbury is close to the area of The Chess Monthyl ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:The_Chess_Monthly prop:discipline ?uri. res:Craig_Van_Tilbury onto:occupation ?uri} ",lcquad Where does the successor of Thongsuk Samdaengpan reside?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Thongsuk_Samdaengpan prop:successor ?x . ?x onto:location ?uri . }",lcquad What is the location city of the Denver Broncos which is also place of birth of the William C. Cramer ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Denver_Broncos onto:locationCity ?uri. res:William_C._Cramer prop:placeOfBirth ?uri} ",lcquad Was Mark Twain a character of Mark Twain Tonight?,"PREFIX res: PREFIX prop: ASK WHERE { res:Mark_Twain_Tonight prop:characters res:Mark_Twain }",lcquad List bacteria whose order (taxonomy) is Bacillales and domain is Bacteria?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:order . ?uri prop:domain . ?uri rdf:type onto:Bacteria}",lcquad What is the place of the Geography Club (play) which is also the official residence of the Scott Berkun?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:place ?uri. prop:residence ?uri} ",lcquad What are some characters of series produced by Ricky Grevais?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:executiveProducer res:Ricky_Gervais . ?uri onto:series ?x . }",lcquad "Is the song Killing is Out, School is in belong in the The Next Step?","PREFIX prop: ASK WHERE { prop:album }",lcquad Which band's former member are Kevin Jonas and Joe Jonas?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:formerBandMember . ?uri prop:pastMembers . ?uri rdf:type onto:Band}",lcquad Count all those whose youth club was managed by Luis Enrique.,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:manager . ?uri prop:youthclubs ?x . }",lcquad Is camel of the chordate phylum?,"PREFIX res: PREFIX prop: ASK WHERE { res:Camel prop:phylum res:Chordate }",lcquad What is the purpose of the Maharashtra Chess Association which is genere of PyChess?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Maharashtra_Chess_Association prop:purpose ?uri. res:PyChess onto:genre ?uri} ",lcquad Whose former teams are Indianapolis Colts and Carolina Panthers?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:formerTeam res:Indianapolis_Colts . ?uri onto:formerTeam res:Carolina_Panthers . }",lcquad In which language is All I need is Your Sweet lovin written ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:language ?uri } ",lcquad Which colonel consort is Dolley Madison?,"PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:rank . ?uri prop:spouse . }",lcquad Which title of Zaman Shah Durrani is also the nationality of Salahuddin ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Zaman_Shah_Durrani prop:title ?uri. res:Salahuddin_Rabbani onto:nationality ?uri} ",lcquad Does the merlin express have a hub at the cibano international airport?,"PREFIX res: PREFIX onto: ASK WHERE { res:Merlin_Express onto:hubAirport res:Cibao_International_Airport }",lcquad Was Duanne Allman known to play the Les Paul?,"PREFIX res: PREFIX prop: ASK WHERE { res:Duane_Allman prop:notableInstruments res:Gibson_Les_Paul }",lcquad List the judges of Rising Star which is also the artist of Brad Paisley discography ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:judges ?uri. prop:artist ?uri} ",lcquad Who are some people whose relation is hqed in Gold Base?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:headquarters res:Gold_Base . ?uri onto:religion ?x . }",lcquad Which party does Iqbal Singh and B Shiva Rao currently belong to?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:party ?uri. prop:party ?uri . }",lcquad In which state is the alma mater of Ben Ysursa located ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Ben_Ysursa prop:almaMater ?x . ?x onto:state ?uri . }",lcquad "What sport amongst the one Lagos Preparatory School practices, did Willian Garne play for?","PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Lagos_Preparatory_School onto:sport ?uri. res:William_Garne onto:occupation ?uri} ",lcquad What are the beverages whose origin is England?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:origin res:England } ",lcquad Which current member of Insect vs Robots is also the music composer of Kenny Dies ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Insects_vs_Robots prop:currentMembers ?uri. res:Kenny_Dies onto:musicComposer ?uri} ",lcquad What are the television shows whose distributer is HBO?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:distributor . ?uri rdf:type onto:TelevisionShow}",lcquad What is the distributing label of StandBy Records ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:StandBy_Records onto:distributingLabel ?uri } ",lcquad Who is the film star of On Air with Ryan Seacrest ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:On_Air_with_Ryan_Seacrest onto:starring ?uri } ",lcquad "Who have children named James Roosevelt and Franklin Delano Roosevelt, Jr.?","PREFIX prop: SELECT DISTINCT ?uri WHERE { ?uri prop:children . ?uri prop:children . }",lcquad In how many different places does Canal and River Trust own its assets?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:owner . ?x onto:location ?uri . }",lcquad Count the total number of launch site of the rockets which have been launched form Cape Canaveral Air Force Station ?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:launchSite . ?x onto:launchSite ?uri }",lcquad List some leaders of regions in the Indian Standard Time Zone?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:timeZone . ?x onto:leaderName ?uri . ?x rdf:type onto:Place}",lcquad Name some comic characters created by Bruce Timm?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:creator res:Bruce_Timm . }",lcquad Which university attended by Franklin W. Olin was also the alma mater of Patty Lin ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Patty_Lin prop:almaMater ?uri. res:Franklin_W._Olin prop:education ?uri} ",lcquad Whihc associate of THomas Bryan Martin is also the founder of Pittsburgh ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Thomas_Bryan_Martin onto:associate ?uri. res:Pittsburgh onto:founder ?uri} ",lcquad Who gives the license of WXXV-DT2 ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:licensee ?uri } ",lcquad Count the number of sports played by schools which play hockey ?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:sport . ?x onto:sport ?uri }",lcquad List the tomb of the royalties whose burial place is Little Easton ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:placeOfBurial . ?x prop:placeOfBurial ?uri . ?x rdf:type onto:Royalty}",lcquad What are some relatives of the people who fought in Operation Barbarossa?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:battle . ?x onto:relation ?uri . ?x rdf:type onto:Person}",lcquad How many awards have been given to screenwriters?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:occupation . ?x prop:awards ?uri . }",lcquad Who is the builder of Estadio Nacional de Costa Rica (2011) ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:builder ?uri } ",lcquad How many software run on operating system is Microsoft Windows?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:operatingSystem . ?uri rdf:type onto:Software}",lcquad What is the awards given to the horse whose grandson is the famous Counterpoint?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:grandsire ?x . ?x onto:honours ?uri . ?x rdf:type onto:Horse}",lcquad Where is the swedish covenant hospital?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Swedish_Covenant_Hospital onto:location ?uri } ",lcquad Who won a Norbert Wiener Award for Social and Professional Responsibility?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:prizes res:Norbert_Wiener_Award_for_Social_and_Professional_Responsibility . }",lcquad What awards have been given to Screenwriters?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:occupation res:Screenwriter . ?x prop:awards ?uri . }",lcquad Which office's people have died on the US Route 165?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:deathPlace . ?x prop:office ?uri . ?x rdf:type onto:Person}",lcquad In which races have Tillingdale's horses participated?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:owner . ?x prop:race ?uri . ?x rdf:type onto:Horse}",lcquad List the show related to the which was followed by Doctor Who Extra?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:subsequentWork . ?uri onto:related ?x . ?uri rdf:type onto:TelevisionShow}",lcquad What is the predecessor of the automobile which is the related of Cadillac Fleetwood?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:related ?x . ?x onto:predecessor ?uri . ?x rdf:type onto:Automobile}",lcquad Which country's largest city is Lima?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:largestCity res:Lima } ",lcquad Whose opponents are Ike Clanton and Billy Clanton?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:opponent res:Ike_Clanton . ?uri onto:opponent res:Billy_Clanton . }",lcquad List the institute of Robert hall ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:institution ?uri } ",lcquad To which religion does the commander of South Thailand insurgency belong?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:South_Thailand_insurgency onto:commander ?x . ?x onto:religion ?uri . }",lcquad Who was the writer of the novel Maniac Magee?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:notableworks . ?uri rdf:type onto:Writer}",lcquad Where is Emmett Hughes from?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Emmett_Hughes onto:nationality ?uri . }",lcquad What are the movies whose music is given by Laurie Johnson?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:music . ?uri rdf:type onto:Film}",lcquad What appliance Sony made after the success of PlayStation 2?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:manufacturer res:Sony . ?uri onto:predecessor res:PlayStation_2 . }",lcquad What are some cars similar to luxury cars?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:class . ?x prop:related ?uri . ?x rdf:type onto:Automobile}",lcquad "What television show is magistrated by Harry Connick, Jr.?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:judges . ?uri rdf:type onto:TelevisionShow}",lcquad Did Paul Weatherwax an editor of Behave Yourself?,"PREFIX prop: ASK WHERE { prop:editing }",lcquad does the journal of cancer have the creative commons license?,"PREFIX res: PREFIX prop: ASK WHERE { res:Journal_of_Cancer prop:license res:Creative_Commons_license }",lcquad What genre of games are made by Blizzard Entertainment studios?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:developer . ?x prop:genre ?uri . ?x rdf:type onto:VideoGame}",lcquad Name the series of Doctor Who: Evacuation Earth ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Doctor_Who:_Evacuation_Earth onto:series ?uri } ",lcquad List the awards won by the writer of Face to Face ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:writer ?x . ?x prop:awards ?uri . }",lcquad What is the common party of Chandra Shekhar and Govinda ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:otherParty ?uri. onto:party ?uri} ",lcquad What awards were given to the screenplayer of The Motorcycle Diaries?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:screenplay ?x . ?x prop:awards ?uri . }",lcquad Was Jack Ryan a nominee of US Senate?,"PREFIX onto: ASK WHERE { onto:nominee }",lcquad What are some music artists whose bands have signed up with Entertainment One Music?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:label . ?x onto:bandMember ?uri . ?x rdf:type onto:Band}",lcquad What team did Dan Daoust and Don Ashby play for?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Dan_Daoust onto:formerTeam ?uri. res:Don_Ashby prop:playedFor ?uri . }",lcquad Name the broadcast area of Radio Philippines Network ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Radio_Philippines_Network prop:area ?uri } ",lcquad Which district of Fort Heath radar station is also the state of Joesph Story ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Fort_Heath_radar_station prop:district ?uri. res:Joseph_Story prop:state ?uri} ",lcquad Which river's mouth is located in Gulf of Mexico and has source location as Itasca State Park ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:riverMouth . ?uri prop:sourceLocation . ?uri rdf:type onto:River}",lcquad Is my truly truly fair the band of mitch miller?,"PREFIX onto: ASK WHERE { onto:musicalBand }",lcquad Which religion is prevalent in the schools of the Ashanti region?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:region . ?x prop:denomination ?uri . ?x rdf:type onto:School}",lcquad Which politician was succeeded by someone who graduated from the Instituts d'tudes politiques?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:almaMater . ?uri prop:successor ?x . ?uri rdf:type onto:OfficeHolder}",lcquad How many different mascots are there of the NCAA teams?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:athletics . ?x prop:mascot ?uri . }",lcquad "Which of the continents that Digitalb worked in, was christine rolfes born in?","PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:regionServed ?uri. onto:birthPlace ?uri} ",lcquad Which nation hosts the WTA Tour Championships?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:WTA_Tour_Championships prop:country ?uri } ",lcquad Name the television show whose theme music is composed by Julian Gingell and broadcasted on FOX ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:themeMusicComposer . ?uri prop:channel . ?uri rdf:type onto:TelevisionShow}",lcquad What is the prize received by the one who wrote the screen play of The Postman ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:screenplay ?x . ?x onto:award ?uri . }",lcquad What are the awrds won by Laemmle Theatres ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Laemmle_Theatres onto:service ?uri } ",lcquad Is nintendo in the video games industry?,"PREFIX res: PREFIX prop: ASK WHERE { res:Nintendo prop:industry res:Video_game }",lcquad "Name the office holder whose predecessor is Henry E. Catto, Jr. and won Screen Actors Guild Life Achievement Award?","PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:predecessor . ?uri onto:award . ?uri rdf:type onto:OfficeHolder}",lcquad Which notable commanders of the Army Group Oberrhein (Germany) is the leader of the Kriminalpolizei?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:notableCommanders ?uri. onto:leader ?uri} ",lcquad Which maintainer of Cheasty Boulevard South is also the city of Soccer Bowl' 76 ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:city ?uri. onto:maintainedBy ?uri} ",lcquad Which colonel has allegiance to Colony of Virginia ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:allegiance . ?uri prop:rank . ?uri rdf:type onto:OfficeHolder}",lcquad Which driver came first in the 1993 European Grand Prix ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:1993_European_Grand_Prix prop:firstDriver ?uri } ",lcquad What is the layout of the cars similar to that of the Subaru Outback?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:relatedMeanOfTransportation . ?x onto:layout ?uri . ?x rdf:type onto:Automobile}",lcquad Name the university which has Lieutenaunt general as superintendent and mascot as Gyrfalcon ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:superintendent . ?uri prop:mascot . ?uri rdf:type onto:University}",lcquad How many other ingredient are there in the foods whihh have one of the ingredient as Potato ?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:ingredient . ?x onto:ingredient ?uri }",lcquad In which country is the Duong river?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Đuống_River onto:sourceCountry ?uri . }",lcquad How many companies have launched their rockets from the Vandenerg Air base?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:launchSite . ?x onto:manufacturer ?uri . ?uri rdf:type onto:Company}",lcquad List the destinations to which the airlines headquartered at the Gatwick Airport fly to?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:headquarters . ?x onto:destination ?uri . ?x rdf:type onto:Airline}",lcquad What are some given names for males?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:gender res:Male } ",lcquad The official residence of Sukhumbhand paribatra ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Sukhumbhand_Paribatra prop:residence ?uri } ",lcquad What are the television shows whose company's predecessor is Desilu Productions?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:predecessor . ?uri prop:company ?x . ?uri rdf:type onto:TelevisionShow}",lcquad What is operated by FedExField ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:FedExField onto:operator ?uri } ",lcquad Which battle did both Steven Palazao and tony hogg fight in?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Steven_Palazzo prop:battles ?uri. res:Tony_Hogg prop:battles ?uri . }",lcquad "Which company which assembles its cars in Broadmeadows, Victoria?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:assembly . ?x onto:parentCompany ?uri . ?x rdf:type onto:Automobile}",lcquad List the people casted in Betsy's Wedding and 16 candles?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:starring ?uri. prop:starring ?uri . ?uri rdf:type onto:Person}",lcquad Foxconn makes how many things?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:manufacturer . }",lcquad Do the polet airlines fly to moscow?,"PREFIX res: PREFIX onto: ASK WHERE { res:Polet_Airlines onto:targetAirport res:Moscow }",lcquad In how many nations can I find dishes made of Shallot?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:ingredient . ?x onto:country ?uri . ?uri rdf:type onto:Country}",lcquad What is the mascot of the military unit of David Prowse?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:branch ?x . ?x prop:mascot ?uri . }",lcquad Does Cohoes a junction on the NY State Route 470?,"PREFIX onto: ASK WHERE { onto:routeJunction }",lcquad How many other important things have been written by the creator of Stuart Alan Jones?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { onto:creator ?x . ?x onto:notableWork ?uri . }",lcquad What is the genre of the Band whose home town is County Westmeath?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:hometown . ?x prop:genre ?uri . ?x rdf:type onto:Band}",lcquad Which sports are played at institues in Taguig?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:city . ?x onto:sport ?uri . ?x rdf:type onto:EducationalInstitution}",lcquad "Whose album is Haiti, I am sorry?","PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Haiti_I_Am_Sorry onto:album ?uri } ",lcquad Is Microsoft office written in C++,"PREFIX prop: ASK WHERE { prop:programmingLanguage }",lcquad Whose band members are known to play a PRS guitar?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:notableInstruments res:PRS_Guitars . ?uri prop:currentMembers ?x . }",lcquad Which river's source place is Gloucestershire and mouth in North Sea?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:sourcePlace . ?uri onto:riverMouth . ?uri rdf:type onto:River}",lcquad Name the commanders of military conflicts where Roundhead was one of the commander ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:commander . ?x onto:commander ?uri . ?x rdf:type onto:MilitaryConflict}",lcquad What are some short story kind of Books?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:literaryGenre res:Short_story } ",lcquad What are the nicknames of the schools whose color is royal blue?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:colour . ?x prop:nickname ?uri . ?x rdf:type onto:School}",lcquad "To what political party do the politicians graduated from Somerville college, Oxford belong to?","PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:almaMater . ?x onto:party ?uri . ?x rdf:type onto:OfficeHolder}",lcquad What awards did Jos Rivera (playwright) win?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:awards ?uri } ",lcquad Which political figures were awarded Screen Actors Guild Life Achievement Award?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:award res:Screen_Actors_Guild_Life_Achievement_Award . }",lcquad What are the things whose director of photography died in United States?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:deathPlace res:United_States . ?uri prop:cinematography ?x . }",lcquad What is the Home Stadium of the Kenya national under-20 football team where Matin Suji was also born ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:homeStadium ?uri. onto:birthPlace ?uri} ",lcquad Name a company with key person as Dennis Muilenburg and Raymond Conner ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:keyPeople . ?uri onto:keyPerson . ?uri rdf:type onto:Company}",lcquad Which branch of american military have both George Siebels jr and Leroy Collins served?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:branch ?uri. prop:branch ?uri . ?uri rdf:type onto:MilitaryUnit}",lcquad What are some scientists who have stateless citizenship?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:citizenship . ?uri rdf:type onto:Scientist}",lcquad Name the regions served by Toll Global Express ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Toll_Global_Express onto:regionServed ?uri } ",lcquad What is the protected area whose nearest city is Kenya?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:nearestCity . ?uri rdf:type onto:ProtectedArea}",lcquad Count the nearest city to the historic palce whose one of the nearest city is Wisconsin ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:nearestCity . ?x prop:nearestCity ?uri }",lcquad Give me the total number of commander of the military conflicts whose commander is Roundhead (Wyandot).,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:commander . ?x onto:commander ?uri }",lcquad How many places were ruled by Elizabeth II?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:leaderName . ?uri rdf:type onto:Place}",lcquad List the interest of the scientists whose one of the field is Chinese poetry ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:fields . ?x prop:fields ?uri . ?x rdf:type onto:Scientist}",lcquad Who was the narrator of the show who's music is composed by John Douglas?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:composer . ?x prop:narrated ?uri . ?x rdf:type onto:TelevisionShow}",lcquad "Which parent comapny of hypnotize Minds is the label of the Producers , a 2005 film ?","PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:parent ?uri. prop:label ?uri} ",lcquad Which college of Luke List (golfer) is the alma mater of K. Terry Dornbush,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:college ?uri. prop:almaMater ?uri} ",lcquad Who is the fictional character who portrayed in Terminator 2: Judgment Day?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:portrayer . ?uri rdf:type onto:FictionalCharacter}",lcquad Which team of Dan Shamash is also the debutant team of John Estes ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:John_Estes onto:debutTeam ?uri. res:Dan_Shamash onto:team ?uri} ",lcquad Where do employees of Deroit Red Wings live?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:employer res:Detroit_Red_Wings . ?x onto:residence ?uri . }",lcquad What are some countries where companies headquartered in the Klang Valley operate?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:headquarters . ?x prop:country ?uri . ?x rdf:type onto:Company}",lcquad Did Chant Mas originate in West Africa?,"PREFIX res: PREFIX onto: ASK WHERE { res:Chanté_mas onto:stylisticOrigin res:West_Africa }",lcquad "Name the river whose mouth country is Mozambique and source region is North-Western Province, Zambia?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:mouthCountry . ?uri prop:sourceRegion . ?uri rdf:type onto:River}",lcquad Give me a count of bacterias which belongs to Bacilli class?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:class . ?uri rdf:type onto:Bacteria}",lcquad How many producers have worked for FremantleMedia productions?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:company . ?x onto:producer ?uri . }",lcquad Who is on the board of Kate Spade and company?,"PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:board . }",lcquad Which animator of Tommy Ticker's Tooth is also the director of The Haunted house ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:animator ?uri. onto:director ?uri} ",lcquad Name the university whose athletic department is called National Collegiate Athletic Association and has a chancellor named Nicholas S. Zeppos?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:athletics . ?uri prop:chancellor . ?uri rdf:type onto:University}",lcquad Name the common managing club of the Ivan Toplak and Bret Simon?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Ivan_Toplak onto:managerClub ?uri. res:Bret_Simon onto:managerClub ?uri . }",lcquad How many shows are made by Larry David?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:creator . ?uri rdf:type onto:TelevisionShow}",lcquad Martin AN/GSG-5 is a part of the building in which city?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:part . ?x prop:district ?uri . ?x rdf:type onto:Building}",lcquad How many architects are there who have made something used by Oakland athletics?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:tenant . ?x prop:architect ?uri . }",lcquad In which company's boards does the founder of Bomis sit?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Bomis onto:foundedBy ?x . ?x onto:board ?uri . }",lcquad "What genre isPyChess from, which employes Craig Van Tilbury?","PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Craig_Van_Tilbury onto:occupation ?uri. res:PyChess prop:genre ?uri} ",lcquad Where is Ethiopian Parliament Building located ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Ethiopian_Parliament_Building prop:locationCountry ?uri } ",lcquad "Which are the cities on the river which also flows in Tukwila, Washington ?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:city . ?x onto:city ?uri . ?x rdf:type onto:River}",lcquad Which award is presented by Downtown Athletic Club?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:presenter . ?uri rdf:type onto:Award}",lcquad Who appointed Joseph Clay and William Cushing to their office?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:appointer ?uri. onto:appointer ?uri . }",lcquad Who are the biological parents of Dannielynn Birkhead?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Dannielynn_Birkhead onto:parent ?uri } ",lcquad List the awards won by the spouse of Harriet Andersson?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Harriet_Andersson onto:partner ?x . ?x prop:awards ?uri . }",lcquad Who was engaged in wars of Fort Gadsden and Fort Barrancas?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:battle res:Fort_Gadsden . ?uri onto:battle res:Fort_Barrancas . }",lcquad Where are Solidus and Aureus used?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:currency . ?uri onto:currency . }",lcquad Which company owns the airlines whose hub is in Dubai?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:hubs . ?x prop:parent ?uri . ?x rdf:type onto:Airline}",lcquad Which appointer of William Clark is the successor of Levi Lincoln Sr ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:successor ?uri. prop:appointer ?uri} ",lcquad Which company's division is Audi India? Correct Question,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:divisions res:Audi_India } ",lcquad "What was the book that lead to Sagan's Cosmos, about?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:subsequentWork . ?x prop:subject ?uri . ?x rdf:type onto:Book}",lcquad What is the nationality of the chancellor who was served by Michael Mayr?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:deputy ?x . ?x onto:nationality ?uri . ?x rdf:type onto:Chancellor}",lcquad What is the official residence of the Helen Getachew which is also the palce of death of the Haile Selassie Gugsa ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Helen_Getachew onto:residence ?uri. res:Haile_Selassie_Gugsa prop:placeOfDeath ?uri} ",lcquad Who built the Ford Y-block engine ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:manufacturer ?uri } ",lcquad Does Gibby Haynes play the saxophone?,"PREFIX res: PREFIX prop: ASK WHERE { res:Gibby_Haynes prop:instrument res:Saxophone }",lcquad Is The Orator in the National Archaeological Museum of Florence?,"PREFIX prop: ASK WHERE { prop:museum }",lcquad What is the region of Lumberjack ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Lumberjack_100 prop:region ?uri } ",lcquad "Where did the president study, who's the president of Besiktas JK?","PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:president ?x . ?x prop:almaMater ?uri . }",lcquad Elizabeth Alexander and Jared Bernstein served under which Vice President?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:vicePresident ?uri. onto:vicePresident ?uri . }",lcquad How many awards have royal designers for industry awardwinners got?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:awards . ?x onto:award ?uri . ?uri rdf:type onto:Award}",lcquad Where is the team of Abdel Boucker located ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Abdel_Bouckar prop:team ?x . ?x onto:location ?uri . }",lcquad For which other teams do members of tanzanian national football team play?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:nationalteam res:Tanzania_national_football_team . ?x onto:team ?uri . }",lcquad What is the governing body of Burro Flats Painted Cave ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Burro_Flats_Painted_Cave onto:governingBody ?uri } ",lcquad Did Hank Williams Jr. make Early in the Morning and Late at Night?,"PREFIX res: PREFIX onto: ASK WHERE { res:Early_in_the_Morning_and_Late_at_Night onto:musicalArtist res:Hank_Williams_Jr. }",lcquad What are some cartoons distributed by a subsidiary of Time Warner?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:parentCompany . ?uri prop:distributor ?x . ?uri rdf:type onto:Cartoon}",lcquad Whose famous works have been illustrated by E W Kemble?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:illustrator res:E._W._Kemble . ?uri onto:notableWork ?x . }",lcquad Who was once married to both Kelly Brook and Rosie Huntington-Whiteley?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:partner ?uri. onto:partner ?uri . }",lcquad Which Fox show is presented by Ryan Seacrest?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:presenter . ?uri prop:channel . ?uri rdf:type onto:TelevisionShow}",lcquad Where did george f hoar and willian langer spend the most important time of their political career?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:George_Frisbie_Hoar prop:order ?uri. res:William_Langer prop:order ?uri . }",lcquad How many TV show has distributor located in Burbank California ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:locationCity . ?uri prop:distributor ?x . ?uri rdf:type onto:TelevisionShow}",lcquad List the ceremonial county of East Tilbury ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:East_Tilbury onto:ceremonialCounty ?uri } ",lcquad Which television show's theme music composer is Gary Portnoy and subsequent work is Frasier?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:themeMusicComposer . ?uri onto:subsequentWork . ?uri rdf:type onto:TelevisionShow}",lcquad List the common sports between Fr. Agnel Multipurpose School and Jamiatu Muslim Mindanao,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Fr._Agnel_Multipurpose_School_and_Junior_College onto:sport ?uri. res:Jamiatu_Muslim_Mindanao onto:athletics ?uri} ",lcquad "Which award that has been given to James F Obrien, had used Laemmle Theatres for some service?","PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:service ?uri. onto:award ?uri} ",lcquad What is the drafted team of the people expected to join toronto marlies?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:prospectTeam . ?x prop:draftTeam ?uri . ?x rdf:type onto:Person}",lcquad Which office holder's predecessor is Lucius Cornelius and his associate is Marcus Calpurnius Bibulus?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:predecessor . ?uri onto:associate . ?uri rdf:type onto:OfficeHolder}",lcquad How many people have parterned with the person choroegraphed by Catarina Lindgren in the past?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:formerChoreographer . ?x onto:formerPartner ?uri . ?uri rdf:type onto:Person}",lcquad List everything governed by the Democratic Party of US?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:leaderName . ?uri onto:location ?x . }",lcquad Name the current club of Abdelhameed Amarri ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Abdelhameed_Amarri prop:currentclub ?uri } ",lcquad The pope whose shrine is in St Peter's Basilica was venerated in which sects?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:majorShrine . ?x prop:veneratedIn ?uri . ?x rdf:type onto:Pope}",lcquad Who is the father of Barbara Ann Crancer?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:child res:Barbara_Ann_Crancer . }",lcquad Which home stadium of 2011-12 FC Spartak Moscow season is also the location of birth of the Svetlana Gounkina ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:2011–12_FC_Spartak_Moscow_season onto:homeStadium ?uri. res:Svetlana_Gounkina onto:birthPlace ?uri} ",lcquad Which famous commander led the Siege of forn meigs and was involved in the battle of fort stephenson?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Siege_of_Fort_Meigs onto:commander ?uri. res:Battle_of_Fort_Stephenson onto:commander ?uri . }",lcquad Which games publishers are located in California?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:location res:California . ?uri onto:publisher ?x . }",lcquad Where is the stadium of Philadelphia Rage ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Philadelphia_Rage onto:stadium ?uri } ",lcquad Who produced the Pixar Image Computer?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:product res:Pixar_Image_Computer . }",lcquad Was Marie Curie a doctoral student of Henri Becquerel?,"PREFIX res: PREFIX onto: ASK WHERE { res:Henri_Becquerel onto:doctoralStudent res:Marie_Curie }",lcquad What are the baseball teams who belongs to Guggenheim Partners?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:owner . ?uri rdf:type onto:BaseballTeam}",lcquad Count all the things licensed as Software as a service.,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:license . }",lcquad Who is the headcoach of 2014-15 Virginia Tech Hokies men's basketball team ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:headcoach ?uri } ",lcquad What is the resting place of the politician who succeeded Samuel Hayes?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:successor ?x . ?x onto:restingPlace ?uri . ?x rdf:type onto:Politician}",lcquad What country had the title of 2001 Speedway Ekstraliga ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:2001_Speedway_Ekstraliga prop:title ?x . ?x onto:country ?uri . }",lcquad How many broadcast area of the television stations exists whose broadcast area is Rodrigues ?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:broadcastArea . ?x prop:broadcastArea ?uri }",lcquad What is the common governing body of the Naval Air Facility Adak and Oahu Railway and Land Company?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Naval_Air_Facility_Adak prop:governingBody ?uri. res:Oahu_Railway_and_Land_Company prop:governingBody ?uri . }",lcquad Count the drinks originated in England.,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:origin . ?uri rdf:type onto:Beverage}",lcquad What is the total number of other non-fiction subject of the books whose one of the subject is Racism?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:nonFictionSubject . ?x onto:nonFictionSubject ?uri }",lcquad Name all the junctions of U.S. Route 59?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:U.S._Route_59 prop:junction ?uri } ",lcquad What are some other services of the company whose service is Onedrive?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:service . ?x prop:services ?uri . ?x rdf:type onto:Company}",lcquad Give me some softwares which run on mac os,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:operatingSystem . ?uri rdf:type onto:Software}",lcquad What is the city of the television station whose affiliations is LATV?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:affiliations . ?x prop:city ?uri . ?x rdf:type onto:TelevisionStation}",lcquad "What is the state of the administrative region where Oscoda, Michigan is located?","PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:isPartOf ?x . ?x onto:state ?uri . ?x rdf:type onto:AdministrativeRegion}",lcquad Was Duanne Allman famous for playing the Gibson SG?,"PREFIX res: PREFIX prop: ASK WHERE { res:Duane_Allman prop:notableInstruments res:Gibson_SG }",lcquad Who were all the people in office when bob hawke was the PM?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:primeMinister res:Bob_Hawke } ",lcquad What is Bob Adams (American football) known for?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:knownFor ?uri } ",lcquad Is Guatemala a unitary state?,"PREFIX res: PREFIX onto: ASK WHERE { res:Guatemala onto:governmentType res:Unitary_state }",lcquad What is the common affiliation of the Monroe Carell Jr. Children's Hospital at Vanderbilt and alma mater of the Duncan U. Fletcher?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:affiliation ?uri. onto:almaMater ?uri} ",lcquad Among the scientist known for Manhattan Project who had a doctoral student named Charles Ellis ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:doctoralStudents . ?uri prop:knownFor . ?uri rdf:type onto:Scientist}",lcquad UEM group have made bridges crossing over what?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:designer res:UEM_Group . ?x prop:crosses ?uri . }",lcquad How many relatives are there of the people who died in Germany?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:placeOfDeath . ?x onto:relation ?uri . }",lcquad Where do bachelor of arts live?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:almaMater res:Bachelor_of_Arts . ?x onto:residence ?uri . }",lcquad Was Castillo discovered by Galileo?,"PREFIX prop: ASK WHERE { prop:discoverer }",lcquad Does A foreign policy of freedom belong to the genre Politics?,"PREFIX res: PREFIX onto: ASK WHERE { res:A_Foreign_Policy_of_Freedom onto:literaryGenre res:Politics }",lcquad How many mountain are there in Sierra Nevada range?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:mountainRange . ?uri rdf:type onto:Mountain}",lcquad What is the total number of other characters of the plays whose characters is Robin (comics)?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:characters . ?x prop:characters ?uri }",lcquad What are the awards won by the spouse of Liv Ullmann ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Liv_Ullmann onto:partner ?x . ?x prop:awards ?uri . }",lcquad What is the Recorded of the Kaptaan is also the headquarters of the Orient News ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Kaptaan prop:recorded ?uri. res:Orient_News prop:headquarters ?uri} ",lcquad What is the total number of other nearest countries to the lakes whose nearest countries is Uganda?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:nearestCity . ?x onto:nearestCity ?uri }",lcquad How many companies have developed cross platformed softwares?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:operatingSystem . ?x onto:developer ?uri . }",lcquad List the shows whose network is run by BBC.,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:owningCompany . ?uri onto:network ?x . ?uri rdf:type onto:TelevisionShow}",lcquad How many titles were given to people who engaged in the Operation Dragoon?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:battles . ?x onto:award ?uri . }",lcquad Which place founded by Penobscot Island Air is also the location fo Ellei Johndro ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Penobscot_Island_Air prop:founded ?uri. res:Ellei_Johndro onto:birthPlace ?uri} ",lcquad Name the TV show whose opening theme is Gary Portnoy and the subsequent work is Frasier?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:openingTheme . ?uri onto:subsequentWork . ?uri rdf:type onto:TelevisionShow}",lcquad List the pole drivers in the grand prixes where Williams Grand Prix Engineering was a first team?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:firstTeam . ?x onto:poleDriver ?uri . ?x rdf:type onto:GrandPrix}",lcquad Which appointer of the Joseph Clay (Georgia) is also the President of the William Carmichael (diplomat) ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:appointer ?uri. prop:president ?uri} ",lcquad Who is the employer of Michael M. Sears ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Michael_M._Sears prop:employer ?uri } ",lcquad List things developed by Autoconf ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Autoconf onto:developer ?uri } ",lcquad List all the artist of the TV shows which has McClain as one of the artist ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:artist . ?x prop:artist ?uri . ?x rdf:type onto:TelevisionShow}",lcquad Who is the person whose child performed with Tony Bennett?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:associatedActs res:Tony_Bennett . ?uri onto:child ?x . }",lcquad Does the north carolina highway 280 end in Arden?,"PREFIX onto: ASK WHERE { onto:routeEnd }",lcquad Is Angola Avante the anthem of Angola?,"PREFIX res: PREFIX onto: ASK WHERE { res:Angola onto:anthem res:Angola_Avante }",lcquad Name the river with mouth as Thames Estuary and passes through Reading Berkshire ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:riverMouth . ?uri prop:city . ?uri rdf:type onto:River}",lcquad Who all play for the Ivory Coast football team?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:nationalteam res:Ivory_Coast_national_football_team } ",lcquad List all the layouts of the automobile whose one of the layout is four-wheel-drive layout ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:layout . ?x onto:layout ?uri . ?x rdf:type onto:Automobile}",lcquad "To how many places does the airlines fly, whose head office is located at the Gatwick Airport?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:headquarter . ?x prop:destinations ?uri . ?uri rdf:type onto:Place}",lcquad What are the television shows whose distributor is a division of Warner Bros. International TV?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:divisions . ?uri prop:distributor ?x . ?uri rdf:type onto:TelevisionShow}",lcquad Where is the arena of WPC Dynamo Moscow situated?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:WPC_Dynamo_Moscow prop:arena ?uri } ",lcquad Which relative of George Madison is the appointer of John Drayton ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:John_Drayton prop:appointer ?uri. res:George_Madison onto:relation ?uri} ",lcquad "Does the mississippi orignate in the clearwater county, minnesota?","PREFIX onto: ASK WHERE { onto:sourceRegion }",lcquad How many scientist have won an award by the society led by Venkatraman Ramakrishnan?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:leaderName . ?uri prop:prizes ?x . ?uri rdf:type onto:Scientist}",lcquad Who all did their high school in Denbigh high School?,"PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:highSchool } ",lcquad Name the company founded in US and provides OneDrive as service ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:services . ?uri prop:foundation . ?uri rdf:type onto:Company}",lcquad Which manufacturer of the Boeing B-17 Flying fortress is the manager of burro Flats Painted Caves ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:governingBody ?uri. onto:manufacturer ?uri} ",lcquad Which owner of Drop.io made Sean Parker famous?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Drop.io prop:owner ?uri. res:Sean_Parker onto:knownFor ?uri . }",lcquad What is the information appliance whose successor is PlayStation 4 and maker is Foxconn?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:successor . ?uri prop:manufacturer . ?uri rdf:type onto:InformationAppliance}",lcquad What country provides a citizenship too Newin Chidchob and Seni Pramoj?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Newin_Chidchob prop:nationality ?uri. res:Seni_Pramoj onto:nationality ?uri} ",lcquad Which person has opponent Ike Clanton?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:opponent . ?uri rdf:type onto:Person}",lcquad Who is the builder of Atamurat-Kerkichi Bridge ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:builder ?uri } ",lcquad name the mountain range of Le Gibloux ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Le_Gibloux onto:mountainRange ?uri } ",lcquad Count me all the video game distributor whose parent company is Warner Bros ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:parent . ?uri prop:distributor ?x . ?uri rdf:type onto:VideoGame}",lcquad Who all were involved in the wars fought by the commander Blue Jacket?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:commander . ?x prop:combatant ?uri . ?x rdf:type onto:MilitaryConflict}",lcquad Is Judy Garland a character of End of the Rainbow?,"PREFIX res: PREFIX prop: ASK WHERE { res:End_of_the_Rainbow prop:characters res:Judy_Garland }",lcquad Who is the associate of Thomas Bryan Martin ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Thomas_Bryan_Martin onto:associate ?uri } ",lcquad In what wars was Steve Buyer involved?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Steve_Buyer onto:battle ?uri } ",lcquad What is the profession of the children of Herbert Pell ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Herbert_Pell prop:children ?x . ?x onto:profession ?uri . }",lcquad Does Silver Airways have a hub at the Washington Dulles International Airport?,"PREFIX res: PREFIX onto: ASK WHERE { res:Silver_Airways onto:hubAirport res:Washington_Dulles_International_Airport }",lcquad Whose labels are Victor Entertainment and Celluloid Records?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?uri prop:label res:Victor_Entertainment . ?uri prop:label res:Celluloid_Records . }",lcquad Which astronauts went on the Gemini 8 mission?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:mission . ?uri rdf:type onto:Astronaut}",lcquad Erik Jendresen is the writer of which television show?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:writer . ?uri rdf:type onto:TelevisionShow}",lcquad Where is the station whose sister channel is the Channel 3 in Thailand?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:sisterStations . ?x prop:city ?uri . ?x rdf:type onto:TelevisionStation}",lcquad How many people have written stuff broadcasted on the Tokyo Broadcasting System?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:network . ?x prop:writer ?uri . ?uri rdf:type onto:Person}",lcquad What is the mascot of the military unit whose commander is Herbert Bautista ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:notableCommander . ?x prop:mascot ?uri . ?x rdf:type onto:MilitaryUnit}",lcquad Which city is the resting place of the Martin Ragaway and Chuck Connors ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:restingPlace ?uri. onto:restingPlace ?uri . ?uri rdf:type onto:City}",lcquad Which new Mexico based company produces Surface ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:foundation . ?uri onto:product . ?uri rdf:type onto:Company}",lcquad Who is the person who are on the board of Freedom of the City?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:board . ?uri rdf:type onto:Person}",lcquad What cities are around the sea which flows into Marmara?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:inflow . ?x prop:cities ?uri . ?x rdf:type onto:Sea}",lcquad Companies headquartered in Geneva own which TV Shows?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:headquarter res:Geneva . ?uri prop:company ?x . }",lcquad Who died due to Morphine ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:deathCause res:Morphine . }",lcquad Does Walt Disney Studio have a subsidiary called PixarCascadia_,"PREFIX onto: ASK WHERE { onto:subsidiary }",lcquad Which purpose of the Maharashtra Chess Association is Abhijit kunte is also know for ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Maharashtra_Chess_Association prop:purpose ?uri. res:Abhijit_Kunte prop:knownFor ?uri} ",lcquad What does the famous relative of Levon Ashotovich Grigorian do for a living?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:relatives res:Levon_Ashotovich_Grigorian . ?x onto:occupation ?uri . }",lcquad Where is the debut team of Shaquil Barrett located?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Shaquil_Barrett prop:debutteam ?x . ?x onto:locationCity ?uri . }",lcquad Who owns Ivanpah Solar Power Facility?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Ivanpah_Solar_Power_Facility onto:owner ?uri } ",lcquad What artist of Charing Cross Bridge influenced Dorothea Sharp in her career?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:artist ?uri. prop:influencedBy ?uri} ",lcquad What is the game whose genre is Mind sport?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:genre . ?uri rdf:type onto:Game}",lcquad List the awards given to the race horses bred by Willis Sharpe Kilmer.,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:breeder . ?x onto:honours ?uri . ?x rdf:type onto:RaceHorse}",lcquad Which country's engineered have studied at Aero Klub in Wroclaw?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:institution res:AeroKlub_Wrocław . ?x prop:nationality ?uri . }",lcquad "What is the common place where USS Camp DE-251 was built, and is one of the destinations of Emerald Air?","PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:shipBuilder ?uri. onto:destination ?uri} ",lcquad List the religions of the commanders of Royal Thai Army.,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Royal_Thai_Army prop:notableCommanders ?x . ?x onto:religion ?uri . }",lcquad What is the official name of Arkansas wine ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Arkansas_wine prop:officialName ?uri } ",lcquad Which country is the birth place of Marcus Samuelsson and Samuel of Waldebba ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Marcus_Samuelsson prop:birthPlace ?uri. res:Samuel_of_Waldebba prop:placeOfBirth ?uri} ",lcquad Name the battle fought by the military persons who also fought in Algeria ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:battles . ?x prop:battles ?uri . ?x rdf:type onto:MilitaryPerson}",lcquad Where is the head quarters of the parent company of Mall of America located?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Mall_of_America prop:owned ?x . ?x prop:headquarters ?uri . }",lcquad Bridge that starts at Seberang Perai crosses over what?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:routeStart res:Seberang_Perai . ?x prop:crosses ?uri . }",lcquad Is Julia Gillard the prime minister of Kate Lundy?,"PREFIX res: PREFIX onto: ASK WHERE { res:Kate_Lundy onto:primeMinister res:Julia_Gillard }",lcquad "Comcast SportsNet is broadcasted in what area, which also has the Michigan Renaissance Festival?","PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Michigan_Renaissance_Festival prop:location ?uri. res:Comcast_SportsNet_Chicago onto:broadcastArea ?uri . }",lcquad what cities are located on the sides of mediterranean sea?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Mediterranean_Sea prop:cities ?uri } ",lcquad What is the purpose of some Maharashtran organizations?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:headquarter . ?x prop:purpose ?uri . ?x rdf:type onto:Organisation}",lcquad In how many territories were the wars fought where Fusil Gras Mile 1874 were used?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { onto:usedInWar ?x . ?x onto:territory ?uri . ?x rdf:type onto:MilitaryConflict}",lcquad Mota Engil built bridges over which rivers?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:builder . ?x onto:crosses ?uri . ?x rdf:type onto:Bridge}",lcquad How many other field are there of the scientists whose one of the field is Mathematics ?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:field . ?x onto:field ?uri }",lcquad "Twin cities 400 is operated by what city, which is the birthplace of Leona Baumgarter?","PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Twin_Cities_400 onto:operatedBy ?uri. res:Leona_Baumgartner onto:birthPlace ?uri} ",lcquad How many people currently play for the NYC FC?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:currentclub . }",lcquad "In how many other states do people live, whose languages are spoken in Nebraska?","PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { onto:language ?x . ?x prop:region ?uri . }",lcquad Name the alma mater of Michael hahn ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Michael_Hahn onto:almaMater ?uri } ",lcquad What is the mascot of the unit whose garrison is Canberra ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:garrison . ?x prop:mascot ?uri . ?x rdf:type onto:MilitaryUnit}",lcquad List the governers of Jimmie Lou Fisher?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Jimmie_Lou_Fisher prop:governor ?uri } ",lcquad How many people have played for a club whose coach is Fred Hoiberg?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:coach . ?uri prop:team ?x . }",lcquad Who discovered Callisto ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:discoverer ?uri } ",lcquad which politician is currently ruling over Rishkiesh?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Rishikesh onto:leaderName ?uri } ",lcquad Where is Carmel Winery?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Carmel_Winery prop:locationCountry ?uri } ",lcquad Does the little colorado river flow in the Grand Canyon?,"PREFIX res: PREFIX onto: ASK WHERE { res:Little_Colorado_River onto:mouthMountain res:Grand_Canyon }",lcquad Name the architect of Marine Corps Air Station Kaneohe Bay ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Marine_Corps_Air_Station_Kaneohe_Bay prop:architect ?uri } ",lcquad How many different organizations own the railway lines which are a part of Norfolk Southern Railway?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:system . ?x prop:owner ?uri . ?uri rdf:type onto:Organisation}",lcquad Name the parts of the settlements which has New Braunfels as one of the parts ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:part . ?x onto:part ?uri . ?x rdf:type onto:Settlement}",lcquad Which shows had their painters born in England?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:birthPlace . ?uri onto:creator ?x . ?uri rdf:type onto:TelevisionShow}",lcquad Which mountain is located in inyo National Forest and has a parent peak named Nevado de Toluca ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:locatedInArea . ?uri onto:parentMountainPeak . ?uri rdf:type onto:Mountain}",lcquad Which awards have been given to both Ingmar Bergman and Charles LeMaire?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Ingmar_Bergman prop:awards ?uri. res:Charles_LeMaire prop:awards ?uri . }",lcquad Which office holder's resting place is William Henry Harrison Tomb State Memorial and has governor named Charles Willing Byrd?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:restingplace . ?uri onto:governor . ?uri rdf:type onto:OfficeHolder}",lcquad Where was the movie after Khiladi 786 recorded?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:nextAlbum ?x . ?x prop:recorded ?uri . ?x rdf:type onto:Film}",lcquad Who are the politicians whose death place is Ontario?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:deathPlace . ?uri rdf:type onto:Politician}",lcquad Which statesman is married to Dolley Madison?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:spouse . ?uri rdf:type onto:OfficeHolder}",lcquad How many theme musics have been composed by Julian Gingell?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:themeMusicComposer . }",lcquad Name the monarch of L Buwei ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Lü_Buwei onto:monarch ?uri } ",lcquad Name the musician who was given label by Celluloid Records and has been associated with Africa'70 ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:label . ?uri onto:associatedMusicalArtist . ?uri rdf:type onto:MusicalArtist}",lcquad What is the stylistic origin of Wizard rock ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Wizard_rock onto:stylisticOrigin ?uri } ",lcquad List the fields of the scientists with Sanskrit as one of the interest ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:fields . ?x prop:fields ?uri . ?x rdf:type onto:Scientist}",lcquad "Of all the teams that Andrew Economos played for, which one did Jerrel Jackson play his first game for?","PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Jerrell_Jackson onto:debutTeam ?uri. res:Andrew_Economos onto:formerTeam ?uri} ",lcquad What are the movies whose director's daughter is Luke Scott?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:child . ?uri prop:director ?x . ?uri rdf:type onto:Film}",lcquad Is Mona Lisa in the Louvre museum?,"PREFIX res: PREFIX prop: ASK WHERE { res:Mona_Lisa prop:museum res:Louvre }",lcquad Was A foreign policy on freedom covered by John Trumbull?,"PREFIX res: PREFIX prop: ASK WHERE { res:A_Foreign_Policy_of_Freedom prop:coverArtist res:John_Trumbull }",lcquad List the other members of the band of which Juelz Santana is a part?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:currentMembers . ?x onto:bandMember ?uri . ?x rdf:type onto:Band}",lcquad Give me a count of everything made by the company which offers electronical manufacturing too.,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:service . ?uri onto:manufacturer ?x . }",lcquad How many games have been composed by Hirokazu Tanaka?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:composer . ?uri rdf:type onto:VideoGame}",lcquad Who are the tenants of the stadium where the UFC 140 is located?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:location ?x . ?x onto:tenant ?uri . ?x rdf:type onto:Stadium}",lcquad Which kmascot od seneca Academy is also the species of The Fox and the Cat ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:The_Fox_and_the_Cat prop:species ?uri. res:Seneca_Academy_and_Circle_School prop:mascot ?uri} ",lcquad "Name the university whose affiliations's foundation place is Washington, D.C.?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:foundationPlace . ?uri prop:affiliations ?x . ?uri rdf:type onto:University}",lcquad What awards did the cast members of Gods of Egypt win?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:starring ?x . ?x prop:awards ?uri . }",lcquad Where can I find people whose hometown is Ann Arbour in Michigan?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:homeTown . ?x onto:residence ?uri . ?x rdf:type onto:Person}",lcquad What is the former team of the Athens borned basketball players ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:birthPlace . ?x onto:formerTeam ?uri . ?x rdf:type onto:BasketballPlayer}",lcquad In which city is the hub airport of Club One Air?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Club_One_Air onto:hubAirport ?x . ?x prop:cityServed ?uri . }",lcquad Where did the relatives of Gustavo Rojas Pinilla study?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:relation res:Gustavo_Rojas_Pinilla . ?x prop:almaMater ?uri . }",lcquad For how many things are americans famous for?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:placeOfBirth . ?x onto:knownFor ?uri . }",lcquad Who is the successor of McDonnell Douglas ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:McDonnell_Douglas prop:successor ?uri } ",lcquad What is the publisher of Lucifer's Hammer ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:publisher ?uri } ",lcquad List the origin of the weapons which were used in the American Revolutionary War.,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:usedInWar . ?x prop:origin ?uri . ?x rdf:type onto:Weapon}",lcquad Purnima Banerjee and Rishang Keishing are politicians of what party ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Rishang_Keishing prop:party ?uri. res:Purnima_Banerjee onto:party ?uri} ",lcquad Which show's theme music composer's label is MapleMusic Recordings?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:recordLabel . ?uri prop:themeMusicComposer ?x . ?uri rdf:type onto:TelevisionShow}",lcquad Was Apollo 11 a mission of Niel Armstrong?,"PREFIX res: PREFIX prop: ASK WHERE { res:Neil_Armstrong prop:mission res:Apollo_11 }",lcquad List the former team of the american football players born in Pennsylvania ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:birthPlace . ?x onto:formerTeam ?uri . ?x rdf:type onto:AmericanFootballPlayer}",lcquad Is the charat district a district in peru?,"PREFIX res: PREFIX prop: ASK WHERE { res:Charat_District prop:settlementType res:Districts_of_Peru }",lcquad Which company founded by Fusajiro Yamauchi gives service as Nintendo Network?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:foundedBy . ?uri prop:services . ?uri rdf:type onto:Company}",lcquad Richard Gant did a guest appearance on which series?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:guests res:Richard_Gant . ?x onto:series ?uri . }",lcquad How many things belong to a division of plant kingdom?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:kingdom . ?uri onto:division ?x . }",lcquad What is that show whose theme was composed by Joel Goodman?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:themeMusicComposer . ?x prop:showName ?uri . ?x rdf:type onto:TelevisionShow}",lcquad Is the College Sainte Marie in Mauritius?,"PREFIX prop: ASK WHERE { prop:county }",lcquad What is the field of the Jon Speelman and occupation of the Karen Grigorian?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Jon_Speelman onto:field ?uri. res:Karen_Grigorian onto:occupation ?uri} ",lcquad What are the countries for which History of Trier principal to?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:capital . ?uri rdf:type onto:Country}",lcquad List the uni. having affiliation with Graham Holding Company and have a campus in Iowa ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:affiliations . ?uri onto:campus . ?uri rdf:type onto:University}",lcquad Where was Antonio Giannini born?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Antonio_Giannini onto:birthPlace ?uri } ",lcquad What movies have been produced by the production house owned by Larry J. Franco?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:producer res:Larry_J._Franco } ",lcquad Give me all tv shows which are based in boston and massachusetts?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:location . ?uri onto:location . ?uri rdf:type onto:TelevisionShow}",lcquad What is the death location of the scientist who is the known authority of Hallopus ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:binomialAuthority ?x . ?x onto:deathPlace ?uri . ?x rdf:type onto:Scientist}",lcquad CN Atletic-Barceloneta has a stadium in Barcelona?,"PREFIX onto: ASK WHERE { onto:stadium }",lcquad What are some non fiction subjects dealt with in fantasy novels?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:literaryGenre . ?x onto:nonFictionSubject ?uri . ?x rdf:type onto:Book}",lcquad Which companies have launched a rocket from Cape Canaveral Air Force station?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:launchSite . ?x onto:manufacturer ?uri . ?x rdf:type onto:Rocket}",lcquad Is the Frank R Lillie House has the Chicago architecture?,"PREFIX res: PREFIX onto: ASK WHERE { res:Frank_R._Lillie_House onto:architecturalStyle res:Chicago }",lcquad Name everyone working for a company owned by Roman Abramovich.,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:owningCompany res:Roman_Abramovich . ?uri onto:occupation ?x . }",lcquad Who astronaut from NASA was on the mission of Apollo 11?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:mission . ?uri prop:type . ?uri rdf:type onto:Astronaut}",lcquad Name the profession of Oamr D Conger for which Jack Ryan was also nominated ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:nominee ?uri. prop:order ?uri} ",lcquad Where were Micheal Santos and Wendy Jaquet born?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Michael_G._Santos onto:birthPlace ?uri. res:Wendy_Jaquet prop:placeOfBirth ?uri} ",lcquad Name the show formed by J. Michael Stroczynski and had network as TNT ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:developer . ?uri prop:network . ?uri rdf:type onto:TelevisionShow}",lcquad Which office holder's resting place is Alta Mesa Memorial park and has adrian A. Basora as successor ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:successor . ?uri prop:restingPlace . ?uri rdf:type onto:OfficeHolder}",lcquad Name the movie written by Monty Python and has music composer as Geoffrey Burgon ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:writer . ?uri onto:musicComposer . ?uri rdf:type onto:Film}",lcquad Which politicians died in cities built by the Roman emperor Charles 5?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:builder . ?uri onto:deathPlace ?x . ?uri rdf:type onto:OfficeHolder}",lcquad In how many different places can I find companies which were founded in toronto?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:foundationPlace . ?x prop:locations ?uri . ?uri rdf:type onto:Place}",lcquad What are some relatives of the spouse of Uncle henry from Oz?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:spouse . ?uri onto:relative ?x . }",lcquad List the outflows of the lake which has Benu river as one of it ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:outflow res:Benué_River . ?x prop:outflow ?uri . }",lcquad List the people who were the first one to climb a mountain in California?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:locatedInArea . ?x onto:firstAscentPerson ?uri . ?x rdf:type onto:Mountain}",lcquad Ford Air Transport Service and Falcon cobra are both owned by which company?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Ford_Air_Transport_Service onto:parentCompany ?uri. res:Ford_Falcon_Cobra onto:parentCompany ?uri . }",lcquad Name the sitcom with theme music composer as Julian Gingell and channel as Fox Broadcasting Company?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:themeMusicComposer . ?uri onto:channel . ?uri rdf:type onto:TelevisionShow}",lcquad Give a list of all the labels that have jazz fusion artists signed up with them?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:genre . ?x onto:recordLabel ?uri . ?x rdf:type onto:MusicalArtist}",lcquad Which college has been attended by both Mr. Hubert Wiggs and Mr. Alvin Bell?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Hubert_Wiggs onto:college ?uri. res:Alvin_Bell onto:college ?uri . }",lcquad What is the mascot of Blytheville High School ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Blytheville_High_School prop:mascot ?uri } ",lcquad Which composer of Girl from the North Country is the subsequent work of the Moondog Matinee?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Girl_from_the_North_Country onto:composer ?uri. res:Moondog_Matinee onto:subsequentWork ?uri} ",lcquad What is the subject of the book which preceded Sagan's Cosmos?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:previousWork ?x . ?x prop:subject ?uri . }",lcquad In which television shows has Eliza Schneider given her voice?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:voices . ?uri rdf:type onto:TelevisionShow}",lcquad Who wrote Catch My soul ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:author ?uri } ",lcquad What are some islands in the bahamas?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:archipelago . ?uri rdf:type onto:Island}",lcquad In which state does the ambassador who is in related with J Bennett Johnston live?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:J._Bennett_Johnston onto:relation ?x . ?x prop:state ?uri . }",lcquad "Where were the sportsmen born, who started their careers with Homestead Grays?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:debutteam . ?x prop:birthDate ?uri . ?x rdf:type onto:Athlete}",lcquad Which hometown of pavel Moroz is also the palace of birthplace of Helena of Moscow ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Pavel_Moroz prop:hometown ?uri. res:Helena_of_Moscow onto:birthPlace ?uri} ",lcquad Who are the cast members of The Simpsons Ride?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:The_Simpsons_Ride prop:starring ?uri } ",lcquad Name the organization which developed iPhone OS and the XNU?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:IPhone_OS_1 prop:developer ?uri. res:XNU onto:developer ?uri . }",lcquad How many awards have the french people received?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:stateOfOrigin . ?x prop:awards ?uri . }",lcquad How many bacterias have taxonomy as Bacillales and domain as Bacteria? ,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:order . ?uri prop:domain } ",lcquad Which state's largest city is Omaha?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:largestCity . ?uri rdf:type onto:AdministrativeRegion}",lcquad Where is the constituency of John Smith Griffin ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:John_Smith_Griffin prop:constituency ?x . ?x onto:location ?uri . }",lcquad Is Wahoo! the previous work of Honeybuns?,"PREFIX onto: ASK WHERE { onto:previousWork }",lcquad Who is the animator of Tommy Tucker's Tooth ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:animator ?uri } ",lcquad Who is the film director of Alice's Wonderland ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:director ?uri } ",lcquad List few authors whose education took place in Saint Petersburg ? ,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:education . ?uri rdf:type onto:Writer}",lcquad Who are the people who influenced the writers of Evenor ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:author ?x . ?x onto:influenced ?uri . }",lcquad Which cities of the American Mediterranean Sea has Nickname Entronque de Herradura?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:American_Mediterranean_Sea prop:cities ?uri. res:Entronque_de_Herradura prop:nickname ?uri} ",lcquad On how many subjects has Random house publishers published books?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:publisher . ?x prop:subject ?uri . }",lcquad List the associated musical artist of the current members of Al Bano and Romina Power?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Al_Bano_and_Romina_Power prop:currentMembers ?x . ?x onto:associatedMusicalArtist ?uri . }",lcquad Which settlement's neighboring municipalities are Cologny and Pregny-Chambsy?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:neighboringMunicipalities . ?uri onto:neighboringMunicipality . ?uri rdf:type onto:Settlement}",lcquad Who is the writer of The Sandman (Vertigo) ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:writers ?uri } ",lcquad "Who has a child named Lori Black and is resting place as Palo Alto, California?","PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:children . ?uri prop:restingPlace . }",lcquad Which military unit's garrison is Pentagon and command structure is United States Department of Defense?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:garrison . ?uri onto:commandStructure . ?uri rdf:type onto:MilitaryUnit}",lcquad List the primary subjects of A Christian Turn'd Turk?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:subject ?uri } ",lcquad What awards have been given to the writers of Wallace and Gromit?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:notableworks . ?x onto:award ?uri . ?x rdf:type onto:Writer}",lcquad Is Labor relations the main interest of Karl Marx?,"PREFIX res: PREFIX onto: ASK WHERE { res:Karl_Marx onto:mainInterest res:Labor_relations }",lcquad "Over which rivers, does a cable stayed bridge exists?","PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:design . ?x prop:crosses ?uri . }",lcquad Name some Texas based companies ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:locationCity . ?uri rdf:type onto:Company}",lcquad Name the president served by a lieutenant who succeeded Bob C Riley.,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:predecessor . ?uri onto:lieutenant ?x . ?uri rdf:type onto:President}",lcquad Who were some governmental heads in Nazi Germany?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:jurisdiction res:Nazi_Germany . ?x onto:leader ?uri . }",lcquad Name the tiemzone of Banlung ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Banlung onto:timeZone ?uri } ",lcquad Name all the doctoral student of the scientist who also supervised Mary Ainsworth ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:doctoralStudents . ?x prop:doctoralStudents ?uri . ?x rdf:type onto:Scientist}",lcquad "Where did the wrestler die who was billed in Norman, Oklahoma?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:billed . ?x onto:deathPlace ?uri . ?x rdf:type onto:Wrestler}",lcquad Which football teams is Shahid Khan proprietor to?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:owner res:Shahid_Khan } ",lcquad What sports are there at the universities affiliated to the National Capital Region Athletic Association?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:affiliation . ?x prop:athletics ?uri . ?x rdf:type onto:University}",lcquad Who all have rented the stadium whose architect is Populous?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:architect . ?x onto:tenant ?uri . ?x rdf:type onto:Stadium}",lcquad Which US city can be said to be a part of american mediterranean sea and the biscayne bay?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:American_Mediterranean_Sea prop:cities ?uri. res:Biscayne_Bay prop:cities ?uri . }",lcquad Did Dean Wurzberger manage a club at the santa clara university?,"PREFIX res: PREFIX prop: ASK WHERE { res:Dean_Wurzberger prop:managerclubs res:Santa_Clara_University }",lcquad How many dishes are made with an ingredient belonging to the flowering plant species?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:division . ?uri onto:ingredient ?x . ?uri rdf:type onto:Food}",lcquad Who are the managers of clubs participating in the 2014-2015 Football League Championship?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:season res:2014–15_Football_League_Championship . ?uri onto:managerClub ?x . }",lcquad Bridges over which rivers are made of Wrought Iron?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:material . ?x onto:river ?uri . ?x rdf:type onto:Bridge}",lcquad What is the allegiance of Albert Kwesi Ocran ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Albert_Kwesi_Ocran prop:allegiance ?uri } ",lcquad How many people have headed organizations headquartered at Niederkirchnerstrae?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:headquarter . ?x onto:leader ?uri . }",lcquad What are some seas inside europe ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:location . ?uri rdf:type onto:Sea}",lcquad What are the notable works of the person who produced Queer as Folk?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:producer ?x . ?x prop:notableworks ?uri . ?x rdf:type onto:Person}",lcquad Who was the bronze medalist of Swimming at the 2008 Summer Olympics Men's 400 metre individual medley ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:bronzeMedalist ?uri } ",lcquad Did stan lee narrate the incredible hulk tv show?,"PREFIX onto: ASK WHERE { onto:narrator }",lcquad What academic discipline of the Journal of Cerebral Blood Flow & Metabolism is also the record label of the Double Diamond (album)?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:academicDiscipline ?uri. onto:recordLabel ?uri} ",lcquad How many states does the Pioneer corporation operate in?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { prop:country ?uri . }",lcquad Name the debut team of Butch Metzger ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Butch_Metzger onto:debutTeam ?uri } ",lcquad Whose doctoral student is etienne bieler\xc9tienne_Bi\xe9ler,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:doctoralStudent res:Étienne_Biéler } ",lcquad What countries used Solidus as currency?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:currency . ?uri rdf:type onto:Country}",lcquad Which parent company of Edsel was the first team of the 1967 Mexican Grand Prix ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Edsel prop:parent ?uri. res:1967_Mexican_Grand_Prix prop:firstTeam ?uri} ",lcquad Who was in conflicts of Fort Barrancas and Gadsden?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:battle res:Fort_Barrancas . ?uri onto:battle res:Fort_Gadsden . }",lcquad Name some cars similar to the ones which are assembled at the Jefferson North Assembly?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:assembly . ?x prop:related ?uri . ?x rdf:type onto:Automobile}",lcquad Which licensee of the WRVU is also the alma mater of the Todd J. Campbell ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:WRVU prop:licensee ?uri. res:Todd_J._Campbell onto:almaMater ?uri} ",lcquad What team did Joe Porter and Eddie Anderson play for?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:team ?uri. onto:formerTeam ?uri . }",lcquad Which borough of the Corringham railway station is also the local authority of Buckhurst Hill County High School ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Corringham_railway_station prop:borough ?uri. res:Buckhurst_Hill_County_High_School onto:localAuthority ?uri} ",lcquad "Which band had the members of The Conglomerate, and has made 'Before I let you go'?","PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:pastMembers ?uri. onto:musicalArtist ?uri} ",lcquad Name the fictional character whose species is American Pekin duck and has relatives named Ludwig Von Drake?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:species . ?uri prop:relatives . ?uri rdf:type onto:FictionalCharacter}",lcquad Who is the governor of Carl McCall ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Carl_McCall onto:governor ?uri } ",lcquad Where can I find things run by the maritime museum of San Diego?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:governingBody res:Maritime_Museum_of_San_Diego . ?x prop:location ?uri . }",lcquad Which engine's successor's predecessor is BMW M10?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:predecessor . ?uri onto:successor ?x . ?uri rdf:type onto:Engine}",lcquad List the movies directed by Stanley Kubrick?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:director . ?uri rdf:type onto:Film}",lcquad "What team were the people drafted to, which are in the National Hockey League?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:league . ?x prop:draftTeam ?uri . ?x rdf:type onto:Person}",lcquad Which key person of maryland jockey club is the appointer of Joseph Clay ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:appointer ?uri. prop:keyPeople ?uri} ",lcquad Who developed the software for the operating system of Macintosh Quadra 660AV ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:operatingSystem ?x . ?x onto:developer ?uri . ?x rdf:type onto:Software}",lcquad From what american football teams did Carlos Emmons play?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:formerTeam ?uri } ",lcquad Who are the employer of Don R. Berlin?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Don_R._Berlin onto:employer ?uri } ",lcquad Is Peter Crouch currently in the Stoke City FC?,"PREFIX res: PREFIX prop: ASK WHERE { res:Peter_Crouch prop:currentclub res:Stoke_City_F.C. }",lcquad Whose provides the service of Outlook and also products such as Visual Studio?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:services res:Outlook.com . ?uri prop:products res:Microsoft_Visual_Studio . }",lcquad Which source of broad creek is the Audenried tunnel located ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:source ?uri. onto:location ?uri} ",lcquad Is the Mount St Peter Church made in the international architectural style?,"PREFIX prop: ASK WHERE { prop:architecture }",lcquad What woman acted in the mating habits of earthbound humans and is often associated with Mams taylor?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:The_Mating_Habits_of_the_Earthbound_Human prop:starring ?uri. res:Mams_Taylor onto:associatedMusicalArtist ?uri . }",lcquad How many other Guests are there of the television episodes whose Guests is Brian d'Arcy James ?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:guests . ?x prop:guests ?uri }",lcquad Who is the writer of He's a Pirate ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:writer ?uri } ",lcquad Which movies have their music composed by someone that signed up with RCA Records?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:recordLabel . ?uri onto:musicComposer ?x . ?uri rdf:type onto:Film}",lcquad Was the cover of The adventures of Tom Sawyer designed by Mark Twain?,"PREFIX res: PREFIX onto: ASK WHERE { res:The_Adventures_of_Tom_Sawyer onto:coverArtist res:Mark_Twain }",lcquad What games are played at institutions affiliated with the international association of universities?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:affiliations . ?x onto:sport ?uri . ?x rdf:type onto:EducationalInstitution}",lcquad What is the ideology of Palang Dharma Party ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Palang_Dharma_Party onto:ideology ?uri } ",lcquad Who is known for are War of 1812 and Battle of the Thames?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:knownFor res:War_of_1812 . ?uri onto:knownFor res:Battle_of_the_Thames . }",lcquad Which philosophy journal has compiler as Stephen Law ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:editor . ?uri prop:discipline . ?uri rdf:type onto:AcademicJournal}",lcquad Which military conflict took place in Israel and had commander as Jaber Al-Ahmad Al-Sabah?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:place . ?uri onto:commander . ?uri rdf:type onto:MilitaryConflict}",lcquad Who served a vice president buried in United First Parish Church?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:restingplace res:United_First_Parish_Church . ?uri onto:vicePresident ?x . }",lcquad "Where is the fictional character from, whose last appearance was in the Avengers, 1998?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:last . ?x prop:nationality ?uri . ?x rdf:type onto:FictionalCharacter}",lcquad Which idelogy of the Palang Dharma Party is also the faith of Miao people ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Palang_Dharma_Party onto:ideology ?uri. res:Miao_people onto:religion ?uri} ",lcquad List the movies produced by Michael Deeley ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:producer . ?uri rdf:type onto:Film}",lcquad Where does Dennis DeConcini and Scott Berkun both live?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Scott_Berkun prop:residence ?uri. res:Dennis_DeConcini prop:residence ?uri . }",lcquad Where did Louis chevrolet die ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Louis_Chevrolet prop:deathPlace ?uri } ",lcquad Is Bacillus belong to the domain Bacteria?,"PREFIX res: PREFIX prop: ASK WHERE { res:Bacillus prop:domain res:Bacteria }",lcquad What is the affiliation of Lumbini Bauddha University ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Lumbini_Bauddha_University prop:affiliation ?uri } ",lcquad What is the name of the characters created by Frank Miller?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:creators . ?x prop:characterName ?uri . ?x rdf:type onto:FictionalCharacter}",lcquad Count the total number of software whose programming language is C++ and operating system is Microsoft Windows?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:programmingLanguage . ?uri onto:operatingSystem } ",lcquad What is the total number of politicians whose predecessor's deputy is Jenny Macklin?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:deputy . ?uri prop:predecessor ?x . ?uri rdf:type onto:OfficeHolder}",lcquad How many managers have managed Middlesbrough FC?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:managerClub . }",lcquad Among which basket ball team having arena as The Palace of Auburn hills has president as Stan Van Gundy ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:arena . ?uri prop:president . ?uri rdf:type onto:BasketballTeam}",lcquad Give me a count of bridges located in California ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:locatedInArea . ?uri rdf:type onto:Bridge}",lcquad What are the sports played by the universities who also plays taekwondo ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:athletics res:Taekwondo . ?x prop:athletics ?uri . }",lcquad Who all are buried in Arlington national cementary?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:placeofburial res:Arlington_National_Cemetery } ",lcquad Name the office holder whose spouse is Dolley Madison and belongs to Militia branch ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:spouse . ?uri prop:branch . ?uri rdf:type onto:OfficeHolder}",lcquad To which country do the players of Waitakere United belong?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:team . ?x onto:country ?uri . ?x rdf:type onto:Athlete}",lcquad How many different genres led to other genres where drums are important?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:instruments . ?x onto:stylisticOrigin ?uri . ?uri rdf:type onto:MusicGenre}",lcquad Is Trevor Peacock the narrator of Fred Claus?,"PREFIX res: PREFIX prop: ASK WHERE { res:Fred_Claus prop:narrator res:Trevor_Peacock }",lcquad Which river's mouth location is Laptev Sea and also Arctic Ocean?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?uri prop:mouthLocation res:Laptev_Sea . ?uri prop:mouthLocation res:Arctic_Ocean . }",lcquad List all the bands which have members of the band Guy in them?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:bandMember ?x . ?x onto:associatedBand ?uri . }",lcquad List the opponents of the relatives of Thomas Helwys?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:relation . ?x onto:opponent ?uri . ?x rdf:type onto:Person}",lcquad Gamini Seneviratne and Katyayana are two followers of which religion?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:religion ?uri. prop:religion ?uri . }",lcquad Who are the predecessors of John Randolph of Roanoke?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:predecessor res:John_Randolph_of_Roanoke . }",lcquad Was A Jitney Elopement edited by Charlie Chaplin?,"PREFIX res: PREFIX onto: ASK WHERE { res:A_Jitney_Elopement onto:editing res:Charlie_Chaplin }",lcquad What team did J P Paris was former team of Bert McCaffrey play for?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:J._P._Parisé prop:playedFor ?uri. res:Bert_McCaffrey onto:formerTeam ?uri . }",lcquad What is the river that falls into North Sea and Thames Estuary?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:riverMouth . ?uri onto:riverMouth . ?uri rdf:type onto:River}",lcquad How many companies were founded in Dallas?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:foundation . ?uri rdf:type onto:Company}",lcquad Name the ones who debuted in the San Francisco 49ers.,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:debutTeam res:San_Francisco_49ers . }",lcquad "Which county seat of the King County, Washington and PLACE OF DEATH of the Phil Lumpkin ?","PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:countySeat ?uri. prop:placeOfDeath ?uri} ",lcquad Who all have appointed governess born in Magnolia Plantation gardens?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:birthPlace . ?x prop:appointer ?uri . }",lcquad Humes High School is alma mater to which person?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:education . ?uri rdf:type onto:Person}",lcquad Which range of mountains are there in canton of Fribourg?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:locatedInArea res:Canton_of_Fribourg . ?x onto:mountainRange ?uri . }",lcquad Which species' members are there in the animal kingdom?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:kingdom res:Animal . ?x onto:species ?uri . }",lcquad Was Henry Knox a major general?,"PREFIX onto: ASK WHERE { onto:militaryRank }",lcquad What company made the front row and distributed big top ballet?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:distributor ?uri. prop:developer ?uri . ?uri rdf:type onto:Company}",lcquad What is the nation of the Major All Stars Season 1 and Pioneer Corporation ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Major_All_Stars_Season_1 prop:country ?uri. res:Pioneer_Corporation prop:country ?uri . }",lcquad Which HBO's television series was produced by Erik Bork?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:distributor . ?uri onto:producer . ?uri rdf:type onto:TelevisionShow}",lcquad List all the record label distributed by the distributor of Zune ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:distributor . ?x prop:distributor ?uri . ?x rdf:type onto:RecordLabel}",lcquad What made Jon Speelman and Eric Schiller famous?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Jon_Speelman onto:field ?uri. res:Eric_Schiller onto:knownFor ?uri} ",lcquad Which stadium is owned by the team whose manager is Dimitris Terezopoulos?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:manager res:Dimitris_Terezopoulos . ?x prop:stadium ?uri . }",lcquad Name the television show which was developed by Brian Graden and distributed by Comedy Central?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:developer . ?uri prop:distributor . ?uri rdf:type onto:TelevisionShow}",lcquad From how many countries did the aeroplanes designed by Alexander Lippisch originate?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:designer . ?x prop:nationalOrigin ?uri . ?uri rdf:type onto:Country}",lcquad "Fairfield, Connecticut is hometown to which persons?","PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:hometown . ?uri rdf:type onto:Person}",lcquad Do the White Plains Road lie in the Bronx county?,"PREFIX res: PREFIX prop: ASK WHERE { res:White_Plains_Road prop:counties res:The_Bronx }",lcquad Which fictional character portrayed by Roger barton has Padm Amidala as family ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:portrayer . ?uri prop:family . ?uri rdf:type onto:FictionalCharacter}",lcquad Name presidents of the schools which have queen noor of Jordan as one of them ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:president . ?x prop:president ?uri . ?x rdf:type onto:School}",lcquad How many bands are signed up with Kobalt Label Services?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:recordLabel . ?uri rdf:type onto:Band}",lcquad Was 12th Field Artillery Regiment garrisoned at colorado?,"PREFIX res: PREFIX onto: ASK WHERE { res:12th_Field_Artillery_Regiment onto:garrison res:Colorado }",lcquad Name the office holder who has a child named Lori Black and resting place is Alta Mesa Memorial Park?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:child . ?uri prop:restingPlace . ?uri rdf:type onto:OfficeHolder}",lcquad What is the area of Tar Heel Sports Network ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Tar_Heel_Sports_Network prop:area ?uri } ",lcquad Which office holder's military branch is Continental Army and vice president is John Adams?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:militaryBranch . ?uri onto:vicePresident . ?uri rdf:type onto:OfficeHolder}",lcquad What are the television shows which are in NTSC and 5.1 surround sound?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:format . ?uri onto:format . ?uri rdf:type onto:TelevisionShow}",lcquad What nation is the motherland of Ricardo Alfonso Cerna where Apostolic Vicariate of El Petn is located?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Ricardo_Alfonso_Cerna prop:birthPlace ?uri. res:Apostolic_Vicariate_of_El_Petén onto:country ?uri . }",lcquad What are some games availible on nintendo's virtual console?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:computingPlatform . ?uri rdf:type onto:VideoGame}",lcquad Name the television program voiced by Isaac Hayes and aired on Comedy Central?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:voices . ?uri prop:network . ?uri rdf:type onto:TelevisionShow}",lcquad Chestnut colored horses have won which races?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:colour . ?x onto:honours ?uri . ?x rdf:type onto:Horse}",lcquad Where did the film director of Kala Pani die?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:director ?x . ?x onto:deathPlace ?uri . }",lcquad What show had NTSC format and theme music composed by Ron Grainer?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:format . ?uri prop:themeMusicComposer . ?uri rdf:type onto:TelevisionShow}",lcquad Who has fought in the conflicts around the Mississippi river?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:place . ?x prop:combatant ?uri . ?x rdf:type onto:MilitaryConflict}",lcquad Which leader of united states house representatives election was married to Dolley Madison ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:leader ?uri. onto:spouse ?uri} ",lcquad To which county of New York city does the Tremount Avenue street belong?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Tremont_Avenue prop:counties ?uri } ",lcquad What are the death place of the models whose hair color was Red?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:hairColor . ?x prop:deathPlace ?uri . ?x rdf:type onto:Model}",lcquad To which region does the Miluk language belong?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Miluk_language prop:region ?uri } ",lcquad What is the Ceremonial County of Port of Tilbury ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Port_of_Tilbury onto:ceremonialCounty ?uri } ",lcquad What is the war in which both K Fordice and P Fitzwallace fight?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Kirk_Fordice prop:battles ?uri. res:Percy_Fitzwallace prop:battles ?uri . }",lcquad Name the part of Liverpool city region >,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Liverpool_City_Region onto:part ?uri } ",lcquad What is the television show whose sculptor is C. E. Webber and composed by Murray Gold?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:creator . ?uri onto:composer . ?uri rdf:type onto:TelevisionShow}",lcquad Who created the world series of Poker?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:World_Series_of_Poker prop:founded ?uri } ",lcquad "What are the source of the streams whose one of the source is Calera, Oklahoma?","PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:source . ?x onto:source ?uri . ?x rdf:type onto:Stream}",lcquad What is the game platform of Google Cloud Connect ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Google_Cloud_Connect onto:computingPlatform ?uri } ",lcquad Which fictional character's relatives were made by Ted Osborne?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:creator . ?uri prop:relatives ?x . ?uri rdf:type onto:FictionalCharacter}",lcquad Who are the stars of the movies which are distributed by Artisan Entertainment ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:distributor . ?x onto:starring ?uri . ?x rdf:type onto:Film}",lcquad Count the different religions followed by Second Lieutenants in military.,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:militaryRank . ?x onto:religion ?uri . }",lcquad List softwares written in C++ and runs on Mac OS ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:operatingSystem . ?uri onto:programmingLanguage . ?uri rdf:type onto:Software}",lcquad Name the river mouth of Moordener Kill ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Moordener_Kill onto:riverMouth ?uri } ",lcquad Which partner of the Tim Mathieson is also the primeminister of the Mike Kelly (Australian politician) ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:partner ?uri. prop:primeminister ?uri} ",lcquad List the producer of the TV shows whose company is HBO.,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:company . ?x onto:producer ?uri . ?x rdf:type onto:TelevisionShow}",lcquad What is the television show whose company is Playtone and written by Erik Jendresen?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:company . ?uri prop:writer . ?uri rdf:type onto:TelevisionShow}",lcquad Which ancient country had capital as Nicomedia and History of Trier?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:capital . ?uri onto:capital . ?uri rdf:type onto:Country}",lcquad In which races did the horses of Mon Capitaine take part?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:sire . ?x prop:race ?uri . ?x rdf:type onto:Horse}",lcquad Which TV show's writer is Erik Jendresen and distributor is HBO?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:writer . ?uri prop:distributor . ?uri rdf:type onto:TelevisionShow}",lcquad What railway lines go through the stations maintained by Western Australian Public Transport Authority?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:owningOrganisation . ?x onto:servingRailwayLine ?uri . ?x rdf:type onto:Station}",lcquad How many publisher have been founded by american citizens?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:stateOfOrigin . ?uri onto:founder ?x . ?uri rdf:type onto:Publisher}",lcquad How many other region served are there of the companies which serves Pacific Ocean ?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:regionServed . ?x onto:regionServed ?uri }",lcquad Name the sitcoms whose network's owning company is Chris-Craft Industries?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:owningCompany . ?uri onto:network ?x . ?uri rdf:type onto:TelevisionShow}",lcquad How many countries surround the sea into which the Upper Neratva flow?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { onto:riverMouth ?x . ?x onto:country ?uri . ?x rdf:type onto:Sea}",lcquad How many rivers end in the Indian Ocean?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:riverMouth . ?uri rdf:type onto:River}",lcquad Name the home town of Rolando Gomez ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Rolando_Gomez prop:homeTown ?uri } ",lcquad Who is owner of the soccer club which owns the Cobham Training Centre?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Cobham_Training_Centre prop:owner ?x . ?x prop:owner ?uri . }",lcquad What is the common genere of Abhijit Kunte and Kasparov ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Abhijit_Kunte prop:knownFor ?uri. res:Virtual_Kasparov onto:genre ?uri} ",lcquad List some things that Swedish people have become famous for?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:stateOfOrigin res:Sweden . ?x onto:knownFor ?uri . }",lcquad Is Esther Alder the mayor of Geneva?,"PREFIX res: PREFIX prop: ASK WHERE { res:Geneva prop:mayor res:Esther_Alder }",lcquad Which shows have voices from people signed up with ABC Records?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:label . ?uri prop:voices ?x . ?uri rdf:type onto:TelevisionShow}",lcquad Is National Archaeological Museum (Florence) the museum of Chimera of Arezzo?,"PREFIX prop: ASK WHERE { prop:museum }",lcquad Cleopatra V of Egypt is father to which royalty?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:mother res:Cleopatra_V_of_Egypt } ",lcquad "Which sucessor of George Madison is the sucessor of levi Lincoln, Sr. ?","PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:relation ?uri. prop:successor ?uri} ",lcquad Give me some TV stations whose network's main language is American English?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:language . ?uri prop:network ?x . ?uri rdf:type onto:TelevisionStation}",lcquad Who is the President of the United World College of Costa Rica and United World Colleges ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:United_World_College_of_Costa_Rica prop:president ?uri. res:United_World_Colleges prop:president ?uri . }",lcquad How many artists' works are in Muse d'Orsay?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:museum . ?x prop:artist ?uri . ?uri rdf:type onto:Artist}",lcquad Whose wife is a presenter at WWE?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:presenter res:WWE . ?uri onto:spouse ?x . }",lcquad What are some cars which came before the ones on a GM B base?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:automobilePlatform . ?x onto:predecessor ?uri . ?x rdf:type onto:Automobile}",lcquad Give me a count of everything owned by the network whose sister name is The CW?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:sisterNames . ?uri prop:network ?x . }",lcquad "Whichd officer's final resting place is North Bend, ohio and belongs to Indiana Territory branch ","PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:restingplace . ?uri prop:branch . }",lcquad What sporting goods companies are located in Herzogenaurach?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:location res:Herzogenaurach } ",lcquad Name the commander of Battle of the Thames ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Battle_of_the_Thames onto:commander ?uri } ",lcquad Name the sports played by Fr. Agnel Multipurpose School and Junior College?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Fr._Agnel_Multipurpose_School_and_Junior_College onto:sport ?uri } ",lcquad What program is presented by Brian Dunkleman and has artist as Simon Fuller?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:presenter . ?uri prop:creator . ?uri rdf:type onto:TelevisionShow}",lcquad What are some districts in the Tendring borough?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:borough res:Tendring . ?x onto:district ?uri . }",lcquad What is the base currency of the Benelux which can be used in Republic of Montenegro?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:currency ?uri. prop:currency ?uri . }",lcquad What is the alma mater of Julian Leow Beng Kim?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Julian_Leow_Beng_Kim prop:almaMater ?uri } ",lcquad Is Eddie Bravo the trainer of Alan Jouban,"PREFIX res: PREFIX onto: ASK WHERE { res:Alan_Jouban onto:trainer res:Eddie_Bravo }",lcquad How many awards have been given to the participants of the Lawrence Realization Stakes?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:race . ?x onto:honours ?uri . }",lcquad What religion is followed by the commander of Defense Security Command?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Defense_Security_Command onto:notableCommander ?x . ?x onto:religion ?uri . }",lcquad "Who won the general elections in India in 2009, and had also won the AP elections in 2004 ?","PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:affiliation ?uri. onto:affiliation ?uri . }",lcquad List the work edited by Mark Stevens and directed by Joel Schumacher?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:editing . ?uri onto:director . ?uri rdf:type onto:Work}",lcquad Name some local authorities of schools which have a mixed gender education system?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:gender . ?x onto:localAuthority ?uri . ?x rdf:type onto:School}",lcquad Which president of William Eustus also married to Dolley Madison ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Dolley_Madison onto:spouse ?uri. res:William_Eustis prop:president ?uri} ",lcquad Count the different types of Flatbread ?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:type . }",lcquad Count the birthplaces of recepients of the National Museum of Racing and Hall of Fame.,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:honours . ?x onto:birthPlace ?uri . ?uri rdf:type onto:Place}",lcquad Name the serving line of Daund Junction railway station?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Daund_Junction_railway_station onto:servingRailwayLine ?uri } ",lcquad What is the county seat of the district through which the Beckler River flows?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:district ?x . ?x onto:countySeat ?uri . ?x rdf:type onto:AdministrativeRegion}",lcquad What is the television show whose judges is Randy Jackson?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:judges . ?uri rdf:type onto:TelevisionShow}",lcquad How many companies serve the Australian region?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:regionServed . ?uri rdf:type onto:Company}",lcquad "How many teams was Garry Unger in, previously?","PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { onto:formerTeam ?uri . ?uri rdf:type onto:SportsTeam}",lcquad What is the name of the television show whose company is Paramount Television and theme music composer is Gary Portnoy?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:company . ?uri prop:themeMusicComposer . ?uri rdf:type onto:TelevisionShow}",lcquad How many writers worked on the album Main Course?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:album . ?x prop:writer ?uri . }",lcquad List the popular works of the author of Luther: The Calling ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Luther:_The_Calling prop:author ?x . ?x onto:notableWork ?uri . }",lcquad Which were the philosophers whose primary interest was Natural philosophy?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:mainInterests . ?uri rdf:type onto:Philosopher}",lcquad Was the FIS Alpine World Ski Championship of 1950 held in Colorado?,"PREFIX res: PREFIX prop: ASK WHERE { res:FIS_Alpine_World_Ski_Championships_1950 prop:hostCity res:Colorado }",lcquad Which wine region of Bogdanua is the Croatian Inline hockey team part of ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Bogdanuša onto:wineRegion ?uri. res:Croatian_Inline_Hockey_League onto:country ?uri} ",lcquad What is the place of death of the royalties one of whose parents was Adam Ludwik Czartoryski?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:parent . ?x prop:deathPlace ?uri . ?x rdf:type onto:Royalty}",lcquad In which country is the Chapelle Saint-Louis de Carthage located ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:location ?x . ?x onto:country ?uri . }",lcquad where did the office holder died who is successor to Elmer Burkett ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:successor . ?x prop:deathPlace ?uri . ?x rdf:type onto:OfficeHolder}",lcquad What things canonized John of Damascus and and also venerated the Edwin of Northumbria ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:John_of_Damascus onto:canonizedBy ?uri. res:Edwin_of_Northumbria prop:veneratedIn ?uri} ",lcquad What is the common award won by geoffrey Rush and Laemmle Theatres ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Geoffrey_Rush prop:awards ?uri. res:Laemmle_Theatres onto:service ?uri} ",lcquad What is the total number of other restingplace of the politicians whose one of the restingplace is East Norwalk Historical Cemetery?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:restingplace . ?x prop:restingplace ?uri }",lcquad Who were the pole drivers in GP when Damon hill was a first driver?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:firstDriver . ?x onto:poleDriver ?uri . ?x rdf:type onto:GrandPrix}",lcquad How many albums were released under the Victor Entertainment label?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:label . ?uri rdf:type onto:Album}",lcquad To which company is Michael Dell a father company? ,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:owningCompany . ?uri rdf:type onto:Company}",lcquad What is the source location of Thornton Creek ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Thornton_Creek prop:sourceLocation ?uri } ",lcquad To which company does Raymond Conner is critical to?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:keyPeople . ?uri rdf:type onto:Company}",lcquad "From where does the river start, which flows into the Conowingo dam?","PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:riverMouth . ?x onto:source ?uri . ?x rdf:type onto:River}",lcquad Who appointed the successor of Charles Pinckney ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:successor ?x . ?x prop:appointer ?uri . }",lcquad What is the associated band of the musical artist who is the producer of The Trumpet Kings Meet Joe Turner ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:producer ?x . ?x onto:associatedBand ?uri . ?x rdf:type onto:MusicalArtist}",lcquad Name the home town of Cline Buckens ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Céline_Buckens onto:hometown ?uri } ",lcquad List the music played in television episode which came after The Colonel (The Americans) ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:subsequentWork ?x . ?x prop:music ?uri . }",lcquad Which university provides license for WRVU ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:WRVU prop:licensee ?uri } ",lcquad Name the basketball player who played for Phoenix Suns and Los Angeles Clippers was his draft team?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:team . ?uri prop:draftTeam . ?uri rdf:type onto:BasketballPlayer}",lcquad Who are the spouse of the parents of Kimberly Stewart?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Kimberly_Stewart onto:parent ?x . ?x onto:spouse ?uri . }",lcquad What have some famous Christians died of?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:religion res:Christianity . ?x onto:deathCause ?uri . }",lcquad Who is the mayor of the city under which is the constituency of Zora Singh Maan?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Zora_Singh_Maan prop:constituency ?x . ?x onto:leaderName ?uri . }",lcquad "What are Breann McGregor and Anika Knudsen, both known for?","PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Breann_McGregor prop:knownFor ?uri. res:Anika_Knudsen prop:knownFor ?uri . }",lcquad Name a scientist whose official residence is Cape Town and also won a gold medal at the Royal Astronomical Society ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:prizes . ?uri prop:residence . ?uri rdf:type onto:Scientist}",lcquad In how many places can I find tombs of people who fought in the Norwalk Trainband?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:militaryUnit . ?x prop:restingplace ?uri . }",lcquad Does GeneWeb have the GPL license?,"PREFIX res: PREFIX prop: ASK WHERE { res:GeneWeb prop:license res:GNU_General_Public_License }",lcquad What is the location of Dad's Root Beer on Google maps?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:locationCity ?uri } ",lcquad Is Darcs released with a GNU license?,"PREFIX res: PREFIX onto: ASK WHERE { res:Darcs onto:license res:GNU }",lcquad What is the district of Fort Heath radar station ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Fort_Heath_radar_station prop:district ?uri } ",lcquad How many saints have been venerated in Judaism?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:veneratedIn . ?uri rdf:type onto:Saint}",lcquad List down all the bands to which the writers of 03 Bonnie & Clyde are associated?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:writer ?x . ?x onto:associatedBand ?uri . }",lcquad How many people are famous for the Gibson Les Paul?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:notableInstruments . }",lcquad What municipalities are adjacent to Chne-Bougeries?,"PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:neighboringMunicipalities . }",lcquad Who is the founder of Oprah Winfrey Network (U.S. TV channel) ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:founder ?uri } ",lcquad What is the alma mater of the Angela Trusty and Charles Ayres?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Angela_Trusty onto:almaMater ?uri. res:Charles_Ayres onto:almaMater ?uri . }",lcquad List all the wine regions of the grapes whose one of the wine region is Mississippi ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:wineRegion . ?x onto:wineRegion ?uri . ?x rdf:type onto:Grape}",lcquad "Which river originates from Cape Vincent and Kingston, Ontario?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri prop:sourceLocation . ?uri prop:sourceLocation . ?uri rdf:type onto:River}",lcquad Name the office holder whose theatre is Siege of Fort Recovery and belongs to Indian territory branch ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:battle . ?uri prop:branch . ?uri rdf:type onto:OfficeHolder}",lcquad For which clubs do the players of Azam F.C. play for?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:name ?x . ?x onto:team ?uri . ?x rdf:type onto:SoccerPlayer}",lcquad What are the mammals whose phylum is Chordate?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:phylum . ?uri rdf:type onto:Mammal}",lcquad Where did Doug Walgren and Lee Si Chen study?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:almaMater ?uri. onto:almaMater ?uri . }",lcquad Give me an estimate of the number of manufacturers whose products are managed by MTR?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:operator . ?x onto:manufacturer ?uri . }",lcquad How many artists play as Rickenbacker?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:instrument . ?uri rdf:type onto:Artist}",lcquad Who are the associated musical artist of Carolyn Dennis?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Carolyn_Dennis onto:associatedMusicalArtist ?uri } ",lcquad Which citys mayor is anne hidalgo?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:mayor res:Anne_Hidalgo . }",lcquad In which states are there bridges over the Pequea Creek?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:river . ?x onto:state ?uri . ?x rdf:type onto:Bridge}",lcquad How many ingedients are required to make the Ragout Fin?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { onto:ingredient ?uri . }",lcquad List the people whose are in the board of an organization kickstarted in New York.,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:foundation . ?uri onto:board ?x . ?uri rdf:type onto:Person}",lcquad Tell me the number of writers whose works have been recorded in Criteria Studios?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:recordedIn . ?x prop:writer ?uri . ?uri rdf:type onto:Artist}",lcquad Under which archipelago does Canary Islands fall?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:archipelago res:Canary_Islands } ",lcquad name the home stadium of FC Spartak Moscow season 2011-12,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:2011–12_FC_Spartak_Moscow_season onto:homeStadium ?uri } ",lcquad Name a company with one of the key person as Edwin Catmull and produces RenderMan?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:keyPerson . ?uri prop:products . ?uri rdf:type onto:Company}",lcquad How many owners are there of lines starting at the South Station?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:routeStart . ?x prop:owner ?uri . }",lcquad What are some musicians who have worked with Dean Ambrose?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:associatedMusicalArtist . ?uri rdf:type onto:MusicalArtist}",lcquad "Count all those who've played for the youth club which owns the Rosario, Santa Fe stadium.","PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:ground . ?uri prop:youthclubs ?x . }",lcquad What are the television shows whose company is Playtone?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:company . ?uri rdf:type onto:TelevisionShow}",lcquad In which city are the schools whose district is Mumbai Suburban?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:district . ?x onto:city ?uri . ?x rdf:type onto:School}",lcquad How many people currently play for Stoke City F.C.?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:currentclub . }",lcquad Among the countries using Aureus as currency which had Nicomedia as an important place ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:capital . ?uri onto:currency . ?uri rdf:type onto:Country}",lcquad What are the outflow of the lakes which also has one of the outflow as Congo River ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:outflow res:Congo_River . ?x onto:outflow ?uri . }",lcquad Whose tomb is in cities under Dane County of Wisconsin?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:territory . ?uri onto:restingPlace ?x . }",lcquad How many cars succeeded the cars which were similar to Cadillac Fleetwood?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { prop:related ?x . ?x onto:predecessor ?uri . ?x rdf:type onto:Automobile}",lcquad Was the body of Elsie Paroubek discovered in Chicago?,"PREFIX res: PREFIX onto: ASK WHERE { res:Elsie_Paroubek onto:bodyDiscovered res:Chicago }",lcquad In how many languages did Marika Gombitova sing?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:artist . ?x prop:language ?uri . }",lcquad How many railway lines go through the station maintained by Public transport authority of western australia?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:owningOrganisation . ?x onto:servingRailwayLine ?uri . ?uri rdf:type onto:RailwayLine}",lcquad Count the different number of academic areas covered by publications of SAGE?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:publisher . ?x onto:academicDiscipline ?uri . }",lcquad What are the political parties whose leaders have lived in the Prime Minister's House?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:residence . ?uri onto:leader ?x . ?uri rdf:type onto:PoliticalParty}",lcquad "Who currently operates the railway lines one of whose stockholder is Chicago, St Paul, Minneapolis and Omaha railway?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:owner . ?x onto:operatedBy ?uri . ?x rdf:type onto:RailwayLine}",lcquad In which city is the distributor of Jeevan Mrityu located ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Jeevan_Mrityu prop:distributor ?x . ?x onto:locationCity ?uri . }",lcquad How many services does the company who made Onedrive provide?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:service . ?x prop:services ?uri . }",lcquad Count the different religions practiced by people who are in the Malaysian and Chinese association.,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:party . ?x onto:religion ?uri . }",lcquad List all those whose relatives' nationality is United States.,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:nationality res:United_States . ?uri onto:relative ?x . }",lcquad What is the genre of Battle Chess?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Battle_Chess prop:genre ?uri } ",lcquad President of Ghana is the leader title of which country?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:leaderTitle . ?uri rdf:type onto:Country}",lcquad Whose associate is Publius Servilius Vatia Isauricus and has predecessor as Lucius Cornelius Lentulus Crus?,"PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:associate . ?uri onto:predecessor . }",lcquad What is the style of architecture of Pontiac Building ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Pontiac_Building onto:architecturalStyle ?uri } ",lcquad Which basketball players have played in the league of National Basketball Association?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:league . ?uri rdf:type onto:BasketballPlayer}",lcquad Is Michelle D. Johnson the superintendent of United States Air Force Academy?,"PREFIX res: PREFIX prop: ASK WHERE { res:United_States_Air_Force_Academy prop:superintendent res:Michelle_D._Johnson }",lcquad Eric roth wrote how many screenplays?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:screenplay . }",lcquad Whihc alma mater of angela Trusty is also the training center of David Scherman ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:David_Scherman onto:training ?uri. res:Angela_Trusty onto:almaMater ?uri} ",lcquad Who were the opponents of the people buried in the tower of London?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:restingPlace . ?x onto:opponent ?uri . ?x rdf:type onto:Person}",lcquad What is the record label of the Next Thing and also the label of the The Producers (2005 film)?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:recordLabel ?uri. prop:label ?uri} ",lcquad Which country were the associates of Hilda Duhalde from?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Hilda_de_Duhalde onto:associate ?x . ?x onto:nationality ?uri . }",lcquad Name the line of the Vadodara Junction railway station which is also the hub airport of the Pawan Hans?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Vadodara_Junction_railway_station prop:line ?uri. res:Pawan_Hans onto:hubAirport ?uri} ",lcquad Name the scientist who become the part of Royal Society and had academic advisor as Karl Ewald Hasse?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:prizes . ?uri onto:academicAdvisor . ?uri rdf:type onto:Scientist}",lcquad Where is the tombstone of the successor of Edward Wolcott?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Edward_O._Wolcott prop:successor ?x . ?x onto:restingPlace ?uri . }",lcquad In how many places did the Schutzstaffels die?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:militaryRank . ?x prop:placeOfDeath ?uri . ?uri rdf:type onto:Place}",lcquad How many members are there of the organization headquartered at Amstelveen?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:headquarters . ?x prop:membership ?uri . }",lcquad Name the scientist who was the winner of Royal Society award and had Georg Meissner as his doctoral advisor ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:prizes . ?uri prop:doctoralAdvisor . ?uri rdf:type onto:Scientist}",lcquad What are the nearest city to the historic places whose one of the nearest city is Wisconsin?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:nearestCity . ?x prop:nearestCity ?uri . ?x rdf:type onto:HistoricPlace}",lcquad Who is the producer of Captain EO ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Captain_EO prop:producer ?uri } ",lcquad List the subjects of the books whose one of the topics is Pau Broca ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:subject . ?x prop:subject ?uri . ?x rdf:type onto:Book}",lcquad Where did the conflict take place in which Henri Putz fought?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Henri_Putz onto:battle ?x . ?x onto:territory ?uri . }",lcquad Where did the aristocrats die whose mother was Maria Ludwika Krasiska?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:mother . ?x prop:deathPlace ?uri . ?x rdf:type onto:Royalty}",lcquad Is NY Rangers a prospective team for Robin Kovacs?,"PREFIX res: PREFIX onto: ASK WHERE { res:Robin_Kovacs onto:prospectTeam res:New_York_Rangers }",lcquad Is the Columbia University chaired by William Campbell?,"PREFIX onto: ASK WHERE { onto:chairman }",lcquad Which company manufactures cars like the Opel Karl ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:related . ?x prop:parentCompany ?uri . ?x rdf:type onto:Automobile}",lcquad Who are the major stockholders of the bank which is the company of Bloomberg Markets ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:company ?x . ?x prop:owner ?uri . ?x rdf:type onto:Bank}",lcquad List all crafts of the people whose one of the profession is Kingdom of Naples ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:occupation . ?x onto:occupation ?uri . ?x rdf:type onto:Person}",lcquad Name a colonel whose resting place is Montpelier ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:rank . ?uri prop:restingplace . }",lcquad What are some developers which use Emacs Lisp in their projects?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:programmingLanguage res:Emacs_Lisp . ?x onto:developer ?uri . }",lcquad Whose deputy was Franz von Papen?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:deputy res:Franz_von_Papen } ",lcquad Current players of Colorado Avalanche have previously played for how many different teams?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:team . ?x onto:formerTeam ?uri . ?uri rdf:type onto:SportsTeam}",lcquad List the books whose authors are in Alcal de Henares.,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:birthPlace . ?uri onto:author ?x . ?uri rdf:type onto:Book}",lcquad Name the common current team of the Shaun Thong and Kaannder ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Shaun_Thong prop:currentTeam ?uri. res:Kaan_Önder prop:currentTeam ?uri . }",lcquad Who is the stockholder of Paphos International Airport ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Paphos_International_Airport prop:owner ?uri } ",lcquad To which counties do Jerome avenue and Tremont avenue belong?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Jerome_Avenue prop:counties ?uri. res:Tremont_Avenue prop:counties ?uri . }",lcquad Give me the total number of architect of the buildings whose one of the architect was Louis D. Astorino?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:architect . ?x prop:architect ?uri }",lcquad Which basketball team's president studied in the Brockport Golden Eagles?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:college . ?uri prop:president ?x . ?uri rdf:type onto:BasketballTeam}",lcquad In which races does Coneygree compete?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Coneygree prop:race ?uri } ",lcquad What awards have been given to some screenwriters?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:occupation res:Screenwriter . ?x onto:award ?uri . }",lcquad List the saints venerated in Islam having major shrine as Tomb of Joshua ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:majorShrine . ?uri onto:veneratedIn . ?uri rdf:type onto:Saint}",lcquad Which tema did Dough Acomb played for which is also the drafty team of Dale Mitchell ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:draftTeam ?uri. prop:playedFor ?uri} ",lcquad List the total number of executive producer of TV show which have one of the executiive producer as Steven Moffat ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:executiveProducer . ?x prop:executiveProducer ?uri }",lcquad Whose songs are Tickle Me and Viva Las Vegas?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Tickle_Me prop:artist ?uri. res:Viva_Las_Vegas prop:artist ?uri . }",lcquad Name all those whose spouses have performed with Tony Bennett?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:associatedMusicalArtist res:Tony_Bennett . ?uri onto:spouse ?x . }",lcquad Name the company who owns HBO division?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:divisions . ?uri rdf:type onto:Company}",lcquad How many religions have the relatives of waxiangs followed?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { prop:related ?x . ?x onto:religion ?uri . }",lcquad For which team does Ramiro Pea play ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Ramiro_Peña onto:team ?uri } ",lcquad What are the books written by the the person who made the Novelas ejemplares?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:notableWork . ?uri onto:author ?x . ?uri rdf:type onto:Book}",lcquad Count the total number of battles fought by the military people which fought in Levant ?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:battles . ?x prop:battles ?uri }",lcquad Matthew kane and Park rankin are citizens of which country?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:citizenship ?uri. onto:citizenship ?uri . }",lcquad How many subjects have been covered in fantasy novels?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:literaryGenre . ?x onto:nonFictionSubject ?uri . }",lcquad What is the television show whose theme music is by Primus?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:themeMusicComposer . ?uri rdf:type onto:TelevisionShow}",lcquad What was created by Larry David and Jerry Seinfeld?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:creator res:Larry_David . ?uri onto:creator res:Jerry_Seinfeld . }",lcquad Was Let it Be written by Ringo Starr?,"PREFIX onto: ASK WHERE { onto:musicBy }",lcquad which person created the women in the garden?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Women_in_the_Garden prop:artist ?uri } ",lcquad Who is the composer of Girl from the North Country ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Girl_from_the_North_Country onto:composer ?uri } ",lcquad What is the county seat of the county which has an Evergreen High School?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:county ?x . ?x onto:countySeat ?uri . }",lcquad Which wars were fought by the commander whose deputy was Robert T. Herres?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:deputy . ?uri onto:commander ?x . ?uri rdf:type onto:MilitaryConflict}",lcquad "Through which states does the road go, which has a junction on Keningston Maryland?","PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:routeJunction . ?x onto:state ?uri . ?x rdf:type onto:Road}",lcquad What did the people buried in Toronto die of?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:restingPlace res:Toronto . ?x onto:deathCause ?uri . }",lcquad List the main ingredient of Pizza-ghetti ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:mainIngredient ?uri } ",lcquad List the work institute of the medicians who has also worked at University of Miami ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:workInstitutions . ?x prop:workInstitutions ?uri . ?x rdf:type onto:Medician}",lcquad How many people have trained the wrestlers who were billed in Wisconsin?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:billed . ?x onto:trainer ?uri . ?uri rdf:type onto:Person}",lcquad Which country did the prime minister belong to who was served by Thanong Bidaya ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Thanong_Bidaya prop:primeminister ?x . ?x onto:nationality ?uri . }",lcquad What faith do hang chuon naron and Kron Ngoy follow?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Hang_Chuon_Naron onto:religion ?uri. res:Krom_Ngoy onto:religion ?uri . }",lcquad Which company ownes stock in Dagenham turbines and Ford Motor credit?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Ford_Motor_Credit_Company prop:owner ?uri. res:Dagenham_wind_turbines prop:owner ?uri . }",lcquad Which shareholder of Dagenham wind turbines is also the parent company of the Ford Falcon Cobra?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Ford_Falcon_Cobra onto:parentCompany ?uri. res:Dagenham_wind_turbines prop:owner ?uri} ",lcquad List the awards won by the cinematographer of Mickey's Mellerdrammer?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:cinematography ?x . ?x onto:award ?uri . }",lcquad tell me the school to which Cyril Hume went?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Cyril_Hume prop:education ?uri } ",lcquad where did Boga originate?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:origin ?uri } ",lcquad Who is the singer of the album which has a song Me and My arrow ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:album ?x . ?x prop:narrated ?uri . ?x rdf:type onto:Album}",lcquad In how many different places can I fnd Modern Architectural buildings?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:architecturalStyle . ?x prop:address ?uri . }",lcquad Which sports are played in the alma mater of Habib Boromand Dashghapu?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Habib_Boromand_Dashghapu prop:almaMater ?x . ?x onto:sport ?uri . }",lcquad What are the houses of Parliament Security Services ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Parliament_Security_Services prop:houses ?uri } ",lcquad Count the origin of the beverages which have been originated in england /,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:origin . ?x prop:origin ?uri }",lcquad Count the number of people became famous for when Andrew Jackson was a commander ?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:commander . ?uri onto:knownFor ?x . }",lcquad Who is the incumbent of Al Gore presidential campaign of 2000 ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:incumbent ?uri } ",lcquad "Of the places where Kurt Vonnegut Memorial Library exists, where did Louis LeCocq die?","PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Kurt_Vonnegut_Memorial_Library onto:location ?uri. res:Louis_LeCocq prop:placeOfDeath ?uri} ",lcquad What is the college of the basketball player who lives in Ashton Historic district?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:birthPlace . ?x prop:college ?uri . ?x rdf:type onto:BaseballPlayer}",lcquad During the reigns of which monarchs was the name to the Israelite kingdom as United Monarch?,"PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:title } ",lcquad What is the person known for who is the movie director of Sleepy-Time Squirrel ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:director ?x . ?x onto:knownFor ?uri . ?x rdf:type onto:Person}",lcquad What is the title of the successor of Kaulahea I ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Kaulahea_I prop:successor ?x . ?x prop:title ?uri . }",lcquad Name the river passing through Reading Berkshire and has mouth place at Essex ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:city . ?uri onto:mouthPlace . ?uri rdf:type onto:River}",lcquad Which nation is the origin of Dornier Aerodyne ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Dornier_Aerodyne prop:nationalOrigin ?uri } ",lcquad Name some politicians buried in a place near Orange Virginia?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:nearestCity . ?uri prop:restingplace ?x . ?uri rdf:type onto:OfficeHolder}",lcquad Which writer of Tales of Suspense is also the writer of karakuri Dji Ultimo ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Tales_of_Suspense prop:writers ?uri. res:Karakuri_Dôji_Ultimo prop:author ?uri} ",lcquad Which type of building is Qun Thnh Temple ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Quán_Thánh_Temple prop:buildingType ?uri } ",lcquad Who is the artist of the album which has the song I Can't Change the World ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:album ?x . ?x prop:artist ?uri . }",lcquad Which city is the route start of the Moscow-Kazan high-speed railway and birth place of the Ilya Savelev ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:routeStart ?uri. onto:birthPlace ?uri} ",lcquad List TV shows with producer as Erik Bork and company is DreamWorks Television ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:company . ?uri onto:producer . ?uri rdf:type onto:TelevisionShow}",lcquad Which mountain range is the one with Ponte d'Aveneyre and Le Gibloux?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:mountainRange ?uri. onto:mountainRange ?uri . }",lcquad In which cities do some railways operated by Russian railways start?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:operatedBy res:Russian_Railways . ?x onto:routeStart ?uri . }",lcquad Collaborators of Demis Roussos have composed music for which movies?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:associatedActs . ?uri onto:musicComposer ?x . ?uri rdf:type onto:Film}",lcquad In how many places are the tombs of everyone who died in England?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:placeOfDeath . ?x prop:placeOfBurial ?uri . ?uri rdf:type onto:Place}",lcquad Where did the people beatified by Pope Pius X die?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:beatifiedBy . ?x prop:deathPlace ?uri . ?x rdf:type onto:Person}",lcquad Name all the venues of the convention which has also been hosted in San Diego Convention ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:venue res:San_Diego_Convention_Center . ?x prop:venue ?uri . }",lcquad Brian Dunkleman is the presenter of what TV show?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:presenter . ?uri rdf:type onto:TelevisionShow}",lcquad What are the movies whose distributor's headquarters is New York?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:headquarters . ?uri prop:distributor ?x . ?uri rdf:type onto:Film}",lcquad Count the different genres of music made by Argentinian bands?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:hometown . ?x onto:genre ?uri . ?uri rdf:type onto:MusicGenre}",lcquad What beverage was launched by Ferrero SpA?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:creator . ?uri rdf:type onto:Food}",lcquad How many famous people are from the Filipinos?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:stateOfOrigin . }",lcquad How many people have managed a club which owns the Riverside Stadium?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:ground . ?uri onto:managerClub ?x . ?uri rdf:type onto:Person}",lcquad Who had Joe Purcell and Winston Bryant as lieutenants ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:lieutenant res:Joe_Purcell . ?uri onto:lieutenant res:Winston_Bryant . }",lcquad Who was the parent of person whose child is William C P breckinridge?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:children . ?x onto:parent ?uri . ?x rdf:type onto:Person}",lcquad Where are the burial grounds of Willem Cornelis Janse van Rensburg and Thomas Franois Burgers?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Willem_Cornelis_Janse_van_Rensburg prop:restingplace ?uri. res:Thomas_François_Burgers prop:restingplace ?uri . }",lcquad Was George Cash in the western australian parliament?,"PREFIX res: PREFIX prop: ASK WHERE { res:George_Cash prop:parliament res:Western_Australia }",lcquad Through which states does the stream ending at Saunders county go?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:mouthLocation . ?x onto:state ?uri . ?x rdf:type onto:Stream}",lcquad What are the school mascots in Blytheville school district?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:district . ?x prop:mascot ?uri . ?x rdf:type onto:School}",lcquad Which country has the Carmel Winery and the Teperberg 1870 winery ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Carmel_Winery prop:locationCountry ?uri. res:Teperberg_1870 prop:locationCountry ?uri . }",lcquad Name the TV show broadcasted by Fox and presented by Ryan Seacrest ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:presenter . ?uri onto:channel . ?uri rdf:type onto:TelevisionShow}",lcquad Count the religions followed by people living in British Columbia.,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:residence . ?x prop:religion ?uri . }",lcquad List some teammates of Ndonga Mianga?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:currentMember res:Ndonga_Mianga . ?x prop:name ?uri . }",lcquad List the characters of Lysistrata ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Lysistrata prop:characters ?uri } ",lcquad Is Joe Schilling the trainer of Nick Diaz?,"PREFIX res: PREFIX onto: ASK WHERE { res:Nick_Diaz onto:trainer res:Joe_Schilling }",lcquad Which TV shows distributor is Broadcast syndication and developed by Brian Graden ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:developer . ?uri onto:distributor . ?uri rdf:type onto:TelevisionShow}",lcquad In how many districts is there a borough called tendring?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:borough . ?x onto:district ?uri . }",lcquad What games are played at universities in Lanao Del Sur?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:state . ?x onto:athletics ?uri . ?x rdf:type onto:University}",lcquad "For everyone who died in paris, count their different fields of work.","PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:deathPlace . ?x prop:fields ?uri . }",lcquad What is the award won of the scientists known for Cubic Hermite spline?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:knownFor . ?x onto:award ?uri . ?x rdf:type onto:Scientist}",lcquad What is the meaning of Heydar ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Heydar prop:meaning ?uri } ",lcquad Which composer subsequent work of Moondog Matinee and also composed The TImes They are A changin ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:musicBy ?uri. onto:subsequentWork ?uri} ",lcquad On how many different grounds were seasons chaired by Ronaldo held?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:chairman . ?x onto:ground ?uri . }",lcquad Sentinel High School team is known as ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Sentinel_High_School prop:teamName ?uri } ",lcquad Sampson Cudjoe plays for the Ghana national team?,"PREFIX res: PREFIX prop: ASK WHERE { res:Sampson_Cudjoe prop:nationalteam res:Ghana }",lcquad Where does the publisher of Kathimerini live?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Kathimerini onto:publisher ?x . ?x prop:residence ?uri . }",lcquad Name the basketball team which is coached by Louis Dunbar and has president as Jeff Munn ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:coach . ?uri prop:president . ?uri rdf:type onto:BasketballTeam}",lcquad Give me a count of all ice hockey players whose teams are headcoached by John Tortorella?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:headCoach . ?uri onto:team ?x . ?uri rdf:type onto:IceHockeyPlayer}",lcquad Which draft team of bob Macmillan is also the prospect team of Mikhail Pashnin ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Mikhail_Pashnin prop:prospectTeam ?uri. res:Bob_MacMillan prop:draftTeam ?uri} ",lcquad How many leagues have used the O.co Coliseum?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { onto:tenant ?uri . }",lcquad What is the common palce of study for jack McGregor and Philip W. Pillsbury ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Jack_McGregor onto:education ?uri. res:Philip_W._Pillsbury prop:education ?uri} ",lcquad Under which president did Loretta Ucelli and Ann Lewis hold an office?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Loretta_Ucelli onto:president ?uri. res:Ann_Lewis onto:president ?uri . }",lcquad "What team did the players start their careers with, who right now play for Fleisher Yarn?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:team . ?x prop:debutteam ?uri . ?x rdf:type onto:Athlete}",lcquad What sports are played at institutes affiliated by the Association of Southeast Asian Institutes of Higher Learning?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:affiliation . ?x onto:sport ?uri . ?x rdf:type onto:EducationalInstitution}",lcquad Where did the people die who were known for Young Life?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:knownFor . ?x onto:deathPlace ?uri . ?x rdf:type onto:Person}",lcquad Who are the chancellors of universities which is affiliated with Plymouth University?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:affiliations . ?x prop:chancellor ?uri . ?x rdf:type onto:University}",lcquad Does Lionel Messi play in the Argentina National Football Team?,"PREFIX res: PREFIX prop: ASK WHERE { res:Lionel_Messi prop:nationalteam res:Argentina_national_football_team }",lcquad Which awards did the narrator of Oscar and Lucinda win?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:narrator ?x . ?x prop:awards ?uri . }",lcquad "What is the musical whose music is by Jose Luis Narom, based upon?","PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:musicBy . ?x onto:basedOn ?uri . ?x rdf:type onto:Musical}",lcquad "Is the Providence Chapel, Charlwood made in New English style of architecture?","PREFIX prop: ASK WHERE { prop:style }",lcquad Which workplace of the Michael M. Sears is also the governing body of the Burro Flats Painted Cave?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Michael_M._Sears onto:employer ?uri. res:Burro_Flats_Painted_Cave onto:governingBody ?uri} ",lcquad Who was on the boards of Freedom of the City and Royal Society?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:board res:Freedom_of_the_City . ?uri onto:board res:Royal_Society . }",lcquad Who are the people which ITV(TV network) has employed?,"PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:employer . }",lcquad What is the broadcast area of WBCQ (SW) ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:area ?uri } ",lcquad What religion did the president follow which was served by Kang Young-hoon?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:president ?x . ?x onto:religion ?uri . }",lcquad Which kind of buildings are found in England?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:locationCountry . ?x onto:type ?uri . ?x rdf:type onto:Building}",lcquad "In which state is the team, which has John Roeslein?","PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:John_Roeslein onto:team ?x . ?x prop:state ?uri . }",lcquad Which awards has been given to both michel hazanavicius and geoffrey rush?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Michel_Hazanavicius prop:awards ?uri. res:Geoffrey_Rush prop:awards ?uri . }",lcquad Give me the count of all people who ascented a peak in California?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:locatedInArea . ?x onto:firstAscentPerson ?uri . ?uri rdf:type onto:Person}",lcquad List the total number of regions of the building whose are located in\Grand Forks Air Force Base?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:region . ?x onto:region ?uri }",lcquad Is Halyna Kukhar the former coach of Stanislav Morozov?,"PREFIX res: PREFIX onto: ASK WHERE { res:Stanislav_Morozov onto:formerCoach res:Halyna_Kukhar }",lcquad Rickenbacker is a musical instrument played by which artists?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:instrument . ?uri rdf:type onto:MusicalArtist}",lcquad List down all the associcated musical artist of the artist of In a Word or 2 ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:In_a_Word_or_2 prop:artist ?x . ?x onto:associatedMusicalArtist ?uri . }",lcquad List the home town of the people who have Ontario as one of it ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:homeTown . ?x prop:homeTown ?uri . ?x rdf:type onto:Person}",lcquad Joe Shuster has created how many comics character ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:creators . ?uri rdf:type onto:ComicsCharacter}",lcquad Which currency is primarily used by the company which is the distributing label of VDE-Gallo Records?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:distributingLabel ?x . ?x prop:currency ?uri . ?x rdf:type onto:Organisation}",lcquad Name whose youth club was FC Barcelona ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:youthclubs res:FC_Barcelona . }",lcquad Which awards did the writer of Persona win ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:writer ?x . ?x prop:awards ?uri . }",lcquad What is the highschool of the american football player who joined the Robert Morris Colonials program?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:school . ?x prop:highschool ?uri . ?x rdf:type onto:AmericanFootballPlayer}",lcquad Was the Army Air Corps honored for the battle of Iraq?,"PREFIX prop: ASK WHERE { prop:battleHonours }",lcquad How many awards have graduates from the University of Queensland earned?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:almaMater . ?x prop:awards ?uri . }",lcquad Which artist was taught by Jos Ruiz y Blasco?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:training . ?uri rdf:type onto:Artist}",lcquad What is the location of Sam Sen Railway Station ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Sam_Sen_Railway_Station prop:other ?uri } ",lcquad Which ground of 2016 Fort Lauderdale Strikers season is the palce of birth of Kaitlyn Ashley ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:2016_Fort_Lauderdale_Strikers_season onto:ground ?uri. res:Kaitlyn_Ashley prop:placeOfBirth ?uri} ",lcquad Which minister was responsible for Kriminalpolizie?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Kriminalpolizei onto:leader ?uri } ",lcquad Which TV show produced by Paramount Television and is located in Massachusetts ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:company . ?uri onto:location . ?uri rdf:type onto:TelevisionShow}",lcquad Name the sea located near Europe and has a nearby city as Rostock ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:cities . ?uri onto:location . ?uri rdf:type onto:Sea}",lcquad What ingredients are used in preparing the dish of Ragout fin?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Ragout_fin onto:ingredient ?uri } ",lcquad What is the former partner of the figure skaters whose current partner is Alexa Scimeca?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:currentPartner . ?x onto:formerPartner ?uri . ?x rdf:type onto:FigureSkater}",lcquad In how many nations does Rhaetian Railways own train stations?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:owningOrganisation . ?x onto:country ?uri . ?uri rdf:type onto:Country}",lcquad Does Saneh Lungkeaw play for the Thailand's national team?,"PREFIX res: PREFIX prop: ASK WHERE { res:Saneh_Lungkeaw prop:nationalteam res:Thailand }",lcquad Which company released the software RenderMan?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:products . ?uri rdf:type onto:Company}",lcquad In which cities are there american football teams where Matt Snorton played?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:pastteams ?x . ?x onto:locationCity ?uri . ?x rdf:type onto:AmericanFootballTeam}",lcquad "Which country's national motto is ""Truth prevails""?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:nationalMotto . ?uri rdf:type onto:Country}",lcquad What is the homeport of INS Viraat (R22) ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:homeport ?uri } ",lcquad What is the largest city of the country where P. Sathyanarayanan was born?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:birthplace ?x . ?x onto:largestCity ?uri . ?x rdf:type onto:Country}",lcquad Which county of Tremont Avenue is also the birht place of Ron Galotti ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Tremont_Avenue prop:counties ?uri. res:Ron_Galotti onto:birthPlace ?uri} ",lcquad Where was William anthony trained ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:training ?uri } ",lcquad Which parent organization of Get TV also owns the Galleria ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:GetTV onto:parentOrganisation ?uri. res:The_Galleria onto:owner ?uri} ",lcquad Name the wine regions of Bogdanua ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Bogdanuša onto:wineRegion ?uri } ",lcquad What is the resting place of the child of Linda Lee Cadwell?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Linda_Lee_Cadwell prop:children ?x . ?x onto:restingPlace ?uri . }",lcquad Which board game can be said as a mind based game?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:genre res:Board_game . ?uri onto:genre res:Mind_sport . }",lcquad "Where are the philosophers from, whose main work is on the matter of feminism in Canada?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:mainInterest . ?x prop:region ?uri . ?x rdf:type onto:Philosopher}",lcquad What are the things built by Eristoff ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Eristoff prop:manufacturer ?uri } ",lcquad What is the official residence of Sarah Kazemy ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Sarah_Kazemy prop:residence ?uri } ",lcquad What are shows whose theme music composer's home town is New York?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:hometown . ?uri prop:themeMusicComposer ?x . ?uri rdf:type onto:TelevisionShow}",lcquad "Name the university whose affiliations's foundation is in Washington, D.C.?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:foundation . ?uri prop:affiliations ?x . ?uri rdf:type onto:University}",lcquad Who was the coach of 1972 Oakland Raiders season ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:1972_Oakland_Raiders_season onto:coach ?uri } ",lcquad Whcih land of Citi Trends is also the constituency of Malik Al-Hassan Yakubu ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:constituency ?uri. onto:country ?uri} ",lcquad Which TV show's composer is Judy Hart Angelo and executive producer as Glen and Les Charles?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:composer . ?uri onto:executiveProducer . ?uri rdf:type onto:TelevisionShow}",lcquad "Where did they debut their careers , those who have played for US men's national soccer team?","PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:nationalteam . ?x prop:debutteam ?uri . }",lcquad What are on the borders of Shimsa Plateau?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Shimōsa_Plateau onto:border ?uri } ",lcquad What is the former team of the american football players whose position is Running back?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:position . ?x onto:formerTeam ?uri . ?x rdf:type onto:AmericanFootballPlayer}",lcquad Which creator of Theme Time Radio Hour has also given the musical score of the The Times They Are a-Changin' (musical)?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:creator ?uri. onto:musicBy ?uri} ",lcquad How many different kinds of games are published by Interplay Entertainment?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:publisher . ?x prop:genre ?uri . }",lcquad What other awards have been given to Goya Award Winners?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:award res:Goya_Awards . ?x prop:awards ?uri . }",lcquad How many other important work has been done by the writers of Sarah Jane Adventures?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:notableworks . ?x onto:notableWork ?uri . }",lcquad Race horses whose grandsire is Wild Risk have taken part in which races?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:grandsire . ?x prop:race ?uri . ?x rdf:type onto:RaceHorse}",lcquad Who are the tenants of the stadium which is a venue of WCW Mayhem ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:venue ?x . ?x onto:tenant ?uri . ?x rdf:type onto:Stadium}",lcquad Which coach of Marquette Golden Eagles men's basketball team is also the head coach of Virginia Tech Hokies men's basketball team ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:headcoach ?uri. onto:coach ?uri} ",lcquad Which are the races in which Martin Molony participated?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Martin_Molony onto:race ?uri } ",lcquad With what company is the service OneDrive associated?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:services . ?uri rdf:type onto:Company}",lcquad Where common region are soylent and bannock sold?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:region ?uri. onto:region ?uri . }",lcquad What awards have been given to citizens of the Ottoman Empire?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:citizenship res:Ottoman_Empire . ?x onto:award ?uri . }",lcquad List the science fiction shows broadcasted on BBC HD ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:genre . ?uri onto:network . ?uri rdf:type onto:TelevisionShow}",lcquad Who is the person opposed by Tom McLaury and Ike Clanton?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:opponent . ?uri onto:opponent . ?uri rdf:type onto:Person}",lcquad List the products of Playboy Enterprises?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Playboy_Enterprises prop:products ?uri } ",lcquad Name the former broadcast network of the television station which is the sister stations of WGBC?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:WGBC prop:sisterStations ?x . ?x onto:formerBroadcastNetwork ?uri . }",lcquad What is the country of the Hirth Acrostar and the Cobra missile?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:origin ?uri. onto:origin ?uri . }",lcquad What is the Nickname of Daniel O'Regan ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:nickname ?uri } ",lcquad Who owns the websites for which Jimmy wales writes?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:author res:Jimmy_Wales . ?x onto:owner ?uri . }",lcquad What are the bridges whose located in California?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:locatedInArea . ?uri rdf:type onto:Bridge}",lcquad Which settelment area is the home town of the Danny Felice and Cline Buckens?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:hometown ?uri. onto:hometown ?uri . ?uri rdf:type onto:Settlement}",lcquad Who were the head of government agencies working in the German occupied Europe?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:jurisdiction . ?x onto:leader ?uri . ?x rdf:type onto:GovernmentAgency}",lcquad Name the companies which are in cities under Denzil Minnan Wong?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:leaderName . ?uri onto:locationCity ?x . ?uri rdf:type onto:Company}",lcquad What is the largest city of the birthplace of Pat Kirkwood?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:birthplace ?x . ?x onto:largestCity ?uri . }",lcquad Which source of Water resources management in El Salvador is also the nation of the Sierra del Merendn?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Water_resources_management_in_El_Salvador prop:sourceCountry ?uri. res:Sierra_del_Merendón onto:country ?uri} ",lcquad What is the academic journal whose editor is Stephen Law?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:editor . ?uri rdf:type onto:AcademicJournal}",lcquad What awards have the alumni of Academy of Fine Arts in Lodz achieved?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:training res:Academy_of_Fine_Arts_In_Łódź . ?x onto:award ?uri . }",lcquad Name the members of youth clubs which have Camp Nou as their homeground.,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:ground res:Camp_Nou . ?uri prop:youthclubs ?x . }",lcquad Does mumbai manage the railway line going to the daund railway junction?,"PREFIX res: PREFIX onto: ASK WHERE { res:Daund_Junction_railway_station onto:servingRailwayLine res:Mumbai }",lcquad Which musical artist associated with Tony Allen has label with Celluloid Records ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:associatedMusicalArtist . ?uri prop:label . ?uri rdf:type onto:MusicalArtist}",lcquad Who are some basketball players who played for Phoenix Suns?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:team . ?uri rdf:type onto:BasketballPlayer}",lcquad "Which relative of George Madison was the leader of United States House of Representatives elections, 1788 and 1789 ?","PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:relation ?uri. prop:leader ?uri} ",lcquad "From how many works is the musical derived, whose lyrics are written by Sheldon Harnick?","PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:lyrics . ?x onto:basedOn ?uri . }",lcquad Which office holder allegiance is Colony of Virginia and was has a wife named Dolley Madison ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:spouse . ?uri prop:allegiance . ?uri rdf:type onto:OfficeHolder}",lcquad Was Derg the anthem of Ethopia?,"PREFIX res: PREFIX onto: ASK WHERE { res:Derg onto:anthem res:Ethiopia }",lcquad Employees of Ottawa Citizen have come from which towns?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:employer res:Ottawa_Citizen . ?x prop:homeTown ?uri . }",lcquad How many non-fiction subject are there of the books whose one of the non-fiction subject is Ankh-Morpork City Watch ?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:nonFictionSubject . ?x onto:nonFictionSubject ?uri }",lcquad Who is the licensee of EXXV-TV ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:licensee ?uri } ",lcquad Who are in the board of Jimmy Wales ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Jimmy_Wales onto:board ?uri } ",lcquad Where were some people associated with Steve Winwood employed at?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:associatedMusicalArtist . ?x onto:occupation ?uri . ?x rdf:type onto:Person}",lcquad What is the origin of the musical artist whose associated band is Ziggi Recado ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:associatedBand . ?x prop:origin ?uri . ?x rdf:type onto:MusicalArtist}",lcquad Who is the nominee of Jack Ryan ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:nominee ?uri } ",lcquad Which division of Serbia national team is also the region of Dobinsk Ice Cave ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Serbia_national_American_football_team onto:division ?uri. res:Dobšinská_Ice_Cave onto:region ?uri} ",lcquad Name the royalty whose spouse was Cleopatra V of Egypt and one of his parent was Ptolemy XII Auletes?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:mother . ?uri onto:parent . ?uri rdf:type onto:Royalty}",lcquad List the major shrines of Jovan Vladimir?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Jovan_Vladimir prop:majorShrine ?uri } ",lcquad Name some shows whose company is owned by the CBS Corporation?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:owner . ?uri prop:company ?x . ?uri rdf:type onto:TelevisionShow}",lcquad "Which famous person is born in Marlboro Township, New Jersey?","PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:homeTown . }",lcquad In which countries have the Start + Flug aircrafts originated?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:manufacturer . ?x prop:nationalOrigin ?uri . ?x rdf:type onto:Aircraft}",lcquad How many other family of the mammals exists whose family is also Hominidae ?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:family . ?x onto:family ?uri }",lcquad What is the former team of the football player who is the coach of 2006 Oakland Raiders season ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:coach ?x . ?x onto:formerTeam ?uri . ?x rdf:type onto:AmericanFootballPlayer}",lcquad How many TV shows were made by someone who was associated with Lewis Hamilton?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:associatedBand . ?uri prop:creator ?x . ?uri rdf:type onto:TelevisionShow}",lcquad For how many other teams have the former players of Boston Bruins played?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:formerTeam . ?x prop:playedFor ?uri . ?uri rdf:type onto:SportsTeam}",lcquad Which things have been made by artists who died in Midhurst?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:deathPlace res:Midhurst . ?uri onto:creator ?x . }",lcquad What are the TV shows whose network is also known as the CW?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:sisterNames . ?uri prop:network ?x . ?uri rdf:type onto:TelevisionShow}",lcquad How many other important things has the painter of Sarah Jane Adventures done?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { prop:creator ?x . ?x onto:notableWork ?uri . }",lcquad Which founder of sea Gayle Music is also the judge of Rising Star ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:founder ?uri. prop:judges ?uri} ",lcquad Who owns the ford kansas assembly plant?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Ford_Kansas_City_Assembly_Plant onto:owningOrganisation ?uri } ",lcquad What is the label of I Pray on Christmas ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:I_Pray_on_Christmas prop:label ?uri } ",lcquad List the destination of Novair International Airways ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Novair_International_Airways onto:destination ?uri } ",lcquad Who is the spouse of Willian Menalaus?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:William_Menelaus onto:spouse ?uri } ",lcquad Count the number of actors in Lucy Sullivan Is Getting Married.,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { prop:starring ?uri . }",lcquad What mammals are classified into Diprotodontia ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:order . ?uri rdf:type onto:Mammal}",lcquad The Other Side has hosted how many guests?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { prop:guests ?uri . }",lcquad Name the river with source as Columbia Lake and river mouth is located in Clatsop Country ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:riverMouth . ?uri onto:source . ?uri rdf:type onto:River}",lcquad Is Dave Schulz a band member of Berlin?,"PREFIX onto: ASK WHERE { onto:bandMember }",lcquad What are the airlines whose hub airport is Los Angeles International Airport?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:hubAirport . ?uri rdf:type onto:Airline}",lcquad what are some famous people out of the Filipinos?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:stateOfOrigin res:Filipinos } ",lcquad What awards were presented to the person who produced Paradise place?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:producer ?x . ?x prop:awards ?uri . ?x rdf:type onto:Person}",lcquad What is the location town of Seattle Great Wheel ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Seattle_Great_Wheel prop:locationTown ?uri } ",lcquad List all the line of Vadodara Junction railway station?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Vadodara_Junction_railway_station prop:line ?uri } ",lcquad Name the college of Jon Curran ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Jon_Curran prop:college ?uri } ",lcquad Which Tim Birton's movie has a screenplay by Daniel Waters ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:screenplay . ?uri prop:director . }",lcquad Who produces the tv series which made Scott Haran famous?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Scott_Haran onto:knownFor ?x . ?x onto:producer ?uri . }",lcquad What is the place of birth of the jockey who breeded De La Rose ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:breeder ?x . ?x prop:birthPlace ?uri . ?x rdf:type onto:Jockey}",lcquad Name the Artist of Madagascar: Operation Penguin ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Madagascar:_Operation_Penguin prop:artist ?uri } ",lcquad What are some devices made by Taiwanese companies?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:locationCity . ?uri onto:manufacturer ?x . ?uri rdf:type onto:Device}",lcquad Harry Huston and Dick Spalding played their first match for which team?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Harry_Huston prop:debutteam ?uri. res:Dick_Spalding prop:debutteam ?uri . }",lcquad What is the layout of Subaru Legacy (second generation) ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:layout ?uri } ",lcquad How many other wine region are there of the grapes whose one of the wine region is Michigan ?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:wineRegion . ?x onto:wineRegion ?uri }",lcquad Name the office holder whose constituency are Duboce Triangle and Haight-Ashbury ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri prop:constituency . ?uri prop:constituency . ?uri rdf:type onto:OfficeHolder}",lcquad Estimate the number of sports divisions at the universities under international association of universities.,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:affiliation . ?x onto:sport ?uri . }",lcquad What is the leader of the government agency which is the military unit of Erich Kempka ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Erich_Kempka onto:militaryUnit ?x . ?x onto:leader ?uri . }",lcquad What is the alma mater of the senator who is the successor of Warren Magnuson ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:successor ?x . ?x prop:almaMater ?uri . ?x rdf:type onto:Senator}",lcquad Is Eddie Bravo the trainer of Shinya Aoki?,"PREFIX res: PREFIX prop: ASK WHERE { res:Shinya_Aoki prop:trainer res:Eddie_Bravo }",lcquad List the battles in which alumni of US Army Command and General Staff College fought?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:almaMater res:United_States_Army_Command_and_General_Staff_College . ?x prop:battles ?uri . }",lcquad Which writer of Alan Freeman Days is also the writer of Come On over ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:writer ?uri. prop:writer ?uri} ",lcquad Name the subsidary of Tandem Computers which was founded by Jim Harris ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:subsidiary . ?uri onto:foundedBy . ?uri rdf:type onto:Company}",lcquad Count all the books written by an author buried in the Convent of Barefoot Trinitarians?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:restingPlace . ?uri onto:author ?x . ?uri rdf:type onto:Book}",lcquad Name the city with leader as Esther Alder and neighboring municipality as Pregny-Chambsy?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:mayor . ?uri onto:neighboringMunicipality . ?uri rdf:type onto:Location}",lcquad Was Blade Runner cinematographed by JordanCronenweth?,"PREFIX res: PREFIX onto: ASK WHERE { res:Blade_Runner onto:cinematography res:Jordan_Cronenweth }",lcquad Panthera leo fossils and Liger belong to which species?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Panthera_leo_fossilis onto:species ?uri. res:Liger onto:species ?uri . }",lcquad Name the street address of Rhodes-Haverty Building ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:address ?uri } ",lcquad "Who were the commanders during the events which took place in Sandusky County, Ohio?","PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:place . ?x onto:commander ?uri . ?x rdf:type onto:Event}",lcquad Who founded the city where Pat Vincent die?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Pat_Vincent onto:deathPlace ?x . ?x onto:founder ?uri . }",lcquad Name the kingdom with currency Solidus (coin) and administrative headquarters in Nicomedia?,"PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:currency . ?uri onto:capital . }",lcquad Which company has a product named Visual Studio and One Drive as service ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:services . ?uri prop:products . ?uri rdf:type onto:Company}",lcquad "Name the river whose mouth place is Old Lyme, Connecticut?","PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:mouthPlace . ?uri rdf:type onto:River}",lcquad Which division of the Runewaker Entertainment is also the destinations of the Airtours International Airways?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Runewaker_Entertainment onto:division ?uri. res:Airtours_International_Airways prop:destinations ?uri} ",lcquad Which show's network is Prime time Entertainment and has Douglas Netter as executive producer ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:network . ?uri onto:executiveProducer . ?uri rdf:type onto:TelevisionShow}",lcquad Who was the president under which a tennis player held office before John W. Weeks?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:predecessor . ?x prop:president ?uri . ?x rdf:type onto:TennisPlayer}",lcquad What are the things whose leader was a monarch of Willem-Alexander of the Netherlands?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:monarch . ?uri onto:leader ?x . }",lcquad acer nigrum is used in making what?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:ingredient res:Acer_nigrum } ",lcquad Name the prospect team of Mikhail Pashnin ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Mikhail_Pashnin prop:prospectTeam ?uri } ",lcquad What is the predecessor of BMW M40 ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:BMW_M40 prop:predecessor ?uri } ",lcquad Which cities are located around the sea into which the ionian flows?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Ionian_Sea onto:outflow ?x . ?x prop:cities ?uri . }",lcquad Did Joe Namath did his highschool in Beaver Falls High School?,"PREFIX res: PREFIX prop: ASK WHERE { res:Joe_Namath prop:highSchool res:Beaver_Falls_High_School }",lcquad Where do the railroads owned by the Chicago and Northwestern Transportation company begin?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:system . ?x onto:routeStart ?uri . ?x rdf:type onto:RailwayLine}",lcquad Give me a count of mammals which have their order as Primate?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:order . ?uri rdf:type onto:Mammal}",lcquad What television show are distributed by Broadcast syndication?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:distributor . ?uri rdf:type onto:TelevisionShow}",lcquad Who was the president under which people won the United States House of Representatives elections in 1790 ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:leader ?x . ?x prop:president ?uri . ?x rdf:type onto:Person}",lcquad Which TV show's producer is Stephen E. Ambrose and company is DreamWorks Television?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:producer . ?uri onto:company . ?uri rdf:type onto:TelevisionShow}",lcquad Which river originate from limerick?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:mouthLocation . ?uri rdf:type onto:River}",lcquad "Who is the opponent of United States House of Representatives elections in Ohio, 2010 ?","PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:opponent ?uri } ",lcquad Laozi authored which book?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:author res:Laozi } ",lcquad What are some other children of the father of Marvin Bush?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:child res:Marvin_Bush . ?x prop:children ?uri . }",lcquad Rivers from which countries flow into the Caspian?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:riverMouth . ?x onto:sourceCountry ?uri . ?x rdf:type onto:River}",lcquad Which is the nearest city to Elliott Bay ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Elliott_Bay onto:nearestCity ?uri } ",lcquad "In which sects were the aristocrats included, who were buried in Westminister abbey?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:majorShrine . ?x prop:veneratedIn ?uri . ?x rdf:type onto:Royalty}",lcquad Name the saint whose major shrine is in Canada and was canonized by Pope Benedict XVI?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:majorShrine . ?uri prop:canonizedBy . ?uri rdf:type onto:Saint}",lcquad who was the australian flagbearer of 2008 Summer Olympics?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Australia_at_the_2008_Summer_Olympics prop:flagbearer ?uri } ",lcquad Which vice president of Warren G. Harsing is also the president of Evans Hughes ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Warren_G._Harding onto:vicePresident ?uri. res:Charles_Evans_Hughes onto:president ?uri} ",lcquad Who is the manager of the club whose homeground is the riverside stadium?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:ground . ?uri onto:managerClub ?x . ?uri rdf:type onto:SportsManager}",lcquad Does the Utah State Route 162 end at Colorado?,"PREFIX res: PREFIX onto: ASK WHERE { res:Utah_State_Route_162 onto:routeEnd res:Colorado }",lcquad Which recognized title of Frank Thorne is also the product of Playboy Enterprise ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Playboy_Enterprises prop:products ?uri. res:Frank_Thorne onto:award ?uri} ",lcquad Whose constituency is Duboce Triangle ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:constituency . }",lcquad What is the name of Mary's divine child?,"PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:parent . }",lcquad Joe Hahn is the member of what band?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:currentMembers . ?uri rdf:type onto:Band}",lcquad Which team did wolfred McDonald is also the prospect team of Milkhail Pashnin ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Mikhail_Pashnin prop:prospectTeam ?uri. res:Wilfred_McDonald prop:playedFor ?uri} ",lcquad Which companies have launched from the Vandenberg Air Force Air base?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:launchSite res:Vandenberg_Air_Force_Base . ?x onto:manufacturer ?uri . }",lcquad How many home stadiums are there of the seasons whose chairman in Merritt Paulson?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:chairman . ?x onto:homeStadium ?uri . }",lcquad What are some primates?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:order res:Primate . }",lcquad What is the rank of Julius C. Burrows politically?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Julius_C._Burrows prop:order ?uri } ",lcquad Name a few whose live in a place where Indian English is an official language,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:officialLanguage res:Indian_English . ?uri onto:residence ?x . }",lcquad Count the number of first drivers in all the GPs where Mika Hakkinen was a first driver?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:poleDriver . ?x onto:firstDriver ?uri . ?uri rdf:type onto:RacingDriver}",lcquad What sports are played at Vishwajyot High School?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Vishwajyot_High_School onto:sport ?uri } ",lcquad BBC Two is the sister channel of networks having which shows?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:sisterNames . ?uri onto:network ?x . ?uri rdf:type onto:TelevisionShow}",lcquad Who owns a bridge in Boston?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:locatedInArea . ?x prop:owner ?uri . ?x rdf:type onto:Bridge}",lcquad In which fields are both Paul Demiville and Sylvain levi experts?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Paul_Demiéville prop:fields ?uri. res:Sylvain_Lévi prop:fields ?uri . }",lcquad "How many tenats have been there, of the constructions of PCL constructures?","PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:builder . ?x onto:tenant ?uri . }",lcquad Which non fiction of the Thud is also the field of the Jon Speelman ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:nonFictionSubject ?uri. onto:field ?uri} ",lcquad "Who was the prime minister of Victor Hope, 2nd Marquess of Linlithgow and also the editor of British Gazette ?","PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:primeminister ?uri. prop:editor ?uri} ",lcquad Name the hockey team whose head coach is Alain Vigneault?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:headCoach . ?uri rdf:type onto:HockeyTeam}",lcquad What is the municipality of Patterson Houses ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Patterson_Houses onto:municipality ?uri } ",lcquad "Give me a count of everything under the archipelago, where Papeete is the biggest town.","PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:largestCity . ?uri prop:archipelago ?x . }",lcquad Where does the rivers ending in lake washington begin?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:riverMouth . ?x prop:sourceLocation ?uri . ?x rdf:type onto:River}",lcquad Who all have developed a cross platform software?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:operatingSystem . ?x onto:developer ?uri . ?x rdf:type onto:Software}",lcquad where did soccer bowl take place in 76?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:city ?uri } ",lcquad What political ideology of the Palang Dharma Party is relegion of Inthakin?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Palang_Dharma_Party onto:ideology ?uri. res:Inthakin onto:type ?uri} ",lcquad List the cities which share the same water body as that of Florida ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:cities . ?x prop:cities ?uri . ?x rdf:type onto:BodyOfWater}",lcquad What is common between genre of battle chess and purpose of New Zealand Chess ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Battle_Chess prop:genre ?uri. res:New_Zealand_Chess_Federation prop:purpose ?uri} ",lcquad Is GIMP written in C?,"PREFIX onto: ASK WHERE { onto:programmingLanguage }",lcquad Who is relative of the people died in Bergen-Belsen concentration camp ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:deathPlace . ?x onto:relative ?uri . }",lcquad In which state can I find Burr Truss styled bridges?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:style . ?x onto:state ?uri . ?x rdf:type onto:Bridge}",lcquad Which info. appliance is manufactured by Asus and is the predecessor of PS 2?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:predecessor . ?uri onto:manufacturer . ?uri rdf:type onto:InformationAppliance}",lcquad Which cover artist of the The Adventures of Tom Sawyer also the source of inspiration of The Appple Tree ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:The_Adventures_of_Tom_Sawyer onto:coverArtist ?uri. res:The_Apple_Tree onto:basedOn ?uri} ",lcquad Which university of Alexandre Tichonov is the place of death of Valentin Muratov /,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Alexandre_Tichonov prop:university ?uri. res:Valentin_Muratov prop:placeOfDeath ?uri} ",lcquad What kind of music is produced at the record label founded by Andre Bourgeois?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:founder . ?x onto:genre ?uri . ?x rdf:type onto:RecordLabel}",lcquad What is the place of death of the lieutenant of Frank Steunenberg?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Frank_Steunenberg prop:lieutenant ?x . ?x prop:placeOfDeath ?uri . }",lcquad How many titles have been won by the beauty queens which had brown hair?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:hairColor . ?x prop:title ?uri . }",lcquad What are the border of High Desert (Oregon)?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:border ?uri } ",lcquad What is the location city of Burnside Distribution Corporation ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Burnside_Distribution_Corporation onto:locationCity ?uri } ",lcquad Which country's people work in the Birdman enterprises?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:institution . ?x prop:nationality ?uri . ?x rdf:type onto:Engineer}",lcquad Where is Oskar Blues located ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Oskar_Blues_Brewery prop:location ?uri } ",lcquad Paul Leonard's work can be divided into how many series?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:author . ?x onto:series ?uri . }",lcquad Who won the Lovelace Medal and the Norbert Wiener Award for Social and Professional Responsibility?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?uri prop:prizes res:Lovelace_Medal . ?uri prop:prizes res:Norbert_Wiener_Award_for_Social_and_Professional_Responsibility . }",lcquad "List the sports associated with Mariveles, Bataan?","PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:city . ?x onto:sport ?uri . }",lcquad Which holy places did consider Pope Gregory I as a saint?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Pope_Gregory_I prop:veneratedIn ?uri } ",lcquad Which incumbent of Al Gore presidential campaign wass also the president of Mike McCurry ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:president ?uri. onto:incumbent ?uri} ",lcquad What software is developed by GNOWSYS and is licensed by Frontaccounting?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Frontaccounting onto:license ?uri. res:GNOWSYS onto:developer ?uri} ",lcquad Which admin center of pulau Ujong is also the largest city of Pulau Ubin ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Pulau_Ubin onto:largestCity ?uri. res:Pulau_Ujong onto:capital ?uri} ",lcquad What is the parent company of PrivateCore?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:subsidiary res:PrivateCore } ",lcquad Name the scientist whose supervisor was John Robert Woodyard and has won Norbert Wiener Award for Social and Professional Responsibility?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:doctoralAdvisor . ?uri prop:prizes . ?uri rdf:type onto:Scientist}",lcquad Name the river with mouth palce Essex and source place as Gloucestershire ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:mouthPlace . ?uri onto:sourcePlace . ?uri rdf:type onto:River}",lcquad In which province was Dick Redding born?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Dick_Redding prop:birthDate ?uri } ",lcquad What awards have been awarded both to Ingmar bergman and James O'Brien?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:awards ?uri. onto:award ?uri} ",lcquad Count the number of characters of the play whose one of the character is Catwoman ?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:characters . ?x prop:characters ?uri }",lcquad Where else did the graduates of the university of west indies study?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:institution res:University_of_the_West_Indies . ?x prop:almaMater ?uri . }",lcquad Does NOAAS Davidson (S 331) have a homeport in Seattle?,"PREFIX onto: ASK WHERE { onto:homeport }",lcquad List down the schools whose mascot is an animal from the order of Even toed Ungulates?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:designer . ?uri prop:programmingLanguage ?x . ?uri rdf:type onto:School}",lcquad Count the number of cities on the Mediterranean Sea?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { prop:cities ?uri . }",lcquad What non fiction subjects are covered in books by Doubleday publishers?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:publisher . ?x onto:nonFictionSubject ?uri . ?x rdf:type onto:Book}",lcquad Name the death location of Judson Huss ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Judson_Huss prop:deathPlace ?uri } ",lcquad What are the movies whose musicians's home town is Volos?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:hometown . ?uri prop:music ?x . ?uri rdf:type onto:Film}",lcquad What is the affiliation of tani University ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Ōtani_University prop:affiliation ?uri } ",lcquad What is the base currency of Benelux ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Benelux prop:currency ?uri } ",lcquad What foundation palce of Temenos Group is the death palce of jerzy Jzef Poocki ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Temenos_Group prop:foundation ?uri. res:Jerzy_Józef_Potocki prop:placeOfDeath ?uri} ",lcquad Give me a count of the services by the company which provides Data center as the services ?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:services . ?x prop:services ?uri }",lcquad Who discovered Europa and Callisto?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:discoverer ?uri. onto:discoverer ?uri} ",lcquad Which company offer service of Outlook.com and OneDrive?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri prop:services . ?uri prop:services . ?uri rdf:type onto:Company}",lcquad Scientists at the University of Queensland have won which awards?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:almaMater . ?x prop:awards ?uri . ?x rdf:type onto:Scientist}",lcquad Which body governs over the place made by the chumash people?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:architect . ?x onto:governingBody ?uri . ?x rdf:type onto:Place}",lcquad What is the religion of the ethnic group to which the relatives of Waxiang people belong?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:related ?x . ?x onto:religion ?uri . ?x rdf:type onto:EthnicGroup}",lcquad Did Alexander Magleby study at the Dartmouth College?,"PREFIX res: PREFIX onto: ASK WHERE { res:Alexander_Magleby onto:university res:Dartmouth_College }",lcquad "Name the office holder whose constituency is Noe Valley, San Francisco and belongs to military unit USS Kittiwake (ASR-13)?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:constituency . ?uri onto:militaryUnit . ?uri rdf:type onto:OfficeHolder}",lcquad Where is the south shore plaza located?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:South_Shore_Plaza prop:address ?uri } ",lcquad "What are the resting places of the associates of John Betts a, Connecticut politician?","PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:associate ?x . ?x onto:restingPlace ?uri . }",lcquad Waddy wachtel did the music for what movies?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:music . ?uri rdf:type onto:Film}",lcquad Was the 2d Command and Control Squadron barracked in Colorado?,"PREFIX res: PREFIX onto: ASK WHERE { res:2d_Command_and_Control_Squadron onto:garrison res:Colorado }",lcquad Whose military unit is 39th infantry regiment in 1812?,"PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:militaryUnit . }",lcquad Which boarder country of Korean Peninsula was the state of Sodagreen ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Korean_Peninsula onto:border ?uri. res:Sodagreen onto:country ?uri} ",lcquad Spanish harlem incident was composed by whom ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Spanish_Harlem_Incident onto:composer ?uri } ",lcquad What sports are played at universities affiliated by States Colleges and Universities athletic association?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:affiliation . ?x onto:sport ?uri . ?x rdf:type onto:University}",lcquad EU Broadcasting Union is the owner of the distributor of what?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:owner res:European_Broadcasting_Union . ?uri onto:distributor ?x . }",lcquad How many people were drafted in the LA Clippers?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:draftTeam . ?uri rdf:type onto:Person}",lcquad Who is the musical artist worked for labels Celluloid Records and Victor Entertainment?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri prop:label . ?uri prop:label . ?uri rdf:type onto:MusicalArtist}",lcquad Which founding cities of Young Americans Bank is also the location of Denver Broncos ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Young_Americans_Bank prop:foundation ?uri. res:Denver_Broncos onto:locationCity ?uri} ",lcquad Which famous physicist was academically advised by Benjamin Pulleyn?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:academicAdvisor . ?uri rdf:type onto:Scientist}",lcquad Which prospect team of Robin Kovacs is the draft team of Bob MacMillan ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Bob_MacMillan prop:draftTeam ?uri. res:Robin_Kovacs prop:prospectTeam ?uri} ",lcquad Terry Pratchett has written about how many topics?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:author . ?x onto:nonFictionSubject ?uri . }",lcquad Which shows theme music is composed by a band which has Larry Lalonde in it?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:bandMember . ?uri prop:themeMusicComposer ?x . ?uri rdf:type onto:TelevisionShow}",lcquad "Which indian party has won the arunachal pradesh elections of 2014, and has been in the 4th legislative assembly?","PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:party ?uri. prop:party ?uri . }",lcquad Who are the former partners of the figure skaters whose performance have been choreographed by Catarina Lindgren in the past?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:formerChoreographer . ?x onto:formerPartner ?uri . ?x rdf:type onto:FigureSkater}",lcquad In how many regions is English American spoken?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { prop:region ?uri . }",lcquad Which baseball team is owned by Robert Nutting?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:owner . ?uri rdf:type onto:BaseballTeam}",lcquad What religion did Gamini Seneviratne follow?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Gamini_Seneviratne onto:religion ?uri } ",lcquad Which fictional character is portrayed by Roger Barton (film editor)?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:portrayer . ?uri rdf:type onto:FictionalCharacter}",lcquad who are all the people who have managed the England's under 20 soccer team?,"PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:managerClub } ",lcquad "Give the name of the river with source place as Australian Alps and has mouth place as Goolwa , a place in Siyuth Australia ?","PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:sourcePlace . ?uri onto:mouthPlace . ?uri rdf:type onto:River}",lcquad Where were the doctoral students of James Langer born?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:James_S._Langer onto:doctoralStudent ?x . ?x prop:placeOfBirth ?uri . }",lcquad Who has military branches are Colonial troops and Continental Army?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:militaryBranch res:Colonial_troops . ?uri onto:militaryBranch res:Continental_Army . }",lcquad Whose shrine is in aachen cathedral?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:majorShrine res:Aachen_Cathedral . }",lcquad What religions do politicians in the Korean Minjoo Party follow?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:party . ?x onto:religion ?uri . ?x rdf:type onto:OfficeHolder}",lcquad What are the other band members of the band one of whose current member is Robert De Niro?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:currentMembers . ?x onto:bandMember ?uri . ?x rdf:type onto:Band}",lcquad Which peak was first scaled by Krzysztof Wielicki?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:firstAscentPerson res:Krzysztof_Wielicki } ",lcquad Give me the total number of Guests of the television episodes whose one of the Guests is Michael Cristofer?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:guests . ?x prop:guests ?uri }",lcquad How many factions were fighting in the wars where Blue Jacket was a commander?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:commander . ?x prop:combatant ?uri . }",lcquad who was the president under which Joe Purcell is a lieutenant?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:lieutenant res:Joe_Purcell } ",lcquad "Which headcoach of Marquette Golden Eagles men's basketball team, 2008-09 was also the coach of Marquette Golden Eagles team ?","PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:coach ?uri. prop:headcoach ?uri} ",lcquad List the state of the universities whose nation is United States ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:country . ?x onto:state ?uri . ?x rdf:type onto:University}",lcquad What city is the place of birth of Alexander Morozevich which is also the official residence of Dmitri Nossov ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Alexander_Morozevich onto:birthPlace ?uri. res:Dmitri_Nossov prop:residence ?uri} ",lcquad What is the television show whose executive producer is Steven Peterman?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:executiveProducer . ?uri rdf:type onto:TelevisionShow}",lcquad Which military battles are associated with Israel?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:place . ?uri rdf:type onto:MilitaryConflict}",lcquad What are some magazines whose publishers are themselves Rock and Roll Hall of Fame members?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:award . ?uri onto:publisher ?x . ?uri rdf:type onto:Magazine}",lcquad What are the veneration of the one for which there's a major shrine in Hebron?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:majorShrine res:Hebron . ?x prop:veneratedIn ?uri . }",lcquad What is the home town of the band which is the artist of Your Ice Cream's Dirty ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:artist ?x . ?x onto:hometown ?uri . ?x rdf:type onto:Band}",lcquad Who is the chancellor of the university which affiliates the Dartington College of Arts?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:affiliations . ?x prop:chancellor ?uri . ?x rdf:type onto:University}",lcquad What is the nationality of Sune Agerschou ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Sune_Agerschou onto:nationality ?uri } ",lcquad What is the PLACE OF DEATH of Charles Gordon (artist) ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:placeOfDeath ?uri } ",lcquad Namt the fields of Paul Demiville ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Paul_Demiéville prop:fields ?uri } ",lcquad Which battle is Jim Jones associated with to which Allen Boyd is also associated ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:battle ?uri. prop:battles ?uri} ",lcquad Who all have been canonized by Pope Paul VI,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:canonizedBy res:Pope_Paul_VI } ",lcquad Where is the tombstone of the congressman who died in the McLean hospital?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:deathPlace . ?x prop:restingplace ?uri . ?x rdf:type onto:Congressman}",lcquad What is written in a programming language developed by GNOME Project?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:developer res:The_GNOME_Project . ?uri prop:programmingLanguage ?x . }",lcquad Which race is the Best Mate is also the race of the Martin Molony?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Best_Mate prop:race ?uri. res:Martin_Molony onto:race ?uri} ",lcquad Where is the building located whose architect was Francis Palmer Smith?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:architect . ?x prop:address ?uri . ?x rdf:type onto:Building}",lcquad Who operates the bridges designed by Malaysian PWD?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:designer . ?x onto:maintainedBy ?uri . ?x rdf:type onto:Bridge}",lcquad Where was the person born whose successor was Le Hong Phong?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:successor res:Lê_Hồng_Phong . ?x prop:birthPlace ?uri . }",lcquad In which race did Coneygree the racehorse and Fergie Sutherland the horse trainer participate?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Fergie_Sutherland prop:race ?uri. res:Coneygree prop:race ?uri . }",lcquad List all important people of the non profit organization which has Hilary Clinton as a key person ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:keyPeople . ?x prop:keyPeople ?uri . ?x rdf:type onto:Non-ProfitOrganisation}",lcquad List the school of Bobby Skinstad?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Bobby_Skinstad prop:school ?uri } ",lcquad Was Lionel Messi a member of the 2009 FIFA World Cup squads?,"PREFIX res: PREFIX onto: ASK WHERE { res:2009_FIFA_Club_World_Cup_squads onto:currentMember res:Lionel_Messi }",lcquad Was Writings and Drawings illustrated by Bob Dylan?,"PREFIX res: PREFIX prop: ASK WHERE { res:Writings_and_Drawings prop:illustrator res:Bob_Dylan }",lcquad Count all the universities who participated in the tournament won by Alabama Crimson Tides in 2015 ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:champion . ?uri prop:athletics ?x . ?uri rdf:type onto:University}",lcquad Was the Lotuspool Records distributed by Napster?,"PREFIX res: PREFIX onto: ASK WHERE { res:Lotuspool_Records onto:distributingLabel res:Napster }",lcquad "List the base currency of the country whose anthem is Oj, svijetla majska zoro.","PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:anthem . ?x prop:currency ?uri . }",lcquad What magazine is Marritt Cabal known for which has Lucifer Hammer as publisher ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:knownFor ?uri. onto:publisher ?uri} ",lcquad Name the parent company of Ford Falcon Cobra ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Ford_Falcon_Cobra onto:parentCompany ?uri } ",lcquad How many players are in the San Francisco Giants?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:team . ?uri rdf:type onto:Athlete}",lcquad Which place of Geography Club is the location of Seattle Great Wheel ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:locationTown ?uri. prop:place ?uri} ",lcquad How many races has Best Mate won?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { prop:race ?uri . }",lcquad Which governor of Charles Willing had a child named John Scott ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:governor res:Charles_Willing_Byrd . ?uri onto:child res:John_Scott_Harrison . }",lcquad List the relatives of Lyubov Dostoyevskaya ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Lyubov_Dostoyevskaya prop:relatives ?uri } ",lcquad What is the military rank of the important commander of Peruvian Army?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Peruvian_Army onto:notableCommander ?x . ?x onto:militaryRank ?uri . }",lcquad Do the west coast airlines fly to seattle?,"PREFIX res: PREFIX onto: ASK WHERE { res:West_Coast_Airlines onto:targetAirport res:Seattle }",lcquad "Which units are garrisoned at Arlington County, Virginia?","PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:garrison } ",lcquad In how many different places have ehtics philosophers died?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:mainInterests . ?x prop:placeOfDeath ?uri . ?uri rdf:type onto:Place}",lcquad Who is the fictional character who starred in The Dognapper?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:voice . ?uri rdf:type onto:FictionalCharacter}",lcquad Who is the developer of Dart (programming language) ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:developer ?uri } ",lcquad Which house has published books about Jazz?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:nonFictionSubject . ?x onto:publisher ?uri . ?x rdf:type onto:Book}",lcquad Which person naratted The Incredible Hulk and also the writer of Tales of Suspense ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:narrated ?uri. prop:writers ?uri} ",lcquad Who are the parents of writers born and bred in Buckinghamshire?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:homeTown . ?x onto:parent ?uri . ?x rdf:type onto:Writer}",lcquad List down the common sports played by PATTS College of Aeronautics and lytechnic University of the Philippines Taguig ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:PATTS_College_of_Aeronautics prop:athletics ?uri. res:Polytechnic_University_of_the_Philippines_Taguig onto:sport ?uri} ",lcquad How many companies have built concrete bridges?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:material . ?x onto:builder ?uri . }",lcquad How many movies have been directed by almunies of Parsons School of Design?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:education . ?uri onto:director ?x . ?uri rdf:type onto:Film}",lcquad Count the number of sport played by the school which also plays Association football ?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:sport . ?x onto:sport ?uri }",lcquad Which countries militaries fought the SFOR battle?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:battles . ?x onto:battle ?uri . ?x rdf:type onto:MilitaryPerson}",lcquad List the people died in Hyderabad and are a member of political party ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:deathPlace res:Hyderabad . ?x onto:party ?uri . }",lcquad "What is the american football league whose champion is from Kansas City, Missouri?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:city . ?uri prop:champion ?x . ?uri rdf:type onto:AmericanFootballLeague}",lcquad How many thesis were supervised by Ernest Rutherford?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:doctoralAdvisor . }",lcquad "Who is the publisher of the comic, one of whose authors is Kentaro Takekuma ?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:writers . ?x prop:publisher ?uri . ?x rdf:type onto:Comic}",lcquad List the scientists whose doctoral advisor is Ernest Rutherford and are known for Manhattan Project?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:doctoralAdvisor . ?uri prop:knownFor . ?uri rdf:type onto:Scientist}",lcquad Where is the garrison of Western Naval Command ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Western_Naval_Command prop:garrison ?uri } ",lcquad What is the political party of the of Bengalis ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:ethnicity res:Bengalis . ?x onto:party ?uri . }",lcquad Was John of Damascus canonized by Anglican Communion?,"PREFIX res: PREFIX prop: ASK WHERE { res:John_of_Damascus prop:canonizedBy res:Anglican_Communion }",lcquad Which city's mayor is married to Jean Marc Germain?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:spouse . ?uri prop:mayor ?x . }",lcquad Which person's successor is Samsu-iluna?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:successor . ?uri rdf:type onto:Person}",lcquad Where do the sister stations of Al Khaleejiya 100.9 play?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:sisterStations res:Al_Khaleejiya_100.9 . ?x prop:location ?uri . }",lcquad Name the sports played by Jamiatu Muslim Mindanao?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Jamiatu_Muslim_Mindanao onto:athletics ?uri } ",lcquad Was X the Unknown edited by James needs?,"PREFIX res: PREFIX onto: ASK WHERE { res:X_the_Unknown onto:editing res:James_Needs }",lcquad List the party of the office holder which also has the affiliation with Congress Socialist party ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:otherParty . ?x onto:otherParty ?uri . ?x rdf:type onto:OfficeHolder}",lcquad What is the nickname of the city where Tuba Dei lives?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Tuba_Dei prop:city ?x . ?x prop:nickname ?uri . }",lcquad From how many different places did the weapons used in the American Indian wars originate?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:usedInWar . ?x prop:origin ?uri . ?uri rdf:type onto:Place}",lcquad Name the office holder whose alma mater is Harvard-Westlake School and resting place is Alta Mesa Memorial Park?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:almaMater . ?uri prop:restingPlace . ?uri rdf:type onto:OfficeHolder}",lcquad Which company developed Google Web Toolkit and Google custom search?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Google_Web_Toolkit onto:author ?uri. res:Google_Custom_Search onto:author ?uri . }",lcquad Name the rive whose mouth is located in Limerick and location is Dowra?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:mouthLocation . ?uri prop:sourceLocation . ?uri rdf:type onto:River}",lcquad How many sports are played in maharashtran schools?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:state . ?x onto:sport ?uri . ?uri rdf:type onto:Sport}",lcquad What is the citizenship of Ren Romano ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:René_Romano prop:citizenship ?uri } ",lcquad Which magazine's publisher is Jann Wenner and founded by Ralph J. Gleason?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:publisher . ?uri onto:founder . ?uri rdf:type onto:Magazine}",lcquad Where did chancellor served by Rudolf Kirchschlger die?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Rudolf_Kirchschläger prop:chancellor ?x . ?x onto:deathPlace ?uri . }",lcquad How many owners owned the clubs participating in the Premier leagues of '14?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:season . ?x prop:owner ?uri . }",lcquad "How many people live in the Beverly Hills, California?","PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:residence . ?uri rdf:type onto:Person}",lcquad Name some islands in a pacific archipelago?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:location . ?uri prop:archipelago ?x . ?uri rdf:type onto:Island}",lcquad "For how many movies have the music composer composed music, who have collaborated with Yes ?","PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:associatedMusicalArtist . ?uri onto:musicComposer ?x . ?uri rdf:type onto:Film}",lcquad Name the driver who had a pole finish in 1989 Portuguese Grand Prix ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:1989_Portuguese_Grand_Prix onto:poleDriver ?uri } ",lcquad Jeff Munn is the president of which basketball team ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:president . ?uri rdf:type onto:BasketballTeam}",lcquad "In how many areas do the networks broadcast, which also broadcasts in North Carolina?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:broadcastArea . ?x prop:area ?uri . ?uri rdf:type onto:Place}",lcquad Name the sovereign state of Wallington railway station ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Wallington_railway_station onto:country ?uri } ",lcquad Which terrotory of Tonkin campaign also the death bed of Thophane Vnard ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Tonkin_Campaign onto:territory ?uri. res:Théophane_Vénard onto:deathPlace ?uri} ",lcquad Where does the Giannis Alafouzos originate?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Giannis_Alafouzos onto:stateOfOrigin ?uri } ",lcquad What is the death place of the Elbieta Czartoryska which is also place of birth of the Charles Journet,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:deathPlace ?uri. onto:birthPlace ?uri} ",lcquad What mammals fall into the biological family Canidae?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:family . ?uri rdf:type onto:Mammal}",lcquad what region is governed by Mario Olivero?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:leader res:Mario_Oliverio } ",lcquad Whihc party of the Mizoram Legislative Assembly is the government type of kumta ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Kumta onto:governmentType ?uri. res:Mizoram_Legislative_Assembly prop:party ?uri} ",lcquad What sports can be played in institutions in Bataan?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:province res:Bataan . ?x onto:sport ?uri . }",lcquad What is the total number of regions served by the companies which also serves Australia?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:regionServed . ?x onto:regionServed ?uri }",lcquad What tv series can be said to be related to the sarah jane adventure and dr who confidential?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:related res:The_Sarah_Jane_Adventures . ?uri onto:related res:Doctor_Who_Confidential . }",lcquad Which route junction of the Rhode Island Route 15 is the place of birth of the Michael Poulin?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Rhode_Island_Route_15 onto:routeJunction ?uri. res:Michael_Poulin prop:placeOfBirth ?uri} ",lcquad What is the birth city of the Salford City F.C players ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:team . ?x onto:birthPlace ?uri . ?x rdf:type onto:SoccerPlayer}",lcquad What is the birthplace of Liudmila Privivkova and Qadir Huseynov ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Liudmila_Privivkova onto:birthPlace ?uri. res:Qadir_Huseynov onto:birthPlace ?uri . }",lcquad Who are the maintainers of the bridges which cross the pandaruan river?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:crosses . ?x onto:maintainedBy ?uri . ?x rdf:type onto:Bridge}",lcquad Who has official residences at Colts Neck Township and Beverly Hills?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:residence . ?uri onto:residence . }",lcquad List the area of radio stations whose sister station is WBCQ-FM?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:sisterStations ?x . ?x prop:area ?uri . }",lcquad Which school did Robbie Diack attend?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Robbie_Diack prop:school ?uri } ",lcquad "List the alma mater of the congressmen who attended Nashville, Tennessee ?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:almaMater . ?x onto:almaMater ?uri . ?x rdf:type onto:Congressman}",lcquad What is the broadcast area of CFRX ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:CFRX onto:broadcastArea ?uri } ",lcquad Who developed games based on the Cars series?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:series . ?x onto:developer ?uri . ?x rdf:type onto:VideoGame}",lcquad What are the american football players whose former team's coach is Jason Maas?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:coach . ?uri onto:formerTeam ?x . ?uri rdf:type onto:AmericanFootballPlayer}",lcquad Which hub of Cascade Airways is also the resting place of Brandon Lee ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Cascade_Airways prop:hubs ?uri. res:Brandon_Lee onto:restingPlace ?uri} ",lcquad How many companies have manufactured the rockets launched from the Cape Canaveral Air Force Station?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:launchSite . ?x onto:manufacturer ?uri . }",lcquad What is the sea connected to Kaliningrad and Gdask?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri prop:cities . ?uri prop:cities . ?uri rdf:type onto:Sea}",lcquad Name the agency of Election Commission of Thailand ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Election_Commission_of_Thailand prop:agencyName ?uri } ",lcquad In which country did the planes designed by Ursula Hanle originate?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:designer . ?x prop:nationalOrigin ?uri . ?x rdf:type onto:Aircraft}",lcquad what are some units udner the US department of navy?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:commandStructure res:United_States_Department_of_the_Navy } ",lcquad Which destination of the Novair International Airways is also the predecessor of the Chevrolet Caprice?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Novair_International_Airways onto:destination ?uri. res:Chevrolet_Caprice onto:predecessor ?uri} ",lcquad What did other artists associated with the Shirelles make?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:associatedBand . ?x onto:occupation ?uri . ?x rdf:type onto:Artist}",lcquad Which sitcoms are made by a company headquartered in NYC?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:headquarter . ?uri onto:company ?x . ?uri rdf:type onto:TelevisionShow}",lcquad Name the city of Duwamish River ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Duwamish_River onto:city ?uri } ",lcquad List the children of the parent of Marvin Bush.,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Marvin_Bush onto:parent ?x . ?x prop:children ?uri . }",lcquad List the awards received of the person whose child is Daine Disney Miller?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:children . ?x onto:award ?uri . ?x rdf:type onto:Person}",lcquad In which country is the Baku puppet Theater located which is also the birth palce of Anar Salmanov ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Baku_Puppet_Theatre onto:locationCountry ?uri. res:Anar_Salmanov prop:placeOfBirth ?uri} ",lcquad List down all the cast members of Tony n' Tina's Wedding ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:starring ?uri } ",lcquad What is the airline company has its headquarters in Dublin Airport?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:headquarters res:Dublin_Airport } ",lcquad What was the result of Operation Autumn Clouds ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Operation_Autumn_Clouds prop:result ?uri } ",lcquad Where was the Temptation Waits recorded?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Temptation_Waits onto:recordedIn ?uri } ",lcquad Some movies whose screenplay is done by american born people?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:birthPlace res:United_States . ?uri prop:screenplay ?x . }",lcquad List the relatives of clay Aiken ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:relatives res:Clay_Aiken . }",lcquad List the relatives of the children of Jon Voight ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Jon_Voight prop:children ?x . ?x onto:relative ?uri . }",lcquad What is the resting place of the children of Bruce Lee ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Bruce_Lee prop:children ?x . ?x onto:restingPlace ?uri . }",lcquad List the colonel with branch as Militia ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:branch . ?uri prop:rank . }",lcquad List all areas served by the radio station serving South carolina ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:area . ?x prop:area ?uri . ?x rdf:type onto:RadioStation}",lcquad Which TV show's theme was composed by a band in which Todd Huth used to perform?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:formerBandMember . ?uri prop:themeMusicComposer ?x . ?uri rdf:type onto:TelevisionShow}",lcquad Which work is both Neil Cross and Lars Pearson both known for ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Neil_Cross onto:notableWork ?uri. res:Lars_Pearson onto:notableWork ?uri . }",lcquad What is the state of origin of Abbas Jafri ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Abbas_Jafri onto:stateOfOrigin ?uri } ",lcquad which award has been won by Claudia Moro?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Claudia_Moro prop:title ?uri } ",lcquad What religion did the spouse of Richie Aprile follow?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Richie_Aprile prop:spouse ?x . ?x onto:religion ?uri . }",lcquad Which river has its roots in Baikal Mountains?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:sourceMountain res:Baikal_Mountains } ",lcquad What is the country whose leader was once Valentina Matviyenko?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:leader res:Valentina_Matviyenko . }",lcquad Is Ingo Steuer the formercoach of Stanislav Morozov?,"PREFIX res: PREFIX prop: ASK WHERE { res:Stanislav_Morozov prop:formercoach res:Ingo_Steuer }",lcquad Whose units are responsible for close air support?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:role res:Close_air_support . ?uri onto:militaryUnit ?x . }",lcquad Which university has chancellor as Nicholas S. Zeppos?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:chancellor . ?uri rdf:type onto:University}",lcquad Is Liang Chow the headcoach of Shawn Johnson?,"PREFIX res: PREFIX prop: ASK WHERE { res:Shawn_Johnson prop:headcoach res:Liang_Chow }",lcquad Name the key people of the non-profit organisations whose one of the key person is Lesley-Anne knight ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:keyPeople . ?x prop:keyPeople ?uri . }",lcquad What is the address of Federal Reserve Bank Building?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:address ?uri } ",lcquad What are the kind of games one can play on windows?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:computingPlatform . ?x onto:genre ?uri . ?x rdf:type onto:VideoGame}",lcquad What is the location country of the bank whose successor is Mauritius Bank ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:successor . ?x prop:locationCountry ?uri . ?x rdf:type onto:Bank}",lcquad Which artists have co-starred with Kris Kristofferson?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:associatedActs . ?uri rdf:type onto:Artist}",lcquad List the software using C++ as programming language and licence is Software as a service?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:programmingLanguage . ?uri onto:license . ?uri rdf:type onto:Software}",lcquad Which are the major hubs of airline which operates the Menora Tunnel?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:operator ?x . ?x prop:hubs ?uri . ?x rdf:type onto:Airline}",lcquad List the countries through which European rout E39 and E8 passes ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:European_route_E39 onto:county ?uri. res:European_route_E8 onto:county ?uri . }",lcquad Who are the writer of the singles whose music genre is Rhythm and blues ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:genre . ?x onto:writer ?uri . ?x rdf:type onto:Single}",lcquad Which country does the current team of Darren McNamara belong to?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Darren_McNamara prop:currentTeam ?x . ?x onto:locationCountry ?uri . }",lcquad Name the mountain which belongs to Sierra Nevada range and is located in Inyo National Forest?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:mountainRange . ?uri onto:locatedInArea . ?uri rdf:type onto:Mountain}",lcquad What are the awards won by the film editor of The Search?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:editing ?x . ?x prop:awards ?uri . }",lcquad Which serving railway line of the Rostov-Glavny is also the place of birth of Nina Vislova?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:servingRailwayLine ?uri. prop:placeOfBirth ?uri} ",lcquad Who coached the Marquette golden eagles men team in 09 to 10 and then again in 13 to 14 ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:coach ?uri. onto:coach ?uri . }",lcquad Give me some series related to the one which had Yasmin Paige in them.,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:starring . ?uri onto:related ?x . ?uri rdf:type onto:TelevisionShow}",lcquad Is James Wong Howe the cinematographer of Behave Yourself?,"PREFIX prop: ASK WHERE { prop:cinematography }",lcquad Does Heydar mean the same as a lion?,"PREFIX res: PREFIX prop: ASK WHERE { res:Heydar prop:meaning res:Lion }",lcquad Which associate musical artist of Carolyn Dennis is also the composer of Motorpsycho Nitemare ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Carolyn_Dennis onto:associatedMusicalArtist ?uri. res:Motorpsycho_Nitemare prop:composer ?uri} ",lcquad Count the number of shows whose creators are Jerry Seinfeld and Larry David?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?uri onto:creator . ?uri onto:creator } ",lcquad "What is the state of the settlement, which is the sub assembly of Mohamedia, Tunisia ?","PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:isPartOf ?x . ?x onto:country ?uri . }",lcquad Name the rivers in the hudson highlands state parts?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Hudson_Highlands_State_Park prop:river ?uri } ",lcquad How many TV shows have executive producer as Steven Moffat ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:executiveProducer . ?uri rdf:type onto:TelevisionShow}",lcquad "Which office holder's military unit is USS Kittiwake and constituency is Castro District, San Francisco ?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:militaryUnit . ?uri prop:constituency . ?uri rdf:type onto:OfficeHolder}",lcquad Which writer of the Snaman is also the writer of Neverwher ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:writers ?uri. onto:writer ?uri} ",lcquad How many relatives are there of veterans of operation Barbarossa?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:battle . ?x onto:relation ?uri . }",lcquad Which famous political figures are relatives to George Madison?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:George_Madison onto:relation ?uri } ",lcquad Which organisation has superintendent as Lieutenant general (United States)?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:superintendent . ?uri rdf:type onto:Organisation}",lcquad Who all have been in bands which have recorded their work in the Electric Lady Studios?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:recordedIn . ?uri prop:associatedActs ?x . ?uri rdf:type onto:Person}",lcquad "What religion is practiced by Hirunika Premachandra, and many others south asians in Hong Kong?","PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:South_Asians_in_Hong_Kong onto:religion ?uri. res:Hirunika_Premachandra prop:religion ?uri . }",lcquad Was Kevin Jonas a part of Jonas brothers?,"PREFIX res: PREFIX onto: ASK WHERE { res:Jonas_Brothers onto:formerBandMember res:Kevin_Jonas }",lcquad Who did the associated act which is a Peter Frampton production ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:producer res:Peter_Frampton . ?uri prop:associatedActs ?x . }",lcquad List the shows whose company's successor is Amblin Television.,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:successor . ?uri onto:company ?x . ?uri rdf:type onto:TelevisionShow}",lcquad How many shows are made by the channel whose predecessor was the Comedy Channel?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:predecessor . ?uri prop:network ?x . ?uri rdf:type onto:TelevisionShow}",lcquad List of people who were the first one to ascend a mountain in the Cathedral range?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:mountainRange . ?x onto:firstAscentPerson ?uri . ?x rdf:type onto:Mountain}",lcquad Give me the mascot of the military unit in which Stewart Bovell served?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:militaryBranch ?x . ?x prop:mascot ?uri . ?x rdf:type onto:MilitaryUnit}",lcquad Which company owns GetTV and Hypnotize minds ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:GetTV prop:parent ?uri. res:Hypnotize_Minds prop:parent ?uri . }",lcquad In which wars did commanders born in Indochina fight?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:birthPlace . ?uri onto:commander ?x . ?uri rdf:type onto:MilitaryConflict}",lcquad Who has written the mary poppins musical?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:author ?uri } ",lcquad Which newspaper is owned by people living in Oslo?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:location res:Oslo . ?uri prop:owners ?x . }",lcquad Who made the engine whose predecessor is the SHO V6?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:predecessor . ?x onto:manufacturer ?uri . ?x rdf:type onto:Engine}",lcquad For how many different teams have Ontarians been drafted ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:placeOfBirth . ?x onto:draftTeam ?uri . }",lcquad Name the university of Alexandre Tichonov ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Alexandre_Tichonov prop:university ?uri } ",lcquad In which countries can i find broadcasted TV in southeast asia?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:broadcastArea . ?x prop:country ?uri . ?x rdf:type onto:TelevisionStation}",lcquad "Over how many cities did the Bellaton MMA, Season 11 take place?","PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { prop:city ?uri . }",lcquad Whose academic advisor works at the St George's Hospital?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:workInstitutions . ?uri onto:academicAdvisor ?x . }",lcquad Count the number of people who graduated from universities affiliated with the NCAA.,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:athletics . ?uri prop:education ?x . ?uri rdf:type onto:Person}",lcquad Which governor of Charles Willing byrd fought the battle of Siege of Fort Recovery ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:battle res:Siege_of_Fort_Recovery . ?uri prop:governor res:Charles_Willing_Byrd . }",lcquad How many characters were made by Paul Dini?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:creators . }",lcquad What are the name of the casualties affected by shooting rampage of Eric Harris and Dylan Klebold?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:deathCause . ?uri rdf:type onto:Person}",lcquad How many molluscas are there whose families are Buccinidae and Buccinoidea?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?uri onto:family . ?uri onto:family } ",lcquad List the newspapers which has headquarters in Stockholm?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:headquarters . ?uri rdf:type onto:Newspaper}",lcquad List the relegion of tani University which is also the life stance of udit Raj ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Ōtani_University prop:affiliation ?uri. res:Udit_Raj onto:religion ?uri} ",lcquad Was David Gilmour a former member of Pink Floyd?,"PREFIX res: PREFIX onto: ASK WHERE { res:Pink_Floyd onto:formerBandMember res:David_Gilmour }",lcquad what are some players of England national football team?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:nationalteam res:England_national_football_team } ",lcquad Which genre of books does the writer of The Many Hands write?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:The_Many_Hands prop:author ?x . ?x onto:genre ?uri . }",lcquad Where did Aghasalim Childagh die?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Aghasalim_Childagh prop:deathDate ?uri } ",lcquad Give me a count of airlines whose hub airport is Los Angeles International Airport?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:hubAirport . ?uri rdf:type onto:Airline}",lcquad Where is the football team located in which Josh Bell did his debut?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:debutTeam ?x . ?x onto:locationCity ?uri . }",lcquad Where is the successor of john waldo from?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:successor res:John_B._Waldo . ?x prop:state ?uri . }",lcquad How many awards have screenwriters won?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:occupation . ?x onto:award ?uri . }",lcquad What are the houses of the Parliament Security Services and Parliament of India ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Parliament_Security_Services prop:houses ?uri. res:Parliament_of_India prop:houses ?uri . }",lcquad How many owners are there of things located in Alabama?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:city . ?x onto:owner ?uri . }",lcquad Which writer of A literary Nightmare also extended the work of The Apple tree ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:The_Apple_Tree onto:basedOn ?uri. res:A_Literary_Nightmare onto:author ?uri} ",lcquad Who collaborated with Johnny Cash and Kris Kristofferson ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?uri prop:associatedActs res:Johnny_Cash . ?uri prop:associatedActs res:Kris_Kristofferson . }",lcquad What is the television show whose opening theme is Where Everybody Knows Your Name?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:openingTheme . ?uri rdf:type onto:TelevisionShow}",lcquad "How many companies were founded in Denton, texas?","PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:part . ?uri onto:foundationPlace ?x . ?uri rdf:type onto:Company}",lcquad Of which countries does Viveka Babajee have citizenship?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Viveka_Babajee prop:citizenship ?uri } ",lcquad Which club of perianne Lones is also the home town of the Kady O'Malley ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:homeTown ?uri. prop:club ?uri} ",lcquad Where are the shrines of the saints who were beatified by Pope Pius XI?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:beatifiedBy . ?x onto:majorShrine ?uri . ?x rdf:type onto:Saint}",lcquad What is the ethicity of Ted Falon?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Ted_Failon onto:ethnicity ?uri } ",lcquad By what person of which political party is Balangir district led?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Balangir_district onto:leaderName ?uri } ",lcquad Who is the political figure whose military branch is Colonial troops?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:militaryBranch res:Colonial_troops } ",lcquad Foxy Brown was associated with which band?,"PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:associatedBand } ",lcquad Which creation of Josh Friedman was portrayed in Terminator 2 ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:portrayer res:Terminator_2:_Judgment_Day . ?uri prop:creator res:Josh_Friedman . }",lcquad What are some common games played in PATTS college of aeronautics and Jamiatu muslim mindanao?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:PATTS_College_of_Aeronautics prop:athletics ?uri. res:Jamiatu_Muslim_Mindanao prop:athletics ?uri . }",lcquad Of how many battles is Chickasaw Campaign of 1736 consisted?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Chickasaw_Campaign_of_1736 prop:combatant ?uri } ",lcquad In which country is there a political party whose leader is Jose Cha Cha Jimenez?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:leader . ?x prop:international ?uri . ?x rdf:type onto:PoliticalParty}",lcquad Which movies' composers have won a BAFTA for film music?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:award . ?uri onto:musicComposer ?x . ?uri rdf:type onto:Film}",lcquad What kind of things are on the radio stations affiliated with the Baltimore Ravens?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:affiliations . ?x onto:programmeFormat ?uri . ?x rdf:type onto:RadioStation}",lcquad Which work institue of andrew Schally belongs to WTUL ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Andrew_Schally prop:workInstitutions ?uri. res:WTUL prop:owner ?uri} ",lcquad Who is the author of Heroman is also the author of Karakuri Dji Ultimo ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Heroman prop:author ?uri. res:Karakuri_Dôji_Ultimo onto:author ?uri} ",lcquad Name the common sports played at Polytechnic University of Philippines San Juan and Islamic Azad University?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Polytechnic_University_of_the_Philippines_San_Juan onto:sport ?uri. res:Islamic_Azad_University_Central_Tehran_Branch onto:sport ?uri . }",lcquad What organization is the parent of Greenpeace Nordic?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Greenpeace_Nordic onto:parentOrganisation ?uri } ",lcquad Of what all has David Ian Salter been an editor of?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:editing res:David_Ian_Salter } ",lcquad How many ,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:team . }",lcquad What is the place of birth of the Kira Plastinina and Sergey Ryazansky,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Kira_Plastinina prop:placeOfBirth ?uri. res:Sergey_Ryazansky prop:placeOfBirth ?uri . }",lcquad Name the river whose mouth mountain is Essex and river mouth is North Sea?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:mouthMountain . ?uri onto:riverMouth . ?uri rdf:type onto:River}",lcquad What is the products of the BBC Multimedia and series of the The Last Resort (Doctor Who),"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:products ?uri. onto:series ?uri} ",lcquad Which mascot of Celal Bayer university is also the nickname of kore Presbyterian Theological Seminar ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Korea_Presbyterian_Theological_Seminary prop:nickname ?uri. res:Celal_Bayar_University prop:mascot ?uri} ",lcquad In how many countries do the rivers start which end at the Caspian Sea?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:riverMouth . ?x onto:sourceCountry ?uri . ?uri rdf:type onto:Country}",lcquad Who is the leader of the Kriminalpolizei and Ordnungspolizei?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Kriminalpolizei onto:leader ?uri. res:Ordnungspolizei onto:leader ?uri . }",lcquad What award has been given to Roy Walker as well as Walt Disney?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:award ?uri. onto:award ?uri . }",lcquad "Give the total number of places to which airlines go, who also go to Glasgow?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:targetAirport . ?x prop:destinations ?uri . ?uri rdf:type onto:Place}",lcquad What is the death place of the Marina Pankova and Viktor Ulyanich?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Marina_Pankova onto:deathPlace ?uri. res:Viktor_Ulyanich onto:deathPlace ?uri . }",lcquad Who was the PM under which William Deane served?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:William_Deane onto:primeMinister ?uri . }",lcquad Which leader of Trump Entertainment Resorts is a relative of Maryanne Barry?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Maryanne_Trump_Barry onto:relation ?uri. res:Trump_Entertainment_Resorts onto:keyPerson ?uri . }",lcquad In which states can I find Truss bridges?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:style . ?x onto:state ?uri . ?x rdf:type onto:Bridge}",lcquad Which awards have Puerto Ricons won?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:ethnicity res:Puerto_Rico . ?x prop:awards ?uri . }",lcquad Where is the rival school of Somerset Berkeley Regional High school?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:rival . ?x onto:region ?uri . ?x rdf:type onto:School}",lcquad What products are made by Tehran based companies?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:location . ?x onto:product ?uri . ?x rdf:type onto:Company}",lcquad Count number of people who follow a religion which has an important office in Gold Base ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:headquarters . ?uri onto:religion ?x . ?uri rdf:type onto:Person}",lcquad In which areas can we find the networks owned by the govt of Mauritius?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:owningCompany . ?x prop:broadcastArea ?uri . ?x rdf:type onto:BroadcastNetwork}",lcquad What is the profession of the William Luther Hill and also the office of the Richard Coke ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:William_Luther_Hill onto:profession ?uri. res:Richard_Coke prop:office ?uri} ",lcquad What's the religion of the winner of china election of 2008?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:leader ?x . ?x onto:religion ?uri . }",lcquad What is the city nearest to the historic place whose architect is Joseph Dion?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:architect . ?x onto:nearestCity ?uri . ?x rdf:type onto:HistoricPlace}",lcquad Who is the father of Edith Vonnegut and is also a writer?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:child . ?uri rdf:type onto:Writer}",lcquad was Charlemagne canonized by antipope pachal 3?,"PREFIX res: PREFIX prop: ASK WHERE { res:Charlemagne prop:canonizedBy res:Antipope_Paschal_III }",lcquad How many basketball players studied in the Midland College?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:college . ?uri rdf:type onto:BasketballPlayer}",lcquad List all the collaborators of the artist which has collaborated with sanremo Music Festival ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:associatedMusicalArtist . ?x onto:associatedMusicalArtist ?uri . ?x rdf:type onto:Artist}",lcquad "Who was the president under whom, a governor participated in Shay's rebellion?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:battle . ?x prop:president ?uri . ?x rdf:type onto:Governor}",lcquad Which actors have performed in plays performed in New York?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:place . ?x prop:starring ?uri . ?x rdf:type onto:Play}",lcquad Who is the editor of Hearth and Home ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Hearth_and_Home onto:editor ?uri } ",lcquad List the books by the authors buried in the Convent of the Barefoot Trinitarians?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:restingPlace . ?uri onto:author ?x . ?uri rdf:type onto:Book}",lcquad How many game series exist for iOS?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:computingPlatform . ?x onto:series ?uri . }",lcquad Where does Manu cornet work?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Manu_Cornet prop:employer ?uri . }",lcquad "Which awards did the creator of A Barrel of Laughs, a Vale of Tears won ?","PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:author ?x . ?x onto:award ?uri . ?x rdf:type onto:ComicsCreator}",lcquad In how many different places were the people born who are members of National Museum of Racing and Hall of Fame?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:honours . ?x prop:birthPlace ?uri . ?uri rdf:type onto:Place}",lcquad Was einstein a doctoral student of Alfred Kleiner?,"PREFIX res: PREFIX onto: ASK WHERE { res:Alfred_Kleiner onto:doctoralStudent res:Albert_Einstein }",lcquad What is the source country of reg Lake ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Üüreg_Lake onto:sourceCountry ?uri } ",lcquad Which hockey teams have had people playing as Defenceman?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:position . ?x prop:playedFor ?uri . ?x rdf:type onto:IceHockeyPlayer}",lcquad which president was served by Joseph Stiglitz?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Joseph_Stiglitz prop:president ?uri } ",lcquad Name the tenant of Ever bank field which has also has player named Dan Shamash ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Dan_Shamash onto:team ?uri. res:EverBank_Field onto:tenant ?uri} ",lcquad Who is the mfr. of the engine used in Ford Transit ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:engine ?x . ?x onto:manufacturer ?uri . ?x rdf:type onto:Engine}",lcquad Where did the employees of American College of Surgeons study?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:workInstitutions res:American_College_of_Surgeons . ?x onto:education ?uri . }",lcquad "Name the people whose residence is Beverly Hills, California?","PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:residence . ?uri rdf:type onto:Person}",lcquad Did Stan Lee create Jean Grey?,"PREFIX res: PREFIX prop: ASK WHERE { res:Jean_Grey prop:creators res:Stan_Lee }",lcquad The authors of Zhorstoke nebo was influenced by whom ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Zhorstoke_nebo onto:author ?x . ?x onto:influencedBy ?uri . }",lcquad What product is made by Sony and Foxconn togather?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:manufacturer res:Sony . ?uri onto:manufacturer res:Foxconn . }",lcquad Which city has radio stations which are Religious ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:format . ?x prop:city ?uri . ?x rdf:type onto:RadioStation}",lcquad From which state do the White Plum Asangas come?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:religion res:White_Plum_Asanga . ?x onto:stateOfOrigin ?uri . }",lcquad Who operates the Ganz UV?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Ganz_UV onto:operator ?uri } ",lcquad What is the state of Umatilla language which is also the state of James K. Kelly ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:James_K._Kelly prop:state ?uri. res:Umatilla_language prop:region ?uri} ",lcquad Where has GARAGE recorded its singles?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:producer . ?x onto:recordedIn ?uri . ?x rdf:type onto:Single}",lcquad How many players participated in the 2004-05 FC Barcelona season?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { prop:name ?uri . ?uri rdf:type onto:SoccerPlayer}",lcquad Whose mam is Bertrada of Laon?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:mother res:Bertrada_of_Laon } ",lcquad Give me a list of all the people driving at pole positions in the Grand Prixes where Renault was a first team?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:firstTeam . ?x onto:poleDriver ?uri . ?x rdf:type onto:GrandPrix}",lcquad Who is the developer of the software which distributes Batman: Arkham City Lockdown ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:distributor ?x . ?x prop:developer ?uri . ?x rdf:type onto:Software}",lcquad What are the non-fiction topics in the books whose authors is Terry Pratchett?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:author . ?x onto:nonFictionSubject ?uri . ?x rdf:type onto:Book}",lcquad Is WP 8.1 the OS on Lumia 830?,"PREFIX res: PREFIX prop: ASK WHERE { res:Nokia_Lumia_830 prop:os res:Windows_Phone_8.1 }",lcquad Name a movie with actor as Momoko Kchi and music by Akira Ifukube?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:starring . ?uri prop:music . ?uri rdf:type onto:Film}",lcquad Which railway line goes through the stations which are a part of the North Caucasus railway?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:type . ?x onto:servingRailwayLine ?uri . ?x rdf:type onto:Station}",lcquad Which animal is the mascot of the 1502nd Infantry Brigade (Ready Reserve) and Galatasaray Handball Team ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:mascot ?uri. prop:mascot ?uri . ?uri rdf:type onto:Animal}",lcquad Who was in missions of Gemini 8 and Apollo 11?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?uri prop:mission res:Gemini_8 . ?uri prop:mission res:Apollo_11 . }",lcquad Name the source Island of Bayou ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:source ?uri } ",lcquad What location country of AH141 is also the nation of malaysia Junior hockey league ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:AH141 onto:county ?uri. res:Malaysia_Junior_Hockey_League onto:country ?uri} ",lcquad Which college of the Luke List (golfer) is the alma mater of the Park Trammell ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:college ?uri. onto:almaMater ?uri} ",lcquad "Of the sports commonly played at Islamic Azad Uni, tehran, which one does Jon Speelman play?","PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Jon_Speelman onto:field ?uri. res:Islamic_Azad_University_Central_Tehran_Branch onto:sport ?uri} ",lcquad How many artists are signed up with Celluloid Records?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:label . }",lcquad Henry McDaniel's trained horses have won which awards?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:trainer . ?x onto:honours ?uri . ?x rdf:type onto:Horse}",lcquad What were the occupations of Marcus Floyd?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Marcus_Floyd onto:occupation ?uri } ",lcquad With whom is the institution of David Charles affiliated?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:workInstitutions ?x . ?x prop:affiliation ?uri . }",lcquad "From how many coutries do companies come, which are headquartered in the Klang Valley?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:headquarters . ?x prop:country ?uri . ?uri rdf:type onto:Country}",lcquad "What political party has governed both in Baraily,MP and Jowai?","PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Baraily onto:leaderName ?uri. res:Jowai onto:leaderName ?uri . }",lcquad Who is the builder of the bridge owned by Tabriz ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:owner . ?x onto:builder ?uri . ?x rdf:type onto:Bridge}",lcquad Is the song Only the Good Die Young from The Stranger?,"PREFIX prop: ASK WHERE { prop:fromAlbum }",lcquad Who are the golf players whose college is Arizona State Sun Devils?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:college . ?uri rdf:type onto:GolfPlayer}",lcquad Did taylor swift do the theme song of The Farmer Wants a Wife?,"PREFIX prop: ASK WHERE { prop:opentheme }",lcquad How many local authorities manage mixed gender schools?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:gender . ?x onto:localAuthority ?uri . }",lcquad "What is the almamater of the successor of F. A. Little, Jr.? ","PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:successor ?x . ?x onto:almaMater ?uri . }",lcquad List everything in which saxophone players have been casted.,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:instrument res:Saxophone . ?uri prop:starring ?x . }",lcquad In which city is Corringham railway station located?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Corringham_railway_station prop:borough ?uri } ",lcquad What monument was unveiled in 1984 of fine arts of the Soviet Union ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:1984_in_fine_arts_of_the_Soviet_Union prop:title ?uri } ",lcquad Where did the wrestler trained by Ring of Honour get billed?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:trainer . ?x prop:billed ?uri . ?x rdf:type onto:Athlete}",lcquad Name the console whose successor is PlayStation 4 and predecessor is PlayStation 2?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:successor . ?uri prop:predecessor . ?uri rdf:type onto:InformationAppliance}",lcquad List the name of those who became famous for something garrisoned at Tennessee?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:garrison res:Tennessee . ?uri prop:knownFor ?x . }",lcquad "Which school teams are there in schools of Arlington Heights, Illinois?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:city . ?x prop:teamName ?uri . ?x rdf:type onto:School}",lcquad Who is the person whose opponent's father is Newman Haynes Clanton?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:parent res:Newman_Haynes_Clanton . ?uri onto:opponent ?x . }",lcquad Who has official residences at Beverly Hills and Colts Neck Township ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:residence . ?uri onto:residence . }",lcquad What games are played in Protestant schools?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:schooltype . ?x onto:sport ?uri . ?x rdf:type onto:School}",lcquad Which river flows through both eastern and western washington?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Eastern_Washington onto:river ?uri. res:Central_Washington onto:river ?uri . }",lcquad What company is the distributor of Bombay Sapphire?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Bombay_Sapphire prop:distributor ?uri } ",lcquad Did Trish Stratus train Christina Crawford?,"PREFIX prop: ASK WHERE { prop:trainer }",lcquad Which stockholder of yale Repertory Theatre was training center of William Anthony ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:training ?uri. prop:owner ?uri} ",lcquad "Name the team for which Hensley Meulens played, whihc was also the debut team od Steve Ontiveros ?","PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:debutteam ?uri. onto:team ?uri} ",lcquad Name the common institution of the Erica Frank and Douglass North?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Erica_Frank onto:institution ?uri. res:Douglass_North onto:institution ?uri . }",lcquad Name a office holder whose predecessor is Edward Douglass White and has son named Charles Phelps Taft II?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:predecessor . ?uri onto:child . ?uri rdf:type onto:OfficeHolder}",lcquad List the ingredients of Kaszanka?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Kaszanka onto:ingredient ?uri } ",lcquad List the language of Kunsten Museum of moder art Aalborg ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:KUNSTEN_Museum_of_Modern_Art_Aalborg onto:language ?uri } ",lcquad Is wizard rock inspired from Harry potter?,"PREFIX res: PREFIX onto: ASK WHERE { res:Wizard_rock onto:stylisticOrigin res:Harry_Potter }",lcquad What is the venerated in of the Abraham and religion of the Saima Chowdhury,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Abraham prop:veneratedIn ?uri. res:Saima_Chowdhury prop:religion ?uri} ",lcquad Who directed the haunted house and alice in wonderland?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:director ?uri. onto:director ?uri . }",lcquad Name the city whose province is Metropolitan City of Venice and has leader as Luigi Brugnaro ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:province res:Metropolitan_City_of_Venice . ?uri onto:leaderName res:Luigi_Brugnaro . }",lcquad Who is the leader of Panki block ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Panki_block onto:leaderName ?uri } ",lcquad To which persons is Ron Cyrus a relative?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:relatives . ?uri rdf:type onto:Person}",lcquad How many services are there of the companies whose services is Web hosting service ?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:services . ?x prop:services ?uri }",lcquad Is Neungin High school a buddhist school?,"PREFIX res: PREFIX prop: ASK WHERE { res:Neungin_High_School prop:religiousAffiliation res:Buddhism }",lcquad Name the mascot of the military branch of William Harper.,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:militaryBranch ?x . ?x prop:mascot ?uri . }",lcquad What musician is often associated with Tiffany Villarreal and wrote Same Song?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:writer ?uri. onto:associatedMusicalArtist ?uri . }",lcquad Which location country of Ennejma Ezzahra is also the origin of Boga ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:origin ?uri. prop:locationCountry ?uri} ",lcquad What is the state whose largest city is Denver?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:largestCity res:Denver . }",lcquad Who have been the manager of national team of Spain?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:nationalteam . ?uri rdf:type onto:SoccerManager}",lcquad For which common president did Jim Sasser and Mike McCurry work?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:president ?uri. onto:president ?uri . }",lcquad What is the municipality of the Homestead Grays Bridge and Roberto Clemente Bridge?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Homestead_Grays_Bridge onto:municipality ?uri. res:Roberto_Clemente_Bridge onto:municipality ?uri . }",lcquad Who is a successor of Kingship whose parents were Julius Caesar?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:parent . ?x onto:successor ?uri . ?x rdf:type onto:Royalty}",lcquad How many organizations work for Environmentalism?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:purpose . }",lcquad Was Zambezi originate in the north western province of zambia?,"PREFIX prop: ASK WHERE { prop:sourceRegion }",lcquad Which US state has Dorchester Bay and the Joseph Story?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:state ?uri. prop:state ?uri . }",lcquad Who is the predecessor of Voere ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Voere onto:predecessor ?uri } ",lcquad Which city is Black Grape Global located ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Black_Grape_Global onto:locationCity ?uri } ",lcquad Which movies did Mark Steven edit?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:editing . ?uri rdf:type onto:Film}",lcquad Who is the common distributer of Bombay Sapphire and Rev ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:distributor ?uri. onto:distributor ?uri} ",lcquad Which sports are played in the school which runs the Fr. Agnel Stadium?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Fr._Agnel_Stadium prop:operator ?x . ?x onto:sport ?uri . }",lcquad Name the common musical band of Take Me There and Tonight's the Night ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:musicalBand ?uri. onto:musicalBand ?uri . }",lcquad Which ethnicity do Linda Hogan and Riley Reid come from?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Linda_Hogan prop:ethnicity ?uri. res:Riley_Reid prop:ethnicity ?uri . }",lcquad Who is the parent of FD Roosevelt JR?,"PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:children . }",lcquad NAme the emplyer for whihc Manu cornet has worked and also written in Google Web Toolkit ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Manu_Cornet prop:employer ?uri. res:Google_Web_Toolkit onto:author ?uri} ",lcquad is ANYway in the Quack album?,"PREFIX onto: ASK WHERE { onto:album }",lcquad How many more teams have rented the stadium used by Raptors 905?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { prop:arena ?x . ?x onto:tenant ?uri . ?x rdf:type onto:Stadium}",lcquad List the common prime minister of the Robert Ray and graham richardson ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:primeMinister ?uri. onto:primeMinister ?uri . }",lcquad Count the wars in which people awarded with the Croix de guerre fought.,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:awards . ?x prop:battles ?uri . ?uri rdf:type onto:MilitaryConflict}",lcquad Which first driver of European Grand Prix 1993 is also finished first in 1985 Portuguese Grand Prix ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:1993_European_Grand_Prix prop:firstDriver ?uri. res:1985_Portuguese_Grand_Prix prop:firstDriver ?uri . }",lcquad "Name the river whose source is located in Itasca State Park and mouth is located in Pilottown, Louisiana?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:sourceLocation . ?uri prop:mouthLocation . ?uri rdf:type onto:River}",lcquad How many have been awarded by the Royal Society?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:awards . }",lcquad From how many different cities have people gone to the Illinois Fighting Illini men's basketball?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:college . ?x prop:placeOfBirth ?uri . ?uri rdf:type onto:Place}",lcquad who manufactures the SHO V8?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Ford_SHO_V8_engine onto:manufacturer ?uri } ",lcquad What is the television show whose opening theme's album is Cheers?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:album . ?uri onto:openingTheme ?x . ?uri rdf:type onto:TelevisionShow}",lcquad What sports are played in schools in Vashi?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:city . ?x onto:sport ?uri . ?x rdf:type onto:School}",lcquad Name the television show developed by J. Michael Straczynski and distributed by Warner Bros. Television?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:developer . ?uri prop:distributor . ?uri rdf:type onto:TelevisionShow}",lcquad "Where are the agencies headquartered at, which are under the Colorado Dept of Natural Resources?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:parentOrganisation . ?x prop:headquarters ?uri . ?x rdf:type onto:GovernmentAgency}",lcquad What is the genre for the developer of Interplay Entertainment?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:developer res:Interplay_Entertainment . ?x onto:genre ?uri . }",lcquad Give me some nominees of politicians in the US?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:residence . ?x onto:nominee ?uri . ?x rdf:type onto:OfficeHolder}",lcquad What is the TV Show whose theme is composed by someone signed up with Prawn Song Records?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:recordLabel . ?uri prop:themeMusicComposer ?x . ?uri rdf:type onto:TelevisionShow}",lcquad Name the team of Michael springer ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Michael_Springer prop:team ?uri } ",lcquad In which television shows have Steven Moffat served as an executive producer?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:executiveProducer . ?uri rdf:type onto:TelevisionShow}",lcquad Was Robert Burns from the Romanticist School of thought?,"PREFIX res: PREFIX prop: ASK WHERE { res:Robert_Burns prop:movement res:Romanticism }",lcquad Paris Sisters singles are of which language?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:musicalBand . ?x prop:language ?uri . ?x rdf:type onto:Single}",lcquad Who were the first drivers in the grand prix which took place at Autodromo Enzo e Dino Ferrari?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:location res:Autodromo_Enzo_e_Dino_Ferrari . ?x onto:firstDriver ?uri . }",lcquad What belongs to the families of Buccinidae and Buccinoidea?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:family res:Buccinidae . ?uri onto:family res:Buccinoidea . }",lcquad What are the broadcast areas of Mauritius Broadcasting Corporation?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Mauritius_Broadcasting_Corporation prop:broadcastArea ?uri } ",lcquad "Where was Henri, Duke of Rohan laid to rest?","PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:placeOfBurial ?uri } ",lcquad What are the movies whose cinematographer is Gregg Toland?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:cinematography . ?uri rdf:type onto:Film}",lcquad In how many different highschools have people schooled in Penn State Nittany Lions football studied?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:school . ?x prop:highschool ?uri . ?uri rdf:type onto:EducationalInstitution}",lcquad Name the founders of the record labels whose one of the founders is Frank Rogers ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:founder . ?x prop:founder ?uri . ?x rdf:type onto:RecordLabel}",lcquad How many different people hold authority over the members of Balanidae family?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:family . ?x onto:binomialAuthority ?uri . }",lcquad Which offices were held by the politicians who held their allegiance to the union of american civil war?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:allegiance . ?x prop:office ?uri . ?x rdf:type onto:OfficeHolder}",lcquad Who is the american football player whose highschool is Ringgold High School (Pennsylvania)?,"PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:highschool } ",lcquad Count the total number of conflicts people who were part of conflict in afghanisthan ?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:battle . ?x onto:battle ?uri }",lcquad Kendall Jenner has how many relatives?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { prop:relatives ?uri . }",lcquad Where is Tahual located which is also the country of Ren Romano ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:René_Romano prop:citizenship ?uri. res:Tahual prop:location ?uri} ",lcquad What is the current team of John McGuinness (motorcycle racer) ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:currentTeam ?uri } ",lcquad Where do the CNN employees typically graduate from?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:employer res:CNN . ?x onto:almaMater ?uri . }",lcquad Name the common serving line of Daund Junction railway station and Ujjain Junction railway station?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Daund_Junction_railway_station onto:servingRailwayLine ?uri. res:Ujjain_Junction_railway_station onto:servingRailwayLine ?uri . }",lcquad "What other destinations do airlines go to, whose flights also come to Glasgow?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:targetAirport . ?x prop:destinations ?uri . ?x rdf:type onto:Airline}",lcquad "What is the location town of First Church of Christ, Scientist (Pittsburgh) ?","PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:locationTown ?uri } ",lcquad Does the platte river originate in Colorado?,"PREFIX res: PREFIX onto: ASK WHERE { res:Platte_River onto:sourceRegion res:Colorado }",lcquad Bridges over what can carry vehicles?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:carries . ?x prop:crosses ?uri . ?x rdf:type onto:Bridge}",lcquad Where is the spouse of Henry Bourchier of Essex buried?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:spouse . ?x prop:placeOfBurial ?uri . }",lcquad Which ship builder built the USS Camp and Sturtevant ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:shipBuilder ?uri. prop:shipBuilder ?uri . }",lcquad What shows are on the networks which are from the United States?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:locationCountry . ?uri prop:network ?x . ?uri rdf:type onto:TelevisionShow}",lcquad Name the scientist whose doctoral supervisor's doctoral student is John Bowlby?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:doctoralStudent . ?uri prop:doctoralAdvisor ?x . ?uri rdf:type onto:Scientist}",lcquad "Which author inspired Susanna Clarke, and wrote Northanger Abbey?","PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Northanger_Abbey prop:author ?uri. res:Susanna_Clarke prop:influences ?uri . }",lcquad "Name the office holder whose Governor is Charles Willing Byrd and has resting place as North Bend, Ohio?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:governor . ?uri prop:restingplace . ?uri rdf:type onto:OfficeHolder}",lcquad Over what do Concor holdings have a bridge?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:builder . ?x prop:crosses ?uri . ?x rdf:type onto:Bridge}",lcquad Which sports are played at both the Polytech uni of Bataan and Taguig?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Polytechnic_University_of_the_Philippines_–_Bataan onto:sport ?uri. res:Polytechnic_University_of_the_Philippines_Taguig onto:sport ?uri . }",lcquad Name the movies distributed by Cinema International Corporation and edited by Hulian Doyle ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:distributor . ?uri prop:editing . ?uri rdf:type onto:Film}",lcquad What is the company which has Raymond Conner and Dennis Muilenburg as key person?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri prop:keyPeople . ?uri prop:keyPeople . ?uri rdf:type onto:Company}",lcquad Who narrated the albums in which Harry Nilsson performed?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:artist . ?x prop:narrated ?uri . ?x rdf:type onto:Album}",lcquad What is the province of Rouen Business School ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Rouen_Business_School prop:province ?uri } ",lcquad List some songwriters whose work has been recorded in Miami?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:recordedIn . ?x prop:writer ?uri . ?x rdf:type onto:Work}",lcquad Is KOMC-FM the sister station of KOMC (AM)?,"PREFIX onto: ASK WHERE { onto:sisterStation }",lcquad What is the denomination of S. H. Kapadia ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:S._H._Kapadia prop:religion ?uri } ",lcquad who are the managers of england national under 20 football team?,"PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:managerclubs } ",lcquad What is the total number of relgions followed by people born in Bangkok?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:birthPlace . ?x onto:religion ?uri . }",lcquad Which movies have someone on their cast from Shelby County in Tennessee?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:hometown . ?uri prop:starring ?x . ?uri rdf:type onto:Film}",lcquad Who appointed the governor under whom Richard Winn served?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Richard_Winn onto:governor ?x . ?x prop:appointer ?uri . }",lcquad What is the city whose mayor is Anne Hidalgo?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:mayor . ?uri rdf:type onto:Settlement}",lcquad "In which ice hockey league, did the team coached by Joel Quenneville win?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:headCoach . ?uri prop:champion ?x . ?uri rdf:type onto:IceHockeyLeague}",lcquad Which musical artist collaborated with Tony Allen (musician) and label is Victor Entertainment?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:associatedMusicalArtist . ?uri prop:label . ?uri rdf:type onto:MusicalArtist}",lcquad Which american football players currently plays for Michigan Wolverines?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:currentteam . ?uri rdf:type onto:AmericanFootballPlayer}",lcquad In how many different places have US people died?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:placeOfBirth . ?x onto:deathPlace ?uri . ?uri rdf:type onto:Location}",lcquad Count the number of software which runs on Microsoft Windows and mac OS ?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?uri onto:operatingSystem . ?uri onto:operatingSystem } ",lcquad What is the common race of the Martin Molony and race of the Coneygree ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Martin_Molony onto:race ?uri. res:Coneygree prop:race ?uri} ",lcquad Which countries led by Elizabeth II?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:leaderName . ?uri rdf:type onto:Country}",lcquad Who is the tenant of the home stadium of Toronto Phantoms?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:arena ?x . ?x onto:tenant ?uri . ?x rdf:type onto:Stadium}",lcquad What is the purpose of Maharashtra Chess Association ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Maharashtra_Chess_Association prop:purpose ?uri } ",lcquad What is the draft team of the ice hockey players whose position is Centre ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:position . ?x onto:draftTeam ?uri . ?x rdf:type onto:IceHockeyPlayer}",lcquad Who represent the constituencies of Noe Valley and Duboce Triangle ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { ?uri prop:constituency . ?uri prop:constituency . }",lcquad What is the total number of religions that politicians have followed?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:profession . ?x onto:religion ?uri . }",lcquad What sports team's arena is The Palace of Auburn Hills,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:arena . ?uri rdf:type onto:SportsTeam}",lcquad Name the religious affiliation of Vagif Aliyev ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Vagif_Aliyev onto:religion ?uri } ",lcquad Who composed songs in the Mr Tambourine Man album?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:album . ?x onto:composer ?uri . ?x rdf:type onto:Song}",lcquad To what companies is Dennis Muilenburg important?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:keyPeople . ?uri rdf:type onto:Company}",lcquad Name the TV show whose company is Playtone and written by Graham Yost?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:company . ?uri prop:writer . ?uri rdf:type onto:TelevisionShow}",lcquad Where are the politicians buried who succeeded George Whitefield Davis?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:predecessor . ?x prop:restingplace ?uri . ?x rdf:type onto:OfficeHolder}",lcquad What is the fictional character which belongs to families of Darth Vader and Padm Amidala?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri prop:family . ?uri prop:family . ?uri rdf:type onto:FictionalCharacter}",lcquad What were robert sarvis and JAck Ryan nominated for ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:nominee ?uri. onto:nominee ?uri . }",lcquad Count the number of other services of the companies which provides the Microsoft Azure as service ?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:services . ?x prop:services ?uri }",lcquad Which animator of the The Skeleton Dance is also the director of The Haunted House (1929 film) ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:animator ?uri. onto:director ?uri} ",lcquad How many first drivers have participated when Scuderia Ferrari was a first team?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:firstTeam . ?x onto:firstDriver ?uri . }",lcquad In how many countries are people born who play cricket?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:occupation . ?x onto:stateOfOrigin ?uri . ?uri rdf:type onto:Country}",lcquad What are the towns who have Thesaban system?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:settlementType . ?uri rdf:type onto:Town}",lcquad In how many different wars have people graduated from the Army Command and General staff college fought?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:almaMater . ?x prop:battles ?uri . }",lcquad Which non fictional subject of Thud is the athletics of PATTS College of Aeronautics ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:nonFictionSubject ?uri. prop:athletics ?uri} ",lcquad Was Beth Tweddle primarily coached by Amanda Reddin?,"PREFIX res: PREFIX prop: ASK WHERE { res:Beth_Tweddle prop:headcoach res:Amanda_Reddin }",lcquad List the current members of Metro Station (band) ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:currentMembers ?uri } ",lcquad Was robert sarvis a nominee of the US Senate?,"PREFIX res: PREFIX onto: ASK WHERE { res:Robert_Sarvis onto:nominee res:United_States_Senate }",lcquad Which major shrine of Tekle haymanot is the palce of death of Haile Selassie Gugsa ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Tekle_Haymanot onto:majorShrine ?uri. res:Haile_Selassie_Gugsa prop:placeOfDeath ?uri} ",lcquad Which video game's artist is Hiroji Kiyotake and computing platform is Virtual Console?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:artist . ?uri onto:computingPlatform . ?uri rdf:type onto:VideoGame}",lcquad Name a basketball player with teams as Chicago Bulls and Phoenix Suns?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:team . ?uri onto:team . ?uri rdf:type onto:BasketballPlayer}",lcquad What is the home stadium of Kenya's women national football team ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:homeStadium ?uri } ",lcquad Where does the jurisdiction of European Border and Coast Guard fall?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:European_Border_and_Coast_Guard prop:jurisdiction ?uri } ",lcquad What is the award which is presented by Swedish Academy?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:presenter . ?uri rdf:type onto:Award}",lcquad Where was the company who is the operator of Harihar Airport founded ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:operator ?x . ?x prop:foundation ?uri . ?x rdf:type onto:Company}",lcquad What are some important people in NGOs headed by Donna Shalala?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:keyPerson . ?x prop:keyPeople ?uri . ?x rdf:type onto:Non-ProfitOrganisation}",lcquad What are the other key people of the non-profit organisations whose one of the key person is Joe Green ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:keyPeople . ?x prop:keyPeople ?uri . ?x rdf:type onto:Non-ProfitOrganisation}",lcquad Who are the people whose phD advisor was Harry Harlow?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:doctoralAdvisor . ?uri rdf:type onto:Person}",lcquad What is the county seat of Moscow Governorate ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Moscow_Governorate onto:capital ?uri } ",lcquad What are some books whose cover illustration is designed by Marshall Arisman?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:coverArtist . ?uri rdf:type onto:Book}",lcquad Momoko Kchi has acted in which movie ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:starring . ?uri rdf:type onto:Film}",lcquad What show has Sirius XM Holdings and Fox Sports Radio as channels ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:channel . ?uri onto:channel . ?uri rdf:type onto:TelevisionShow}",lcquad What is the name of the television show whose developer is J. Michael Straczynski and actor is Jason Carter (actor)?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:developer . ?uri onto:starring . ?uri rdf:type onto:TelevisionShow}",lcquad What are some cars similar to the ones assembled at Toluca?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:assembly . ?x prop:related ?uri . ?x rdf:type onto:Automobile}",lcquad Who is associated to the predecessor of Dan Mica?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:predecessor res:Dan_Mica . ?uri onto:associate ?x . }",lcquad Michael Deeley produce how many movies?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:producer . }",lcquad List borders of the admin region bordering Arctic ocean ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:border res:Arctic_Ocean . ?x onto:border ?uri . }",lcquad What is the nationality of the J. T. Krogh which is also the sovereign state of the Camilla Martin,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:J._T._Krogh onto:nationality ?uri. res:Camilla_Martin onto:country ?uri} ",lcquad How many food items have an ingredient from the Sapindales family?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:order . ?uri onto:ingredient ?x . ?uri rdf:type onto:Food}",lcquad Which district of Thorington railway station is the location of death of David Lewis (poet) ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:district ?uri. onto:deathPlace ?uri} ",lcquad Who was the head coach of Middlesbrough F.C. season 2006-7 also the coach of England national under 21 footbal team ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:manager ?uri. prop:coach ?uri} ",lcquad Who designed the bridge over the Valaichchenai lagoon?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:crosses . ?x prop:designer ?uri . ?x rdf:type onto:Bridge}",lcquad Where did anton ausserer die?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Anton_Ausserer prop:deathPlace ?uri } ",lcquad How many teams have used the stadium which hosted the WCW mayhem?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { prop:venue ?x . ?x onto:tenant ?uri . ?x rdf:type onto:Stadium}",lcquad List bacterias whose orde is Bacillales and division is Firmicutes?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:order . ?uri onto:division . ?uri rdf:type onto:Bacteria}",lcquad Who are in the liang chow club?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:club res:Liang_Chow } ",lcquad To which family does korean fox belongs to ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Korean_fox onto:family ?uri } ",lcquad "What is the alma mater of the person, whose child is Samuel Moreno Rojas?","PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:children res:Samuel_Moreno_Rojas . ?x prop:almaMater ?uri . }",lcquad Name the river whose source place is Gloucestershire and mouth place is Southend-on-Sea ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:sourcePlace . ?uri onto:mouthPlace . ?uri rdf:type onto:River}",lcquad In how many countries does the Zurich Affoltern am Albis Zug line go?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:line . ?x onto:country ?uri . ?uri rdf:type onto:Country}",lcquad How many movies did Joel Schumacher direct?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:director . ?uri rdf:type onto:Film}",lcquad In how many places did Julian Leow Beng Kim study?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { prop:almaMater ?uri . ?uri rdf:type onto:University}",lcquad Is lion an animal?,"PREFIX res: PREFIX onto: ASK WHERE { res:Lion onto:kingdom res:Animal }",lcquad Which cities have the river one of whose Tributary is the Missouri's big spring?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:rightTributary . ?x onto:city ?uri . ?x rdf:type onto:River}",lcquad Which Stanley Kubrick's movie has music by Laurie Johnson?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:director . ?uri prop:music . ?uri rdf:type onto:Film}",lcquad How many movies were directed by the graduate of Burbank High School ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:education . ?uri prop:director ?x . ?uri rdf:type onto:Film}",lcquad What is the type of Vesak ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Vesak onto:type ?uri } ",lcquad Who have become famous by movies produced by Laurence Mark?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:producer res:Laurence_Mark . ?uri onto:knownFor ?x . }",lcquad Count all the scientologists.,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:religion . }",lcquad Laozi has authored which books ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:author . ?uri rdf:type onto:Book}",lcquad Name the river whose source location is Nevado Mismi and region is Arequipa Region?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:sourceLocation . ?uri prop:sourceRegion . ?uri rdf:type onto:River}",lcquad List the awards won by the fashion designer which have been recognized by Tennessee State Museum ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:award . ?x onto:award ?uri . ?x rdf:type onto:FashionDesigner}",lcquad Where can I find companies which originated in Canada?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:foundationPlace . ?x prop:locations ?uri . ?x rdf:type onto:Company}",lcquad Name the species of Panthera leo fossilis ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Panthera_leo_fossilis onto:species ?uri } ",lcquad What is the nationality of Newin Chidchob ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Newin_Chidchob prop:nationality ?uri } ",lcquad List the affiliations of Wikipedia Zero ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Wikipedia_Zero prop:affiliations ?uri } ",lcquad What is the route start of Capitol 400 ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Capitol_400 onto:routeStart ?uri } ",lcquad Which awards did the parents of Anna Bergman win ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Anna_Bergman onto:parent ?x . ?x prop:awards ?uri . }",lcquad How many schools have a bison as their mascot?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:mascot . ?uri rdf:type onto:School}",lcquad What river originates in the Connecticut Lakes?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:source . ?uri rdf:type onto:River}",lcquad List the bacterias whose division is Firmicutes and domain is bacteria?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:division . ?uri prop:domain . ?uri rdf:type onto:Bacteria}",lcquad Which country of Montaas Mayas Chiquibul is the birth place of Jos Bernardo Escobar?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Montañas_Mayas_Chiquibul prop:country ?uri. res:José_Bernardo_Escobar prop:birthPlace ?uri . }",lcquad Who is the head coach of 2009-10 Middlesbrough F.C. season ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:2009–10_Middlesbrough_F.C._season onto:manager ?uri } ",lcquad Name the battle fought by the people which also fought in Levant ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:battles . ?x prop:battles ?uri . ?x rdf:type onto:Person}",lcquad Which work institutions of the Andrew Schally is the alma mater of the Mara Eugenia Rojas Correa ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Andrew_Schally prop:workInstitutions ?uri. res:María_Eugenia_Rojas_Correa prop:almaMater ?uri} ",lcquad Which politician's constituency is led by the SF Board of Supervisors?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:leaderTitle . ?uri prop:constituency ?x . ?uri rdf:type onto:OfficeHolder}",lcquad How many factions have fought in wars where Francois Marie Le Marchand de Lignery was involved?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { onto:battle ?x . ?x prop:combatant ?uri . ?x rdf:type onto:MilitaryConflict}",lcquad What are some people who are on the board of companies founded in NY?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:foundation . ?uri onto:board ?x . ?uri rdf:type onto:Person}",lcquad Who was the architect of the stadium currently run by the Pittsburgh Pirates?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:operator . ?x prop:architect ?uri . ?x rdf:type onto:Stadium}",lcquad Give me a count of musicians who play an instrument developed by George Beauchamp ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:keyPeople . ?uri onto:instrument ?x . ?uri rdf:type onto:MusicalArtist}",lcquad What sport activities are available at Polytechnic University of the Philippines Bataan?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Polytechnic_University_of_the_Philippines_–_Bataan onto:sport ?uri } ",lcquad In how many places have the companies started in Newcastle worked?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:foundationPlace . ?x onto:regionServed ?uri . ?uri rdf:type onto:Place}",lcquad What are the musicals of the people died in California?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:deathPlace . ?uri prop:music ?x . ?uri rdf:type onto:Musical}",lcquad "What sport has made Eric Schiller famous, and has employed Craig Van Tibury?","PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Craig_Van_Tilbury onto:occupation ?uri. res:Eric_Schiller onto:knownFor ?uri} ",lcquad Which pole driver of 1989 Portuguese Grand Prix was also the first driver of 1993 European Grand Prix ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:1993_European_Grand_Prix prop:firstDriver ?uri. res:1989_Portuguese_Grand_Prix onto:poleDriver ?uri} ",lcquad What is the debut team of the gridiron football player who coached the 1931 Staten Island Stapletons season ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:coach ?x . ?x prop:debutteam ?uri . ?x rdf:type onto:GridironFootballPlayer}",lcquad Name the alma mater of the scientist famous for Email filtering ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:knownFor . ?x prop:almaMater ?uri . ?x rdf:type onto:Scientist}",lcquad Where is the T.I. Ahmadiyya Girls Senior High School?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:denomination ?uri } ",lcquad "To what region is Sukhumbhand Paribatra, a leader?","PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:leaderName . ?uri rdf:type onto:Region}",lcquad What are the birth place of the people who are the star of Dhoondte Reh Jaaoge?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:starring ?x . ?x onto:birthPlace ?uri . ?x rdf:type onto:Person}",lcquad Which software uses windows as it's operating system and is written in C++ ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:operatingSystem . ?uri onto:programmingLanguage . ?uri rdf:type onto:Software}",lcquad Which domain's journals did Willard Fiske edit?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:editor . ?x prop:discipline ?uri . ?x rdf:type onto:AcademicJournal}",lcquad What is the religion of the person who is in the cast of Master's Sun> ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:starring ?x . ?x prop:religion ?uri . ?x rdf:type onto:Person}",lcquad "What is the television show whose theme music composer's home town is El Sobrante, California?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:hometown . ?uri prop:themeMusicComposer ?x . ?uri rdf:type onto:TelevisionShow}",lcquad How many maintainers are there of the bridges that can carry motor vehicles over them?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:carries . ?x onto:maintainedBy ?uri . }",lcquad What currencies are circulated in the countries where people speak French?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:officialLanguage . ?x onto:currency ?uri . ?x rdf:type onto:Location}",lcquad Did Oliver Sacks study at the Columbia University?,"PREFIX res: PREFIX onto: ASK WHERE { res:Oliver_Sacks onto:institution res:Columbia_University }",lcquad Give the distinct number of other party of the people which have one of the party as Janata Party ?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:otherParty . ?x onto:otherParty ?uri }",lcquad List the former partner of the figure skaters whose former choreographer was Igor Shpillband.,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:formerChoreographer . ?x onto:formerPartner ?uri . ?x rdf:type onto:FigureSkater}",lcquad Give me a list of all the buildings which are located in districts governed by John Tory.,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:leaderName . ?uri onto:location ?x . ?uri rdf:type onto:Building}",lcquad Which BBC's TV show is related with the Sarah Jane Adventures?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:network . ?uri onto:related . ?uri rdf:type onto:TelevisionShow}",lcquad Which associate of Thomas bryan Martin is also the president of Carmichael ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:associate ?uri. prop:president ?uri} ",lcquad Which political party got elected in First Legislative Assembly of Uttar Pradesh ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:First_Legislative_Assembly_of_Uttar_Pradesh prop:party ?uri } ",lcquad How many organizations own the website to which Jimmy Wales contributes?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:author . ?x onto:owner ?uri . ?uri rdf:type onto:Organisation}",lcquad Name the notable commanders of Army Group Oberrhein ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:notableCommanders ?uri } ",lcquad Which high school of the Jerry Tagge also was the palce hwer Temptation Waits was recorded ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Jerry_Tagge prop:highSchool ?uri. res:Temptation_Waits onto:recordedIn ?uri} ",lcquad Was His New Job edited by Charlie Chaplin?,"PREFIX res: PREFIX onto: ASK WHERE { res:His_New_Job onto:editing res:Charlie_Chaplin }",lcquad Does vance johnson play as a wide receiver?,"PREFIX res: PREFIX onto: ASK WHERE { res:Vance_Johnson onto:position res:Wide_receiver }",lcquad Name the place of Qaqun ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Qaqun prop:place ?uri } ",lcquad What is the deathplace of people who have worked in Ethics?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:mainInterests . ?x prop:placeOfDeath ?uri . ?x rdf:type onto:Person}",lcquad List all the nicknames of the city which has Toru gingerbread as one of it ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:nickname res:Toruń_gingerbread . ?x prop:nickname ?uri . }",lcquad What are the awards won by the film editor of World of Tomorrow ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:editing ?x . ?x onto:award ?uri . }",lcquad Is Luigi Brugnaro the mayor of Venice?,"PREFIX res: PREFIX prop: ASK WHERE { res:Venice prop:mayor res:Luigi_Brugnaro }",lcquad Which mountains are contained in Inyo National Forest?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:locatedInArea . ?uri rdf:type onto:Mountain}",lcquad Whose children are married to Fredric Joliot-Curie?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:spouse . ?uri prop:children ?x . }",lcquad "Where did the president study, whose VP was Emilio Nez?","PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:vicePresident res:Emilio_Núñez . ?x onto:almaMater ?uri . }",lcquad Where are the homestadiums of the seasons chaired by Merritt Paulson?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:chairman . ?x onto:homeStadium ?uri . ?x rdf:type onto:SoccerClubSeason}",lcquad Was elizabeth ann seton beatified by Pope John XXIII?,"PREFIX res: PREFIX prop: ASK WHERE { res:Elizabeth_Ann_Seton prop:beatifiedBy res:Pope_John_XXIII }",lcquad "What is the architecture of First National Bank and Trust Building (Lima, Ohio) ?","PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:architecturalStyle ?uri } ",lcquad What are some languages in the italic family of languages?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:languageFamily res:Italic_languages } ",lcquad Count all the awards which were presented by something located in California.,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:headquarter . ?uri onto:presenter ?x . ?uri rdf:type onto:Award}",lcquad What is the region of the Kim Sawchuk which is also served by the Airtours International Airways ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Kim_Sawchuk prop:region ?uri. res:Airtours_International_Airways prop:destinations ?uri} ",lcquad Who all held a position when Gough Whitlam was the prime minister?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:primeMinister res:Gough_Whitlam } ",lcquad In which part of the world will I find Kim Sawchuk and Vuelta Mexico Telmex?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Kim_Sawchuk prop:region ?uri. res:Vuelta_Mexico_Telmex prop:region ?uri . }",lcquad What are the mascots of the teams participating in the Turkish Handball Super League?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:league . ?x prop:mascot ?uri . ?x rdf:type onto:SportsTeam}",lcquad Which tenants of the Master Card center is also th draft team of Sam Carrrick ,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:MasterCard_Centre prop:tenants ?uri. res:Sam_Carrick prop:draftTeam ?uri} ",lcquad Which country has given citizenship to both saima chowdhury and edmund john?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Saima_Chowdhury onto:citizenship ?uri. res:Edmund_John onto:citizenship ?uri . }",lcquad Who originally wrote the manga which was later illustrated by Tamon Ohta?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:illustrator . ?x prop:author ?uri . ?x rdf:type onto:Manga}",lcquad Which university was attended by both Richard H Immerman and Franklin W Olin?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Richard_H._Immerman prop:education ?uri. res:Franklin_W._Olin prop:education ?uri . }",lcquad How many other race are there of the adult (pornographic) actors whose ethnicity is Cherokee ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:ethnicity . ?x prop:ethnicity ?uri }",lcquad Who maintains the stuff designed by the Brunei government?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:designer res:Politics_of_Brunei . ?x onto:maintainedBy ?uri . }",lcquad Stockholm is the HQ of how many things?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:headquarters . }",lcquad What is a salthill?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Salthill onto:type ?uri } ",lcquad What is the sea connected to Oulu and Turku?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri prop:cities . ?uri prop:cities . ?uri rdf:type onto:Sea}",lcquad List all the parents of writers coming from the Great Missenden ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:homeTown . ?x onto:parent ?uri . ?x rdf:type onto:Writer}",lcquad In how many regions is the Baco Noir made?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { onto:wineRegion ?uri . }",lcquad What is the source country of Water resources managemnt in EL Salvador is also the land of Jos MAra Orellana ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Water_resources_management_in_El_Salvador prop:sourceCountry ?uri. res:José_María_Orellana onto:country ?uri} ",lcquad Where does the Jerusalem Institute of Justice render their services?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Jerusalem_Institute_of_Justice onto:service ?uri } ",lcquad What is the common nickname given both to Harding academy and Lyons township high school?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:nickname ?uri. prop:nickname ?uri . }",lcquad What borders siberia?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Siberia onto:border ?uri } ",lcquad To which party do the politicians who died in Delhi belong?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:placeOfDeath . ?x prop:party ?uri . ?x rdf:type onto:OfficeHolder}",lcquad Who created the stadiums who have been rented by the Boston Red Sox?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:tenant . ?x prop:architect ?uri . ?x rdf:type onto:Stadium}",lcquad What is the region of the successor of Mr. Jerome B. Chaffee ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Jerome_B._Chaffee onto:successor ?x . ?x onto:region ?uri . }",lcquad What is the profession of the Chris Myers (New Jersey) which is the governing body of Oahu Railway and Land Company ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:profession ?uri. prop:governingBody ?uri} ",lcquad In which countries were the Russian volleyball team players born?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:nationalteam . ?x prop:placeOfBirth ?uri . ?x rdf:type onto:Athlete}",lcquad Which religion's people are member of BJP?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:party . ?x onto:religion ?uri . ?x rdf:type onto:Person}",lcquad List down the commanders of Battle of Fort stephenson ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Battle_of_Fort_Stephenson onto:commander ?uri } ",lcquad What is the subject of The Prodigal son ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:subject ?uri } ",lcquad ARM Architecture acts as a game platform for how many things?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:computingPlatform . }",lcquad Name the work institutions of Andrew Schally?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Andrew_Schally prop:workInstitutions ?uri } ",lcquad What is the fictional character which has Clan McDuck and Ludwig Von Draken as relatives?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri prop:relatives . ?uri prop:relatives . ?uri rdf:type onto:FictionalCharacter}",lcquad How many games have a composer who worked for the Creatures?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:occupation . ?uri prop:composer ?x . ?uri rdf:type onto:VideoGame}",lcquad Which licensee of EXXV-TV is also the licensee of WXXV-DT2 ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:licensee ?uri. prop:licensee ?uri . }",lcquad Which state is the birth location of Ann Monroe Gilchrist Strong? ,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Ann_Monroe_Gilchrist_Strong onto:birthPlace ?x . ?x onto:country ?uri . }",lcquad Which university's graduates have worked in the Quartermaster corps?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:militaryUnit . ?x onto:almaMater ?uri . }",lcquad How many people have voiced characters sculpted by Clamp?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:creator . ?x onto:voice ?uri . }",lcquad Trainees at the national film school of Lodz have received what awards?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:training res:National_Film_School_in_Łódź . ?x onto:award ?uri . }",lcquad Were the bodies involved in the Westroads mall shootings discovered in Nebraska?,"PREFIX res: PREFIX prop: ASK WHERE { res:Westroads_Mall_shooting prop:bodyDiscovered res:Nebraska }",lcquad Which animator of the The Skeleton Dance is also the cinematographer of the Mickey's Mellerdrammer?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:animator ?uri. prop:cinematography ?uri} ",lcquad Who is the scientist whose academic advisor is Franz Brentano?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:academicAdvisor . ?uri rdf:type onto:Scientist}",lcquad Who was the animator of both Tommy Tucker's Tooth and Skeleton Dance?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:animator ?uri. onto:animator ?uri} ",lcquad In how many different people are alumini of the University of Oxford working?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:almaMater . ?x onto:field ?uri . }",lcquad Who is the developer of Montecito Inn ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Montecito_Inn prop:developer ?uri } ",lcquad Where did Paul Jones do his highschool?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:highschool ?uri } ",lcquad Is stephanie a female?,"PREFIX res: PREFIX prop: ASK WHERE { res:Stephanie prop:gender res:Female }",lcquad For which team did Cam Plante and Doug Acomb both play atleast once?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Cam_Plante prop:playedFor ?uri. res:Doug_Acomb prop:playedFor ?uri . }",lcquad What are the shows whose creator has worked as a screenwriter?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:occupation . ?uri onto:creator ?x . ?uri rdf:type onto:TelevisionShow}",lcquad To which students did Ernest Rutherford advised to?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:doctoralAdvisor res:Ernest_Rutherford . }",lcquad Which institution of the Alton Ochsner is the alma mater of the Michael Hahn ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Alton_Ochsner onto:institution ?uri. res:Michael_Hahn onto:almaMater ?uri} ",lcquad Did Bob Suci play for the New England Patriots?,"PREFIX res: PREFIX prop: ASK WHERE { res:Bob_Suci prop:pastteams res:New_England_Patriots }",lcquad In how many places was the album of King Crimson recorded?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:artist . ?x onto:recordedIn ?uri . }",lcquad Which television show's company is Paramount Television and is located in Boston?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:company . ?uri onto:location . ?uri rdf:type onto:TelevisionShow}",lcquad Who is the starring of the movies such that music is by Raamlaxman?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:music . ?x onto:starring ?uri . ?x rdf:type onto:Film}",lcquad Which nickname of Lyons Township JHigh school is also the mascot of Galatasaray Handball Team ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Galatasaray_Handball_Team prop:mascot ?uri. res:Lyons_Township_High_School prop:nickname ?uri} ",lcquad What are the movies whose cast members are signed up with Point Blank Records?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:label . ?uri prop:starring ?x . ?uri rdf:type onto:Film}",lcquad What is the Team Name of the Cristo Rey Jesuit High School (Chicago) and is also the nickname of the Lyons Township High School ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:teamName ?uri. prop:nickname ?uri} ",lcquad What do craig Van tilbury and karen Grigorian do for a living?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Karen_Grigorian onto:occupation ?uri. res:Craig_Van_Tilbury onto:occupation ?uri . }",lcquad Where is Dofinivka Estuary located ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Dofinivka_Estuary prop:location ?uri } ",lcquad What is the city nearest to the islands in the Northwestern Hawaiian Islands?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:archipelago . ?x prop:nearestCity ?uri . ?x rdf:type onto:Island}",lcquad Name the televesion show which has artist named Christopher Franke ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:artist . ?uri rdf:type onto:TelevisionShow}",lcquad name the races where bobby beasley took part ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Bobby_Beasley onto:race ?uri } ",lcquad Where do cherry chevapravatdumrong and daisi pollard both live?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Cherry_Chevapravatdumrong onto:residence ?uri. res:Daisi_Pollard onto:residence ?uri . }",lcquad Which institution of the Alton Ochsner is also the alma mater of John Michael Seabright ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Alton_Ochsner onto:institution ?uri. res:John_Michael_Seabright onto:almaMater ?uri} ",lcquad what mountains are in sierra nevada?,"PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:mountainRange . }",lcquad Who acted in the movies whose music is composed by Walter Scharf?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:musicComposer . ?x prop:artist ?uri . ?x rdf:type onto:Film}",lcquad What softwares were created by Apple Productivity Experience Group ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Apple_Productivity_Experience_Group onto:product ?uri } ",lcquad "Who is the producer of the album, after which A Nice pair was released ?","PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:A_Nice_Pair onto:previousWork ?x . ?x prop:producer ?uri . }",lcquad Where can i find teams whose coach has been Rodney Eade.,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:coach . ?x prop:location ?uri . ?x rdf:type onto:SportsTeam}",lcquad List all that flows into the north sea?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:North_Sea prop:inflow ?uri } ",lcquad Is the magnolia place of the greek revival architectural style?,"PREFIX res: PREFIX onto: ASK WHERE { res:Magnolia_Place onto:architecturalStyle res:Greek_Revival_architecture }",lcquad How many head of agencies were there in Nazi Germany?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:jurisdiction . ?x onto:leader ?uri . }",lcquad List all the notable work of the screen writer who produced Frasier ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:notableWork . ?x onto:notableWork ?uri . ?x rdf:type onto:ScreenWriter}",lcquad Does Caroline Augusta Foley Rhys Davids study Buddhism?,"PREFIX res: PREFIX onto: ASK WHERE { res:Caroline_Augusta_Foley_Rhys_Davids onto:field res:Buddhism }",lcquad Who employed the person famous for the Boeing fa18ef Super Hornet?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:knownFor . ?x prop:employer ?uri . ?x rdf:type onto:Person}",lcquad In which monarch did Li Si succeed someone?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:successor res:Li_Si . ?x onto:monarch ?uri . }",lcquad List the awards given to the relatives of Gregorios Bernardakis.,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Gregorios_Bernardakis onto:relative ?x . ?x onto:award ?uri . }",lcquad What politician's partner is Diana Taylor ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:partner . ?uri rdf:type onto:Politician}",lcquad Which fields are covered by academic journals in the US?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:country . ?x prop:discipline ?uri . ?x rdf:type onto:AcademicJournal}",lcquad What is the draft team of Bob MacMillan ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Bob_MacMillan prop:draftTeam ?uri } ",lcquad Which football players have Newell's Old Boys as youthclub?,"PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:youthclubs } ",lcquad What are the teams for which Wilfred McDonald played for?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Wilfred_McDonald prop:playedFor ?uri } ",lcquad Who is the Artist of the singles whose film genre is Country music ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:genre . ?x prop:artist ?uri . ?x rdf:type onto:Single}",lcquad Is Denver the largest city of Colorado?,"PREFIX res: PREFIX onto: ASK WHERE { res:Colorado onto:largestCity res:Denver }",lcquad Count all those whose youthclub performed at the 14-15 La Liga?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:season . ?uri prop:youthclubs ?x . ?uri rdf:type onto:Athlete}",lcquad How many cities are around the sea which flows into the Atlantic?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:inflow . ?x prop:cities ?uri . ?uri rdf:type onto:City}",lcquad Who all are starring in the movies where director of photography is John Derek ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:cinematography . ?x prop:starring ?uri . ?x rdf:type onto:Film}",lcquad List the import people of Maryland Jockey Club ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Maryland_Jockey_Club prop:keyPeople ?uri } ",lcquad What is the total number of companies who use a language designed by Bjarne Stroustrup?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:designer . ?uri prop:programmingLanguage ?x . ?uri rdf:type onto:Company}",lcquad Who does Cam PLante plays for ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Cam_Plante prop:playedFor ?uri } ",lcquad What famous work is derived from the one whose lyrics are written by Inma Gonzales?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:lyrics res:Inma_González . ?x onto:basedOn ?uri . }",lcquad How many awards have been given to the ones who died of lung cancer?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:deathCause . ?x onto:award ?uri . ?uri rdf:type onto:Award}",lcquad Where the children of Ashot Grashi employed at?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:parent res:Ashot_Grashi . ?x onto:occupation ?uri . }",lcquad Who holds shares in something famous for the Seven Spring Mountain Resort?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:knownFor res:Seven_Springs_Mountain_Resort . ?uri prop:owner ?x . }",lcquad Which executive producer of Into the Dalek also produced Wizards vs Aliens ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Into_the_Dalek prop:executiveProducer ?uri. res:Wizards_vs_Aliens onto:producer ?uri} ",lcquad Who is the office holder whose deputy was Andrew Peacock and predecessor was Alexander Downer?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:deputy . ?uri onto:predecessor . ?uri rdf:type onto:OfficeHolder}",lcquad Which famous philosopher died on island Euboea?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:deathDate . ?uri rdf:type onto:Philosopher}",lcquad What is the religion of the political party which is an international party of Hamas?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:international ?x . ?x onto:religion ?uri . ?x rdf:type onto:PoliticalParty}",lcquad How many honorary title are there of the scientists who has Australian of the Year award ?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:award . ?x onto:award ?uri }",lcquad Name some TV shows whose theme is made by a band associated with Buckethead?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:associatedBand . ?uri prop:themeMusicComposer ?x . ?uri rdf:type onto:TelevisionShow}",lcquad What is the alma mater of K. Terry Dornbush ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:K._Terry_Dornbush prop:almaMater ?uri } ",lcquad What is the birthplace of the office holder who is the predecessor of Brian Peddle ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:predecessor ?x . ?x prop:birthPlace ?uri . ?x rdf:type onto:OfficeHolder}",lcquad What is the river which comes from Southend-on-Sea mountain?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:mouthMountain . ?uri rdf:type onto:River}",lcquad What is the birth location of the advisor of Richard Hofstadter ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Richard_Hofstadter prop:doctoralAdvisor ?x . ?x onto:birthPlace ?uri . }",lcquad Name the college of the Allama Matthews which also has affiliation with Monroe Carell Jr. Children's Hospital at Vanderbilt,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:college ?uri. prop:affiliation ?uri} ",lcquad Does Abdelhameed Amarri currently play for Khartoum?,"PREFIX res: PREFIX prop: ASK WHERE { res:Abdelhameed_Amarri prop:currentclub res:Khartoum }",lcquad "What is the successor of the governors whose child is Levi Lincoln, Jr.?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:children . ?x prop:successor ?uri . ?x rdf:type onto:Governor}",lcquad Who is the prime minister that Michael Jeffery served?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Michael_Jeffery prop:primeminister ?uri } ",lcquad How many people are known for Dragons' Den?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:knownFor . }",lcquad What is pitro Gruszka hometown ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Piotr_Gruszka prop:hometown ?uri } ",lcquad Whihc place of birth of the Union State is also the largest city of Union Staete ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Union_State prop:largestCity ?uri. res:Nina_Vislova prop:placeOfBirth ?uri} ",lcquad How many different writers have written for Jump Square?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:magazine . ?x prop:author ?uri . }",lcquad Who is the employer of Ralph flanders ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Ralph_Flanders prop:occupation ?uri } ",lcquad List the awards given to the important people of Aardman Animations?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Aardman_Animations onto:keyPerson ?x . ?x onto:award ?uri . }",lcquad Which TV show developed by J. Michael Stracznski has artist as Christopher Franke ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:artist . ?uri onto:developer . ?uri rdf:type onto:TelevisionShow}",lcquad Is Giorgos Kaminis the mayor of Athens?,"PREFIX res: PREFIX onto: ASK WHERE { res:Athens onto:mayor res:Giorgos_Kaminis }",lcquad Name the members of European Go Federation?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:European_Go_Federation prop:membership ?uri } ",lcquad In which sitcom did Jeff Conaway acted and had TNT as its network ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:network . ?uri onto:starring . ?uri rdf:type onto:TelevisionShow}",lcquad Grey gppse and eristoff is produced by which company?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:manufacturer ?uri. prop:manufacturer ?uri . }",lcquad Where are the tombs of alumni of ational academy museum and school?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:training res:National_Academy_Museum_and_School . ?x onto:restingPlace ?uri . }",lcquad What is the order of George Frisbie Hoar?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:George_Frisbie_Hoar prop:order ?uri } ",lcquad Among the universities having Gyrfalcon as mascot which have Michelle D. Johnson as superintendent ? ,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:superintendent . ?uri prop:mascot . ?uri rdf:type onto:University}",lcquad Name the show whose theme composing band previously also had Bryan Mantia?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:formerBandMember . ?uri prop:themeMusicComposer ?x . ?uri rdf:type onto:TelevisionShow}",lcquad List the television shows whose Composers are associated with Strontium 90 ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:associatedBand . ?uri prop:composer ?x . ?uri rdf:type onto:TelevisionShow}",lcquad Name the band atleast one of whose members is famous for playing the Fender Stratocaster?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:notableInstruments . ?uri prop:currentMembers ?x . ?uri rdf:type onto:Band}",lcquad Count the participants of the NBA.,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:league . }",lcquad Who has stock in the railway lines managed by Norfolk Southern Railway?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:system . ?x prop:owner ?uri . ?x rdf:type onto:RailwayLine}",lcquad How many writers speak a language belonging to the Germanic kind of languages?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:languageFamily . ?uri prop:language ?x . ?uri rdf:type onto:Writer}",lcquad Enumerate the cars related to the ones assembled in Toluca?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:assembly . ?x prop:related ?uri . }",lcquad Where is the grave of Ivan III of Russia ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Ivan_III_of_Russia prop:placeOfBurial ?uri } ",lcquad Name the capital of Barony of Caux ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Barony_of_Caux onto:capital ?uri } ",lcquad Name the basketball players drafted by Los Angeles Clippers ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:draftTeam . ?uri rdf:type onto:BasketballPlayer}",lcquad Is Tenzing Norgay the first person to scale Mt. Everest?,"PREFIX res: PREFIX onto: ASK WHERE { res:Mount_Everest onto:firstAscentPerson res:Tenzing_Norgay }",lcquad Count the number of other product of the banks whose one of the product is Wealth management ?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:product . ?x onto:product ?uri }",lcquad Which scientist is known for writing Philosophi Naturalis Principia Mathematica?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:knownFor res:Philosophiæ_Naturalis_Principia_Mathematica } ",lcquad Which planet was first discovered by Johann Gottfried Galle?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:discoverer . ?uri rdf:type onto:Planet}",lcquad What are some organizations in Auckland created to do?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:location . ?x prop:purpose ?uri . ?x rdf:type onto:Organisation}",lcquad Is Pulau Ubin the largest city of Singapore?,"PREFIX res: PREFIX onto: ASK WHERE { res:Pulau_Ubin onto:largestCity res:Singapore }",lcquad Under which president was timothy l. woodruff a lieutenant?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:lieutenant res:Timothy_L._Woodruff } ",lcquad How many have been venerateds in Islam and Judaism?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?uri onto:veneratedIn . ?uri onto:veneratedIn } ",lcquad Which training center of William Anthony has also alumni named Philip W Pillsbury ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:training ?uri. prop:education ?uri} ",lcquad "What is the largest city of the country to whom, the battle honours of 65th Regiment of Foot were given?","PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:battleHonours ?x . ?x onto:largestCity ?uri . }",lcquad What awards have been given to people schooled in the Everton park state high?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:education . ?x prop:awards ?uri . ?x rdf:type onto:Person}",lcquad List the authors of the musicals whose songwriter is Richard M. Sherman.,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:musicBy . ?x onto:author ?uri . ?x rdf:type onto:Musical}",lcquad Who founded the sister stations of Discovery Communications?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:sisterNames res:Discovery_Communications . ?x prop:founder ?uri . }",lcquad Rivers which end in Arkansas go through which cities?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:mouthMountain . ?x onto:city ?uri . ?x rdf:type onto:River}",lcquad Give me some organizations working for Environmentalism,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:purpose . ?uri rdf:type onto:Organisation}",lcquad Who has starred in the amusement park attractions where Jim Dooley was performing?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:music . ?x prop:starring ?uri . ?x rdf:type onto:AmusementParkAttraction}",lcquad "Who has his resting place at Plymouth, Vermont and office at Massachusetts House of Representatives?","PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:restingPlace . ?uri prop:office . }",lcquad Name the person whose parent is Pattie Mallette?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:parent . ?uri rdf:type onto:Person}",lcquad What faith of Buddhist Tai Hung College is also the acadmeic interest of Paul Demiville ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Paul_Demiéville prop:fields ?uri. res:Buddhist_Tai_Hung_College prop:religion ?uri} ",lcquad Count the number of offices held by people who have their allegiances with the american civil war union?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:allegiance . ?x prop:office ?uri . }",lcquad What are all the TV shows which are related to the ones produced by Julie Gardner?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:executiveProducer . ?uri onto:related ?x . ?uri rdf:type onto:TelevisionShow}",lcquad For how many different presidents have people in the Continental Army served?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:branch . ?x prop:president ?uri . }",lcquad Is Pixar Canada a subsidiary of Pixar?,"PREFIX res: PREFIX onto: ASK WHERE { res:Pixar onto:subsidiary res:Pixar_Canada }",lcquad How many movies have been cinematographed by Jordan Cronenweth?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:cinematography . ?uri rdf:type onto:Film}",lcquad What is the country of origin of the president of Skai group?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Skai_Group onto:keyPerson ?x . ?x onto:stateOfOrigin ?uri . }",lcquad Which company produced the car which was a new version of Daewoo's Tico?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:predecessor . ?x prop:parentCompany ?uri . ?x rdf:type onto:Automobile}",lcquad What are all the prizes won by the writer of A Grand Day Out?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:A_Grand_Day_Out onto:writer ?x . ?x onto:award ?uri . }",lcquad Is Lyndon bridge a kind of Truss bridge?,"PREFIX res: PREFIX prop: ASK WHERE { res:Lyndon_Bridge prop:design res:Truss_bridge }",lcquad What tv show is created by Brian Graden?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:developer . ?uri rdf:type onto:TelevisionShow}",lcquad What is the television show whose previous work is The Spirit of Christmas (short film)?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:previousWork . ?uri rdf:type onto:TelevisionShow}",lcquad In which country is there a dam on the Awash river?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:river . ?x prop:country ?uri . ?x rdf:type onto:Dam}",lcquad Count the total religions followed by the ones living in England.,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:residence . ?x prop:religion ?uri . }",lcquad Who wrote the play in which a character called Stella Kowalski exists?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:characters . ?x prop:writer ?uri . ?x rdf:type onto:Play}",lcquad Was Liliya Lobanova born in Ukraine?,"PREFIX res: PREFIX prop: ASK WHERE { res:Liliya_Lobanova prop:birthplace res:Ukraine }",lcquad Name the broadcast area of ITV (Thailand) ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:broadcastArea ?uri } ",lcquad Is the hyundai elantra related to hyundai lavita?,"PREFIX res: PREFIX onto: ASK WHERE { res:Hyundai_Lavita onto:relatedMeanOfTransportation res:Hyundai_Elantra }",lcquad "What is the country where Sergei Ovchinnikov the volleyball player die, and Gumus was first aired ?","PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:firstAired ?uri. prop:placeOfDeath ?uri} ",lcquad Is Serbian Titieca a doctoral student of Werner Heisenberghttp://dbpedia.org/resource/Werner_Heisenberg,"PREFIX res: PREFIX onto: ASK WHERE { res:Werner_Heisenberg onto:doctoralStudent res:Șerban_Țițeica }",lcquad What is the region of Kim Sawchuk ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Kim_Sawchuk prop:region ?uri } ",lcquad Where was Liliya Lobanova born?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Liliya_Lobanova prop:birthplace ?uri } ",lcquad What are some cars related to the ones with a V8?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:engine . ?x prop:related ?uri . ?x rdf:type onto:Automobile}",lcquad "People of which religion have been the members of parliament, and are from the Kalutara Electoral district?","PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:region . ?x onto:religion ?uri . ?x rdf:type onto:MemberOfParliament}",lcquad What are the important buildings of the architect whose one of the significant building is Krasnye Vorota?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:significantBuilding . ?x onto:significantBuilding ?uri . ?x rdf:type onto:Architect}",lcquad Name the common institute of Robert hall and Erica Frank ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:institution ?uri. onto:institution ?uri . }",lcquad Name the cause of death of Martino Martini ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Martino_Martini onto:deathCause ?uri } ",lcquad In how many places have Irishmen died?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:birthPlace . ?x onto:deathPlace ?uri . ?uri rdf:type onto:Location}",lcquad Count the number of fields of the scientists whose one of the fields is Sanskrit?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:fields . ?x prop:fields ?uri }",lcquad "Does the white river flow into the connecticut river{u'_id': u'97e02dcf44aa43c1b7cc7a7c155b118f',","PREFIX onto: ASK WHERE { onto:rightTributary }",lcquad Was andy worhol the director of the san diego surf?,"PREFIX onto: ASK WHERE { onto:cinematography }",lcquad What is the debut team of ngel Escobar ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Ángel_Escobar prop:debutteam ?uri } ",lcquad What currencies are used in the countries which have been governed by Francois Hollande?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:leader . ?x onto:currency ?uri . ?x rdf:type onto:Country}",lcquad Where is Semnani and Assyrian Neo-Aramaic spoken ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:languages . ?uri onto:language . }",lcquad Give me a list of everyone who married the musicians signed up with Pablo Records?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:label res:Pablo_Records . ?uri onto:spouse ?x . }",lcquad Name the TV show whose cast member is Companion (Doctor Who) and is related to The Sarah Jane Adventures?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:starring . ?uri onto:related . ?uri rdf:type onto:TelevisionShow}",lcquad Which shows' opening themes was used to make If We Were a Movie?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:subsequentWork . ?uri onto:openingTheme ?x . ?uri rdf:type onto:TelevisionShow}",lcquad What is the predecessor of the car engine which was succeeded by BMW M43 ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:successor . ?x prop:predecessor ?uri . ?x rdf:type onto:Engine}",lcquad Which country's leader is David Johnston?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:leader . ?uri rdf:type onto:Country}",lcquad Give me a count of musical artists collaborating with Waylon Jennings?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:associatedMusicalArtist . ?uri rdf:type onto:MusicalArtist}",lcquad Count everyone who was in the military unit which is structured like the Marine Aircraft Group 13 ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:commandStructure . ?uri onto:militaryUnit ?x . }",lcquad By which member of parliament was Provisional Government of Saskatchewan led?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:order . ?uri rdf:type onto:MemberOfParliament}",lcquad List the houses of Parliament of India ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Parliament_of_India prop:houses ?uri } ",lcquad Count the number of movies whose distributor is RKO Pictures and director of photography is Gregg Toland?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:distributor . ?uri onto:cinematography } ",lcquad In how many places can I find wine made of Vitis vinifera grapes?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:species . ?x onto:wineRegion ?uri . }",lcquad Which gadgets are made by companies of New Taipei City?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:locationCity res:New_Taipei_City . ?uri onto:manufacturer ?x . }",lcquad Name the hockey team which has head coach as Mike babcock and is based in Toronto ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:locationCity . ?uri prop:headCoach . ?uri rdf:type onto:HockeyTeam}",lcquad What is the hub of Wan Air ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Wan_Air prop:hubs ?uri } ",lcquad Who are the members of organizations headquartered at Amstelveen?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:headquarters . ?x prop:membership ?uri . ?x rdf:type onto:Organisation}",lcquad Was the skeleton dance animated by Walt Disney?,"PREFIX res: PREFIX onto: ASK WHERE { res:The_Skeleton_Dance onto:animator res:Walt_Disney }",lcquad Whcih creator of Theme Time Radio Hour also created subsequent work of Moondoc Matinee ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Moondog_Matinee onto:subsequentWork ?uri. res:Theme_Time_Radio_Hour prop:creator ?uri} ",lcquad Who owns the tunnels operated by the Massachusetts Department of Transportation?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:operatedBy . ?x prop:owner ?uri . ?x rdf:type onto:RoadTunnel}",lcquad Which comic characters are painted by Bill Finger?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:creator . ?uri rdf:type onto:ComicsCharacter}",lcquad Name few television shows's anchored by Ryan Seacrest?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:presenter . ?uri rdf:type onto:TelevisionShow}",lcquad List education institute of the engineers whose alma mater is ChristChurch ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:education . ?x onto:education ?uri . ?x rdf:type onto:Engineer}",lcquad What do the banks owned by Norwegian ministry of finance produce?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:parentCompany . ?x prop:products ?uri . ?x rdf:type onto:Bank}",lcquad Is coffee a main ingredient of Hopje?,"PREFIX res: PREFIX prop: ASK WHERE { res:Hopje prop:mainIngredient res:Coffee }",lcquad Does KOMC play Gospel Music?,"PREFIX onto: ASK WHERE { onto:programmeFormat }",lcquad Which televison shows have location as Massachusetts ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:location . ?uri rdf:type onto:TelevisionShow}",lcquad Which clubs play in the La Liga?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:league . ?x prop:name ?uri . ?x rdf:type onto:SoccerClub}",lcquad The successor of Ellsworth Bunker belongs to which religion?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Ellsworth_Bunker onto:successor ?x . ?x onto:region ?uri . }",lcquad What medals have been given to people who died of lung cancer?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:deathCause . ?x onto:award ?uri . ?x rdf:type onto:Person}",lcquad Which rivers start in Wyoming?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:sourceRegion res:Wyoming } ",lcquad Which band had members who are now in The Bleeding Heart Band?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:associatedBand . ?uri onto:formerBandMember ?x . ?uri rdf:type onto:Band}",lcquad What is the common military branch of the Thomas Darden and that of Edwin F. Hunter,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Thomas_Darden onto:militaryBranch ?uri. res:Edwin_F._Hunter prop:branch ?uri} ",lcquad In which countries are there banks which came after the National Commercial Bank of Mauritius?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:successor ?x . ?x prop:locationCountry ?uri . ?x rdf:type onto:Bank}",lcquad How many people have coached the players of Middlesbrough FC?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:team . ?x onto:manager ?uri . ?uri rdf:type onto:Person}",lcquad What are the Languages of Zabbaleen ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Zabbaleen prop:languages ?uri } ",lcquad What is the region served by Toll Global Express and also borders Siberia ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Toll_Global_Express onto:regionServed ?uri. res:Siberia onto:border ?uri} ",lcquad In which mountain range does the Rochers De Naye lie?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:parentMountainPeak res:Rochers_de_Naye . ?x onto:mountainRange ?uri . }",lcquad Who has rented the stadiums owned by Toronto?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:owner . ?x prop:tenants ?uri . ?x rdf:type onto:Stadium}",lcquad Was Krzystof Wielicki the first person that ascended the mt everest?,"PREFIX res: PREFIX onto: ASK WHERE { res:Mount_Everest onto:firstAscentPerson res:Krzysztof_Wielicki }",lcquad What is the mascot of alma mater of John O Moseley?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:John_O._Moseley prop:almaMater ?x . ?x prop:mascot ?uri . }",lcquad Does the river shannon originate from Dowra?,"PREFIX res: PREFIX onto: ASK WHERE { res:River_Shannon onto:sourceMountain res:Dowra }",lcquad Which newspapers are owned by Oslo citizens?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:location . ?uri prop:owners ?x . ?uri rdf:type onto:Newspaper}",lcquad King crimson has been recorded in which places?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:artist res:King_Crimson . ?x onto:recordedIn ?uri . }",lcquad What is the show which opens with Gary Portnoy and Where Everybody Knows Your Name?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:openingTheme . ?uri onto:openingTheme . ?uri rdf:type onto:TelevisionShow}",lcquad Does chicago own the washington station on the CTA Blue Line?,"PREFIX prop: ASK WHERE { prop:owned }",lcquad "Who is the architect of Red House, London ?","PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:architect ?uri } ",lcquad Which is the common prospect team of Mikhail Pashnin and Robin kovacs ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Mikhail_Pashnin prop:prospectTeam ?uri. res:Robin_Kovacs onto:prospectTeam ?uri} ",lcquad How many mountain ranges are located in the Canton of Fribourg?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:locatedInArea . ?x onto:mountainRange ?uri . }",lcquad Is GIMP written in GTK+?,"PREFIX prop: ASK WHERE { prop:programmingLanguage }",lcquad Give me a count on associates of Johnny Cash?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:associatedActs . }",lcquad Which companies are founded in the city of which Collin County Texas is a part?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:part . ?uri onto:foundationPlace ?x . ?uri rdf:type onto:Company}",lcquad What is the place of birth of the badminton player who is the bronze medalist of Badminton at the 2012 Summer Olympics Women's doubles ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:bronzeMedalist ?x . ?x prop:placeOfBirth ?uri . ?x rdf:type onto:BadmintonPlayer}",lcquad what are some neighboring cities of Pregny Chambsy?,"PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:neighboringMunicipality } ",lcquad Through which counties does the road go which starts at the Port Klang?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:routeStart . ?x onto:county ?uri . ?x rdf:type onto:Road}",lcquad Which city's teams have been coached by Gary Kubaik?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:coach . ?x onto:locationCity ?uri . ?x rdf:type onto:SportsTeam}",lcquad How many developers make softwares for Unix like operating systems?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:operatingSystem . ?x onto:developer ?uri . }",lcquad What is the second track list of Dschinghis Khan (song) ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:subsequentWork ?uri } ",lcquad Which president was served by someone whose lieutenant is Lewis Stuyvesant Chanler?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:lieutenant res:Lewis_Stuyvesant_Chanler . ?x onto:president ?uri . }",lcquad List the graves of the royalities which have been buried at Beeleigh Abbey ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:placeOfBurial . ?x prop:placeOfBurial ?uri . ?x rdf:type onto:Royalty}",lcquad For which party's PM did Chidambaram Subramaniam serve?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Chidambaram_Subramaniam prop:primeminister ?x . ?x onto:party ?uri . }",lcquad What is the capital of the region which maintains the South Park Bridge ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:maintainedBy ?x . ?x onto:countySeat ?uri . ?x rdf:type onto:Region}",lcquad AH141 highway is a part of which country?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:AH141 onto:county ?uri } ",lcquad "What is the local authority of the Trinity School, Brentwood and place of birth of the Sarah Walker (badminton) ?","PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:localAuthority ?uri. prop:placeOfBirth ?uri} ",lcquad Which school of jack mcGregor attend which was also the training center of William Anthony ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:education ?uri. onto:training ?uri} ",lcquad Is Julia Gillard a part of monarch of elizabeth 2?,"PREFIX res: PREFIX prop: ASK WHERE { res:Julia_Gillard prop:monarch res:Elizabeth_II }",lcquad Count the number of schools which are in a city governed by the West Berkshire Council?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:leaderName . ?uri prop:city ?x . ?uri rdf:type onto:School}",lcquad Which ceremonial County of the East Tilbury is also the local authority of the Buckhurst Hill County High School ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:East_Tilbury onto:ceremonialCounty ?uri. res:Buckhurst_Hill_County_High_School onto:localAuthority ?uri} ",lcquad What is the common profession of DeWitt Clinton and Claiborne Pell ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:DeWitt_Clinton prop:office ?uri. res:Claiborne_Pell onto:profession ?uri} ",lcquad List the launch site of the rockets whose one of the launch site has been Cape Canaveral Air Force Station Launch Complex 26 ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:launchSite . ?x onto:launchSite ?uri . ?x rdf:type onto:Rocket}",lcquad How many wars took place in Israel?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:place . ?uri rdf:type onto:MilitaryConflict}",lcquad What is the total number of guests on the show whose theme music is Let me be your star?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:music . ?x prop:guests ?uri . }",lcquad What is the operating system of the LG Optimus Vu and also the developer of the Dart (programming language),"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:operatingSystem ?uri. prop:developer ?uri} ",lcquad Who follow religions led by David Miscavige?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:leaderName res:David_Miscavige . ?uri onto:religion ?x . }",lcquad How many people have written for Gangan Comics?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:magazine . ?x prop:author ?uri . }",lcquad Which part of the US political framework did Arthur Bagby and Thomas H hicks both serve?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Arthur_P._Bagby prop:order ?uri. res:Thomas_Holliday_Hicks prop:order ?uri . }",lcquad Who wrote The Times They Are a-Changin?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:musicBy ?uri } ",lcquad Which education institute of Duncan U. Fletcher is also the university of Vanderbilt Commodores ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Duncan_U._Fletcher onto:almaMater ?uri. res:Vanderbilt_Commodores onto:university ?uri} ",lcquad How many total religions are followed by people whose hometown is somewhere in India?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:hometown . ?x prop:religion ?uri . }",lcquad What were the awards won by the founder of Walt Disney Records ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Walt_Disney_Records onto:foundedBy ?x . ?x onto:award ?uri . }",lcquad England is the origin of how many things?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:origin . }",lcquad What is the television show with presentator as Ryan Seacrest and theme music composer as Julian Gingell?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:presenter . ?uri prop:themeMusicComposer . ?uri rdf:type onto:TelevisionShow}",lcquad Where did ed podolak go to high school,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Ed_Podolak onto:highschool ?uri } ",lcquad "Where is the county seat of King County, Washington?","PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:countySeat ?uri } ",lcquad Is Maldives a member ofof South Asia Subregional Economic Cooperation?,"PREFIX res: PREFIX prop: ASK WHERE { res:South_Asia_Subregional_Economic_Cooperation prop:membership res:Maldives }",lcquad Is Rain Over me in the planet pit album?,"PREFIX res: PREFIX onto: ASK WHERE { res:Rain_Over_Me onto:album res:Planet_Pit }",lcquad What common team are Mikhail Pashnin and Robin Kovacs expected to play for?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Mikhail_Pashnin prop:prospectTeam ?uri. res:Robin_Kovacs prop:prospectTeam ?uri . }",lcquad What are the houses of legislature in the political leader's seat of Medininagar?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:leaderTitle ?x . ?x prop:houses ?uri . ?x rdf:type onto:Legislature}",lcquad Which producer of Boeing F/A-18E/F Super Hornet has a key person Dennis Muilenburg ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:keyPeople . ?uri prop:products . }",lcquad "Was Ne Daj Se, Nina first aired in Croatia?","PREFIX prop: ASK WHERE { prop:firstAired }",lcquad How many people work at the FBI?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:occupation . }",lcquad How many people have been trained in an institute located in California?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:city . ?uri prop:training ?x . ?uri rdf:type onto:Person}",lcquad Where is the tomb of son of Bruce Lee?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:parent res:Bruce_Lee . ?x onto:restingPlace ?uri . }",lcquad What are some famous companies founded in the US?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:foundationPlace . ?uri rdf:type onto:Company}",lcquad Name the common former team of Marv mcFadden and Carlos Emmons ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:pastteams ?uri. onto:formerTeam ?uri} ",lcquad Who were fighting the war where the QF Hotchkiss was used?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { onto:usedInWar ?x . ?x onto:territory ?uri . ?x rdf:type onto:MilitaryConflict}",lcquad Give me a count of movies whose film editor is Anthony Harvey?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:editing . ?uri rdf:type onto:Film}",lcquad How many people are buried in Arlington National Cemetery?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:placeofburial . }",lcquad What are some people working for the New York Post?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:employer . ?uri rdf:type onto:Person}",lcquad Which country were the people from who became famous for the Ramon Mangsaysay Award?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:knownFor . ?x onto:stateOfOrigin ?uri . ?x rdf:type onto:Person}",lcquad Name the office holder with predecessor as Samuel W. McCall and office in Massachusetts House of Representatives?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:predecessor . ?uri prop:office . ?uri rdf:type onto:OfficeHolder}",lcquad In which city is the sister station of WCSE-LP located ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:sisterStations ?x . ?x prop:city ?uri . }",lcquad What are some devices whose manufacturers are in taiwan?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:locationCountry . ?uri onto:manufacturer ?x . ?uri rdf:type onto:Device}",lcquad Which military commander fought his battle at Fort Gadsen?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:battle . ?uri rdf:type onto:OfficeHolder}",lcquad Which spanish novel was published by Francisco de Robles?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:publisher res:Francisco_de_Robles } ",lcquad What are some bands originating in London?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:hometown . ?uri rdf:type onto:Band}",lcquad "Which educational institution has Kaplan, Inc as it's affiliation?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:affiliations . ?uri rdf:type onto:EducationalInstitution}",lcquad Who is associated to Publius Servilius Vatia Isauricus and Marcus Calpurnius Bibulus?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:associate . ?uri onto:associate . }",lcquad In what group Joe Jonas and Kevin Jonas were previously involved?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri prop:pastMembers . ?uri prop:pastMembers . ?uri rdf:type onto:Group}",lcquad Who are relatives of Ozzy Osbourne and Kelly Osbourne?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?uri prop:relatives res:Ozzy_Osbourne . ?uri prop:relatives res:Kelly_Osbourne . }",lcquad "Naval station mobile and naval support activity, naples are under which branch of Us military?","PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:type ?uri. onto:type ?uri . ?uri rdf:type onto:MilitaryUnit}",lcquad Is Ian Thorpe the bronze medalist of Swimming at the 2004 Summer Olympics Men's 100 metre freestyle?,"PREFIX onto: ASK WHERE { onto:bronzeMedalist }",lcquad Where did john o conner study?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:almaMater ?uri } ",lcquad List the producers who produced movies starring Michael Jackson.,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:starring . ?x prop:producer ?uri . ?x rdf:type onto:Film}",lcquad List the name of the soccer clubs whose chairman is Joan Laporta.,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:chairman . ?x prop:name ?uri . ?x rdf:type onto:SoccerClub}",lcquad Name the major shrine of Bogumilus?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Bogumilus onto:majorShrine ?uri } ",lcquad What is the political party of the Satish Kumar Sharma which is also the political party of Manthena Venkata Raju?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Satish_Kumar_Sharma onto:party ?uri. res:Manthena_Venkata_Raju onto:party ?uri . }",lcquad What are the other launch site of the rockets which also have been launched from Cape Canaveral Air Force Station Launch Complex 5 ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:launchSite . ?x onto:launchSite ?uri . ?x rdf:type onto:Rocket}",lcquad Name the TV shows related to Babylon 5: The Lost Tales and is aired on Prime TIme Entertainment Networks ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:related . ?uri onto:network . ?uri rdf:type onto:TelevisionShow}",lcquad Who is the person whose alma mater is Harvard-Westlake School?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:almaMater . ?uri rdf:type onto:Person}",lcquad How many different religions have economists followed?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:profession . ?x onto:religion ?uri . }",lcquad Martin Ferguson and Mike Kelly served under which aussie PM?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:primeminister ?uri. prop:primeminister ?uri . }",lcquad Which royalty's spouse is Ptolemy XIV of Egypt?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:spouse . ?uri rdf:type onto:Royalty}",lcquad What artists are associated with the members of the Catalin Maruta?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:associatedBand res:Cătălin_Măruță . ?x onto:associatedMusicalArtist ?uri . }",lcquad In which city are buildings by Solon Spencer Beman found?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:architect . ?x prop:locationTown ?uri . ?x rdf:type onto:Building}",lcquad "Danny Felice, the Gibraltarian guitarist is from which city?","PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Danny_Felice onto:hometown ?uri } ",lcquad Name the tenants of O.co Coliseum ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:O.co_Coliseum onto:tenant ?uri } ",lcquad Name the rivers originating from an English speaking nation?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:officialLanguage . ?uri onto:sourceCountry ?x . ?uri rdf:type onto:River}",lcquad Count the total awards won by the writer who has won Goethe Prize ?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:awards . ?x prop:awards ?uri }",lcquad In how many nations can I find people related to the feminist movement?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:movement . ?x onto:nationality ?uri . }",lcquad What team had the debut of Marv Throneberry and Curt Coleman?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Marv_Throneberry prop:debutteam ?uri. res:Curt_Coleman onto:debutTeam ?uri} ",lcquad Name the sports played by PATTS College of Aeronautics?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:PATTS_College_of_Aeronautics prop:athletics ?uri } ",lcquad Which home town of Cline Buckens is the place of Death of Richard heron ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Céline_Buckens onto:hometown ?uri. res:Richard_Heron prop:placeOfDeath ?uri} ",lcquad Who wrote the musical based on Mary Poppins?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:basedOn . ?x onto:author ?uri . ?x rdf:type onto:Musical}",lcquad With whom is Heinz Kokott a relative to who also served Nazi Army?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Heinz_Kokott onto:relation ?uri } ",lcquad Who is the former partner of the figure skater which was the former partner of Brynn Carman ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:formerPartner ?x . ?x onto:formerPartner ?uri . ?x rdf:type onto:FigureSkater}",lcquad Name the company which produces Marionette and has key person as Edwin catmull ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:products . ?uri prop:keyPeople . ?uri rdf:type onto:Company}",lcquad Paul Morphy compiled journals of which field?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:editor res:Paul_Morphy . ?x prop:discipline ?uri . }",lcquad Name the person whose relation is Dee Dee Warwick?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:relation . ?uri rdf:type onto:Person}",lcquad Give me some series whose network's owning company is Warner Bros. Television?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:owningCompany . ?uri onto:network ?x . ?uri rdf:type onto:TelevisionShow}",lcquad In which region was political figure Wayne Allard elected?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Wayne_Allard onto:region ?uri } ",lcquad What awards have the narrator of the Cries and Whispers won?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Cries_and_Whispers onto:narrator ?x . ?x prop:awards ?uri . }",lcquad How many ships belong to states which has Unitary as government type ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:governmentType . ?uri onto:country ?x . ?uri rdf:type onto:Ship}",lcquad Who designed Oddamavadi Bridge?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Oddamavadi_Bridge prop:designer ?uri } ",lcquad Count all the band members who are in Bands which have signed up with Entertainment One Music?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:label . ?x onto:bandMember ?uri . }",lcquad What are the television shows whose company is European Broadcasting Union?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:company . ?uri rdf:type onto:TelevisionShow}",lcquad Who are the founders of Iskra ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Iskra onto:foundedBy ?uri } ",lcquad To which families does the Koolakamba belong ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Koolakamba onto:family ?uri } ",lcquad Graduates of Somerville College have been in how many political parties?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:almaMater . ?x onto:party ?uri . }",lcquad Was George Washington on the rank of general?,"PREFIX onto: ASK WHERE { onto:militaryRank }",lcquad List all the developers of the Oddworld series?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:series res:Oddworld . ?x onto:developer ?uri . }",lcquad Was the Incredibles released before Finding Nemo?,"PREFIX onto: ASK WHERE { onto:previousWork }",lcquad Who is renowned for Ae Fond Kiss and poem of Halloween ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { ?uri prop:notableworks . ?uri prop:notableworks . }",lcquad Which county seats are in the district where I can find the Hylebos Creek?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Hylebos_Creek onto:district ?x . ?x onto:countySeat ?uri . }",lcquad Which american football player's current team is Michigan Wolverines and former team was Baltimore Ravens ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:currentteam . ?uri onto:formerTeam . ?uri rdf:type onto:AmericanFootballPlayer}",lcquad Which TV show distributed by Warner Bros. has Christopher Franke as one of the artist ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:distributor . ?uri prop:artist . ?uri rdf:type onto:TelevisionShow}",lcquad Give me a count of all the producers of all the movies whose music was done by James Horner?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:music . ?x prop:producer ?uri . }",lcquad Where did isabelle caro and judson huss both die?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Judson_Huss prop:deathPlace ?uri. res:Isabelle_Caro prop:deathPlace ?uri . }",lcquad List the notable work of David Isaacs (writer)?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:notableWork ?uri } ",lcquad What is the province of Egypt Nanotechnology Center ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Egypt_Nanotechnology_Center prop:province ?uri } ",lcquad Give me the number of home stadiums of teams managed by John Spencer.,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:manager . ?x onto:homeStadium ?uri . }",lcquad How many people are buried in the Winchester Cathedral?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:restingPlace . }",lcquad Name the origins of the river with Quich Department as one of the origin ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:origin res:Quiché_Department . ?x onto:origin ?uri . }",lcquad Who wrote a rose for emily?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:notableWork . ?uri rdf:type onto:Writer}",lcquad What is the mascot of the Royal Australian Air Force and Austin College?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Royal_Australian_Air_Force prop:mascot ?uri. res:Austin_College prop:mascot ?uri . }",lcquad What ethnicity do people in British Columbia belong to?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:residence . ?x onto:ethnicity ?uri . ?x rdf:type onto:Person}",lcquad Which motion picture stories were edited by Ishir Honda?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:writer . ?uri rdf:type onto:Film}",lcquad Name the tv series produced by Stephen Ambrose and Erik Bork?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:producer . ?uri onto:producer . ?uri rdf:type onto:TelevisionShow}",lcquad Who starred in Awakening and fifety five days at peknig ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:starring ?uri. onto:starring ?uri . }",lcquad Which tv series have a score composed by judy hard angelo?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:composer . ?uri rdf:type onto:TelevisionShow}",lcquad For which other teams have the past Boston Bruins members played?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:formerTeam res:Boston_Bruins . ?x prop:playedFor ?uri . }",lcquad List the Swedish newspaper headquarted in Stockholm ? ,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:language . ?uri prop:headquarters . ?uri rdf:type onto:Newspaper}",lcquad Those seasons which have been played in Fort Lauderdale Florida now host their games where?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:stadium . ?x onto:ground ?uri . ?x rdf:type onto:SoccerClubSeason}",lcquad Were the 1995 south pacific games hosted in tahiti?,"PREFIX res: PREFIX prop: ASK WHERE { res:1995_South_Pacific_Games prop:hostCity res:Tahiti }",lcquad Where is the origin of Filbert's Old Time Root Beer ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:origin ?uri } ",lcquad Which largest city of Salsette Island is also the largest city of India ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:India onto:largestCity ?uri. res:Salsette_Island onto:largestCity ?uri . }",lcquad Give me all the alma mater of the relatives of Samuek Moreno Rojas ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Samuel_Moreno_Rojas onto:relation ?x . ?x prop:almaMater ?uri . }",lcquad Which magazine's editor's official residence is Playboy Mansion?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:residence . ?uri prop:editor ?x . ?uri rdf:type onto:Magazine}",lcquad To which destinations does Air 2000 fly?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Air_2000 prop:destinations ?uri } ",lcquad What is the political party to which Purnima Banerjee is a member of?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Robert_Nutting onto:knownFor ?uri } ",lcquad To which political party does the successor of Radhabinod Koijam belong?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Radhabinod_Koijam prop:successor ?x . ?x prop:party ?uri . }",lcquad What is the ethnicity of Linda Hogan ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Linda_Hogan prop:ethnicity ?uri } ",lcquad Name the mammals which are primate and belongs to family of ape ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:order . ?uri onto:family . ?uri rdf:type onto:Mammal}",lcquad "Who did the person whose predecessor is Arthur Slaght, play for?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:predecessor . ?x prop:playedFor ?uri . ?x rdf:type onto:Person}",lcquad "To what did the parliament member swore her oath to, whose has sons is Lohan Ratwatte?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:child . ?x prop:allegiance ?uri . ?x rdf:type onto:MemberOfParliament}",lcquad What are the awards won by the producer of Elizabeth: The Golden Age?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:producer ?x . ?x prop:awards ?uri . }",lcquad In which military conflict were Phm Vn ng and John McEwen commanders ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:commander . ?uri onto:commander . ?uri rdf:type onto:MilitaryConflict}",lcquad What is the hometown of the volleyball player whose club is VC Lokomotiv Novosibirsk ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:club . ?x prop:hometown ?uri . ?x rdf:type onto:VolleyballPlayer}",lcquad Who owns the bridge which crosses the Orange Line of MBTA?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:crosses . ?x prop:owner ?uri . ?x rdf:type onto:Bridge}",lcquad Is joel quenneville the main coach of Chicago Blackhawks?,"PREFIX res: PREFIX prop: ASK WHERE { res:Chicago_Blackhawks prop:headCoach res:Joel_Quenneville }",lcquad Through which label did Mel Brooks produce his movie?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:producer . ?x prop:label ?uri . ?x rdf:type onto:Film}",lcquad Count the number of judges who've come on CTV network shows.,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:network . ?x prop:judges ?uri . }",lcquad Name the musical artists whose label is given by Kobalt Label Services?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:label . ?uri rdf:type onto:MusicalArtist}",lcquad "Enumerate all the first teams of the GPs which were held in Watkins Glen, NY?","PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:location . ?x prop:firstTeam ?uri . }",lcquad Which operator of ganz UV is also the nationality of the Gza Horvth ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Ganz_UV onto:operator ?uri. res:Géza_Horváth onto:nationality ?uri} ",lcquad Does the AMC Gremlin use an Audi engine?,"PREFIX res: PREFIX prop: ASK WHERE { res:AMC_Gremlin prop:engine res:Audi }",lcquad What is the death place of the Abiye Abebe and is the birthplace of the Amsale Aberra?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Abiye_Abebe prop:placeOfDeath ?uri. res:Amsale_Aberra onto:birthPlace ?uri} ",lcquad Which official residence of Nikos Pateras is also the stadium of anionios G.S.S. season 2014-15 ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:2014–15_Panionios_G.S.S._season prop:stadium ?uri. res:Nikos_Pateras onto:residence ?uri} ",lcquad Give me a count of movies whose producer is Larry J. Franco?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:producer . ?uri rdf:type onto:Film}",lcquad What is the common profession of William Luther Hill and Claiborne Pell?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:William_Luther_Hill onto:profession ?uri. res:Claiborne_Pell onto:profession ?uri . }",lcquad Which city near Nihoa is the place of death of jim Brady ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:nearestCity ?uri. onto:deathPlace ?uri} ",lcquad Journals of how many fields can be found in US?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:country . ?x prop:discipline ?uri . }",lcquad How many different genres of games can I find which are compatible with the Commodore 64?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:computingPlatform . ?x prop:genre ?uri . }",lcquad In which wars has Steven Palazzo fought?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Steven_Palazzo prop:battles ?uri } ",lcquad Which fields' academic journals are found in the US?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:country res:United_States . ?x prop:discipline ?uri . }",lcquad Mike Shinoda is in which band?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:bandMember res:Mike_Shinoda } ",lcquad What are the television shows whose voices is given by Mona Marshall?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:voices . ?uri rdf:type onto:TelevisionShow}",lcquad Name the movie whose director of photography is Gregg Toland and Bernard Herrmann was the music composer?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:cinematography . ?uri onto:musicComposer . ?uri rdf:type onto:Film}",lcquad Name the members of boards of Freedom of the City and Trinity House?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:board res:Freedom_of_the_City . ?uri onto:board res:Trinity_House . }",lcquad Name the company with product lines like Visual studio and Surface ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:products . ?uri onto:product . ?uri rdf:type onto:Company}",lcquad How many contries surround the seas on the banks of which is the city of Cancun?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:cities . ?x onto:country ?uri . }",lcquad Name the other wine region of the grapes whose one of the wine region is Michigan?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:wineRegion . ?x onto:wineRegion ?uri . ?x rdf:type onto:Grape}",lcquad Which administrative region leader is Sukhumbhand Paribatra and was founded by Rama I?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:leaderName . ?uri onto:founder . ?uri rdf:type onto:AdministrativeRegion}",lcquad Name the largest city of the country where the body of Amit Saigal was discovered?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:bodyDiscovered ?x . ?x onto:largestCity ?uri . ?x rdf:type onto:Country}",lcquad "Who founded the city where First Church of Christ, Scientist is located?","PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:locationTown ?x . ?x onto:founder ?uri . }",lcquad Los Angeles Lakers is the team of which basketball players?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:team . ?uri rdf:type onto:BasketballPlayer}",lcquad What are the movies produced by Michael Deeley?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:producer . ?uri rdf:type onto:Film}",lcquad Where is the headquarter of Regional Transit Authority of Southeast Michigan ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Regional_Transit_Authority_of_Southeast_Michigan prop:headquarters ?uri } ",lcquad What are the awards won by the parent of Daniel Bergmans?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Daniel_Bergman onto:parent ?x . ?x prop:awards ?uri . }",lcquad What is the common debut team of the Butch Metzger and Dan Otero?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Butch_Metzger onto:debutTeam ?uri. res:Dan_Otero onto:debutTeam ?uri . }",lcquad What place is the birthplace of Vijay Chavan where Eka Lagnachi Teesri Goshta is located as well?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Eka_Lagnachi_Teesri_Goshta prop:location ?uri. res:Vijay_Chavan prop:placeOfBirth ?uri . }",lcquad Collect and return a list of things in the area where Spanish language is used?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:language res:Spanish_language . ?uri onto:location ?x . }",lcquad Where is Hafthor Julius Bjornsson from?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Hafthór_Júlíus_Björnsson onto:stateOfOrigin ?uri } ",lcquad What writers have nationality as Statelessness? ,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:nationality . ?uri rdf:type onto:Writer}",lcquad Music for what was made by someone who died of a cardiovascular disease?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:deathCause res:Cardiovascular_disease . ?uri prop:music ?x . }",lcquad What famous musicians play the remo?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:instrument . ?uri rdf:type onto:MusicalArtist}",lcquad Name the music artist which collaborated with the spouse of Jessi Colter?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:spouse . ?uri onto:associatedMusicalArtist ?x . ?uri rdf:type onto:MusicalArtist}",lcquad Among which city where Geography Club played also had the Kenticky Cycle ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:place ?uri. prop:place ?uri . }",lcquad Does Lousana lie at the end of Alberta Highway 42?,"PREFIX res: PREFIX onto: ASK WHERE { res:Alberta_Highway_42 onto:routeEnd res:Lousana . }",lcquad Count the number of sports played by the universities whose one of the sports is baketball ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:athletics . ?x prop:athletics ?uri }",lcquad "Amongst the winner of Lovelace medal, who has John Robert as doctoral supervisor ?","PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:doctoralAdvisor res:John_Robert_Woodyard . ?uri prop:prizes res:Lovelace_Medal . }",lcquad What things have founded place as United States and New Mexico?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?uri prop:foundation res:United_States . ?uri prop:foundation res:New_Mexico . }",lcquad Which television shows has sound format as 5.1 surround?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:format . ?uri rdf:type onto:TelevisionShow}",lcquad Who is the producer of the single which was the subsequent work of He's a Liar?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:subsequentWork ?x . ?x onto:producer ?uri . }",lcquad List the people who influenced the comedian who acted in Good Hair ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:starring ?x . ?x onto:influencedBy ?uri . ?x rdf:type onto:Comedian}",lcquad "To what other locations does the airlines have flights, who also fly to Birmingham?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:targetAirport . ?x prop:destinations ?uri . ?x rdf:type onto:Airline}",lcquad Name the television show whose creator is Simon Fuller and presented by Ryan Seacrest?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:creator . ?uri onto:presenter . ?uri rdf:type onto:TelevisionShow}",lcquad Does the Westchester Avenue fall under the Bronx?,"PREFIX res: PREFIX prop: ASK WHERE { res:Westchester_Avenue prop:counties res:The_Bronx }",lcquad In how many places has Garbage recorded their songs?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:producer . ?x onto:recordedIn ?uri . }",lcquad How many cars can I find related to the cars which have a V8 engine?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:engine . ?x prop:related ?uri . }",lcquad What products do US companies make?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:location . ?x onto:product ?uri . ?x rdf:type onto:Company}",lcquad How many characters are there in The Office?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:series . ?uri rdf:type onto:FictionalCharacter}",lcquad Name the person with opponents Ike Clanton and Tom McLaury?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:opponent . ?uri onto:opponent . ?uri rdf:type onto:Person}",lcquad Who first ascented a mountain of Mount Hoffmann ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Mount_Hoffmann onto:firstAscentPerson ?uri } ",lcquad Which science fiction show has Steven Moffat as executive producer ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:executiveProducer . ?uri prop:genre . ?uri rdf:type onto:TelevisionShow}",lcquad Who all play for the teams performing in the united center?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:arena res:United_Center . ?uri prop:team ?x . }",lcquad How many parties have come in power in elections where Y. S. Rajasekhara Reddy won?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:leader . ?x onto:affiliation ?uri . }",lcquad Where did Wallace Dollase die?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Wallace_Dollase onto:deathPlace ?uri . }",lcquad In which state is Red Willow Creek?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Red_Willow_Creek onto:state ?uri } ",lcquad Who is the founder of the trade union with whom Amalgamated Clothing Workers of America is affiliated?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Amalgamated_Clothing_Workers_of_America onto:affiliation ?x . ?x prop:founded ?uri . }",lcquad Who operates the railway line which begins in Minneapolis?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:routeStart . ?x onto:operatedBy ?uri . ?x rdf:type onto:RailwayLine}",lcquad What is the nation of the speedway league where Ikaros Smederna played?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:league ?x . ?x onto:country ?uri . ?x rdf:type onto:SpeedwayLeague}",lcquad How many non fiction topics does Thud! deals with?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { onto:nonFictionSubject ?uri . }",lcquad Which route start of Moscow-Kazan high-speed railway is the home stadium of 2011-12 FC Spartak Moscow ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:routeStart ?uri. onto:homeStadium ?uri} ",lcquad Which party of Rishang Keishing is the leader at Manendragarh ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Manendragarh onto:leaderName ?uri. res:Rishang_Keishing prop:party ?uri} ",lcquad How many people were in a youthclub which played in the Argentine Primera Division?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:league . ?uri prop:youthclubs ?x . }",lcquad What is the home town of the musician of Jack your Body ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Jack_Your_Body onto:musicalArtist ?x . ?x onto:hometown ?uri . }",lcquad In which branch of the government does James L. McConaughy belong?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:James_L._McConaughy onto:governor ?x . ?x prop:branch ?uri . }",lcquad in which country does the river end which originates in Lebrsnik?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:sourcePlace res:Lebršnik . ?x onto:mouthCountry ?uri . }",lcquad Where did Andy Wyant die and Robert Rodi was born in?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Robert_Rodi onto:birthPlace ?uri. res:Andy_Wyant prop:placeOfDeath ?uri} ",lcquad "Which person constituency is Duboce Triangle, San Francisco and military unit is USS Kittiwake (ASR-13)?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:constituency . ?uri onto:militaryUnit . ?uri rdf:type onto:Person}",lcquad What is the occupation of the band members of The Shirelles?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:associatedMusicalArtist res:The_Shirelles . ?x onto:occupation ?uri . }",lcquad Which American football player is a former team player of Indianapolis Colts and current team is Michigan Wolverines?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:formerTeam . ?uri prop:currentteam . ?uri rdf:type onto:AmericanFootballPlayer}",lcquad List the mountains of the range Sierra Nevada (U.S.) located in California?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:mountainRange . ?uri onto:locatedInArea . ?uri rdf:type onto:Mountain}",lcquad "List the television shows whose distributors are located at Burbank, California.","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:locationCity . ?uri prop:distributor ?x . ?uri rdf:type onto:TelevisionShow}",lcquad What is the common relegion of Miao people and the country where Guru Purnima is celebrated ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Miao_people onto:religion ?uri. res:Guru_Purnima onto:country ?uri} ",lcquad "In which university did Harlan Mathews study, where Richard Meriil Atkinson went too?","PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Harlan_Mathews onto:almaMater ?uri. res:Richard_Merrill_Atkinson onto:almaMater ?uri . }",lcquad What kind of buildings were designed by Pyusawhti?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:architect . ?x onto:type ?uri . ?x rdf:type onto:Building}",lcquad What is the owning company of the bank whose parent is Sony Financial ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:parent . ?x onto:owningCompany ?uri . ?x rdf:type onto:Company}",lcquad What are some gymnasts coached by Amanda Reddin?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:headcoach . ?uri rdf:type onto:Gymnast}",lcquad Katharevousa writers have been given which awards?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:movement . ?x onto:award ?uri . ?x rdf:type onto:Writer}",lcquad What are some mammals whose phylum is Chordate?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:phylum . ?uri rdf:type onto:Mammal}",lcquad How many developers have worked on games of the Oddworld series?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:series . ?x onto:developer ?uri . }",lcquad Name the home ground of 2015 Fort Lauderdale Strikers season ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:2015_Fort_Lauderdale_Strikers_season onto:ground ?uri } ",lcquad Which video game composed by Hirokazu Tanaka can be played on virtual Console ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:computingPlatform . ?uri prop:composer . ?uri rdf:type onto:VideoGame}",lcquad What is the resting place of the engineer who was the architect of Plaza on DeWitt?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Plaza_on_DeWitt onto:architect ?x . ?x onto:restingPlace ?uri . }",lcquad Where are the cooper mountain vineyards and Mt. bachelor ski area located?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Cooper_Mountain_Vineyards onto:location ?uri. res:Mount_Bachelor_ski_area onto:location ?uri . }",lcquad How many tenants are there in the Mercedes Benz Superdome?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { onto:tenant ?uri . }",lcquad What is the affiliation of the hospital where Alfred Blalock works?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Alfred_Blalock prop:workInstitutions ?x . ?x prop:affiliation ?uri . }",lcquad How many genres gave birth to other genres which emphasize Bass Guitars?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:instruments . ?x onto:stylisticOrigin ?uri . ?uri rdf:type onto:MusicGenre}",lcquad How many bands began in Birmingham?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:origin . ?uri rdf:type onto:Band}",lcquad Where does the river end which starts in Richmond Park?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:sourcePlace . ?x prop:mouthLocation ?uri . ?x rdf:type onto:Stream}",lcquad How many causes of death have been associated with American citizens?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:citizenship . ?x onto:deathCause ?uri . }",lcquad Louis Dunbar is the coach of which basketball team ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:coach . ?uri rdf:type onto:BasketballTeam}",lcquad Was Noko a band member of Luxuria?,"PREFIX onto: ASK WHERE { onto:formerBandMember }",lcquad Charles Willing Byrd was the governor under which politician?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:governor res:Charles_Willing_Byrd } ",lcquad Do the asiana airlines fly to Jeju airport?,"PREFIX res: PREFIX onto: ASK WHERE { res:Asiana_Airlines onto:targetAirport res:Jeju_International_Airport }",lcquad "For how many teams have the league players of Czech Extraliga, previously played?","PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:league . ?x onto:formerTeam ?uri . }",lcquad Which television show is the subsequent work of Frasier and the opening theme is Gary Portnoy?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:subsequentWork . ?uri onto:openingTheme . ?uri rdf:type onto:TelevisionShow}",lcquad Count the number of sports played by university which also plays Taekwondo ?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:athletics . ?x prop:athletics ?uri }",lcquad What continent of the world has Baja California peninsula and also has WEPG in one of it's cities?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:location ?uri. prop:city ?uri . ?uri rdf:type onto:Continent}",lcquad Rashid Behbudov State Song Theatre and Baku Puppet Theatre can be found in which country?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Rashid_Behbudov_State_Song_Theatre onto:locationCountry ?uri. res:Baku_Puppet_Theatre onto:locationCountry ?uri . }",lcquad What is the service of the Laemmle Theatres and is also the award of the Jos Rivera (playwright)?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:service ?uri. prop:awards ?uri} ",lcquad Which football players currently have their contracts with Stoke City F.C.?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:currentclub res:Stoke_City_F.C. } ",lcquad What are the cities around the sea which flows into the Atlantic?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:inflow . ?x prop:cities ?uri . ?x rdf:type onto:Sea}",lcquad Artists trained at art students league NY are buried where?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:training . ?x onto:restingPlace ?uri . ?x rdf:type onto:Artist}",lcquad What is the municipality of Liberty Bell ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Liberty_Bell onto:municipality ?uri } ",lcquad What is the location of death of the skier who was the bronze medalist of Alpine skiing at the 1964 Winter Olympics Men's slalom ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:bronzeMedalist ?x . ?x prop:deathPlace ?uri . ?x rdf:type onto:Skier}",lcquad What is the debut team of the american football player who studied in North Fort Myers High School?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:highschool . ?x prop:debutteam ?uri . ?x rdf:type onto:AmericanFootballPlayer}",lcquad In which races did Mouse Morris take part?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Mouse_Morris prop:race ?uri } ",lcquad Who are the writers of South Park: The Stick of Truth?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:South_Park:_The_Stick_of_Truth prop:writer ?uri } ",lcquad What is the leading party in Baraily which Chandra Shekhar too is associated with?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Baraily onto:leaderName ?uri. res:Chandra_Shekhar onto:otherParty ?uri} ",lcquad Whose commanders are Colin Powell and Jaber Al-Ahmad Al-Sabah?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:commander . ?uri onto:commander . }",lcquad Name the fictional character who was in Terminator and portrayer is Terminator 2: Judgment Day?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:series . ?uri onto:portrayer . ?uri rdf:type onto:FictionalCharacter}",lcquad List the trainers of Shinya Aoki ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Shinya_Aoki onto:trainer ?uri } ",lcquad What do typically NGOs work for?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:type . ?x prop:purpose ?uri . }",lcquad What does the river end on whose border we find in Bjelasnica?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:border res:Bjelašnica . ?x onto:mouthCountry ?uri . }",lcquad "List few schools situated in Reading, Berkshire ?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:city . ?uri rdf:type onto:School}",lcquad Who preceded Lucius Crus as an office holder?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:predecessor . ?uri rdf:type onto:OfficeHolder}",lcquad How many universities participate in the NCAA Division I Football Bowl Subdivision?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:athletics . ?uri rdf:type onto:University}",lcquad Where is the senator from whose successor was James belford?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:successor . ?x onto:region ?uri . ?x rdf:type onto:Senator}",lcquad What is the state of origin of Thomas Pfyl ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Thomas_Pfyl onto:stateOfOrigin ?uri } ",lcquad What is the nationality of the successor of Nii Okaidja Adamafio ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Nii_Okaija_Adamafio prop:successor ?x . ?x onto:nationality ?uri . }",lcquad By which university is the literary magazine named Stone Canoe published?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Stone_Canoe onto:publisher ?uri } ",lcquad Is Plymouth High School for Girls in Devon county?,"PREFIX res: PREFIX onto: ASK WHERE { res:Plymouth_High_School_for_Girls onto:county res:Devon }",lcquad Give me a count of companies located in Texas ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:locationCity . ?uri rdf:type onto:Company}",lcquad Name the company whose one of the product is Pixar Image Computer and has one of the key person as Edwin Catmull?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:product . ?uri onto:keyPerson . ?uri rdf:type onto:Company}",lcquad Who is the cover artist of Doctor Mirabilis (novel) ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:coverArtist ?uri } ",lcquad list some shawnee people?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:nationality res:Shawnee } ",lcquad "Name the office holder whose predecessor is Henry E. Catto, Jr. and successor is Adrian A. Basora?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:predecessor . ?uri prop:successor . ?uri rdf:type onto:OfficeHolder}",lcquad Who is the common prime minster of William Deaner and mark Latham ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:William_Deane onto:primeMinister ?uri. res:Mark_Latham prop:primeminister ?uri} ",lcquad What is the parent company of company which owns Sony Bank?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:parent ?x . ?x onto:parentCompany ?uri . ?x rdf:type onto:Company}",lcquad How many games are played at universities in Metro Manilla?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:state . ?x prop:athletics ?uri . }",lcquad Name all sitcoms whose theme music is made by Miley Cyrus?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:musicalBand . ?uri onto:openingTheme ?x . ?uri rdf:type onto:TelevisionShow}",lcquad Who is the former partner of the pupil of Dalilah Sappenfield?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:coach res:Dalilah_Sappenfield . ?x onto:formerPartner ?uri . }",lcquad Who is the Pole driver of 1992 Canadian Grand Prix ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:1992_Canadian_Grand_Prix prop:poleDriver ?uri } ",lcquad Which city's neighboring municipalities are Lancy and Pregny-Chambsy?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:neighboringMunicipalities . ?uri onto:neighboringMunicipality . ?uri rdf:type onto:Location}",lcquad Which home town of PAvel Moroz is the death location of the Yakov Estrin ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Pavel_Moroz prop:hometown ?uri. res:Yakov_Estrin onto:deathPlace ?uri} ",lcquad What is the country whose speaker of the Dewan Rakyat is Pandikar Amin Mulia?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:leaderName . ?uri rdf:type onto:Country}",lcquad "Which mainter of Cheasty Boulevard South is also the county seat of the King County, Washingtonsu ?","PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:maintainedBy ?uri. onto:countySeat ?uri} ",lcquad From what countries have people participated in the Excelsior Stakes?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:race . ?x onto:birthPlace ?uri . }",lcquad What are the largest cities in each of the destinations of TranStar Airlines?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:TranStar_Airlines onto:destination ?x . ?x onto:largestCity ?uri . }",lcquad Which writer is famous for works written by Neil Gaiman?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:writers res:Neil_Gaiman . ?uri onto:notableWork ?x . }",lcquad Who all have been a president of educational institutes in Paud?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:location . ?x prop:president ?uri . ?x rdf:type onto:EducationalInstitution}",lcquad Who is the developer of the software which serves the platform for King's Quest VI?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:computingPlatform ?x . ?x prop:developer ?uri . ?x rdf:type onto:Software}",lcquad Who was in youth clubs of FC Barcelona and Newell's Old Boys?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { ?uri prop:youthclubs . ?uri prop:youthclubs . }",lcquad For which country did Alexander Lippisch design airplanes?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:designer . ?x prop:nationalOrigin ?uri . ?x rdf:type onto:Aircraft}",lcquad What do the relatives of James Hartness do?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:relation res:James_Hartness . ?x prop:occupation ?uri . }",lcquad Who is the appointer of William Cushing ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:William_Cushing onto:appointer ?uri } ",lcquad Who is the former partner of Chris Knierim ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Chris_Knierim onto:formerPartner ?uri } ",lcquad Who is office holder of constituencies Duboce Triangle and Noe Valley ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri prop:constituency . ?uri prop:constituency . ?uri rdf:type onto:OfficeHolder}",lcquad What is the university attended by the baseball player who's known for Olin Corporation?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:knownFor . ?x prop:education ?uri . ?x rdf:type onto:BaseballPlayer}",lcquad How many different kinds of softwares have been released under the GPL license?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:license . ?x onto:genre ?uri . }",lcquad What is the religion of the relatives of Carmela Soprano ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Carmela_Soprano onto:relative ?x . ?x onto:religion ?uri . }",lcquad "In all the grand prixes where the first team was Scuderia Ferrari, who all were the pole drivers?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:firstTeam . ?x prop:poleDriver ?uri . ?x rdf:type onto:GrandPrix}",lcquad What is the citizenship of Erastus Wiman ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Erastus_Wiman onto:citizenship ?uri } ",lcquad What are some awards given to the french people?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:stateOfOrigin res:French_people . ?x prop:awards ?uri . }",lcquad where are the sister stations of CFRB broadcasted?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:sisterStations res:CFRB . ?x onto:broadcastArea ?uri . }",lcquad "What awards have been once awarded to Ingmar Bergman, and have employed the service of Laemmle Theatres?","PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Ingmar_Bergman prop:awards ?uri. res:Laemmle_Theatres onto:service ?uri} ",lcquad Is the Kia Sportage similar to the Hyundai Lavita?,"PREFIX res: PREFIX onto: ASK WHERE { res:Hyundai_Lavita onto:relatedMeanOfTransportation res:Kia_Sportage }",lcquad Name the district of Robert William Wilcox ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Robert_William_Wilcox prop:district ?uri } ",lcquad What are the video games composed by Hirokazu Tanaka?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:composer . ?uri rdf:type onto:VideoGame}",lcquad What are the academic interest of Philip Novak?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Philip_Novak prop:mainInterests ?uri } ",lcquad Tandem Computers is the subsidiary of which company?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:subsidiary res:Tandem_Computers } ",lcquad Name the mountain range in which the mountain peak of Malatraix belongs?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Malatraix onto:parentMountainPeak ?x . ?x onto:mountainRange ?uri . }",lcquad Who offers the services of OneDrive and Outlook.com?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?uri prop:services res:OneDrive . ?uri prop:services res:Outlook.com . }",lcquad What is the location of the Walter Evans Edge office which is also the place of birth of henry Miller ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Walter_Evans_Edge prop:office ?uri. res:Henry_Miller_Shreve onto:birthPlace ?uri} ",lcquad List down the prime ministers of Peter Thorneycroft ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Peter_Thorneycroft onto:primeMinister ?uri } ",lcquad What is the division of the companies who make Runes of Magic?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:products . ?x onto:division ?uri . ?x rdf:type onto:Company}",lcquad List the birthplace of the medicians who studied in Harvard.,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:institution . ?x onto:birthPlace ?uri . ?x rdf:type onto:Medician}",lcquad What are the movies whose director of photography is Jordan Cronenweth?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:cinematography . ?uri rdf:type onto:Film}",lcquad Which river ends at Thames Estuary and North Sea?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:riverMouth . ?uri onto:riverMouth . ?uri rdf:type onto:River}",lcquad What is the university whose affiliations is Graham Holdings Company?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:affiliations . ?uri rdf:type onto:University}",lcquad What is the division of Serbia national American football team ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Serbia_national_American_football_team onto:division ?uri } ",lcquad How many companies are located in Toronto ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:locationCity . ?uri rdf:type onto:Company}",lcquad From where is Quinn Ojinnaka billed?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Quinn_Ojinnaka prop:billed ?uri } ",lcquad "What are the movies whose editor died in Westwood, Los Angeles?","PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:deathPlace . ?uri onto:editing ?x . }",lcquad What are the software which uses platforms as ARM architecture?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:computingPlatform . ?uri rdf:type onto:Software}",lcquad Which are the comics characters painted by Bruce Timm and created by Paul Dini?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:creator . ?uri prop:creators . ?uri rdf:type onto:ComicsCharacter}",lcquad Where did Jerry Tagge do his elementary schooling?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Jerry_Tagge prop:highSchool ?uri } ",lcquad Who worked at A Goon's Deed in a Weary World and CBS?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:occupation . ?uri onto:occupation . }",lcquad Wo which countries have the members of Ukrainian ministry of internal affairs swore their oath?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:branch . ?x prop:allegiance ?uri . }",lcquad Which rivers start at the Brower's Spring?,"PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:sourceMountain } ",lcquad In which movies directed by Orson Welles has Bernard Herrmann as music composer ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:musicComposer . ?uri prop:director . ?uri rdf:type onto:Film}",lcquad Who is the builder of Presidio Santa Cruz de Terrenate ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Presidio_Santa_Cruz_de_Terrenate onto:builder ?uri } ",lcquad List all the home stadium of the soccer clubs which has one of the home stadium as Nairobi ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:homeStadium . ?x prop:homeStadium ?uri . ?x rdf:type onto:SoccerClub}",lcquad What is the largest city in the country where the San Marcos River originates?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:sourceMountain ?x . ?x onto:largestCity ?uri . ?x rdf:type onto:Country}",lcquad Is David Cameron the prime minister of Nick Clegg?,"PREFIX res: PREFIX onto: ASK WHERE { res:Nick_Clegg onto:primeMinister res:David_Cameron }",lcquad "Which musician was born in Harriman, NY?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:placeOfBirth . ?uri rdf:type onto:MusicalArtist}",lcquad In which areas is the radio station broadcasted which is a sister station of WXME ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:sisterStations ?x . ?x prop:area ?uri . ?x rdf:type onto:RadioStation}",lcquad What common teams do Ramiro Pea and Bruce Bochy share?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Ramiro_Peña onto:team ?uri. res:Bruce_Bochy onto:team ?uri . }",lcquad In which continent do Air 2000 and Novair International airways operate?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:destinations ?uri. prop:destinations ?uri . ?uri rdf:type onto:Continent}",lcquad How many shows are aired on Comedy Central?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:network . ?uri rdf:type onto:TelevisionShow}",lcquad "List all the settlements which has a part named Seguin,Texas ?","PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:part . ?x onto:part ?uri . ?x rdf:type onto:Settlement}",lcquad Which awards have Ingmar Bergman won?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Ingmar_Bergman prop:awards ?uri } ",lcquad What are the products of the company who published Robot Wars: Metal Mayhem ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:publisher ?x . ?x onto:product ?uri . ?x rdf:type onto:Company}",lcquad In which state is Colemanville Covered Bridge located ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Colemanville_Covered_Bridge onto:state ?uri } ",lcquad Where did the partner of Teriitaria II die?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Teriitaria_II prop:spouse ?x . ?x onto:deathPlace ?uri . }",lcquad Name the licensee of the TV station whose one of the licensee is Incorporation ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:licensee . ?x prop:licensee ?uri . ?x rdf:type onto:TelevisionStation}",lcquad What is the company of Ford Theatre ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Ford_Theatre prop:company ?uri } ",lcquad "For all the senators who once studied in Sturm College of Law, give their burial place?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:almaMater . ?x prop:restingplace ?uri . ?x rdf:type onto:Senator}",lcquad Did Jim Kiick do his highschool in New Jersey?,"PREFIX res: PREFIX prop: ASK WHERE { res:Jim_Kiick prop:highSchool res:New_Jersey }",lcquad What are Monrow Carell Jr Children Hospital and Vanderbilt University Medical Center both affiliated with?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:affiliation ?uri. prop:affiliation ?uri . }",lcquad "Name the writer whose one of the notable work is Adventures of Huckleberry Finn and died in Redding, Connecticut?","PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:notableWork . ?uri onto:deathPlace . ?uri rdf:type onto:Writer}",lcquad Which official residence of hugh Scott is also the origin of Long Rifle ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Long_rifle prop:origin ?uri. res:Hugh_Scott onto:residence ?uri} ",lcquad How many politicians are in the US Senate?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:order . ?uri rdf:type onto:OfficeHolder}",lcquad What is the name of the person who has relations with Dionne Warwick and Gary Garland?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:relation . ?uri onto:relation . ?uri rdf:type onto:Person}",lcquad "What is the job of the George Arceneaux, Jr. which is also the office of the Blanche Bruce","PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:occupation ?uri. prop:office ?uri} ",lcquad Which moto of american Classical League is also the academic discipline of Probus ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:motto ?uri. onto:academicDiscipline ?uri} ",lcquad List all the major shrines of the saints which has one of the shrines as Debre Libanos ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:majorShrine . ?x onto:majorShrine ?uri . ?x rdf:type onto:Saint}",lcquad "Name the fictional character whose relatives are Huey, Dewey, and Louie and belongs to Duck family ?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:relatives . ?uri onto:relative . ?uri rdf:type onto:FictionalCharacter}",lcquad What is the ideology of the Union of Cambodian Democrats which is also the ideology of Palang Dharma Party ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Union_of_Cambodian_Democrats onto:ideology ?uri. res:Palang_Dharma_Party onto:ideology ?uri . }",lcquad How many bands are signed up with labels which were founded in Japan?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:foundation . ?uri prop:label ?x . ?uri rdf:type onto:Band}",lcquad How many kings and queens have died in the Arabian Peninsula?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:deathPlace . }",lcquad What is the bloomington viaduct built to cross?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Bloomington_Viaduct prop:crosses ?uri } ",lcquad Which party has come in power at both Balangir and Amaravila in india?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Balangir_district onto:leaderName ?uri. res:Amaravila onto:leaderName ?uri . }",lcquad How many politicians reside in Cape Town?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:residence . ?uri rdf:type onto:OfficeHolder}",lcquad How many games are released for virtual consoles?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:computingPlatform . ?uri rdf:type onto:VideoGame}",lcquad Saores de costa built a bridge over which river?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:builder . ?x onto:crosses ?uri . ?x rdf:type onto:Bridge}",lcquad Is Lieutenant general (United States) the superintendent of United States Air Force Academy?,"PREFIX prop: ASK WHERE { prop:superintendent }",lcquad In what movies did Akira Ifukube compose the music?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:music . ?uri rdf:type onto:Film}",lcquad Is the national endowment of arts under the jurisdiction of federal government of US?,"PREFIX res: PREFIX prop: ASK WHERE { res:National_Endowment_for_the_Arts prop:jurisdiction res:Federal_government_of_the_United_States }",lcquad Who is the operator of Rainbow Warrior (1955) ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:operator ?uri } ",lcquad List the guest of the show The Other Side (The Outer Limits)?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:guests ?uri } ",lcquad What is the common location of tomb of the Elizabeth of Rhuddlan and Isabel of Cambridge?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:placeOfBurial ?uri. prop:placeOfBurial ?uri . }",lcquad To which state eorge M. Chilcott belong ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:George_M._Chilcott prop:state ?uri } ",lcquad What are some products of the company whose parent is BBC?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:parent . ?x prop:products ?uri . ?x rdf:type onto:Company}",lcquad Which producer of the Eristoff is also the distributor of Bombay Sapphire?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Eristoff prop:manufacturer ?uri. res:Bombay_Sapphire prop:distributor ?uri} ",lcquad How many islands belong to archipelagos located in the pacific?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:location . ?uri prop:archipelago ?x . ?uri rdf:type onto:Island}",lcquad Who was the chairman of Fort Lauderdale Strikers and also 2015 Fort Lauderdale Strikers season ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:2015_Fort_Lauderdale_Strikers_season onto:chairman ?uri. res:Fort_Lauderdale_Strikers onto:chairman ?uri . }",lcquad What are some video games whose music is composed by an employ of the company Creatures?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:occupation . ?uri prop:composer ?x . ?uri rdf:type onto:VideoGame}",lcquad Who were in the youth clubs that were in season of 2015 Argentine Primera Division?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:season res:2015_Argentine_Primera_División . ?uri prop:youthclubs ?x . }",lcquad How many units follow the US Navy Department's command structure?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:commandStructure . ?uri rdf:type onto:MilitaryUnit}",lcquad Name the home Stadium of Kenya national under-20 football team ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:homeStadium ?uri } ",lcquad Which city do both Arthur Ross and Edward Niesen come from?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Arthur_A._Ross prop:placeOfBirth ?uri. res:Edward_Niesen onto:birthPlace ?uri} ",lcquad Which associat of Martin Pugh is also married to Alana Stewert ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Martin_Pugh prop:associatedActs ?uri. res:Alana_Stewart onto:spouse ?uri} ",lcquad How many people played for Newell's Old Boys?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:youthclubs . }",lcquad What is the common school of Chris Marve and Neria Douglass?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Chris_Marve onto:school ?uri. res:Neria_Douglass onto:almaMater ?uri} ",lcquad Give me the count of artist in the company whose Artist is Jean- François Coté ?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:artist . ?x prop:artist ?uri }",lcquad How many bands have members currently playing the Fender Stratocaster?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:notableInstruments . ?uri prop:currentMembers ?x . ?uri rdf:type onto:Band}",lcquad Who has built the stadiums which were rented by the Central american games of 2013?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:tenant . ?x onto:builder ?uri . ?x rdf:type onto:Stadium}",lcquad "What has been founded in the state that Denton county, Texas is a part of? ","PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:part . ?uri onto:foundationPlace ?x . }",lcquad Which politicians son is buried in Metairie Cementery?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:placeofburial . ?uri onto:child ?x . ?uri rdf:type onto:OfficeHolder}",lcquad Titus software publishes which genre of games?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:publisher . ?x onto:genre ?uri . ?x rdf:type onto:VideoGame}",lcquad Which fictional character's relative is Clan McDuck and belongs to American Pekin duck ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:relatives . ?uri onto:species . ?uri rdf:type onto:FictionalCharacter}",lcquad Which military people served their allegiance to Union (American Civil War)?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:allegiance . ?uri rdf:type onto:MilitaryPerson}",lcquad "Which border country of the Korean Peninsula is also the country of Krusty, a musical group ?","PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:border ?uri. onto:country ?uri} ",lcquad Mac OS is the operating system of how many things?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:operatingSystem . }",lcquad What are the television shows whose Composer is Stewart Copeland?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:composer . ?uri rdf:type onto:TelevisionShow}",lcquad List the border of the admin region which shares border with North Korea ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:border . ?x onto:border ?uri . ?x rdf:type onto:AdministrativeRegion}",lcquad What is the draft team of the Antoine Bibeau and also has player named Nathan Dempsey ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Antoine_Bibeau prop:draftTeam ?uri. res:Nathan_Dempsey prop:playedFor ?uri} ",lcquad "Through which important cities the does the river originating from the Duwamish, flow?","PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:source . ?x onto:city ?uri . ?x rdf:type onto:River}",lcquad Name the TV show whose producer is Stephen E. Ambrose and company is HBO ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:producer . ?uri onto:company . ?uri rdf:type onto:TelevisionShow}",lcquad List the broadcast area of the TV stations which also serves in Agalga ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:broadcastArea res:Agaléga . ?x prop:broadcastArea ?uri . }",lcquad Into what military organizations is the United States Department of Defense divided?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:commandStructure res:United_States_Department_of_Defense } ",lcquad Whose deputy is Neil Brown?,"PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:deputy . }",lcquad In which broadcast area does the sister station of KFFG air ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:KFFG onto:sisterStation ?x . ?x onto:broadcastNetwork ?uri . }",lcquad Was Neil Armstrong on the Gemini 8 mission?,"PREFIX res: PREFIX prop: ASK WHERE { res:Neil_Armstrong prop:mission res:Gemini_8 }",lcquad which astronaut's mission was Apollo 11?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:mission res:Apollo_11 } ",lcquad What is debut team of the baseball players who died in Los Angeles?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:deathPlace . ?x prop:debutteam ?uri . ?x rdf:type onto:BaseballPlayer}",lcquad Which company owns instagram?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:subsidiary res:Instagram } ",lcquad List all the former partners of the figure skater whose one of the former partner was Andrea poapst ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:formerPartner . ?x onto:formerPartner ?uri . ?x rdf:type onto:FigureSkater}",lcquad List all the operators of the train who operates in Budapest ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:operator . ?x onto:operator ?uri . ?x rdf:type onto:Train}",lcquad What are the awards won by the producer of Puss in Boots (film)?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:producer ?x . ?x onto:award ?uri . }",lcquad Which president had lieutenants whose governor was Bill Clinton?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:governor . ?uri onto:lieutenant ?x . ?uri rdf:type onto:President}",lcquad Name the species of Liger ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Liger onto:species ?uri } ",lcquad In which state is the alma matter of Jan Paulsen located ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Jan_Paulsen onto:almaMater ?x . ?x prop:state ?uri . }",lcquad How many politicians are in the militia?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:branch . }",lcquad In which wars were people from the Saudi Arabian ministry of defense involved?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:office . ?x prop:battles ?uri . ?x rdf:type onto:Person}",lcquad Who were the first drivers in Grand Prixes where the first team was Scuderia Ferrari?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:firstTeam . ?x onto:firstDriver ?uri . ?x rdf:type onto:GrandPrix}",lcquad How many things do bridges designed by the UEM group go over?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:designer . ?x prop:crosses ?uri . }",lcquad Under which US president was a politician in opposition of John G Schmitz?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:opponent . ?x onto:incumbent ?uri . ?x rdf:type onto:Politician}",lcquad Whose theme music is composed by the band one of whose member is Les Claypool?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:bandMember res:Les_Claypool . ?uri prop:themeMusicComposer ?x . }",lcquad Who has recorded their singles in London?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:recordedIn . ?x onto:writer ?uri . ?x rdf:type onto:Single}",lcquad Who are the associated musical artist of the artists of band Shorty Rogers?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:associatedBand res:Shorty_Rogers . ?x onto:associatedMusicalArtist ?uri . }",lcquad Who were the american football players who played for Dallas Cowboys?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:team . ?uri rdf:type onto:AmericanFootballPlayer}",lcquad Politicians born in Bangalore are now in which parties?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:homeTown res:Bangalore . ?x onto:party ?uri . }",lcquad "What is the debut team of the baseball player who was born in Williamsburg, Kansas ?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:birthPlace . ?x prop:debutteam ?uri . ?x rdf:type onto:BaseballPlayer}",lcquad Name the composer of motorpsycho Nitemare ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Motorpsycho_Nitemare prop:composer ?uri } ",lcquad Is James Hetfield a band member of Metallica?,"PREFIX res: PREFIX onto: ASK WHERE { res:Metallica onto:bandMember res:James_Hetfield . }",lcquad Does the Vadodara Railway station lie at the end of the Mathura Vadodara route?,"PREFIX res: PREFIX onto: ASK WHERE { res:Mathura–Vadodara_Section onto:routeEnd res:Vadodara_Junction_railway_station }",lcquad Stan Van Gundy serves as a head coach and president for which basketball team?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:president res:Stan_Van_Gundy } ",lcquad Which appliance's CPU is Cell (microprocessor) and predecessor is PlayStation 2?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:cpu . ?uri onto:predecessor . ?uri rdf:type onto:InformationAppliance}",lcquad People who debuted from Houston Astros have played in which clubs?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:debutTeam . ?x onto:team ?uri . ?x rdf:type onto:Person}",lcquad Radios on what topics can be tuned in to in Washington DC?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:broadcastArea . ?x onto:programmeFormat ?uri . ?x rdf:type onto:RadioStation}",lcquad Give me some shows related to the ones created by Russell Davies,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:creator . ?uri onto:related ?x . ?uri rdf:type onto:TelevisionShow}",lcquad What provides the services of Nintendo eShop and Nintendo Network?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?uri prop:services res:Nintendo_eShop . ?uri prop:services res:Nintendo_Network . }",lcquad What is the territory of the conflict whose commander is Feng Zicai?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:commander . ?x onto:territory ?uri . ?x rdf:type onto:MilitaryConflict}",lcquad Name the person who was educated at Harvard-Westlake and won the Screen Actor Guild Life Achievement Award ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:almaMater . ?uri onto:award . ?uri rdf:type onto:Person}",lcquad Which is the common nation of Louisa Hill and American Football Wellington from?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Louisa_Hill onto:country ?uri. res:American_Football_Wellington onto:country ?uri . }",lcquad Which club of Michael Springer is also the parent organization of Syracuse University press ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Michael_Springer prop:team ?uri. res:Syracuse_University_Press prop:parent ?uri} ",lcquad Which company created BASIC and Language Integrated Query ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Microsoft_BASIC onto:designer ?uri. res:Language_Integrated_Query onto:designer ?uri . }",lcquad Hugh Hefner is editor of which magazine?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:editor . ?uri rdf:type onto:Magazine}",lcquad Who works at the American Magazine and New York Post?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:employer res:The_American_Magazine . ?uri onto:employer res:New_York_Post . }",lcquad Whihc successor of McDonnell Douglas was built bu Delta 3 ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Delta_III onto:manufacturer ?uri. res:McDonnell_Douglas prop:successor ?uri} ",lcquad Which countries share a similar sociocultural and ethnic heritage of that of Native Indonesians?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Native_Indonesians prop:region ?uri } ",lcquad "What is the residence of the person, who starred in Men Will Be Men ?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:starring ?x . ?x prop:residence ?uri . ?x rdf:type onto:Person}",lcquad What people are known to work for Johnny Cash?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:associatedActs . ?uri rdf:type onto:Person}",lcquad "In which state is Goose Lake Valle, which is also part of Lava River Cave ?","PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Goose_Lake_Valley onto:state ?uri. res:Lava_River_Cave onto:location ?uri} ",lcquad Where did some of the matches take place where Columbus Crew SC played?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:team . ?x onto:location ?uri . ?x rdf:type onto:FootballMatch}",lcquad How many awards have been given to Italians?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:birthPlace . ?x prop:awards ?uri . }",lcquad Count the number of cities around the American Mediterranean Sea?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { prop:cities ?uri . ?uri rdf:type onto:City}",lcquad List the first drivers of Grand Prixes where Mika Hakkinen was a pole driver.,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:poleDriver . ?x onto:firstDriver ?uri . ?x rdf:type onto:GrandPrix}",lcquad How many movies have their music signed up with Sony Music Entertainment.,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:recordLabel . ?uri onto:musicComposer ?x . ?uri rdf:type onto:Film}",lcquad What is the nationality of the David King-Wood and John Steed ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:nationality ?uri. prop:nationality ?uri . }",lcquad What are the television shows whose network is BBC HD?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:network . ?uri rdf:type onto:TelevisionShow}",lcquad "To which party does the politician belong, who was born in Nandurbar?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:placeOfBirth . ?x onto:party ?uri . ?x rdf:type onto:Politician}",lcquad Name the people who were in a youth club managed by Luis Enrique ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:manager . ?uri prop:youthclubs ?x . }",lcquad What is the local authority of Liverpool Institute High School for Boys ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Liverpool_Institute_High_School_for_Boys onto:localAuthority ?uri } ",lcquad What is the destinations of the airline whose headquarters is in Manchester?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:headquarters . ?x prop:destinations ?uri . ?x rdf:type onto:Airline}",lcquad who married crystal harris?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:spouse res:Crystal_Harris . }",lcquad Which job of Irving Chernev is the non-fiction subject of the Thud ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:occupation ?uri. onto:nonFictionSubject ?uri} ",lcquad Who gave the voice to the characters sculpted by Clamp?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:creator . ?x onto:voice ?uri . ?x rdf:type onto:FictionalCharacter}",lcquad Where are the tombs of kings and queens who have died in England?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:placeOfDeath . ?x prop:placeOfBurial ?uri . ?x rdf:type onto:Royalty}",lcquad Is Lloyd Nosler the editor of The Temptress?,"PREFIX res: PREFIX onto: ASK WHERE { res:The_Temptress onto:editing res:Lloyd_Nosler }",lcquad Who are the people whose alumna is a part of the National Collegiate Athletic Association?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:athletics res:National_Collegiate_Athletic_Association . ?uri prop:education ?x . }",lcquad On what subject does WTJC-LP air?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:format ?uri } ",lcquad Name the television show whose voice is given by April Stewart and it's distributor is Broadcast syndication?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:voices . ?uri onto:distributor . ?uri rdf:type onto:TelevisionShow}",lcquad "In which city is the building, whose part is the Martin AN/FSG1 anti aircraft system?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:part . ?x prop:district ?uri . ?x rdf:type onto:Building}",lcquad Who wrote A house not meant to stand and Akale?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:A_House_Not_Meant_to_Stand prop:writer ?uri. res:Akale onto:writer ?uri} ",lcquad Who managed England national under-20 football team and Middlesbrough F.C.?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:managerclubs . ?uri onto:managerClub . }",lcquad Who developed the software which is used as operating system of Magic Trackpad ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:operatingSystem ?x . ?x prop:developer ?uri . ?x rdf:type onto:Software}",lcquad Was the USS Tillamook built in Seattle?,"PREFIX prop: ASK WHERE { prop:shipBuilder }",lcquad Who produced the TV shows for Fremantle Media?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:company . ?x onto:producer ?uri . ?x rdf:type onto:TelevisionShow}",lcquad What is the home stadium of the soccer club seasons whose chairman is Merritt Paulson?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:chairman . ?x onto:homeStadium ?uri . ?x rdf:type onto:SoccerClubSeason}",lcquad In which state is Dorchester Bay (Boston Harbor) ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:state ?uri } ",lcquad Name the veneration of the monarch who is the predecessor of Solomon?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:predecessor ?x . ?x prop:veneratedIn ?uri . ?x rdf:type onto:Monarch}",lcquad Who was the director of photography of Mickey's Mellerdrammer and the animator of Tommy Tucker's Tooth?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:cinematography ?uri. prop:animator ?uri} ",lcquad Who is the builder of Estadio Nacional de Costa Rica and also location of Xianren Cave ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:builder ?uri. onto:country ?uri} ",lcquad Which distributer of Glover (video game) is also the publisher of the Super Mario Adventures ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:distributor ?uri. prop:publisher ?uri} ",lcquad How many movies did Michael Deeley produce?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:producer . ?uri rdf:type onto:Film}",lcquad Is Steve Nash the chairman of Vancouver Whitecaps FC?,"PREFIX res: PREFIX prop: ASK WHERE { res:Vancouver_Whitecaps_FC prop:chairman res:Steve_Nash }",lcquad Who is a famous relative of Aaround Van Heemstra?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:relative . ?uri rdf:type onto:Person}",lcquad What awards have been given to the anyone who raced in the Lawrence Realization Stakes?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:race res:Lawrence_Realization_Stakes . ?x onto:honours ?uri . }",lcquad How many battles have involved commanders of 1st Free French Division?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { prop:notableCommanders ?x . ?x prop:battles ?uri . }",lcquad How many areas are led by Willem Alexander?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:leader . }",lcquad Name the movie in which Vangelis gave the music and Jordan was the cinematographer ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:music . ?uri onto:cinematography . ?uri rdf:type onto:Film}",lcquad In how many places are the companies founded in Canada operating?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:foundationPlace . ?x prop:locations ?uri . }",lcquad Count the number of movies whose editors were born in UK?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:birthPlace . ?uri prop:editing ?x . ?uri rdf:type onto:Film}",lcquad What is the television show whose cast members are Jeff Conaway and Jason Carter?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:starring . ?uri onto:starring . ?uri rdf:type onto:TelevisionShow}",lcquad Which countries were led by Pietro Parolin?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:leader . ?uri rdf:type onto:Country}",lcquad List the sports played in private universities.,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:type res:Private_university . ?x onto:sport ?uri . }",lcquad What state has a Brideun School for Exception Children and is the birthplace of B J Crombeen?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Brideun_School_for_Exceptional_Children prop:state ?uri. res:B._J._Crombeen onto:birthPlace ?uri . }",lcquad "Who is the performer of album which has the song ""To Where You Are"" ?","PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:To_Where_You_Are onto:album ?x . ?x onto:artist ?uri . }",lcquad How many companies were founded in places where Dallas is the governing body ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:governingBody . ?uri onto:foundationPlace ?x . ?uri rdf:type onto:Company}",lcquad What Orson Welles directed movie has photography director as Gregg Toland ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:cinematography . ?uri prop:director . ?uri rdf:type onto:Film}",lcquad Who founded the city at the end of the Pittsburgh Line route?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Pittsburgh_Line onto:routeEnd ?x . ?x onto:founder ?uri . }",lcquad Name the hubs of the airlines whose headquarters is in the Subang Interchange?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:headquarters . ?x prop:hubs ?uri . ?x rdf:type onto:Airline}",lcquad Name the television show whose network is TNT (TV channel) and Prime Time Entertainment Network?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:network . ?uri onto:network . ?uri rdf:type onto:TelevisionShow}",lcquad List the honorary title given to the spouse of Lillian Disney ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Lillian_Disney prop:spouse ?x . ?x onto:award ?uri . }",lcquad How many games have a publisher based in US?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:location . ?uri onto:publisher ?x . ?uri rdf:type onto:VideoGame}",lcquad "Where does the rail route, which ends at the Moskovsky station, begins?","PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:routeEnd . ?x onto:routeStart ?uri . }",lcquad How many people have played for the NBA?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:league . }",lcquad Name the musician who gave the music in Tonight's the night and is also wedded to Alana Stewart ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:music ?uri. onto:spouse ?uri} ",lcquad What is the nationality of the golf player who won the 2002 Players Championship ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:champion ?x . ?x onto:nationality ?uri . ?x rdf:type onto:GolfPlayer}",lcquad Which builder of Edwin Andrews Air Base isalso place of birth of the Akinoumi Setsuo ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Edwin_Andrews_Air_Base onto:builder ?uri. res:Akinoumi_Setsuo prop:placeOfBirth ?uri} ",lcquad Who penned Emma and Jane Austen in Manhatten?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:writer ?uri. prop:author ?uri . }",lcquad How many labels sign up progressive rock artists?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:genre . ?x onto:recordLabel ?uri . }",lcquad Which continents can be reached by flight companies available on Gatwick Airport?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:targetAirport . ?x prop:destinations ?uri . ?x rdf:type onto:Airline}",lcquad "Where is Benjamin Franklin Terry buried, and US Route 59 has a junction?","PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Benjamin_Franklin_Terry prop:placeofburial ?uri. res:U.S._Route_59_in_Texas prop:junction ?uri} ",lcquad Do Ctenochaetus Binotatus lie in the cActinopterygii class?,"PREFIX res: PREFIX onto: ASK WHERE { res:Ctenochaetus_binotatus onto:class res:Actinopterygii }",lcquad Who are some authoritative persons on the matter of Megabalanus concinnus?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Megabalanus_concinnus onto:binomialAuthority ?uri } ",lcquad Where the club of Kiki Cutter located?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Kiki_Cutter prop:club ?x . ?x onto:location ?uri . }",lcquad List the awards won by the wife of Ingrid von Rosen.,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Ingrid_von_Rosen prop:spouse ?x . ?x prop:awards ?uri . }",lcquad Which current Michigan Wolverines team member debuted in Chicago Bears ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:debutteam res:Chicago_Bears . ?uri prop:currentteam res:Michigan_Wolverines . }",lcquad List the movie whose music was given by Geoffrey Burgon and distributed by Cinema International Corporation?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:musicComposer . ?uri onto:distributor . ?uri rdf:type onto:Film}",lcquad Which musical artists have collaborated with Waylon Jennings?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:associatedMusicalArtist . ?uri rdf:type onto:MusicalArtist}",lcquad What is the Nickname of the school where Jeff Hornacek studied ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:highschool ?x . ?x prop:nickname ?uri . ?x rdf:type onto:School}",lcquad Where did the people canonized by John Paul II die?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:canonizedBy res:Pope_John_Paul_II . ?x prop:deathPlace ?uri . }",lcquad Who is the owner of Ford Motor Credit comapny which is also the builder of FORD SHO V8 engine ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Ford_Motor_Credit_Company prop:owner ?uri. res:Ford_SHO_V8_engine onto:manufacturer ?uri} ",lcquad Count the different genres of games published by Titus Software,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:publisher . ?x onto:genre ?uri . }",lcquad Who has produced movies that have a James Horner score?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:music . ?x prop:producer ?uri . ?x rdf:type onto:Film}",lcquad Which movie produced by Michael Deeley was distributed by Warner Bros ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:distributor . ?uri prop:producer . ?uri rdf:type onto:Film}",lcquad Name the person whose daughter is Rohan Marley and also another children named Sharon Marley ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:child . ?uri prop:children . ?uri rdf:type onto:Person}",lcquad Which shows are voiced be US citizens?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:stateOfOrigin . ?uri prop:voices ?x . ?uri rdf:type onto:TelevisionShow}",lcquad Name the television show voiced by April Stewart and Eliza Schneider?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri prop:voices . ?uri prop:voices . ?uri rdf:type onto:TelevisionShow}",lcquad "Count the different places where the people died, who were born in England?","PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:placeOfBirth . ?x prop:placeOfDeath ?uri . }",lcquad What are some relatives of Battle of the Bulge veterans?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:battles . ?x onto:relation ?uri . ?x rdf:type onto:MilitaryPerson}",lcquad Who made the Y block engine and the SHO V8 engine?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:manufacturer ?uri. onto:manufacturer ?uri . }",lcquad How many different genres of games are produced by Blizzard?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:developer . ?x prop:genre ?uri . }",lcquad "Which tennis players live in Kenthurst, new south wales?","PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:residence . ?uri rdf:type onto:TennisPlayer}",lcquad In which religions are both Pope Gregory 1 and Edwin of northumbria reverred?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Pope_Gregory_I prop:veneratedIn ?uri. res:Edwin_of_Northumbria prop:veneratedIn ?uri . }",lcquad "How many things are located in Ridgewood, New Jersey?","PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:birthPlace . }",lcquad Name the sea whose inflow is Kemijoki and outflow is Danish straits?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:inflow . ?uri prop:outflow . ?uri rdf:type onto:Sea}",lcquad What award was won by executive producer of Shaun the Sheep?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Shaun_the_Sheep onto:executiveProducer ?x . ?x onto:award ?uri . }",lcquad Was the altazor drawn by Picasso?,"PREFIX res: PREFIX prop: ASK WHERE { res:Altazor prop:illustrator res:Pablo_Picasso }",lcquad What is the operator of SR class 3Sub ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:SR_class_3Sub onto:operator ?uri } ",lcquad Which key person of the Clinton Foundation is also the president of Edward J. Perkins ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Edward_J._Perkins onto:president ?uri. res:Clinton_Foundation prop:keyPeople ?uri} ",lcquad Name the royalty whose daughter was Cleopatra V and was married to Ptolemy XIV of Egypt?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:mother . ?uri onto:spouse . ?uri rdf:type onto:Royalty}",lcquad How many times has Jeff Conaway been casted?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:starring . }",lcquad who are some miss michigan usa?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:title res:Miss_Michigan_USA . }",lcquad "What nicknames do the universities in Norton, Massachusetts have?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:city . ?x prop:nickname ?uri . ?x rdf:type onto:University}",lcquad Which license of the Microsoft Office Picture Manager is also the product of the Apple Productivity Experience Group ,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Microsoft_Office_Picture_Manager onto:license ?uri. res:Apple_Productivity_Experience_Group onto:product ?uri} ",lcquad What is the regional radio sports network associated with?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Regional_Radio_Sports_Network prop:affiliations ?uri } ",lcquad List the destinations of the airlines which also serves Mediterranean Sea ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:destinations . ?x prop:destinations ?uri . ?x rdf:type onto:Airline}",lcquad Which fictional character's portrayer was edited by Roger Barton?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:editing . ?uri onto:portrayer ?x . ?uri rdf:type onto:FictionalCharacter}",lcquad What can be cooked out of things belonging to the order Sapindales?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:order res:Sapindales . ?uri onto:ingredient ?x . }",lcquad What is the birth place of the children of Miguel Garca Granados ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Miguel_García_Granados prop:children ?x . ?x onto:birthPlace ?uri . }",lcquad List the fields of Sylvain Lvi ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Sylvain_Lévi prop:fields ?uri } ",lcquad "List the primeministers of Victor Hope, 2nd Marquess of Linlithgow ?","PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:primeminister ?uri } ",lcquad Where do the airlines garrisoned at Manchester airport fly to?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:headquarter . ?x prop:destinations ?uri . ?x rdf:type onto:Airline}",lcquad What all is owned by a company one of whose division is Paramount Domestic Television?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:division res:Paramount_Domestic_Television . ?uri prop:company ?x . }",lcquad Name the language of I Love How You Love Me ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:I_Love_How_You_Love_Me prop:language ?uri } ",lcquad Count the number of places where alumini of Edinburgh university have died?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:education . ?x onto:deathPlace ?uri . }",lcquad Which label released the movie written by Thomas Meehan?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:writer . ?x prop:label ?uri . ?x rdf:type onto:Film}",lcquad What is the venue of Indy PopCon ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Indy_PopCon prop:venue ?uri } ",lcquad Who are the associate musical artists of Dalma Kovcs ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Dalma_Kovács onto:associatedMusicalArtist ?uri } ",lcquad What is the common religious affiliation of the Wickramabahu Central College (National School) and that of Vesak?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:religiousAffiliation ?uri. onto:type ?uri} ",lcquad Name a person whose sucessor was Adrian A. basora and was educated at Harvard-Westlake School?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:almaMater . ?uri prop:successor . ?uri rdf:type onto:Person}",lcquad Name the other party of Chandra Shekhar ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Chandra_Shekhar onto:otherParty ?uri } ",lcquad How many movies have had a cinematographer who died in US?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:deathPlace . ?uri prop:cinematography ?x . ?uri rdf:type onto:Film}",lcquad Which cities were in the TV Show which came after The Ultimate Fighter: Brazil 2?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:subsequentWork ?x . ?x prop:city ?uri . ?x rdf:type onto:TelevisionShow}",lcquad What actor of Le Cirque is a relative of Maryanne Trump barry?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Le_Cirque:_A_Table_in_Heaven prop:starring ?uri. res:Maryanne_Trump_Barry onto:relation ?uri} ",lcquad Does Stanley Cavell study Shakespeare?,"PREFIX res: PREFIX prop: ASK WHERE { res:Stanley_Cavell prop:mainInterests res:William_Shakespeare }",lcquad Who is the label of The Producers (2005 film) ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:label ?uri } ",lcquad Which nearest city of LoDaisKa Site is also the location of Oskar Blues Brewery ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:LoDaisKa_Site onto:nearestCity ?uri. res:Oskar_Blues_Brewery prop:location ?uri} ",lcquad Count the number of different religions that field marshals have followed?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:militaryRank . ?x onto:religion ?uri . }",lcquad Does Beth Tweddle play for the City of Liverpool gymnast club?,"PREFIX res: PREFIX prop: ASK WHERE { res:Beth_Tweddle prop:club res:City_of_Liverpool_Gymnastics_Club }",lcquad Count the awards given to the recepients of the Becket fund for religious liberty.,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:award . ?x prop:awards ?uri . }",lcquad Which river flows through Central Washington?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Central_Washington onto:river ?uri } ",lcquad List all the narrator of the albums which had Alan Barzman as one of the narrator ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:narrated . ?x prop:narrated ?uri . ?x rdf:type onto:Album}",lcquad People born in Saint-Amand-en-Puisaye are famous for what things ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:birthPlace . ?x prop:knownFor ?uri . }",lcquad "Which founder of European School, karlsruhe is also the jursdiction of Eurpoean Border of Coast guard ?","PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:jurisdiction ?uri. prop:founder ?uri} ",lcquad What cars were built upon the cars which were assembled in Canada?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:assembly . ?x onto:predecessor ?uri . ?x rdf:type onto:Automobile}",lcquad How many religions are followed by the people in the Royal Thai Army?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:militaryBranch . ?x onto:religion ?uri . }",lcquad Which politicians live in a city led by T.S. Thakur?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:leader res:T._S._Thakur . ?uri onto:residence ?x . }",lcquad How many guests have been there on broadway?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { prop:guests ?uri . }",lcquad "List the significant buildings of the arch. whose one of the important work is Government Building, Kiev ?","PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:significantBuilding . ?x onto:significantBuilding ?uri . ?x rdf:type onto:Architect}",lcquad Count everything garrisoned at the pentagon?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:garrison . }",lcquad What common relegion affiliation exists for udit Raj and Wickramabahu Central College ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:religion ?uri. prop:religiousAffiliation ?uri} ",lcquad What is the city of the 2015 MLS All-Star Game and birthplace of the The Okee Dokee Brothers,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:city ?uri. onto:birthPlace ?uri} ",lcquad How many people were opponents of the ones buried in the tower of London?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:restingPlace . ?x onto:opponent ?uri . ?uri rdf:type onto:Person}",lcquad Count all the places where companies located in Ontario operate.,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:locationCity . ?x prop:locations ?uri . }",lcquad "What is the river whose origin is North-Western Province, Zambia?","PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:sourceRegion } ",lcquad How many factions have fought when Egushawa was a commander?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:commander . ?x prop:combatant ?uri . }",lcquad What is the honorary title of the narrator of Everything Will Be OK?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Everything_Will_Be_OK onto:narrator ?x . ?x onto:award ?uri . }",lcquad What is the layout of the automobiles designed by Olivier Boulay?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:designer . ?x onto:layout ?uri . ?x rdf:type onto:Automobile}",lcquad "What people were born in Ridgewood, New Jersey?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:birthPlace . ?uri rdf:type onto:Person}",lcquad Which content license of the MSX BASIC is also the profession of the Laura K. Ipsen ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:MSX_BASIC prop:license ?uri. res:Laura_K._Ipsen onto:occupation ?uri} ",lcquad Which predecessor of the PlayStation 4 is also the developer of Oddworld: Munch's Oddysee?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:predecessor ?uri. onto:developer ?uri} ",lcquad Who is the appointer of Charles Goodell ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Charles_Goodell onto:appointer ?uri } ",lcquad Does the hudson river flow into the lower manhatten?,"PREFIX res: PREFIX onto: ASK WHERE { res:Hudson_River onto:mouthMountain res:Lower_Manhattan }",lcquad Which distributer of Glover is also the stockholde of Seattle Mariners ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:distributor ?uri. onto:owner ?uri} ",lcquad Name the person whose mother name is Cedella Booker and has a son named Sharon Marley?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:parent . ?uri prop:children . ?uri rdf:type onto:Person}",lcquad Name the Chris Marve's school ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Chris_Marve onto:school ?uri } ",lcquad List the websites which the authors of Tornado own ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:author ?x . ?x onto:owner ?uri . }",lcquad What are the movies whose music composer is Akira Ifukube?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:musicComposer . ?uri rdf:type onto:Film}",lcquad Which military personnel belong to the branch of Continental Army?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:militaryBranch res:Continental_Army } ",lcquad Who have rented the stadium operated by Maple Leaf S&E?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:operator . ?x onto:tenant ?uri . ?x rdf:type onto:Stadium}",lcquad Which holy things canonized John of Damascus?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:John_of_Damascus onto:canonizedBy ?uri } ",lcquad Solon Spencer Beman has architected in how many cities?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:architect . ?x prop:locationTown ?uri . ?uri rdf:type onto:City}",lcquad What are the main interests of Timothy Morton?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Timothy_Morton prop:mainInterests ?uri } ",lcquad Name someone known for a project involved in the Occupation of Japan?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:battle res:Occupation_of_Japan . ?uri prop:knownFor ?x . }",lcquad Count all those who previously played for a team which ownes Varsity Stadium ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:field . ?uri onto:formerTeam ?x . }",lcquad Name the sea with Helsinki as one of the shore city and is also an outflow for Danish straits?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:cities . ?uri prop:outflow . ?uri rdf:type onto:Sea}",lcquad Count the awards won by the people who graduated from the National and Kapodistrian University of Athens.,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:almaMater . ?x onto:award ?uri . }",lcquad What awards have been given to the dude who made Shaun the Sheep?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:notableworks . ?x onto:award ?uri . ?x rdf:type onto:Person}",lcquad "Name the office holders whose successor died in Morristown, New Jersey?","PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:deathPlace . ?uri onto:successor ?x . ?uri rdf:type onto:OfficeHolder}",lcquad What are the movies with Daniel Waters as screenwriter?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:screenplay . ?uri rdf:type onto:Film}",lcquad Which awards are presented by the committee located in Stockholm?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:headquarters res:Stockholm . ?uri onto:presenter ?x . }",lcquad What is the common product of the Apple Productivity Experience Group and services of the 21Vianet ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Apple_Productivity_Experience_Group onto:product ?uri. res:21Vianet prop:services ?uri} ",lcquad Who are the tenants of MasterCard Centre?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:MasterCard_Centre prop:tenants ?uri } ",lcquad Count the area of the radio stations whose serves in South Carolina ?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:area . ?x prop:area ?uri }",lcquad How many games are played at universities affiliated with the Association of Southeast Asian Institutions of Higher Learning?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:affiliation . ?x onto:sport ?uri . }",lcquad Which adminstrative region of Lawrence F. Cafero is also the resting place of Samuel Keeler ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Lawrence_F._Cafero onto:region ?uri. res:Samuel_Keeler onto:restingPlace ?uri} ",lcquad Who studied in universities located in suburbs?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:campus res:Suburb . ?uri prop:education ?x . }",lcquad List down the cinematographers of Mickey's Mellerdrammer?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:cinematography ?uri } ",lcquad List the relative of Tim Nanai-Williams ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:relative ?uri } ",lcquad Who are the judges of the television show whose anchor is Josh Groban?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:presenter . ?x prop:judges ?uri . ?x rdf:type onto:TelevisionShow}",lcquad Who starred in Nothing in Common and produced From the Earth to the Moon?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:executiveProducer ?uri. prop:starring ?uri . }",lcquad Wringer (novel) and Maniac Magee is the notable work of which author?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri prop:notableworks . ?uri prop:notableworks . ?uri rdf:type onto:Writer}",lcquad What all are written in the C programming language?,"PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:programmingLanguage } ",lcquad What are the artists that have been in the band Framptons camel?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:associatedActs . ?uri rdf:type onto:Artist}",lcquad Count the number of artists in the Cirque du Soleil discography?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { prop:artist ?uri . }",lcquad By which companies is RENFE Class 333 designed?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:RENFE_Class_333 onto:designer ?uri } ",lcquad Which are the previous broadcast networks of sister channels of WGBC?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:sisterStations ?x . ?x onto:formerBroadcastNetwork ?uri . }",lcquad What are the movies whose director is Orson Welles?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:director . ?uri rdf:type onto:Film}",lcquad What is the religion of character of Janice Soprano from The Soprano television show?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Janice_Soprano onto:religion ?uri } ",lcquad which planet was discovered by Urbain Le Verrier?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:discoverer res:Urbain_Le_Verrier } ",lcquad ?What are the airline hubs of Cascade Airways,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Cascade_Airways prop:hubs ?uri } ",lcquad Where did the editor of Charlie Mensuel die ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Charlie_Mensuel prop:editor ?x . ?x prop:placeOfDeath ?uri . }",lcquad Name the chairman of the soccer club for which Mike Salmon currently plays?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:currentclub ?x . ?x prop:chairman ?uri . ?x rdf:type onto:SoccerClub}",lcquad Which Harris County based company is a subsidiary of Tandem Computers?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:locationCity . ?uri onto:subsidiary . ?uri rdf:type onto:Company}",lcquad What is the common licence of the Frontaccounting and nUbuntu?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Frontaccounting onto:license ?uri. res:NUbuntu onto:license ?uri . }",lcquad "What sport is Eric Schiller known for, and employes Craig Van Tibury?","PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Eric_Schiller onto:knownFor ?uri. res:Craig_Van_Tilbury onto:occupation ?uri} ",lcquad How many rivers are crossed by different Box Girder bridges?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:design . ?x prop:crosses ?uri . ?uri rdf:type onto:River}",lcquad Which Monty Python's movie is distributed by Cinema International Corporation ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:writer . ?uri prop:distributor . ?uri rdf:type onto:Film}",lcquad Was tupac a member of Outlawz?,"PREFIX res: PREFIX prop: ASK WHERE { res:Outlawz prop:pastMembers res:Tupac_Shakur }",lcquad Count the number of members of the organization which have Austria as one of the member ?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:membership . ?x prop:membership ?uri }",lcquad List the other members of the team where Jason Hayne currently plays?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:currentMember . ?x prop:name ?uri . ?x rdf:type onto:OrganisationMember}",lcquad Who is married to Susan Weber Soros?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:spouse res:Susan_Weber_Soros . }",lcquad list the producer of the movies in which Rosemarie DeWitt in the star cast?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:starring . ?x prop:producer ?uri . ?x rdf:type onto:Film}",lcquad "Which political party of Arunachal Pradesh Legislative Assembly election, 2014 was the leader of Rishikesh ?","PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:party ?uri. onto:leaderName ?uri} ",lcquad How many groups have fought in wars where Richard Taylor fought too?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { prop:battles ?x . ?x prop:combatant ?uri . ?x rdf:type onto:MilitaryConflict}",lcquad Is Another Lonely Night in New York by the musical band Robin Gibb?,"PREFIX res: PREFIX onto: ASK WHERE { res:Another_Lonely_Night_in_New_York onto:musicalBand res:Robin_Gibb }",lcquad To which settlement does Elliot Bay belong to?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Elliott_Bay prop:cities ?uri } ",lcquad What are the albums whose artists have performed with the Tangerine Dream?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:associatedBand . ?uri prop:artist ?x . ?uri rdf:type onto:Album}",lcquad Name the river on Batoka Gorge Hydroelectric Power Station ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Batoka_Gorge_Hydroelectric_Power_Station onto:river ?uri } ",lcquad Did chris lebenzon edit Batman returns?,"PREFIX res: PREFIX prop: ASK WHERE { res:Batman_Returns prop:editing res:Chris_Lebenzon }",lcquad Which people are known for appearing on the television show Dragon's Den?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:knownFor . ?uri rdf:type onto:Person}",lcquad What university campuses are situated in Indiana?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:campus . ?uri rdf:type onto:University}",lcquad Who is the authority of Maine School of Science and Mathematics ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Maine_School_of_Science_and_Mathematics onto:authority ?uri } ",lcquad List some writers which speak one of the Germanic languages.,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:languageFamily . ?uri prop:language ?x . ?uri rdf:type onto:Writer}",lcquad What are some awards given to people who were born in sweden?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:birthPlace . ?x prop:awards ?uri . ?x rdf:type onto:Person}",lcquad ITV employes how many people?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:employer . }",lcquad What band has Joe Hahn and Chester Bennington?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri prop:currentMembers . ?uri prop:currentMembers . ?uri rdf:type onto:Band}",lcquad Is the assembly of tofa ahin ethopia?,"PREFIX res: PREFIX onto: ASK WHERE { res:Tofaş_Şahin onto:assembly res:Ethiopia }",lcquad Was the street dogs of south central narrated by Queen Latifah?,"PREFIX res: PREFIX prop: ASK WHERE { res:Street_Dogs_of_South_Central prop:narrator res:Queen_Latifah }",lcquad Name some schools with a bison as their mascot?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:mascot . ?uri rdf:type onto:School}",lcquad What has Carl Sagan written his books about?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:author . ?x prop:subject ?uri . ?x rdf:type onto:Book}",lcquad In which state does the university which is the alma mater of Mateusz Morawiecki lie?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:almaMater ?x . ?x prop:state ?uri . ?x rdf:type onto:University}",lcquad Who voiced in Peanuts Motion Comics and The Peanuts Movie?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:voice res:Peanuts_Motion_Comics . ?uri onto:voice res:The_Peanuts_Movie . }",lcquad Who is the owner of the bank where Thomas Secunda works ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:occupation ?x . ?x prop:owner ?uri . ?x rdf:type onto:Bank}",lcquad What are some US citizens famous for?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:nationality res:United_States . ?x onto:knownFor ?uri . }",lcquad Who founded a company which served Mid Wales ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:regionServed res:Mid_Wales . ?x onto:foundedBy ?uri . }",lcquad British people have edited which movies?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:birthPlace . ?uri prop:editing ?x . ?uri rdf:type onto:Film}",lcquad Who is the leader of the town where the Myntdu river originates?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:origin ?x . ?x onto:leaderName ?uri . ?x rdf:type onto:Town}",lcquad List the home town of the bands whose label is Alive Naturalsound Records ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:label . ?x onto:hometown ?uri . ?x rdf:type onto:Band}",lcquad Which broad cast area od CFRX is the country of North America Poker Tour ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:CFRX onto:broadcastArea ?uri. res:North_American_Poker_Tour onto:country ?uri} ",lcquad List the subsequent work of the albums whose one of the subsequent work is Planet Waves?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:subsequentWork . ?x onto:subsequentWork ?uri . ?x rdf:type onto:Album}",lcquad Name some basketball players whose team is coached by Fred Hoiberg?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:coach . ?uri prop:team ?x . ?uri rdf:type onto:BasketballPlayer}",lcquad Give me some administrators of bridges over which cars can go?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:carries . ?x onto:maintainedBy ?uri . ?x rdf:type onto:Bridge}",lcquad Who are some US colonels?,"PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:rank . }",lcquad Where did Meg McGuffin graduated ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Meg_McGuffin onto:education ?uri } ",lcquad Was Citizen Kane cinematographed by Gregg Toland?,"PREFIX res: PREFIX prop: ASK WHERE { res:Citizen_Kane prop:cinematography res:Gregg_Toland }",lcquad Count the different alma maters of people employed by the CNN,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:employer . ?x onto:almaMater ?uri . }",lcquad What are the awards won by the person who is an authority of Latania verschaffeltii ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:binomialAuthority ?x . ?x prop:awards ?uri . ?x rdf:type onto:Person}",lcquad Where did Steve Romeo dies ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Steve_Romeo onto:deathPlace ?uri } ",lcquad How many universities are in the National Collegiate Athletic Association?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:athletics . }",lcquad Which company developed the language designed by Lars Bak?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:designer . ?x prop:developer ?uri . ?x rdf:type onto:Language}",lcquad What is the mascot of the army unit whose commander is Peter Cosgrove ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:commander . ?x prop:mascot ?uri . ?x rdf:type onto:MilitaryUnit}",lcquad What is the common citizenship between JSM Hopoer and Robert Valentine ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:citizenship ?uri. onto:country ?uri} ",lcquad Which country gave birth to the Lemberger LD20b and Start+Flug H101 aircrafts?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:nationalOrigin ?uri. prop:nationalOrigin ?uri . }",lcquad Which religion followers are the members of Janata Dal?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:party res:Janata_Dal . ?x onto:religion ?uri . }",lcquad Where are INKAS located which is also the state of origin for Jojo Chintoh ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Jojo_Chintoh onto:stateOfOrigin ?uri. res:INKAS prop:locations ?uri} ",lcquad What is the workplace of Christopher S. Stewart ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Christopher_S._Stewart prop:employer ?uri } ",lcquad What are some things people born in Louisiana are famous for?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:placeOfBirth . ?x prop:knownFor ?uri . }",lcquad Where did Fort Lauderdale Strikers season of 16 take place?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:2016_Fort_Lauderdale_Strikers_season onto:ground ?uri } ",lcquad "Who is the founder of Hohenau, Paraguay?","PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:founder ?uri } ",lcquad Who gave the musical score of 9 to 5 (musical) ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:musicBy ?uri } ",lcquad Who are the spouse of the actors of Wrongfully Accused?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Wrongfully_Accused onto:starring ?x . ?x onto:spouse ?uri . }",lcquad Count all that was built by a company whose leader is Kazuo Hirai?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:keyPeople . ?uri onto:manufacturer ?x . }",lcquad Which producer of Wizards and the aliens is also the notable work of russell T Davies ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Wizards_vs_Aliens onto:producer ?uri. res:Russell_T_Davies onto:notableWork ?uri} ",lcquad Which coach of England national under 21 footbal team is also the coach of Aston Villa F.C season ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:coach ?uri. prop:name ?uri} ",lcquad For which band did Dave Hollister perform in the past?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:pastMembers res:Dave_Hollister } ",lcquad Name the scientist who is known for inventing Anthrax and was a member of Royal Society?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:knownFor . ?uri prop:prizes . ?uri rdf:type onto:Scientist}",lcquad Which show developed by Brain Graden has theme music composed by Primus ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:developer . ?uri prop:themeMusicComposer . ?uri rdf:type onto:TelevisionShow}",lcquad Which builder has made concrete bridges?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:material . ?x onto:builder ?uri . ?x rdf:type onto:Bridge}",lcquad What is the serving railway line of Rostov-Glavny ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:servingRailwayLine ?uri } ",lcquad How many different products are there of the companies located in the US?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:location . ?x onto:product ?uri . }",lcquad What is that river whose source gets water from the Shannon cave?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:inflow . ?uri onto:source ?x . ?uri rdf:type onto:River}",lcquad "How many licensee are there, of the radio stations whose area is Nashville, Tennessee ?","PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:area . ?x prop:licensee ?uri . }",lcquad What is the allegiance of the Albert Kwesi Ocran and state of origin of the Jojo Chintoh ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Albert_Kwesi_Ocran prop:allegiance ?uri. res:Jojo_Chintoh onto:stateOfOrigin ?uri} ",lcquad Who is the headcoach of 2008-09 Marquette Golden Eagles men's basketball team ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:headcoach ?uri } ",lcquad Who is the vice president of Jared Bernstein ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Jared_Bernstein onto:vicePresident ?uri } ",lcquad What is the name of the information appliance by sony whose predecessor is PlayStation 2?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:manufacturer . ?uri prop:predecessor . ?uri rdf:type onto:InformationAppliance}",lcquad Who is the monarch of Bertalan Szemere ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Bertalan_Szemere onto:monarch ?uri } ",lcquad What actor starred in Splash and is married to Rita Wilson?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:starring ?uri. prop:spouse ?uri . }",lcquad What is the place of birth of Lauren Briggs ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Lauren_Briggs prop:placeOfBirth ?uri } ",lcquad What is the river on which the Kariba Dam and Batoka Gorge Hydroelectirc power station exist?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Kariba_Dam onto:river ?uri. res:Batoka_Gorge_Hydroelectric_Power_Station onto:river ?uri . }",lcquad Players from how many teams have participated in the National Hockey League?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:league . ?x onto:team ?uri . ?uri rdf:type onto:SportsTeam}",lcquad What are some causes of death of European Americans?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:ethnicity res:European_Americans . ?x onto:deathCause ?uri . }",lcquad Did Stan Lee create the Iceman comics?,"PREFIX prop: ASK WHERE { prop:creators }",lcquad What is the order of the Omar D. Conger where Robert Sarvis was also the nominee ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Omar_D._Conger prop:order ?uri. res:Robert_Sarvis onto:nominee ?uri} ",lcquad Which hockey team is coached by mike babcock?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:headCoach . ?uri rdf:type onto:HockeyTeam}",lcquad Which battle of Khalid bin Sultan was also the conflict of Steve Buyer ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Khalid_bin_Sultan prop:battles ?uri. res:Steve_Buyer onto:battle ?uri} ",lcquad What are the movies whose editor is Robert Wise?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:editing . ?uri rdf:type onto:Film}",lcquad List the music of Open House (American Horror Story)?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:music ?uri } ",lcquad What are the television shows whose network's sister station is BBC Two?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:sisterStation . ?uri onto:network ?x . ?uri rdf:type onto:TelevisionShow}",lcquad Where did the narrators of the Championship snooker die?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Championship_Snooker prop:narrated ?x . ?x onto:deathPlace ?uri . }",lcquad What are the relatives of the rugby player one of whose relatives is Nick Williams?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:relatives . ?x onto:relative ?uri . ?x rdf:type onto:RugbyPlayer}",lcquad Who is the performer of Bengali in Platforms ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Bengali_in_Platforms onto:artist ?uri } ",lcquad What are some families of mammals in the animal kingdom?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:kingdom . ?x onto:family ?uri . ?x rdf:type onto:Mammal}",lcquad Where is the headquarters of the public transit system which owns the American Boulevard (Metro Transit station) located ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:owningOrganisation ?x . ?x prop:headquarters ?uri . ?x rdf:type onto:PublicTransitSystem}",lcquad How many things are people who died in St. Petersburg known for?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:deathPlace . ?x onto:knownFor ?uri . }",lcquad List down the important people of The Elders ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:keyPeople ?uri } ",lcquad Which TV show's executive producer is Douglas Netter and composed by Stewart Copeland ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:executiveProducer . ?uri prop:composer . ?uri rdf:type onto:TelevisionShow}",lcquad Does nintendo have a division called Nintendo Entertainment Planning & Development?,"PREFIX prop: ASK WHERE { prop:divisions }",lcquad Name the rivers which originate from within Pittsburg?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:cities . ?uri onto:source ?x . ?uri rdf:type onto:River}",lcquad In how many nations is Coconut a common food ingredient?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:ingredient . ?x prop:country ?uri . ?uri rdf:type onto:Country}",lcquad Where do the rivers from greater London flow into?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:sourceRegion . ?x prop:mouthLocation ?uri . ?x rdf:type onto:River}",lcquad Which football teams are in a city where Oakland Athletics were the tenants?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:tenant . ?uri onto:locationCity ?x . ?uri rdf:type onto:AmericanFootballTeam}",lcquad Who all have created new kinds of cookies?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:type res:Cookie . ?x prop:creator ?uri . }",lcquad "What country is Jeffrey Werleman from, which also has the American Mediterranean Sea?","PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Jeffrey_Werleman onto:birthPlace ?uri. res:American_Mediterranean_Sea onto:country ?uri . }",lcquad List the television shows whose network's owning company is Turner Broadcasting System?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:owningCompany . ?uri prop:network ?x . ?uri rdf:type onto:TelevisionShow}",lcquad List the schools of the athlete with Balgowan as one of the school ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:school . ?x prop:school ?uri . ?x rdf:type onto:Athlete}",lcquad Which company was the designer of South African class 11e and RENFE class 333 ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:designer ?uri. onto:designer ?uri . ?uri rdf:type onto:Company}",lcquad "For how many things are people famous, who were born in Nebraska?","PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:birthPlace . ?x onto:knownFor ?uri . }",lcquad List the maintainers of Pandaruan Bridge?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Pandaruan_Bridge onto:maintainedBy ?uri } ",lcquad List the starring of the movies whose label is T-Series ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:label . ?x prop:starring ?uri . ?x rdf:type onto:Film}",lcquad What is the home town of the musical artist who is the current members of Slapstick?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:currentMembers ?x . ?x onto:hometown ?uri . ?x rdf:type onto:MusicalArtist}",lcquad What are some rivers in Zambia which have a dam on them?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:country . ?x onto:river ?uri . ?x rdf:type onto:Dam}",lcquad What is the religion of the successor of Chatumongol Sonakul?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Chatumongol_Sonakul onto:successor ?x . ?x onto:religion ?uri . }",lcquad What is the label of the singles whose group is Outlawz ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:musicalArtist . ?x prop:label ?uri . ?x rdf:type onto:Single}",lcquad What are the television shows whose network's successor is BBC Two?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:successor . ?uri onto:network ?x . ?uri rdf:type onto:TelevisionShow}",lcquad what does the cahora bassa flow into?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Cahora_Bassa prop:inflow ?uri } ",lcquad where did Alfred Tarnowski die?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Alfred_Tarnowski prop:placeOfDeath ?uri } ",lcquad Does Walson Augustin play for the Brothers Union?,"PREFIX res: PREFIX prop: ASK WHERE { res:Walson_Augustin prop:currentclub res:Brothers_Union }",lcquad In which city is Arsenal Cider House ? located ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Arsenal_Cider_House prop:locationCity ?uri } ",lcquad Name the television show distributed by Broadcast syndication and voiced by Eliza Schneider?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:distributor . ?uri prop:voices . ?uri rdf:type onto:TelevisionShow}",lcquad Which operating system provider of LG Optimus Vu is also the employer of Manu Cornet ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:LG_Optimus_Vu onto:operatingSystem ?uri. res:Manu_Cornet prop:employer ?uri} ",lcquad Which country had the county seats as History of Trier and Mediolanum?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:capital . ?uri onto:capital . ?uri rdf:type onto:Country}",lcquad List the American MEditerranean Sea city is also the place of death of Laszlo Bellak ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:American_Mediterranean_Sea prop:cities ?uri. res:Laszlo_Bellak onto:deathPlace ?uri} ",lcquad Name the common record label of I pray on Christmas and Next Thing ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:I_Pray_on_Christmas prop:label ?uri. res:Next_Thing onto:recordLabel ?uri} ",lcquad List down the TV shows whose producer is Stephen E. Ambros and writer is John Orloff ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:producer . ?uri prop:writer . ?uri rdf:type onto:TelevisionShow}",lcquad What is the alma mater of Fikret Orman?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Fikret_Orman prop:almaMater ?uri } ",lcquad Where are the National Academy Museum and School awardwinners buried?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:award res:National_Academy_Museum_and_School . ?x onto:restingPlace ?uri . }",lcquad Where is the person from whose military rank is Airman first class?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:militaryRank . ?x prop:state ?uri . ?x rdf:type onto:Person}",lcquad Who wrote the US steel hour?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:The_United_States_Steel_Hour onto:writer ?uri } ",lcquad Where is Snake Island located ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:locationCountry ?uri } ",lcquad List all the co-founders of the non for profit which have founding member as David pressman ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:foundedBy . ?x onto:foundedBy ?uri . ?x rdf:type onto:Non-ProfitOrganisation}",lcquad What is the home town of the Rolando Gomez is the DOD of the Clyde McNeal ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Rolando_Gomez prop:homeTown ?uri. res:Clyde_McNeal prop:deathDate ?uri} ",lcquad Which soccer players are currently playing for NYC FC?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:currentclub . ?uri rdf:type onto:SoccerPlayer}",lcquad Name a writer who was educated in Saint Petersburg and had a son named Lyubov Dostoyevskaya ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:education . ?uri onto:child . ?uri rdf:type onto:Writer}",lcquad "What shows used to air on the channel which was earlier known as ""The Comedy Central""?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:predecessor . ?uri prop:distributor ?x . ?uri rdf:type onto:TelevisionShow}",lcquad Which company owns Evraz ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Evraz onto:owningCompany ?uri } ",lcquad How many party leaders are there whose parties are headquartered in Berlin?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:headquarter . ?x onto:leader ?uri . ?uri rdf:type onto:Politician}",lcquad Where was the trainer of Java Gold born?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Java_Gold prop:trainer ?x . ?x prop:birthPlace ?uri . }",lcquad Where can I find some buildings of modern architecture?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:architecturalStyle . ?x prop:address ?uri . ?x rdf:type onto:Building}",lcquad Who are the people who played for San Francisco 49ers?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:team res:San_Francisco_49ers . }",lcquad Was Zachary Taylor a commander of the sixth infantry regiment of US?,"PREFIX onto: ASK WHERE { onto:notableCommander }",lcquad Name a famous relative of barry voight,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:relative res:Barry_Voight . }",lcquad With which artist did the musical artist of Groove Thang collaborated ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Groove_Thang onto:musicalArtist ?x . ?x prop:associatedActs ?uri . }",lcquad Where is the office of P Elmo Futrell Jr?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:office ?uri . }",lcquad Name the scientist who was awarded a position in Royal Society and has academic advisor as Franz Brentano?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:awards . ?uri onto:academicAdvisor . ?uri rdf:type onto:Scientist}",lcquad What are the last two studio albums of Moondog Matinee ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Moondog_Matinee onto:subsequentWork ?uri } ",lcquad Where can i find salad based food?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:mainIngredient res:Salad . ?x prop:country ?uri . }",lcquad Does Walson Augustin play as a midfielder?,"PREFIX res: PREFIX onto: ASK WHERE { res:Walson_Augustin onto:position res:Midfielder }",lcquad List places that are associated to cities in the state of Mecklenburg-Vorpommern.,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:federalState . ?uri prop:cities ?x . }",lcquad "Which awards did the writer, who is the creator of Creature Comforts, won ?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:creator ?x . ?x prop:awards ?uri . ?x rdf:type onto:Writer}",lcquad Who all have written songs that were then recorded in the Criteria Studios?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:recordedIn . ?x prop:writer ?uri . ?x rdf:type onto:MusicalWork}",lcquad Count the number of sports played by the universities whihc also plays Volleyball ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:athletics . ?x prop:athletics ?uri }",lcquad Is Sao Paulo the largest city of Brazil?,"PREFIX res: PREFIX prop: ASK WHERE { res:Brazil prop:largestCity res:São_Paulo }",lcquad Which educational institutes have campuses at Iowa and Indiana ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:campus . ?uri onto:campus . ?uri rdf:type onto:EducationalInstitution}",lcquad "In which areas are the radio stations of Monticello, Maine available too?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:city . ?x prop:area ?uri . ?x rdf:type onto:RadioStation}",lcquad Through how many labels has Katy B released her singles?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:writer . ?x onto:recordLabel ?uri . }",lcquad Who appointed William L. Dayton ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:William_L._Dayton onto:appointer ?uri } ",lcquad Is PIAS Recordings the distributing label of Wichita Recordings?,"PREFIX res: PREFIX onto: ASK WHERE { res:Wichita_Recordings onto:distributingLabel res:PIAS_Recordings }",lcquad Was Gerald Gibbs the cinematographer of X the unknown?,"PREFIX onto: ASK WHERE { onto:cinematography }",lcquad Trevor Peacock has narrated in which movie?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:narrator . ?uri rdf:type onto:Film}",lcquad To which educational institutions did Lesli Sanchez go for her studies?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Leslie_Sanchez onto:education ?uri } ",lcquad What are some famous artists who rocked a Les Paul?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:notableInstruments . ?uri rdf:type onto:MusicalArtist}",lcquad Name the sstadium of 2015 Pro Duta FC season ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:2015_Pro_Duta_FC_season prop:stadium ?uri } ",lcquad Name some people who are buried in a place governed by the US Department of the Interior?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:governingBody . ?uri prop:restingplace ?x . ?uri rdf:type onto:Person}",lcquad Pointe d'Aveneyre belongs to which mountain range?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:mountainRange ?uri } ",lcquad Jerry Bock's musicals has been adapted from how many things?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:music . ?x onto:basedOn ?uri . }",lcquad Which country has leaders Karu Jayasuriya and Ranil Wickremesinghe?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:leader . ?uri onto:leader . ?uri rdf:type onto:Country}",lcquad Count the movies edited by Mark Stevens (film editor) and were directed by Joel Schumacher?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:editing . ?uri onto:director } ",lcquad "In which city was the company founded , which owns Grasim Bhiwani Textiles?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:parent ?x . ?x prop:foundation ?uri . ?x rdf:type onto:Company}",lcquad What television shows's distributor is Eurovision?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:distributor . ?uri rdf:type onto:TelevisionShow}",lcquad List the judge of the TV show whose one of the judge is Ludacris ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:judges . ?x prop:judges ?uri . ?x rdf:type onto:TelevisionShow}",lcquad Whose youth clubs used to participate in Argentine Primera Division?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:league res:Argentine_Primera_División . ?uri prop:youthclubs ?x . }",lcquad List some people who were opponents of someone who was died by hanging? ,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:deathCause . ?x onto:opponent ?uri . ?x rdf:type onto:Person}",lcquad Who owns the railway line which goes through the Newark Station?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:line ?x . ?x prop:owner ?uri . }",lcquad Which magazine's editor is married to Crystal Harris?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:spouse . ?uri prop:editor ?x . ?uri rdf:type onto:Magazine}",lcquad Is Compaq a software company?,"PREFIX res: PREFIX onto: ASK WHERE { res:Compaq onto:industry res:Software }",lcquad What is the currency of the country of Kerguelen Islands?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Kerguelen_Islands onto:governmentType ?x . ?x onto:currency ?uri . }",lcquad Which sitcom is broadcasted by FOX and presented by Brian Dunkleman?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:channel . ?uri prop:presenter . ?uri rdf:type onto:TelevisionShow}",lcquad Which sports are played in the alma mater of Amitava Datta?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Amitava_Datta prop:almaMater ?x . ?x onto:sport ?uri . }",lcquad What is the parent company of Edsel?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Edsel prop:parent ?uri } ",lcquad "What are some TV shows whose voice actors are from Truckee, California, US?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:birthPlace . ?uri prop:voices ?x . ?uri rdf:type onto:TelevisionShow}",lcquad "Which person won Screen actors Guild Life Time Achievement award and has resting palce in Palo Alto, California ?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:restingPlace . ?uri onto:award . ?uri rdf:type onto:Person}",lcquad How many shows are made by Playtone?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:company . ?uri rdf:type onto:TelevisionShow}",lcquad List the mascot of the universities which are a part of National Collegiate Athletic Association.,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:athletics . ?x prop:mascot ?uri . ?x rdf:type onto:University}",lcquad What is the route junction of Rhode Island Route 15 ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Rhode_Island_Route_15 onto:routeJunction ?uri } ",lcquad Does the owyhee river flow into oregon?,"PREFIX res: PREFIX onto: ASK WHERE { res:Owyhee_River onto:mouthMountain res:Oregon }",lcquad What is the famous relative of Mrunalini Kunte known for?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:relatives res:Mrunalini_Kunte . ?x prop:knownFor ?uri . }",lcquad From which country is Lawrence Okoye's nationality ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Lawrence_Okoye prop:nationality ?uri } ",lcquad From which party is the politician who was selected in Barasat constituency?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:constituency . ?x onto:party ?uri . ?x rdf:type onto:OfficeHolder}",lcquad Name the associate acts of Martin Pugh?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Martin_Pugh prop:associatedActs ?uri } ",lcquad Who authored the work illustrated by Hiroyuki Takei?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:illustrator res:Hiroyuki_Takei . ?x prop:author ?uri . }",lcquad Who was the president at the time when both Carl Stokes and Joseph Stiglitz held a position in US political framework?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Carl_Stokes prop:president ?uri. res:Joseph_Stiglitz prop:president ?uri . }",lcquad List all the presidents of the school which had atleast one of the president as Queen Noor of Jordan ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:president . ?x onto:president ?uri . ?x rdf:type onto:School}",lcquad Which TV show's opening theme is The Best of Both Worlds (song) and executive producer is Steven Peterman?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:openingTheme . ?uri prop:executiveProducer . ?uri rdf:type onto:TelevisionShow}",lcquad What are the tenants of Mercedes-Benz Superdome?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:tenant ?uri } ",lcquad What is the birth city of trainer of Leallah?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Leallah prop:trainer ?x . ?x prop:birthPlace ?uri . }",lcquad What are some TV shows similar to the one produced by Susie Liggat?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:producer . ?uri onto:related ?x . ?uri rdf:type onto:TelevisionShow}",lcquad "Which television show is based in Massachusetts and has opening theme as ""Where Everybody Knows Your Name"" ?","PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:openingTheme . ?uri onto:location . ?uri rdf:type onto:TelevisionShow}",lcquad Name the software which has been developed by John Fanning ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:developer . ?uri rdf:type onto:Software}",lcquad What is the mouth mountain of Current River (Missouri) ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:mouthMountain ?uri } ",lcquad Who has canonized someone who's a doctor of the church?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:titles res:Doctor_of_the_Church . ?x onto:canonizedBy ?uri . }",lcquad was the first national bank and trust building architectured by Chicago?,"PREFIX onto: ASK WHERE { onto:architecturalStyle }",lcquad Did Tupac write the lyrics of Holler If Ya Hear Me?,"PREFIX prop: ASK WHERE { prop:lyrics }",lcquad "Where is the tombstone of the parliament members who served with James Roberts as the Vice President, US?","PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:vicePresident . ?x onto:restingPlace ?uri . ?x rdf:type onto:MemberOfParliament}",lcquad What is the nationality of the entomologist who is a renowned authority of Smerinthus saliceti ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:binomialAuthority ?x . ?x onto:citizenship ?uri . ?x rdf:type onto:Entomologist}",lcquad "Where is the ground of the soccer club, which has Alan Kusov as a team member ?","PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:team ?x . ?x onto:ground ?uri . ?x rdf:type onto:SoccerClub}",lcquad From where did the son of Gustavo Rojas Pinilla graduate?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Gustavo_Rojas_Pinilla onto:child ?x . ?x prop:almaMater ?uri . }",lcquad What currencies are prevalent in the countries governed by the President of France?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:leaderTitle . ?x onto:currency ?uri . ?x rdf:type onto:Country}",lcquad Which company manufactured Delta III?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Delta_III onto:manufacturer ?uri } ",lcquad In which fields are pupils of Edouard Chavannes working?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:academicAdvisor res:Édouard_Chavannes . ?x prop:fields ?uri . }",lcquad Who is the artist of Time Radio hour ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Theme_Time_Radio_Hour prop:creator ?uri } ",lcquad List the prospect team of Robin Kovacs ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Robin_Kovacs prop:prospectTeam ?uri } ",lcquad "Where did the genres originate, which were in the Harry and the Potters album?","PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { onto:genre ?x . ?x onto:stylisticOrigin ?uri . }",lcquad How many sitcoms are there whose theme music is composed by a New Yorker?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:hometown . ?uri prop:themeMusicComposer ?x . ?uri rdf:type onto:TelevisionShow}",lcquad "Which band made the song Take me There, and has collaborated with Blayse in the past?","PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:musicalBand ?uri. onto:associatedBand ?uri} ",lcquad Who was succeeded by Arthur Gegei as the office ho0lder ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:successor res:Artúr_Görgei . }",lcquad Whose successors are Robert P. Smith and Adrian A. Basora?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?uri prop:successor res:Robert_P._Smith . ?uri prop:successor res:Adrian_A._Basora . }",lcquad Give me a count of movies whose editor is Mark Stevens?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:editing . ?uri rdf:type onto:Film}",lcquad How many other awards have been given to people who have won the Golden Globe?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:award . ?x prop:awards ?uri . ?uri rdf:type onto:Award}",lcquad Name the mountain located in California and has parent peak as Nevado de Toluca ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:locatedInArea . ?uri onto:parentMountainPeak . ?uri rdf:type onto:Mountain}",lcquad Which person works at the American Magazine?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:employer . ?uri rdf:type onto:Person}",lcquad What was developed by someone working in Cockroach Labs?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:employer res:Cockroach_Labs . ?uri prop:author ?x . }",lcquad "The people who did their high school in Palm City, Florida did their college where?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:highschool . ?x onto:college ?uri . ?x rdf:type onto:Person}",lcquad "Where is the radio broadcasted in, whose sister station is CKFM-FM?","PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:sisterStation . ?x onto:broadcastArea ?uri . ?x rdf:type onto:RadioStation}",lcquad List the spanish football player in the NYC FC ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:currentclub res:New_York_City_FC . ?uri prop:nationalteam res:Spain_national_football_team . }",lcquad Does the San Macros River start in Texas?,"PREFIX res: PREFIX onto: ASK WHERE { res:San_Marcos_River onto:sourceMountain res:Texas }",lcquad Which stadium's operator works in the Pepsi Center?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:occupation res:Pepsi_Center . ?uri onto:operator ?x . }",lcquad What is the academic discipline of the Journal of Cerebral Blood Flow & Metabolism and also an ingredient of the Ragout fin ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:academicDiscipline ?uri. onto:ingredient ?uri} ",lcquad Is the national anthem of Mauritius motherland?,"PREFIX onto: ASK WHERE { onto:anthem }",lcquad In what tv shows did Jason Carter act?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:starring . ?uri rdf:type onto:TelevisionShow}",lcquad Where is the mouth of the river whose tributary is Bjelimićka Rijeka ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:rightTributary res:Bjelimićka_Rijeka . ?x onto:mouthCountry ?uri . }",lcquad "Which companies make cars with a front engine, rear wheel drive layout?","PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:automobilePlatform . ?x onto:parentCompany ?uri . ?x rdf:type onto:Automobile}",lcquad What is the mascot of the military unit in which Ronald Wilson served?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Ronald_Wilson prop:branch ?x . ?x prop:mascot ?uri . }",lcquad Did Jerry Siegel create Lois Lane?,"PREFIX res: PREFIX prop: ASK WHERE { res:Lois_Lane prop:creators res:Jerry_Siegel }",lcquad "Where does Truman McGill Hobbs, United States District Judge live?","PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Truman_McGill_Hobbs prop:residence ?uri } ",lcquad Pennsylvania has how many american football teams?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:city . ?uri rdf:type onto:AmericanFootballTeam}",lcquad To which sports team is Aubie the mascot?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:mascot . ?uri rdf:type onto:SportsTeam}",lcquad What is the religious affiliation of Hong Kong Taoist Association Tang Hin Memorial Secondary School ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Hong_Kong_Taoist_Association_Tang_Hin_Memorial_Secondary_School prop:religiousAffiliation ?uri } ",lcquad "What were the major actions taken by the politicians living in Gales Ferry, Connecticut?","PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:residence . ?x onto:battle ?uri . ?x rdf:type onto:Politician}",lcquad What are the software whose operating systems are Mac OS and Microsoft Windows?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:operatingSystem . ?uri onto:operatingSystem . ?uri rdf:type onto:Software}",lcquad What band had Nick Jonas and Kevin Jonas as former members ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri prop:pastMembers . ?uri prop:pastMembers . ?uri rdf:type onto:Band}",lcquad Which royal people are buried in Rome?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:placeOfBurial . ?uri rdf:type onto:Royalty}",lcquad Is Gaza Strip the result of Operation Autumn Clouds?,"PREFIX res: PREFIX prop: ASK WHERE { res:Operation_Autumn_Clouds prop:result res:Gaza_Strip }",lcquad What artist was associated closely with the bare necessities and rock a doodle?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:artist ?uri. onto:starring ?uri} ",lcquad Which parent company of the Cornell University Press is also the alma mater of the Mario Garca Menocal?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Cornell_University_Press onto:parentCompany ?uri. res:Mario_García_Menocal onto:almaMater ?uri} ",lcquad Which religions are followed by people in England?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:residence . ?x prop:religion ?uri . ?x rdf:type onto:Person}",lcquad Where was MacKenzie Miller born?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:MacKenzie_Miller prop:birthPlace ?uri } ",lcquad "Is US Navy garrisoned at Arlington County, Virginia?","PREFIX prop: ASK WHERE { prop:garrison }",lcquad What company involved in the development of Sherlock did Arthur Levinson work for?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:occupation ?uri. onto:developer ?uri} ",lcquad Who was the president during the time the opponent of John Hospers was in the office?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:opponent res:John_Hospers . ?x onto:incumbent ?uri . }",lcquad What is the birthplace of the netball player who is the relative of Rachel Rasmussen ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:relatives ?x . ?x onto:birthPlace ?uri . ?x rdf:type onto:NetballPlayer}",lcquad What is the religion of the academic authority on Ceratosoma tenue?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Ceratosoma_tenue onto:binomialAuthority ?x . ?x prop:veneratedIn ?uri . }",lcquad What is the birth location of the pope who was canonized by Agatha of Sicily?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:canonizedBy ?x . ?x prop:birthPlace ?uri . ?x rdf:type onto:Pope}",lcquad In which cities are there stations of SCOLA?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:broadcastNetwork . ?x prop:city ?uri . ?x rdf:type onto:TelevisionStation}",lcquad Which set of researchers won the Gold Medal of the Royal Astronomical Society award?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:prizes . ?uri rdf:type onto:Scientist}",lcquad List the members of Skull Gang?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Skull_Gang onto:bandMember ?uri } ",lcquad How did Letitia MacTavish Hargrave died ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Letitia_MacTavish_Hargrave onto:deathCause ?uri } ",lcquad Which destination of the Novair International Airway is the source origin of Spaghetti squash ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Novair_International_Airways onto:destination ?uri. res:Spaghetti_squash onto:origin ?uri} ",lcquad Which animator of Tommy Tucker's Tooth is also the film director of Alice's Wonderland ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:director ?uri. prop:animator ?uri} ",lcquad The president served by Haqqi al-Azm died where?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:president ?x . ?x prop:placeOfDeath ?uri . }",lcquad Name the mouth country of Upper Neretva ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Upper_Neretva onto:mouthCountry ?uri } ",lcquad What show has writing of Erik Jendresen and Graham Yost?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri prop:writer . ?uri prop:writer . ?uri rdf:type onto:TelevisionShow}",lcquad Name the movies in which music is give by Laurie Johnson and edited by Anthony Harvey ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:music . ?uri onto:editing . ?uri rdf:type onto:Film}",lcquad Which NASA astronaut was on mission Gemini 8?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:type . ?uri prop:mission . ?uri rdf:type onto:Astronaut}",lcquad Give me the places where people who worked in Church of England died in ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:occupation res:Church_of_England . ?x onto:deathPlace ?uri . }",lcquad Which assembly of the Plymouth Savoy is the route end of the NorthSouth Transport Corridor?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Plymouth_Savoy onto:assembly ?uri. res:North–South_Transport_Corridor onto:routeEnd ?uri} ",lcquad Who is the producer of the song which is the previous work of He's a Liar ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:previousWork ?x . ?x onto:producer ?uri . ?x rdf:type onto:Song}",lcquad Which river's source mountain is Baikal Mountains and it's mouth is Lena Delta Wildlife Reserve?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:sourceMountain . ?uri onto:riverMouth . ?uri rdf:type onto:River}",lcquad How many universities are located in a country led by Olemic Thommessen?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:leaderName . ?uri onto:country ?x . ?uri rdf:type onto:University}",lcquad where are renaissance centers located?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Renaissance_Center prop:address ?uri } ",lcquad Which publisher of Stone Canoe is also the university for which Michael Powell plays for ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:publisher ?uri. onto:team ?uri} ",lcquad What mascot of the Galatasaray Handball Team is also the team name of Cristo Rey Jesuit high School ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:teamName ?uri. prop:mascot ?uri} ",lcquad What is the alma mater of the author of Letter to a Christian Nation ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Letter_to_a_Christian_Nation onto:author ?x . ?x prop:almaMater ?uri . }",lcquad Which television shows have been produced by Erik Bork?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:producer . ?uri rdf:type onto:TelevisionShow}",lcquad What are the gadgets whose manufacturing company is founded by Terry Gou?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:founder . ?uri onto:manufacturer ?x . ?uri rdf:type onto:Device}",lcquad What party are Siddharta Shankar Ray and Kamla Beniwal from?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Siddhartha_Shankar_Ray onto:party ?uri. res:Kamla_Beniwal prop:party ?uri . }",lcquad How many books are there whose author's tomb is in Madrid?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:restingPlace . ?uri onto:author ?x . ?uri rdf:type onto:Book}",lcquad What are the television shows whose writers did notable work for Band of Brothers ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:notableWork . ?uri prop:writer ?x . ?uri rdf:type onto:TelevisionShow}",lcquad To which political party does the writer of In the Bazaars of Hyderabad belong?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:In_the_Bazaars_of_Hyderabad prop:writer ?x . ?x onto:party ?uri . }",lcquad To how many different species does the members of the Animal Kingdom belong?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:kingdom . ?x onto:species ?uri . ?uri rdf:type onto:Species}",lcquad Where do networks affiliated with ETC broadcast?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:affiliation . ?x prop:area ?uri . ?x rdf:type onto:BroadcastNetwork}",lcquad What water bodies are nearest to Helsinki city?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:nearestCity . ?uri rdf:type onto:BodyOfWater}",lcquad Which relative of ralf schumacher is a famous formula one racer?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:relatives . ?uri rdf:type onto:FormulaOneRacer}",lcquad What country did the successor of William Ofori Atta swear his oath to?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:predecessor res:William_Ofori_Atta . ?x prop:allegiance ?uri . }",lcquad "Which countries were the first to play Gumus and Ne daj se, Nina?","PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:firstAired ?uri. prop:firstAired ?uri . }",lcquad Is tahiti in the Society Islands achipelago?,"PREFIX res: PREFIX prop: ASK WHERE { res:Tahiti prop:archipelago res:Society_Islands }",lcquad What is the prize awarded to Bruce Beutler ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Bruce_Beutler onto:award ?uri } ",lcquad "To which books Thomas Egerton, an editor?","PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:publisher . ?uri rdf:type onto:Book}",lcquad Where did Marvo originate?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Mavro onto:origin ?uri } ",lcquad What is the burial place of Iyoas I ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Iyoas_I prop:placeOfBurial ?uri } ",lcquad What sport played in Polytechnic uni of San Juan has also made advocate nasiruddin famous?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Advocate_Nasiruddin onto:knownFor ?uri. res:Polytechnic_University_of_the_Philippines_San_Juan onto:sport ?uri} ",lcquad What river ends in Indian Ocean and also starts somewhere in Zambia?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:riverMouth . ?uri onto:sourceCountry . ?uri rdf:type onto:River}",lcquad Who all have been a commander during the battles of Ohio?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:place . ?x onto:commander ?uri . ?x rdf:type onto:MilitaryConflict}",lcquad What is the appliance build jointly by Sony and Asus?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:manufacturer . ?uri onto:manufacturer . ?uri rdf:type onto:InformationAppliance}",lcquad How many groups speak the English Language?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:languages . ?uri rdf:type onto:EthnicGroup}",lcquad Which source of river Raa is the sovereign state of Adriatic sea ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:source ?uri. onto:country ?uri} ",lcquad What was founded by Congress of Industrial Organizations ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Congress_of_Industrial_Organizations prop:founded ?uri } ",lcquad Which current players once played for Toronto argonauts?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:formerTeam . ?uri rdf:type onto:AmericanFootballPlayer}",lcquad What is the religious affiliation of the Neungin High School which is also the academic interest of Sylvain Lvi ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Neungin_High_School prop:religiousAffiliation ?uri. res:Sylvain_Lévi prop:fields ?uri} ",lcquad Give me a count of movies distributed by Warner Bros?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:distributor . }",lcquad Which magazines were founded by ann Wenner ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:founder . ?uri rdf:type onto:Magazine}",lcquad Where is the venue of the History of Penny Arcade Expo located?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:History_of_Penny_Arcade_Expo prop:venue ?x . ?x prop:address ?uri . }",lcquad Which company is the parent company of Chevrolet Spark ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Chevrolet_Spark prop:parentCompany ?uri } ",lcquad Name the TV show distributed by Broadcast Syndication and is broadcasted by comedy central ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:distributor . ?uri prop:network . ?uri rdf:type onto:TelevisionShow}",lcquad Who was the president at the time when the opponent of Benjamin Spock held office?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:opponent res:Benjamin_Spock . ?x prop:incumbent ?uri . }",lcquad List the shrines of the saint whose one of the shrine is Ponza ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:majorShrine . ?x onto:majorShrine ?uri . ?x rdf:type onto:Saint}",lcquad Where is the headquarters of the company which runs the Metro Blue Line in minnesota?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:operator ?x . ?x prop:headquarters ?uri . ?x rdf:type onto:Organisation}",lcquad How many people are in the continental army?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:militaryBranch . }",lcquad Which religion followers are in the Royal Thai Army?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:militaryBranch res:Royal_Thai_Army . ?x onto:religion ?uri . }",lcquad To which senator did military unit VMF-155 belong?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:militaryUnit . ?uri rdf:type onto:Senator}",lcquad What are the movies whose music is composed by Vangelis?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:musicComposer . ?uri rdf:type onto:Film}",lcquad In which areas can I find wine made of Vitis vinifera grapes?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:species . ?x onto:wineRegion ?uri . ?x rdf:type onto:Grape}",lcquad Which expertise of the Menetries's warbler is the nationality of the Jeyhun Abiyev ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:binomialAuthority ?uri. onto:nationality ?uri} ",lcquad Who is the publisher of The Rolling Stone Album Guide ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:The_Rolling_Stone_Album_Guide onto:publisher ?uri } ",lcquad Which soccer clubs are in the Liga Divisi Utama?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:season . ?x prop:name ?uri . ?x rdf:type onto:SoccerClub}",lcquad How many services does 21Vianet provide?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { prop:services ?uri . }",lcquad What is the Location of the Dofinivka Estuary which is also the birthplace of the Liliya Lobanova ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Dofinivka_Estuary prop:location ?uri. res:Liliya_Lobanova prop:birthplace ?uri} ",lcquad What are the former team of the american football players who played at gridiron football position ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:position . ?x onto:formerTeam ?uri . ?x rdf:type onto:AmericanFootballPlayer}",lcquad What subjects does the subsequent work of The Dragons of Eden deals with ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:The_Dragons_of_Eden onto:subsequentWork ?x . ?x prop:subject ?uri . }",lcquad Name the TV show which has judge as harry Connick and is broadcasted on Fox Broadcasting Company ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:channel . ?uri prop:judges . ?uri rdf:type onto:TelevisionShow}",lcquad What are some rivers over which there is a box girder bridge?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:design res:Box_girder_bridge . ?x prop:crosses ?uri . }",lcquad Whay common comic is written by Karakuri Dji Ultimo and narrated by The Incredible Hulk ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:author ?uri. prop:narrated ?uri} ",lcquad Which university attended by Donn Barber and education institute of Jack McGregor ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Donn_Barber prop:education ?uri. res:Jack_McGregor onto:education ?uri} ",lcquad Where is the lake located into which the Winnipeg River flows?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:outflow res:Winnipeg_River . ?x prop:location ?uri . }",lcquad Which municipality is neighbored by Cologny and Chne-Bougeries?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { ?uri prop:neighboringMunicipalities . ?uri prop:neighboringMunicipalities . }",lcquad Who is the designer of Saleen S5S Raptor ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Saleen_S5S_Raptor prop:designer ?uri . }",lcquad Name the newspaper owned by Schibsted and headquartered at Stockholm?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:owners . ?uri prop:headquarters . ?uri rdf:type onto:Newspaper}",lcquad How many party are there of the office holders whose one of the party is Janata Dal ?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:otherParty . ?x onto:otherParty ?uri }",lcquad Name the first driver of 1999 San Marino Grand Prix ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:1999_San_Marino_Grand_Prix onto:firstDriver ?uri } ",lcquad What is the scientist whose doctoral students are Erich Bagge and erban ieica?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:doctoralStudent res:Erich_Bagge . ?uri onto:doctoralStudent res:Șerban_Țițeica . }",lcquad Who battled under commander Egushawa in a conflict?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:commander . ?x prop:combatant ?uri . ?x rdf:type onto:MilitaryConflict}",lcquad How many things have made different people living in Canada famous?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:nationality . ?x onto:knownFor ?uri . }",lcquad Which is the largest city of Union State ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Union_State prop:largestCity ?uri } ",lcquad Which university has a sports team member called Micheal Powell and also owns Syracuse University Press ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:team ?uri. prop:parent ?uri} ",lcquad Is Greg Weeks the band member of Beyond the Sixth Seal?,"PREFIX res: PREFIX onto: ASK WHERE { res:Beyond_the_Sixth_Seal onto:bandMember res:Greg_Weeks }",lcquad Ryan Seacrest has been the presenter of how many things?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:presenter . }",lcquad Was the Model K designed by Herny Ford?,"PREFIX res: PREFIX onto: ASK WHERE { res:Ford_Model_K onto:designCompany res:Henry_Ford }",lcquad Count the tenants of the stadiums designed by Populous?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:architect . ?x onto:tenant ?uri . }",lcquad Who all have been judges on CTV Network's shows?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:network . ?x prop:judges ?uri . ?x rdf:type onto:TelevisionShow}",lcquad How many have former teams as Indianapolis Colts and Carolina Panthers?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?uri onto:formerTeam . ?uri onto:formerTeam } ",lcquad What are some movies whose distributer's CEO is Ted Hartley?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:keyPeople . ?uri prop:distributor ?x . ?uri rdf:type onto:Film}",lcquad What was the stadium of Panionios G.S.S. in 2014-15 season ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:2014–15_Panionios_G.S.S._season prop:stadium ?uri } ",lcquad Does Mt St. Peter Churt follow the architectural style of art deco?,"PREFIX res: PREFIX prop: ASK WHERE { res:Mount_St._Peter_Church prop:architecture res:Art_Deco }",lcquad Who was the editor of the newspaper owned by the the UK government?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:owners . ?x prop:editor ?uri . ?x rdf:type onto:Newspaper}",lcquad List the Stanley Kubrick's movies which has music by Laurie Johnson ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:director . ?uri prop:music . ?uri rdf:type onto:Film}",lcquad What are the type of Greenup County High School?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Greenup_County_High_School prop:type ?uri } ",lcquad "Where does the road starting from Madison, Wisconsin end?","PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:routeEnd . ?x onto:routeStart ?uri . ?x rdf:type onto:Road}",lcquad To which label did The Producers and I pray on Christmas sign up?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:label ?uri. prop:label ?uri . }",lcquad What is sovereignity of the successor of Mr. George Robert Andrews ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:George_Roberts_Andrews prop:successor ?x . ?x onto:country ?uri . }",lcquad Colin Powell was the commander of which military conflict ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:commander . ?uri rdf:type onto:MilitaryConflict}",lcquad In which common territory did Sino French war and the Tonkin campaign take place?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:territory ?uri. onto:territory ?uri . }",lcquad What is the label of Next Thing ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Next_Thing onto:recordLabel ?uri } ",lcquad Is Lancy a city close to Geneva?,"PREFIX res: PREFIX onto: ASK WHERE { res:Geneva onto:neighboringMunicipality res:Lancy }",lcquad List down the schools whose mascot's order is Even-toed ungulate?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:order . ?uri prop:mascot ?x . }",lcquad Name the company whose products is Boeing F/A-18E/F Super Hornet and key person is Raymond Conner?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:products . ?uri onto:keyPerson . ?uri rdf:type onto:Company}",lcquad List the relatives of the governor of Gabriel Slaughter?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Gabriel_Slaughter onto:governor ?x . ?x onto:relation ?uri . }",lcquad "In all the states which have a Uniontown, where does a Keller's mill covered bridge exist too?","PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:state ?uri. onto:state ?uri . }",lcquad Who manufactured the Delta III and the Space Shuttle?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Delta_III onto:manufacturer ?uri. res:Space_Shuttle onto:manufacturer ?uri . }",lcquad How many corporations were founded in Texas?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:foundationPlace . ?uri rdf:type onto:Company}",lcquad "What is the style of architecture of Shaheed Minar, Kolkata ?","PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:architecturalStyle ?uri } ",lcquad Which developer of Go was also the predecssor of X compnay ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:developer ?uri. prop:predecessor ?uri} ",lcquad List all the houses of United States Congress ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:United_States_Congress prop:houses ?uri } ",lcquad What companies are located in toronto?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:locationCity . ?uri rdf:type onto:Company}",lcquad Where does the network cofounded by Seewoosagur Ramgoolam air its shows?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:founder . ?x prop:broadcastArea ?uri . ?x rdf:type onto:BroadcastNetwork}",lcquad Name the appliance produced by Foxconn and its OS is provided by PlayStation 3 system software ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:manufacturer . ?uri prop:os . ?uri rdf:type onto:InformationAppliance}",lcquad Which teams participate in the football seasons headed by Patricia Amorim?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:chairman . ?x prop:name ?uri . ?x rdf:type onto:SportsSeason}",lcquad Who was the architect of the stadium currently run by Brandenton?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:operator . ?x prop:architect ?uri . ?x rdf:type onto:Stadium}",lcquad who operates the south side elevated railroad?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:South_Side_Elevated_Railroad onto:operatedBy ?uri } ",lcquad Name few companies founded in Texas?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:foundationPlace . ?uri rdf:type onto:Company}",lcquad In which timezone does Khok Kwang lie?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Khok_Kwang onto:timeZone ?uri } ",lcquad Who directed the albums recorded in Anaheim?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:recordedIn . ?x prop:director ?uri . ?x rdf:type onto:Album}",lcquad Who has Saint Joseph and Mary as parents ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:parent . ?uri onto:parent . }",lcquad "How many awards have been received by graduates of University of Melbourne, Faculty of VCA & MCM?","PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:training . ?x onto:award ?uri . }",lcquad Name the common current team of the Avalon biddle and John mcGuinness ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:currentTeam ?uri. prop:currentTeam ?uri . }",lcquad What is the result of the GazaIsrael conflict is also the place of the Qaqun?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Gaza–Israel_conflict prop:result ?uri. res:Qaqun prop:place ?uri} ",lcquad Where are Aureus and Solidus used as currency?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:currency . ?uri onto:currency . }",lcquad To which military division does Clark Daniel Stearns belong?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Clark_Daniel_Stearns onto:militaryBranch ?uri } ",lcquad Who are the opponents of Gervase Helwys?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Gervase_Helwys onto:opponent ?uri } ",lcquad Which planet was discovered by Johann Gottfired and Urbain Le Verrier ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:discoverer . ?uri onto:discoverer . ?uri rdf:type onto:Planet}",lcquad Is Ella Fitzgerald associated with Mickey Roker?,"PREFIX res: PREFIX onto: ASK WHERE { res:Mickey_Roker onto:associatedBand res:Ella_Fitzgerald }",lcquad Who is the office holder for constituencies Castro District and Haight-Ashbury?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri prop:constituency . ?uri prop:constituency . ?uri rdf:type onto:OfficeHolder}",lcquad Which awards have been given to immunologists?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:fields res:Immunology . ?x onto:award ?uri . }",lcquad What are the mountains in the Sequoia National Park?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:locatedInArea . ?uri rdf:type onto:Mountain}",lcquad What is the alma mater of Alvin Bell and Charles Plosser?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Alvin_Bell onto:college ?uri. res:Charles_Plosser prop:almaMater ?uri} ",lcquad Which animator of The Skeleton Dance is also the animator of the Tommy Tucker's Tooth ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:animator ?uri. prop:animator ?uri} ",lcquad From where did Ben Wilson (American football) do his highscool?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:highschool ?uri } ",lcquad Does the lena river flow into the Laptev Sea?,"PREFIX res: PREFIX onto: ASK WHERE { res:Lena_River onto:mouthMountain res:Laptev_Sea }",lcquad Name some books by Spanish speaking authors.,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:language res:Spanish_language . ?uri prop:author ?x . }",lcquad How many famous people are born in Long Island?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:birthPlace . }",lcquad Name some sports played in institutions of Maharashtra?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:state res:Maharashtra . ?x onto:sport ?uri . }",lcquad How many other genere are there of the radio stations whose one of the genre is Classic rock ?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:programmeFormat . ?x onto:programmeFormat ?uri }",lcquad Where did Allama Matthews study?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Allama_Matthews onto:college ?uri } ",lcquad What is the common nationality of Funny Face a comedian and that of Georgina Theodora Wood ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:nationality ?uri. onto:nationality ?uri} ",lcquad What shows are aired on sister channels of BBC Parliaments,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:sisterNames . ?uri onto:network ?x . ?uri rdf:type onto:TelevisionShow}",lcquad How many veterans are buried in the US?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:restingPlace . ?uri rdf:type onto:MilitaryPerson}",lcquad Was Michael Schumacher the Pole driver of 1994 Spanish Grand Prix?,"PREFIX res: PREFIX prop: ASK WHERE { res:1994_Spanish_Grand_Prix prop:poleDriver res:Michael_Schumacher }",lcquad name the Glover's distributer ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:distributor ?uri } ",lcquad Whichi office of Walter Evnas Edge is also the part of Atlantic seaboard fall lines ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Atlantic_Seaboard_fall_line onto:part ?uri. res:Walter_Evans_Edge prop:office ?uri} ",lcquad Does the west thurrock come under Essex county?,"PREFIX res: PREFIX onto: ASK WHERE { res:West_Thurrock onto:ceremonialCounty res:Essex }",lcquad Is Azerbaijan the membership of European Go Federation?,"PREFIX res: PREFIX prop: ASK WHERE { res:European_Go_Federation prop:membership res:Azerbaijan }",lcquad Which team did Michael and Ryan Powell play for?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:team ?uri. onto:team ?uri . }",lcquad What are the television shows whose network is Prime Time Entertainment Network?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:network . ?uri rdf:type onto:TelevisionShow}",lcquad "To which company is the service ""Nintendo eShop"" associated with?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:services . ?uri rdf:type onto:Company}",lcquad Name the famous employee of open society foundations ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:employer res:Open_Society_Foundations . }",lcquad List the movies whose music composer is often associated with Jon and Vangelis.,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:associatedActs . ?uri onto:musicComposer ?x . ?uri rdf:type onto:Film}",lcquad Does Massimo Liverani play for Abarth?,"PREFIX res: PREFIX prop: ASK WHERE { res:Massimo_Liverani prop:currentTeam res:Abarth }",lcquad who is the governer of New Castile?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:order res:Governorate_of_New_Castile } ",lcquad Does MSX BASIC have a license of microsoft?,"PREFIX res: PREFIX prop: ASK WHERE { res:MSX_BASIC prop:license res:Microsoft }",lcquad How many teams have someone playing at the defenceman position?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:position . ?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: PREFIX prop: PREFIX onto: 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: PREFIX onto: 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: PREFIX prop: PREFIX onto: 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: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:themeMusicComposer . ?uri onto:related ?x . ?uri rdf:type onto:TelevisionShow}",lcquad What is the constituency of the people who died in Lampedusa?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:deathPlace . ?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: SELECT DISTINCT ?uri WHERE { ?x onto:subsequentWork . ?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: PREFIX prop: PREFIX onto: 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: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:family . ?uri prop:portrayer . ?uri rdf:type onto:FictionalCharacter}",lcquad Which band was left by Kevin Jonas?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:formerBandMember . ?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: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:silverMedalist ?x . ?x prop:placeOfDeath ?uri . }",lcquad Name the narrators of the album which has been narrated by Alan Thicke ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:narrated res:Alan_Thicke . ?x prop:narrated ?uri . }",lcquad "Whose children died in North Bend, Ohio?","PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:deathPlace . ?uri onto:child ?x . }",lcquad Name the presenter of Shirley Temple's Storybook ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:presenter ?uri } ",lcquad What is the place of birth of the stars of Auto Shankar ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:starring ?x . ?x onto:birthPlace ?uri . }",lcquad Name the television show created by CE Webber and also has actor named Companion?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:starring . ?uri onto:creator . ?uri rdf:type onto:TelevisionShow}",lcquad Give me the characters who last appeared in Star Wars Episode 3,"PREFIX res: PREFIX prop: 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: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:restingPlace . ?x onto:award ?uri . }",lcquad Count the number of tenants whose one of the tenant is Toronto Phantoms ?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:tenant . ?x onto:tenant ?uri }",lcquad In which war did the units garrisoned at Turin fight?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:garrison res:Turin . ?x onto:battle ?uri . }",lcquad Which software uses GTK+ as programming language?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:programmingLanguage . ?uri rdf:type onto:Software}",lcquad Producers of what have died in Mississippi?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:deathPlace res:Mississippi . ?uri onto:producer ?x . }",lcquad Where is the birthplace of Ferrel Harris ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Ferrel_Harris prop:birthplace ?uri } ",lcquad Did Stan Lee write the Daredevils?,"PREFIX res: PREFIX prop: 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: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:president . ?x onto:sport ?uri . ?x rdf:type onto:University}",lcquad How many scientists are known for the Manhatten Project?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:knownFor . ?uri rdf:type onto:Scientist}",lcquad Who designed the stadiums which have been rented by Oakland athletics?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:tenant . ?x prop:architect ?uri . ?x rdf:type onto:Stadium}",lcquad Who were the producers of the tenderfoot?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:producer ?uri } ",lcquad Name the route start of Saint Petersburg Moscow Railway ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Saint_Petersburg_–_Moscow_Railway onto:routeStart ?uri } ",lcquad Name the sport league of Hampton Roads Rhinos ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Hampton_Roads_Rhinos prop:league ?uri } ",lcquad How many Thesaban towns are there?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:settlementType . ?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: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:broadcastArea . ?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: PREFIX prop: 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: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:formerBandMember . ?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: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:predecessor . ?uri onto:partner . ?uri rdf:type onto:OfficeHolder}",lcquad Which newspaper owned by Schibsted is published in Swedish ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:language . ?uri prop:owners . ?uri rdf:type onto:Newspaper}",lcquad Was Yabanc Damat first aired in UAE?,"PREFIX res: PREFIX prop: 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: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:currentMembers . ?x onto:bandMember ?uri . ?uri rdf:type onto:Person}",lcquad "Which river goes through cohoes, NY","PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:river ?uri } ",lcquad List the software which uses Microsoft Windows as their operating system ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:operatingSystem . ?uri rdf:type onto:Software}",lcquad What all has been created by Jerry Siegel?,"PREFIX res: PREFIX prop: 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: PREFIX prop: PREFIX onto: 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: ASK WHERE { onto:academicDiscipline }",lcquad List the country of Tokaj wine region ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Tokaj_wine_region prop:country ?uri } ",lcquad Who all were venerated in Islam?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:veneratedIn . }",lcquad Which country has outflow of Lake Uniamsi and inflows of the Cahora Bassa?,"PREFIX res: PREFIX prop: 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: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:genre . }",lcquad For what is Abhijit Kunte known ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Abhijit_Kunte prop:knownFor ?uri } ",lcquad Who is the author of Karakuri Dji Ultimo ?,"PREFIX res: PREFIX prop: 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: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:sisterNames . ?uri onto:network ?x . ?uri rdf:type onto:TelevisionShow}",lcquad Which spouse of Ptolemy XIV had a mother named Ptolemy XII auletes ?,"PREFIX res: PREFIX onto: 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: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Galatasaray_Handball_Team prop:mascot ?uri } ",lcquad Name some dishes made with flowering plants.,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:division . ?uri onto:ingredient ?x . ?uri rdf:type onto:Food}",lcquad Whose artworks are in Sao Paulo Museum of Art?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:museum . ?x prop:artist ?uri . ?x rdf:type onto:Artwork}",lcquad Which country are the players of the Atletico Petroleos de Luanda from?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:club . ?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: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:occupation . ?x onto:ethnicity ?uri . ?x rdf:type onto:Person}",lcquad Where was Ganefo hosted?,"PREFIX res: PREFIX prop: 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: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:office . ?x onto:religion ?uri . ?x rdf:type onto:Governor}",lcquad Count everyone who was in a youthclub chaired by Josep Maria Bartomeu ?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:chairman . ?uri prop:youthclubs ?x . }",lcquad What is the common branch of military of Edward Joseph Schwartz and John Tower ?,"PREFIX res: PREFIX prop: PREFIX onto: 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: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:artist . ?uri prop:network . ?uri rdf:type onto:TelevisionShow}",lcquad What would be a common border of Siberia and the shimsa plateau?,"PREFIX res: PREFIX onto: 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: ASK WHERE { onto:previousWork }",lcquad "List all the locations of the companies whose are also located in Rancho Cucamonga, California ?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:locationCountry . ?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: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:affiliations . ?uri onto:campus . ?uri rdf:type onto:University}",lcquad Greek writers have won which award?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:ethnicity . ?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: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:league ?x . ?x onto:country ?uri . ?x rdf:type onto:SportsLeague}",lcquad Where are ethnic group located which speak Nebraskan?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { 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: SELECT DISTINCT ?uri WHERE { onto:battle ?uri. onto:battle ?uri . }",lcquad "For which reasons have the ones born in Edinburgh, died?","PREFIX res: PREFIX prop: PREFIX onto: 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: PREFIX prop: PREFIX onto: 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: PREFIX onto: 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: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:ethnicity ?x . ?x onto:religion ?uri . ?x rdf:type onto:EthnicGroup}",lcquad What is the affiliation of Vanderbilt University Medical Center ?,"PREFIX res: PREFIX prop: 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: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:battle . ?uri prop:knownFor ?x . ?uri rdf:type onto:Scientist}",lcquad Did Steve Sampson manage a club of Santa Clara university,"PREFIX res: PREFIX onto: ASK WHERE { res:Steve_Sampson onto:managerClub res:Santa_Clara_University }",lcquad In which municipalities does the NYC housing authority own buildings?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:owningOrganisation . ?x onto:municipality ?uri . ?x rdf:type onto:Building}",lcquad What have been made in the state whose capital is Boston?,"PREFIX res: PREFIX prop: PREFIX onto: 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: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:commander . ?uri onto:place . ?uri rdf:type onto:MilitaryConflict}",lcquad Where do the judge advocate general corps live?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:rank . ?x prop:residence ?uri . }",lcquad List the universities with athletics NCAA Division I Football Bowl Subdivision ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:athletics . ?uri rdf:type onto:University}",lcquad Who is the builder of the Stadium of Costa Rica women's national football team?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { 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: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:predecessor . ?uri prop:company ?x . ?uri rdf:type onto:TelevisionShow}",lcquad What city is the residence of Cheryl Teigs?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Cheryl_Tiegs onto:residence ?uri } ",lcquad Which basketball team's coach is Kurt Rambis?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:coach res:Kurt_Rambis } ",lcquad Who is the successor of Quest Software ?,"PREFIX res: PREFIX prop: 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: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:destinations . ?x onto:destination ?uri . ?x rdf:type onto:Airline}",lcquad Where is the assembly of Caterpillar 797 ?,"PREFIX res: PREFIX onto: 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: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:deputy ?x . ?x onto:residence ?uri . ?x rdf:type onto:Senator}",lcquad What are the organisation founded in Texas and Dallas?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:foundationPlace . ?uri onto:foundationPlace . ?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: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:voices . ?uri prop:themeMusicComposer . ?uri rdf:type onto:TelevisionShow}",lcquad Name the constituency of Jonas Gahr Stre ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Jonas_Gahr_Støre prop:constituency ?uri } ",lcquad Which players have represented Los Angeles Angels of Anaheim?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:team . ?uri rdf:type onto:BaseballPlayer}",lcquad Where did Goran Cengic die?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Goran_Čengić prop:deathPlace ?uri } ",lcquad What is the profession of Claiborne Pell ?,"PREFIX res: PREFIX onto: 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: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:formerTeam ?uri. prop:debutteam ?uri} ",lcquad What are the county seats of the region which operates the Boeing Field?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:operator ?x . ?x onto:countySeat ?uri . ?x rdf:type onto:Region}",lcquad Where is the hometown of A Bartlett Giamatti?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:A._Bartlett_Giamatti onto:hometown ?uri } ",lcquad What are the professions of Frederick Frelinghuysen (general) ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:occupation ?uri } ",lcquad Did Henry Ford design the Model C?,"PREFIX res: PREFIX onto: ASK WHERE { res:Ford_Model_C onto:designCompany res:Henry_Ford }",lcquad Name the species of Southwest African lion ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Southwest_African_lion onto:species ?uri } ",lcquad Count the sports played at universities located in Urban Areas?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:campus . ?x onto:sport ?uri . }",lcquad What is the mountain whose parent mountain peak is Nevado de Toluca?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:parentMountainPeak . ?uri rdf:type onto:Mountain}",lcquad Who was the narrator in the point?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:narrated ?uri } ",lcquad Is Stephanie Rice the flagbearer of Australia at the 2008 Summer Olympics?,"PREFIX res: PREFIX prop: ASK WHERE { res:Australia_at_the_2008_Summer_Olympics prop:flagbearer res:Stephanie_Rice }",lcquad What is the home town of the Band which is the previous work of Sammy Hagar & Friends ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:previousWork ?x . ?x onto:hometown ?uri . ?x rdf:type onto:Band}",lcquad Did Carolyn Heinrich study at the Vanderbilt?,"PREFIX res: PREFIX onto: ASK WHERE { res:Carolyn_Heinrich onto:institution res:Vanderbilt_University }",lcquad In which state do darren brass and belvin perry live?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Darren_Brass onto:residence ?uri. res:Belvin_Perry onto:residence ?uri . }",lcquad List all the school of the rugby player whose one of the school is Michael House ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:school . ?x prop:school ?uri . ?x rdf:type onto:RugbyPlayer}",lcquad What is the official residence of the Christopher Daz Figuero which is also the state of the Cruce a Nado Internacional,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Christopher_Díaz_Figueroa prop:residence ?uri. res:Cruce_a_Nado_Internacional onto:country ?uri} ",lcquad What is the national origin of Focke-Wulf Fw 260 ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:nationalOrigin ?uri } ",lcquad What is manufactured by a company founded by Akio Morita?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:founder res:Akio_Morita . ?uri onto:manufacturer ?x . }",lcquad What is the award presented by Downtown Athletic Club and Yale Club NYCity?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri prop:presenter . ?uri prop:presenter . ?uri rdf:type onto:Award}",lcquad "What is the name of the river whose mouth country is Mozambique and source region is North-Western Province, Zambia?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:mouthCountry . ?uri onto:sourceRegion . ?uri rdf:type onto:River}",lcquad List the races of Fergie Sutherland?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Fergie_Sutherland prop:race ?uri } ",lcquad Games on amiga are typically of what kind?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:computingPlatform . ?x prop:genre ?uri . ?x rdf:type onto:VideoGame}",lcquad Where is the gold coast football club located?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Gold_Coast_Football_Club prop:location ?uri } ",lcquad Which shows are similar to the ones produced by Phil Collinson?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:executiveProducer . ?uri onto:related ?x . ?uri rdf:type onto:TelevisionShow}",lcquad What is the country whose leader name is Grard Larcher?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:leaderName . ?uri rdf:type onto:Country}",lcquad Who was the influencer of Dave Attel who also starred in Adios Amigo?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Dave_Attell onto:influencedBy ?uri. res:Adiós_Amigo onto:starring ?uri . }",lcquad Name the wine regions of Baco noir?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Baco_noir onto:wineRegion ?uri } ",lcquad What is the awards won by the producer of From the Life of the Marionettes ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:From_the_Life_of_the_Marionettes onto:producer ?x . ?x prop:awards ?uri . }",lcquad What is the meaning of the Isa (name) which is also a relegion of Sacred Heart Convent School (Bangkok) ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:meaning ?uri. onto:type ?uri} ",lcquad List the doctoral students of Harry Harlow ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Harry_Harlow prop:doctoralStudents ?uri } ",lcquad List the major shrines of the saints whose one of the shrine is St. Takla Haymanot's Church ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:majorShrine . ?x onto:majorShrine ?uri . ?x rdf:type onto:Saint}",lcquad Which currency is used by the record label of the Way to Your Heart?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:The_Way_to_Your_Heart onto:recordLabel ?x . ?x prop:currency ?uri . }",lcquad In which department does Raymond Baldwin work?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Raymond_E._Baldwin prop:branch ?uri } ",lcquad Where did the fashion designer study who died at the Stony Brook University Hospital?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:deathPlace . ?x prop:education ?uri . ?x rdf:type onto:FashionDesigner}",lcquad Was mother teresa beatified by John Paul the second?,"PREFIX res: PREFIX prop: ASK WHERE { res:Mother_Teresa prop:beatifiedBy res:Pope_John_Paul_II }",lcquad Which company of Ford Theatre is the owning organization of F0ord Kansa City Assemply Plant ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Ford_Kansas_City_Assembly_Plant onto:owningOrganisation ?uri. res:Ford_Theatre prop:company ?uri} ",lcquad What is the religion of the relatives of Ananda Weerasekara?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:relation res:Ananda_Weerasekara . ?x onto:religion ?uri . }",lcquad Which religion did both anupong paochinda and udit raj follow?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Anupong_Paochinda onto:religion ?uri. res:Udit_Raj onto:religion ?uri . }",lcquad Who are all the people who used to figure skate with the current partner of Alexa Scimeca?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Alexa_Scimeca onto:currentPartner ?x . ?x onto:formerPartner ?uri . }",lcquad Isaac Hayes has acted in which movies ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:starring . ?uri rdf:type onto:Film . ?uri rdf:type onto:Film}",lcquad What is the citizenship of the Sarah Kazemy and land of the Cervelle de canut,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Sarah_Kazemy onto:citizenship ?uri. res:Cervelle_de_canut onto:country ?uri} ",lcquad Movie's produced by Michael Deeley has Jordan Cronenweth as director of photography,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:producer . ?uri onto:cinematography . ?uri rdf:type onto:Film}",lcquad What is the company that has products with Windows RT as its OS?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:os res:Windows_RT . ?uri onto:product ?x . }",lcquad How many buildings are located in the jurisdiction of John Tory?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:leaderName . ?uri prop:location ?x . ?uri rdf:type onto:Building}",lcquad Name some software as a service?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:license . ?uri rdf:type onto:Software}",lcquad List down the associated musical artist of the writer of Rain Is a Good Thing ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Rain_Is_a_Good_Thing prop:writer ?x . ?x onto:associatedMusicalArtist ?uri . }",lcquad Who founded the league which was won by Joe McKeehen?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:champion . ?x prop:founded ?uri . ?x rdf:type onto:SportsLeague}",lcquad "How many companies were founded in Menlo Park, California?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:foundation . ?uri rdf:type onto:Company}",lcquad Which European Broadcasting Union's TV show has opening theme as Te Deum ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:company . ?uri onto:openingTheme . ?uri rdf:type onto:TelevisionShow}",lcquad Give me all martial artists trained by Joe Schilling.,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:trainer . ?uri rdf:type onto:MartialArtist}",lcquad Name the musical band of Written in the Stars ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:musicalBand ?uri } ",lcquad Carl Sagan has penned books on how many matters?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:author . ?x prop:subject ?uri . }",lcquad What is the venerated in of Edwin of Northumbria ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Edwin_of_Northumbria prop:veneratedIn ?uri } ",lcquad Is william doyle the chairman of Georgetown university?,"PREFIX prop: ASK WHERE { prop:chairman }",lcquad Where was Picasso's Last Words recorded ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:recorded ?uri } ",lcquad "What is the hub airport of Pawan Hans, and is also the largest city of India?","PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Pawan_Hans onto:hubAirport ?uri. res:India onto:largestCity ?uri} ",lcquad What is the occupation of the people who are born in Iowa?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:birthPlace . ?x onto:occupation ?uri . ?x rdf:type onto:Person}",lcquad Where all does the sister station of virgin radio play?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:sisterStation res:Virgin_Radio . ?x prop:location ?uri . }",lcquad Under whom did Charles Drummond Ellis do his PhD?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:doctoralStudent res:Charles_Drummond_Ellis } ",lcquad How many have company as Paramount Television and network as NBC are there?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:company . ?uri onto:network } ",lcquad Under which president did some politicians live in Kensington?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:residence . ?x onto:president ?uri . ?x rdf:type onto:OfficeHolder}",lcquad Ontario's ice hockey players have been a part of which teams?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:placeOfBirth . ?x onto:team ?uri . ?x rdf:type onto:IceHockeyPlayer}",lcquad What race of Linda Hogan is the state of origin of the Holmes Colbert ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Linda_Hogan prop:ethnicity ?uri. res:Holmes_Colbert onto:stateOfOrigin ?uri} ",lcquad What is the official residence of Fergus McMaster ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Fergus_McMaster onto:residence ?uri } ",lcquad Count the different causes of death of Christians.,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:religion . ?x onto:deathCause ?uri . }",lcquad How many players debuted their careers from San Francisco 49ers?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:debutTeam . ?uri rdf:type onto:Athlete}",lcquad Name the TV shows whose developer is J. Michael Straczynski and executive producer is Douglas Netter?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:developer . ?uri onto:executiveProducer . ?uri rdf:type onto:TelevisionShow}",lcquad What is the company whose one of the key person is Dennis Muilenburg and produces Boeing CH-47 Chinook ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:keyPeople . ?uri onto:product . ?uri rdf:type onto:Company}",lcquad "Which company is located in Harris County, Texas?","PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:locationCity . ?uri rdf:type onto:Company}",lcquad Is north america one of the destinations of airtours airways?,"PREFIX res: PREFIX onto: ASK WHERE { res:Airtours_International_Airways onto:destination res:North_America }",lcquad Which memeber of South Asia SubRegional Economic cooperation is also the nationality of Aishath saffa ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:South_Asia_Subregional_Economic_Cooperation prop:membership ?uri. res:Aishath_Saffa prop:nationality ?uri} ",lcquad Which board memeber of jimmy Wales also owns Latvian Wikipedia ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Jimmy_Wales onto:board ?uri. res:Latvian_Wikipedia onto:owner ?uri} ",lcquad Which baseball team is managed by Bruce Bochy?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:manager . ?uri rdf:type onto:BaseballTeam}",lcquad "What are the musicals based on, whose lyricist was Shelon Harnick?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:lyrics . ?x onto:basedOn ?uri . ?x rdf:type onto:Musical}",lcquad Who has given guest appearances on the TV Episodes whose was music done by Mama Makes 3?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:music . ?x prop:guests ?uri . ?x rdf:type onto:TelevisionEpisode}",lcquad "What series is Mazes of Time from, and is produced by BBC multimedia?","PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:BBC_Multimedia onto:product ?uri. res:Doctor_Who:_The_Mazes_of_Time onto:series ?uri} ",lcquad Is Audie Murphy buried in the Arlington national cementery?,"PREFIX res: PREFIX prop: ASK WHERE { res:Audie_Murphy prop:placeofburial res:Arlington_National_Cemetery }",lcquad What are the universities where athletics is regulated by National Collegiate Athletic Association?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:athletics . ?uri rdf:type onto:University}",lcquad "Which office holder's resting place is Alta Mesa Memorial Park and Henry E. Catto, Jr. as predecessor ?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:restingPlace . ?uri prop:predecessor . ?uri rdf:type onto:OfficeHolder}",lcquad Name the TV show whose network is NBC and is the subsequent work of Fraiser ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:network . ?uri onto:subsequentWork . ?uri rdf:type onto:TelevisionShow}",lcquad How many had their debut team coached by Chip Kelly?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:coach . ?uri onto:debutTeam ?x . }",lcquad Who is the scientist whose academic advisor was Karl Ewald Hasse?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:academicAdvisor . ?uri rdf:type onto:Scientist}",lcquad Malaysian highway authority has designed bridges over what things?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:designer . ?x prop:crosses ?uri . ?x rdf:type onto:Bridge}",lcquad Which labels have published songs written by Harry Connick Jr?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:writer . ?x prop:label ?uri . ?x rdf:type onto:Song}",lcquad List the academic discipline of the journals whose publisher is SAGE Publications.,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:publisher . ?x onto:academicDiscipline ?uri . ?x rdf:type onto:AcademicJournal}",lcquad What is the government type of Kumta ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Kumta prop:governmentType ?uri } ",lcquad whose is famous works are Maniac Magee and Wringer ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { ?uri prop:notableworks . ?uri prop:notableworks . }",lcquad what kind of games can I find for PC 9800?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:computingPlatform . ?x prop:genre ?uri . ?x rdf:type onto:VideoGame}",lcquad "After the death of which political figure, did the Coalition Provisional Authority came into power?","PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:successor res:Coalition_Provisional_Authority . }",lcquad Who owns the radio stations in Alabama?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:city . ?x onto:owner ?uri . ?x rdf:type onto:RadioStation}",lcquad Name the movie whose director is Stanley Kubrick and editor is Anthony Harvey?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:editing . ?uri onto:director . ?uri rdf:type onto:Film}",lcquad what are the nicknames of the people who are in Ekstraliga?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:league . ?x prop:nickname ?uri . }",lcquad List the alma mater of the person who is wedded to Sissela Bok.,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:spouse res:Sissela_Bok . ?x prop:almaMater ?uri . }",lcquad List all the members of the organization whose one of the members is Bangladesh ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:membership . ?x prop:membership ?uri . ?x rdf:type onto:Organisation}",lcquad Which sports are played in schools founded by Fr Almeida?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:founder . ?x onto:sport ?uri . ?x rdf:type onto:School}",lcquad What is the nationality of the economist who is one of the important people in the Foundation for Economic Education?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:keyPerson ?x . ?x onto:nationality ?uri . ?x rdf:type onto:Economist}",lcquad List all discipline of the journals whose one of the discipline is Cerebral blood flow ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:academicDiscipline . ?x onto:academicDiscipline ?uri . ?x rdf:type onto:AcademicJournal}",lcquad Which high school of jerry Tagge is also the nearest city of Tennie laura ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:highSchool ?uri. prop:nearestCity ?uri} ",lcquad In how many different places do Starwood hotels and resorts worldwide operate?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:operator . ?x prop:address ?uri . }",lcquad Which athletics of Jaimatu Muslim Mindano is same as the genre of the Fritz Chess ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Jamiatu_Muslim_Mindanao onto:athletics ?uri. res:Fritz_Chess onto:genre ?uri} ",lcquad How many utopian and dystopian fiction books are there?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:literaryGenre . }",lcquad Which scientist is known for anthrax and has Karl Ewald Hasse as his academic advisor ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:knownFor . ?uri onto:academicAdvisor . ?uri rdf:type onto:Scientist}",lcquad Who appointed the governor under whom Richard Winn works?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:lieutenant . ?x prop:appointer ?uri . ?x rdf:type onto:Governor}",lcquad Where is Vietnam Airlines located ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Vietnam_Airlines onto:location ?uri } ",lcquad "Which location of INKAS is also the location of T.I. Ahmadiyya Senior High School, Kumasi ?","PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:locations ?uri. onto:denomination ?uri} ",lcquad Which TV show's company is PlayTone and is produced by Stephen E. Ambrose ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:company . ?uri prop:producer . ?uri rdf:type onto:TelevisionShow}",lcquad What is the route end of NorthSouth Transport Corridor ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:North–South_Transport_Corridor onto:routeEnd ?uri } ",lcquad List the architect of the buildings whose one of the architect is Philip Webb?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:architect . ?x prop:architect ?uri . ?x rdf:type onto:Building}",lcquad What is the residence of the bronze medalist of Alpine skiing at the women's downhill competition at the 1972 Winter Olympics?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:bronzeMedalist ?x . ?x prop:birthPlace ?uri . }",lcquad Who is the manufacturer of engine of Jeep Forward Control ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Jeep_Forward_Control prop:engine ?x . ?x onto:manufacturer ?uri . }",lcquad Which company founded in New Mexico manufactures Visual Studio ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:foundation . ?uri prop:products . ?uri rdf:type onto:Company}",lcquad "Mazhar Ul Haq High School, Beerwah is affiliated to Islamic Religion","PREFIX prop: ASK WHERE { prop:religiousAffiliation }",lcquad Which government agency is run by Supachai Somcharoen?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:leader . ?x prop:agencyName ?uri . ?x rdf:type onto:GovernmentAgency}",lcquad What is the owner of Ivanpah Solar Power Facility and the original developer of Dart?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:owner ?uri. onto:developer ?uri} ",lcquad Find the total number of ingredient of the recepies whose ingredient is common Mushroom ?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:ingredient . ?x onto:ingredient ?uri }",lcquad List all the tenants of the stadium where the WWF Summer Slam 2004 took place.,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:venue ?x . ?x onto:tenant ?uri . }",lcquad Who were the founders of Sea Gayle Music?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Sea_Gayle_Music prop:founder ?uri } ",lcquad What religion's politicians are in the Malaysian Chinese association?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:party . ?x onto:religion ?uri . ?x rdf:type onto:Politician}",lcquad How many movies are directed by the spouse of Dolores del Ro?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:partner . ?uri prop:director ?x . ?uri rdf:type onto:Film}",lcquad Which US state gave us Brian Deegan and Harold Lyold?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:birthPlace ?uri. prop:birthPlace ?uri . }",lcquad What are some bands out to texarkana?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:origin . ?uri rdf:type onto:Band}",lcquad What is the military branch of John Tower ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:John_Tower onto:militaryBranch ?uri } ",lcquad In which country was GM was firt aired which is also the mouth country of Upper Neretva?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:mouthCountry ?uri. prop:firstAired ?uri} ",lcquad How many information appliance are manufactured by companies located in Taiwan?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:locationCity . ?uri onto:manufacturer ?x . ?uri rdf:type onto:InformationAppliance}",lcquad How many people are in the England national football team?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:nationalteam . }",lcquad With which musical artist is the producer of Spotlight associated ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:producer ?x . ?x prop:associatedActs ?uri . ?x rdf:type onto:MusicalArtist}",lcquad Where was the current champion of Egyptian Open born ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Egyptian_Open onto:champion ?x . ?x onto:birthPlace ?uri . }",lcquad Is Tea the main ingredient of Lahpet?,"PREFIX res: PREFIX prop: ASK WHERE { res:Lahpet prop:mainIngredient res:Tea }",lcquad In what battles did president Park Chung-hee participate?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:commander . ?uri rdf:type onto:MilitaryConflict}",lcquad who is the husband of Rosie Huntington Whiteley?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:partner ?uri } ",lcquad What is the river whose tributary is Zarqa River?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:leftTributary . ?uri rdf:type onto:River}",lcquad Who holds stock in the railway lines ending in Washington DC?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:routeEnd . ?x prop:owner ?uri . ?x rdf:type onto:RailwayLine}",lcquad Which religion does the leader of Church and Wellesley follow?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Church_and_Wellesley prop:leaderName ?x . ?x onto:religion ?uri . }",lcquad Who are the local authority of Buckhurst Hill County High School ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Buckhurst_Hill_County_High_School onto:localAuthority ?uri } ",lcquad Who made the singles on the famous album Aida?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:album . ?x onto:musicalArtist ?uri . ?x rdf:type onto:Single}",lcquad List all the former broadcast network of WMDN ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:WMDN onto:formerBroadcastNetwork ?uri } ",lcquad What company's founder is Jim Harris?,"PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:founder } ",lcquad Which religions are practiced in India?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:hometown res:India . ?x prop:religion ?uri . }",lcquad Which current player of Chicago Bulls was drafted by Los Angeles Clippers ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:team res:Chicago_Bulls . ?uri prop:draftTeam res:Los_Angeles_Clippers . }",lcquad Which New Mexico company provides One Drive as a service ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:foundation . ?uri prop:services . ?uri rdf:type onto:Company}",lcquad What team has players born in Dominican Republic ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:birthPlace res:Dominican_Republic . ?x onto:team ?uri . }",lcquad Name the party of Indira Gandhi ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Indira_Gandhi onto:party ?uri } ",lcquad "Who was the opponent of Robert Carr, 1st Earl of Somerset ?","PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:opponent ?uri } ",lcquad What is the common country of Ganz UV and Balaton wine region ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Ganz_UV onto:operator ?uri. res:Balaton_wine_region onto:location ?uri} ",lcquad What is the mascot of Celal Bayar University ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Celal_Bayar_University prop:mascot ?uri } ",lcquad Whose resting place is William Henry Harrison Tomb State Memorial and has kids named John Scott Harrison?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:restingplace res:William_Henry_Harrison_Tomb_State_Memorial . ?uri onto:child res:John_Scott_Harrison . }",lcquad Why did Letita McTavish Hargrave and Sextus Barbour die?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Letitia_MacTavish_Hargrave onto:deathCause ?uri. res:Sextus_Barbour prop:deathCause ?uri} ",lcquad Name the constituency of Domenico Modugno ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Domenico_Modugno prop:constituency ?uri } ",lcquad Is michelangelo the painter of The Persian Boy?,"PREFIX res: PREFIX onto: ASK WHERE { res:The_Persian_Boy onto:illustrator res:Michelangelo }",lcquad Name the president whose had relatives in Clinton family and lieutenant named Joe Purcell?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:relation . ?uri onto:lieutenant . ?uri rdf:type onto:President}",lcquad What discipline was The Chess Monthly about ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:The_Chess_Monthly prop:discipline ?uri } ",lcquad Which saints were the messengers of Islam?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:veneratedIn . ?uri rdf:type onto:Saint}",lcquad tonle sap flows into which river?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:rightTributary res:Tonlé_Sap } ",lcquad What awards were given to the producer of Chicken Little?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:producer ?x . ?x onto:award ?uri . }",lcquad Was GM first aired in Albania?,"PREFIX prop: ASK WHERE { prop:firstAired }",lcquad What water bodies have primary inflows sa Kemijoki?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:inflow res:Kemijoki } ",lcquad Where was WiZeefa founded ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:WiZeefa prop:foundation ?uri } ",lcquad Which educational institution of Jack Mcgregor is also the alma mater of Donn barber ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Jack_McGregor onto:education ?uri. res:Donn_Barber onto:education ?uri . }",lcquad Where is Richard Stites located ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Richard_Stites onto:birthPlace ?uri } ",lcquad was james watt a mechanical engineer?,"PREFIX res: PREFIX onto: ASK WHERE { res:James_Watt onto:field res:Mechanical_engineering }",lcquad Which drinks have emerged from the US?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:origin . ?x prop:locationCity ?uri . ?x rdf:type onto:Beverage}",lcquad Who composed the lyrics of Holler If Ya Hear Me ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:lyrics ?uri } ",lcquad Is Bluebird the grandsire of Miss Potential?,"PREFIX res: PREFIX onto: ASK WHERE { res:Miss_Potential onto:grandsire res:Bluebird }",lcquad What is the headquarters of the public transit system which is the system of Bottineau LRT ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:system ?x . ?x prop:headquarters ?uri . ?x rdf:type onto:PublicTransitSystem}",lcquad What units are garrisoned in the Pentagon?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:garrison . ?uri rdf:type onto:MilitaryUnit}",lcquad What is the hometown of John Speraw ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:John_Speraw prop:hometown ?uri } ",lcquad Count the journals in the field of Philosophy.,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:discipline . ?uri rdf:type onto:AcademicJournal}",lcquad Which scientist advised a doctoral student named Erban Ieica?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:doctoralStudents . ?uri rdf:type onto:Scientist}",lcquad Where are the Dinamo Krasnodar players born?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:club . ?x prop:placeOfBirth ?uri . ?x rdf:type onto:Athlete}",lcquad "What is the hometown of Nader Guirat, where Josef Johansson was born too?","PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Josef_Johansson prop:birthPlace ?uri. res:Nader_Guirat onto:hometown ?uri . }",lcquad "How many major shrine are there, of the saints whose beatified by Pope Pius XI ?","PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:beatifiedBy . ?x onto:majorShrine ?uri . }",lcquad Name the TV shows owned by divisions of CBS?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:parent . ?uri prop:company ?x . ?uri rdf:type onto:TelevisionShow}",lcquad What is the academic discipline of Journal of Cerebral Blood Flow & Metabolism ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:academicDiscipline ?uri } ",lcquad What is the agency name of the Ministry of Information and Communication Technology (Thailand) and distribution region of the Channel 9 MCOT HD ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:agencyName ?uri. prop:city ?uri} ",lcquad Which gaming console's central processing unit is microprocessor and built by Sony?,"PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:cpu . ?uri onto:manufacturer . }",lcquad List the home stadiums of the teams in the Russian Premier League?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:league res:2011–12_Russian_Premier_League . ?x onto:homeStadium ?uri . }",lcquad Give me an estimate number of races where horses grandsired by the Wild Risk have raced in?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:grandsire . ?x prop:race ?uri . ?uri rdf:type onto:HorseRace}",lcquad Give me the list of people who scaled mountains in Sierra Nevada?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:mountainRange . ?x onto:firstAscentPerson ?uri . }",lcquad What is the name of the movie whose director of photography was Jordan Cronenweth and music composer was Vangelis?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:cinematography . ?uri onto:musicComposer . ?uri rdf:type onto:Film}",lcquad What are the common sports played by jamiatu Muslim mindanao and Polytechnic University of Philippines Taguig ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Jamiatu_Muslim_Mindanao onto:athletics ?uri. res:Polytechnic_University_of_the_Philippines_Taguig onto:sport ?uri} ",lcquad Count the different origins of members of the Vitis Vinifera species.,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:species . ?x onto:origin ?uri . ?uri rdf:type onto:Place}",lcquad What magazine published Allal and is the employer of Peter Bergman?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:publisher ?uri. onto:employer ?uri} ",lcquad Where were Justina Machado and John Englehard born?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Justina_Machado prop:birthPlace ?uri. res:John_Englehart onto:birthPlace ?uri . }",lcquad Name the office holder who was married to Dolley Madison and has resting palce as Montpelier ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:spouse . ?uri prop:restingplace . ?uri rdf:type onto:OfficeHolder}",lcquad Where was David Scherman trained ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:David_Scherman onto:training ?uri } ",lcquad In which series has Sean Young portrayed someone?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:portrayer res:Sean_Young . ?x onto:series ?uri . }",lcquad "List all the hubs of the airline whose one of the hub is Subang, Indonesia ?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:hubs . ?x prop:hubs ?uri . ?x rdf:type onto:Airline}",lcquad Was the song The Boy is Mine recorded in Atlanta?,"PREFIX prop: ASK WHERE { prop:recorded }",lcquad Who is the president when Loretta Ucelli used to work for Democratic party?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Loretta_Ucelli onto:president ?uri } ",lcquad Who wrote the play in which Blanche DuBois is a character?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:characters . ?x prop:writer ?uri . ?x rdf:type onto:Play}",lcquad Which district of Robert William Wilcox os the place of birth of Kamaloohua ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Robert_William_Wilcox prop:district ?uri. res:Kamaloohua prop:placeOfBirth ?uri} ",lcquad Where is the capital of Kelsey Creek located?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Kelsey_Creek onto:region ?x . ?x onto:countySeat ?uri . }",lcquad "What borders the valley which falls under Lake County, Oregon?","PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:municipality . ?x onto:border ?uri . ?x rdf:type onto:Valley}",lcquad What city is it where Wayne Allard governs and Juli Ashton was born?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Wayne_Allard onto:region ?uri. res:Juli_Ashton onto:birthPlace ?uri} ",lcquad List the regions served by the company which serves in Pacific Ocean ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:regionServed . ?x onto:regionServed ?uri . ?x rdf:type onto:Company}",lcquad Which prime ministers were served by the governor who appointed Murray Gleeson?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Murray_Gleeson onto:appointer ?x . ?x onto:primeMinister ?uri . }",lcquad Name the fictional character painted by Josh Friedman and portrayed in Terminator Genisys ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:creator . ?uri onto:portrayer . ?uri rdf:type onto:FictionalCharacter}",lcquad What is the state of origin of the person who is the successor of Tetsugen Bernard Glassman?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:successor ?x . ?x onto:stateOfOrigin ?uri . ?x rdf:type onto:Person}",lcquad "What city in the US was Alfred Phillips born in, and is the resting place of William Smith?","PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:restingPlace ?uri. prop:birthPlace ?uri . }",lcquad Give me the name of the organization hqed at Chaeng Watthana Govt Complex?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:headquarter . ?x prop:agencyName ?uri . ?x rdf:type onto:Organisation}",lcquad Who is the writer of the singles whose producer is Peter-John Vettese?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:producer . ?x onto:writer ?uri . ?x rdf:type onto:Single}",lcquad Count the number of artist whose pone of the field is writing ?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:field . ?x onto:field ?uri }",lcquad Which veterans served at CBS?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:occupation res:CBS . }",lcquad What are some shareholders of the bridge maintained by the Massachusetts department of transportation?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:maintainedBy . ?x prop:owner ?uri . ?x rdf:type onto:Bridge}",lcquad Name the team for which Cam Plante played for which were also the tenants of MasterCard center ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Cam_Plante prop:playedFor ?uri. res:MasterCard_Centre prop:tenants ?uri} ",lcquad City of Miami Cemetery is the governing body of which city?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:City_of_Miami_Cemetery prop:governingBody ?uri } ",lcquad List the movies whose editors are born in London.,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:placeOfBirth . ?uri onto:editing ?x . ?uri rdf:type onto:Film}",lcquad Does Shaun Thong a member of Audi?,"PREFIX res: PREFIX prop: ASK WHERE { res:Shaun_Thong prop:currentTeam res:Audi }",lcquad Is the chestnut white bellied rat a mammal?,"PREFIX onto: ASK WHERE { onto:class }",lcquad Who attended Great Ayton university?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:education res:Great_Ayton . }",lcquad Where was Babita born ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Babita prop:birthplace ?uri } ",lcquad What is the city whose mayor is Giorgos Kaminis?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:mayor . ?uri rdf:type onto:AdministrativeRegion}",lcquad Which destinations of the Air 2000 is also the location continent of the Falken Tire ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Air_2000 prop:destinations ?uri. res:Falken_Tire onto:locationCountry ?uri} ",lcquad Does Sonny Bill Williams belong in the Canterbury Bankstown Bulldogs club?,"PREFIX prop: ASK WHERE { prop:club }",lcquad Which field's journals are edited by Paul Morphy?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:editor . ?x prop:discipline ?uri . ?x rdf:type onto:AcademicJournal}",lcquad Give me a list of everyone who manages the famous rock art sites?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:architecture res:Rock_art . ?x onto:governingBody ?uri . }",lcquad List the film starring of the movies whose editor is Harvey Rosenstock ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:editing . ?x prop:starring ?uri . ?x rdf:type onto:Film}",lcquad Name hte builder of Baku Olympic Stadium ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:builder ?uri } ",lcquad Count the awards received by Immunologists?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:fields . ?x onto:award ?uri . ?uri rdf:type onto:Award}",lcquad In which mountain Inyo National Forest and California are located?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:locatedInArea . ?uri onto:locatedInArea . ?uri rdf:type onto:Mountain}",lcquad What is the nickname of the club managed by Piotr baron?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:manager res:Piotr_Baron . ?x prop:nickname ?uri . }",lcquad For how many different teams have the players debuted in Houston Astros played?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:debutTeam . ?x onto:team ?uri . ?uri rdf:type onto:SportsTeam}",lcquad Rostock and Oulu is the shore cities on which sea ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri prop:cities . ?uri prop:cities . ?uri rdf:type onto:Sea}",lcquad Was winston churchill the prime minister of Selwyn Lloyd?,"PREFIX res: PREFIX onto: ASK WHERE { res:Selwyn_Lloyd onto:primeMinister res:Winston_Churchill }",lcquad How many different things are used as ingredients in Sweden?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:country . ?x onto:ingredient ?uri . }",lcquad How many people have been the first one to scale a peak in the Yosemite Park?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:locatedInArea . ?x onto:firstAscentPerson ?uri . ?uri rdf:type onto:Person}",lcquad "What are some licensees of the stations playing in Nashville, Tennessee?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:area . ?x prop:licensee ?uri . ?x rdf:type onto:RadioStation}",lcquad Which builder of Ford Straight-6 engine is also the automobile latform provider of Chiva bus ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:automobilePlatform ?uri. onto:manufacturer ?uri} ",lcquad List the awards given to the key people in Pixar ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Pixar prop:keyPeople ?x . ?x onto:award ?uri . }",lcquad Which distributer of Bombay Sapphire also makes Grewy goose ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:manufacturer ?uri. prop:distributor ?uri} ",lcquad Count the total number of bacterias whose division is Firmicutes and domain is Bacteria?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:division . ?uri prop:domain } ",lcquad Count me the number of people whose military unit is involved with Close air support ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:role . ?uri onto:militaryUnit ?x . ?uri rdf:type onto:MilitaryPerson}",lcquad What is the college of Malik Ausean which is also the college of Kyle Fuller ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:college ?uri. prop:college ?uri} ",lcquad What are some other great things by the person who produced Queer as Folk?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { onto:producer ?x . ?x prop:notableworks ?uri . ?x rdf:type onto:Person}",lcquad Does Jean Louis Arcand work for Geneva?,"PREFIX prop: ASK WHERE { prop:institution }",lcquad Is facebook a public company?,"PREFIX res: PREFIX prop: ASK WHERE { res:Facebook prop:companyType res:Public_company }",lcquad Under which scientist did doctoral students erban ieica and Erich Bagge study?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri prop:doctoralStudents . ?uri prop:doctoralStudents . ?uri rdf:type onto:Scientist}",lcquad Which rivers start in a country whose leader is Irene Mambilima?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:leaderName . ?uri onto:sourceCountry ?x . ?uri rdf:type onto:River}",lcquad Count the number of books whose author's were born in Alcal de Henares ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:birthPlace . ?uri onto:author ?x . ?uri rdf:type onto:Book}",lcquad Name the show whose jury consist of Jennifer Lopez and Randy Jackson?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri prop:judges . ?uri prop:judges . ?uri rdf:type onto:TelevisionShow}",lcquad List down all the baseball teams whose team manager was a Catcher?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:position . ?uri onto:manager ?x . ?uri rdf:type onto:BaseballTeam}",lcquad Which musical band produced the subsequent work of City of New Orleans ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:subsequentWork ?x . ?x onto:musicalBand ?uri . }",lcquad What is the alma mater of the James Still which is also the alma mater of Tom Maniatis?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:James_Still onto:almaMater ?uri. res:Tom_Maniatis prop:almaMater ?uri} ",lcquad Where is the stadium of west Papus football team ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:West_Papua_football_team onto:stadium ?uri } ",lcquad What is the debut team of the football player whose college is UCLA Bruins football?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:college . ?x onto:debutTeam ?uri . ?x rdf:type onto:GridironFootballPlayer}",lcquad Does Air 2000 fly to the north american continent?,"PREFIX res: PREFIX onto: ASK WHERE { res:Air_2000 onto:destination res:North_America }",lcquad In which racing championships did Bobby Beasley and Martin Molony participate?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Bobby_Beasley onto:race ?uri. res:Martin_Molony onto:race ?uri . }",lcquad What is the origin of the grape whose wine region is the Troodos Mountains ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:wineRegion . ?x onto:origin ?uri . ?x rdf:type onto:Grape}",lcquad Whose families are Buccinoidea and Buccinidae?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:family res:Buccinoidea . ?uri onto:family res:Buccinidae . }",lcquad Name the artist of Brad Paisley discography ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Brad_Paisley_discography prop:artist ?uri } ",lcquad Ernest Rutherford was the advisor of how many people?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:doctoralAdvisor . }",lcquad Name the TV show whose composer is Judy Hart Angelo and company as Paramount Television ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:composer . ?uri prop:company . ?uri rdf:type onto:TelevisionShow}",lcquad list all the chairman of Vancouver Whitecaps FC?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Vancouver_Whitecaps_FC prop:chairman ?uri } ",lcquad "What are some employees of Uni of California, santa cruz?","PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:employer . }",lcquad "Which municipality of the Brown's Corners, toronto also place of birth of Krista Kelly ?","PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:municipality ?uri. prop:placeOfBirth ?uri} ",lcquad Which famous writer was married to Jill Krementz and had a son named Edith Vonnegut ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:spouse . ?uri onto:child . ?uri rdf:type onto:Writer}",lcquad Name the nearest city to Tennie and Laura ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:nearestCity ?uri } ",lcquad How many TV shows have been created by Simon Fuller ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:creator . ?uri rdf:type onto:TelevisionShow}",lcquad Who appointed the governor under which Robert Witherspoon worked?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Robert_Witherspoon onto:governor ?x . ?x prop:appointer ?uri . }",lcquad What is the area of ITV (Thailand) ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:area ?uri } ",lcquad who all play for of the american football players at Quarterback position?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:position . ?x onto:team ?uri . ?x rdf:type onto:AmericanFootballPlayer}",lcquad Name the office holder whose child is Lori Black and predecessor is Henry E. Catto Jr ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:children . ?uri onto:predecessor . ?uri rdf:type onto:OfficeHolder}",lcquad Which televion show's theme music was given by Ron Grainer and is broadcasted by BBC HD ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:themeMusicComposer . ?uri onto:network . ?uri rdf:type onto:TelevisionShow}",lcquad Name a person who was educated in Humes High School ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:education . ?uri rdf:type onto:Person}",lcquad Where do I find buildings rented by Weber Thompson?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:tenant . ?x prop:address ?uri . ?x rdf:type onto:Building}",lcquad What is the field of interest of the advisor of Henri Maspero ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Henri_Maspero onto:academicAdvisor ?x . ?x prop:fields ?uri . }",lcquad Name the actor of Soylent Green to which Lydia Clarke is married ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Lydia_Clarke prop:spouse ?uri. res:Soylent_Green onto:starring ?uri . }",lcquad Count the cities whihch are on the same sea as that of Miami ?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:cities . ?x prop:cities ?uri }",lcquad Name the stock holders of soccer club whose one of the stockholder is Carl Sanders ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:owner . ?x onto:owner ?uri . ?x rdf:type onto:SoccerClub}",lcquad Who are the key people of FWD.us?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:FWD.us prop:keyPeople ?uri } ",lcquad Who is the executive producer of Into the Dalek ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Into_the_Dalek prop:executiveProducer ?uri } ",lcquad What team is famous for Robert Nederlander and also the debuting team of Gary Sanchez?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:knownFor ?uri. onto:debutTeam ?uri . ?uri rdf:type onto:SportsTeam}",lcquad List everyone who got their training in the city of California?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:city res:California . ?uri prop:training ?x . }",lcquad Where are Thomas Franois Burgers and Johannes Gerhardus Strijdom buried?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Thomas_François_Burgers prop:restingplace ?uri. res:Johannes_Gerhardus_Strijdom prop:restingplace ?uri . }",lcquad Through how many cities does the river flowing into Arkansas go?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:mouthMountain . ?x onto:city ?uri . ?uri rdf:type onto:City}",lcquad "What is the municipality of the Brown's Corners, Toronto and also the place of birth of the George Karrys","PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:municipality ?uri. prop:placeOfBirth ?uri} ",lcquad Does Richard Marx play guitar?,"PREFIX res: PREFIX prop: ASK WHERE { res:Richard_Marx prop:instrument res:Guitar }",lcquad How many things are manufactured by the company whose subsidiary is Sony Corporation shareholders and subsidiaries?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:subsidiary . ?uri onto:manufacturer ?x . }",lcquad What is the total number of office holders who preceded the people working under president bill clinton?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:president . ?uri prop:successor ?x . ?uri rdf:type onto:OfficeHolder}",lcquad "In which other places are there companies which are in Ontario, too?","PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:locationCity res:Ontario . ?x prop:locations ?uri . }",lcquad What is the POD of the successor of Pmare I ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Pōmare_I prop:successor ?x . ?x onto:deathPlace ?uri . }",lcquad In which companies boards do the writers of Wikitionary belong?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Wiktionary onto:author ?x . ?x onto:board ?uri . }",lcquad How many nations' volleyball players have played for the Russian women volleyball team?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:nationalteam . ?x prop:placeOfBirth ?uri . ?uri rdf:type onto:Country}",lcquad "Which office holder's governor is Charles Willing Byrd and has final resting place in North Bend, Ohio?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:governor . ?uri prop:restingplace . ?uri rdf:type onto:OfficeHolder}",lcquad What is the television show which has cast member as Jason Carter and network is TNT (TV channel)?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:starring . ?uri prop:network . ?uri rdf:type onto:TelevisionShow}",lcquad In how many places can I find people whose alma mater was in bachelor of arts?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:almaMater . ?x onto:residence ?uri . ?uri rdf:type onto:Place}",lcquad Is Gutenberg neighbouring with Madiswil?,"PREFIX prop: ASK WHERE { prop:neighboringMunicipalities }",lcquad List the junctions which lie on U.S. Route 59 in Texas and U.S. Route 59 ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:U.S._Route_59_in_Texas prop:junction ?uri. res:U.S._Route_59 prop:junction ?uri . }",lcquad Does Mr. Jim's Pizza operate in the pizza industry?,"PREFIX onto: ASK WHERE { onto:industry }",lcquad Which scientist's academic advisor is Georg Meissner and is known for invention of Anthrax ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:knownFor . ?uri prop:doctoralAdvisor . ?uri rdf:type onto:Scientist}",lcquad Name the writer of South Park: The Stick of Truth ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:South_Park:_The_Stick_of_Truth onto:writer ?uri } ",lcquad Who owns Torrey Pines Gliderport?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Torrey_Pines_Gliderport prop:owner ?uri } ",lcquad Who wrote a streetcar named desire?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:writer ?uri } ",lcquad Which nationality of Newin Chidchob is also the nationality of Ajahn Sao Kantaslo ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Newin_Chidchob prop:nationality ?uri. res:Ajahn_Sao_Kantasīlo onto:nationality ?uri} ",lcquad What is the label of the album whose previous work is Waterfall?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:previousWork . ?x prop:label ?uri . ?x rdf:type onto:Album}",lcquad What is the label of things produced by the band If?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:artist . ?x prop:label ?uri . }",lcquad Which automobile platform provider of Chiva bus is also the parent company of the Ford Falcon Cobra ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Chiva_bus onto:automobilePlatform ?uri. res:Ford_Falcon_Cobra onto:parentCompany ?uri} ",lcquad List the goverener of Winston Bryant?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Winston_Bryant prop:governor ?uri } ",lcquad Count the movies directed by Tim Burton and music composer Danny Elfman ?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:music . ?uri prop:director } ",lcquad Erik Jendresen is writer and Play tone is company of which TV show ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:writer . ?uri prop:company . ?uri rdf:type onto:TelevisionShow}",lcquad From which genres of music did those genres emerge where drums are important?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:instruments . ?x onto:stylisticOrigin ?uri . ?x rdf:type onto:MusicGenre}",lcquad Which developer of the Spider-Man: Edge of Time is the successor of PlayStation 2 ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:developer ?uri. onto:successor ?uri} ",lcquad Who is the appointer of Earl B. Ruth ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Earl_B._Ruth prop:appointer ?uri } ",lcquad What is the constituency of the leader of Labour Party (Norway)?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:leader ?x . ?x prop:constituency ?uri . }",lcquad Name the office holder who has a child named lori Black and Harvard Westlake school as one of the educational institute ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:children . ?uri onto:almaMater . ?uri rdf:type onto:OfficeHolder}",lcquad To which educational institutes is Samuel Isham associated to?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Samuel_Isham prop:education ?uri } ",lcquad Give me a count of mammals whose family is Canidae?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:family . ?uri rdf:type onto:Mammal}",lcquad Which band produced the album Aida?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:album . ?x onto:musicalArtist ?uri . ?x rdf:type onto:MusicalWork}",lcquad Name the champion of National League ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:National_League prop:champion ?uri } ",lcquad Which European sea has Oulu as one of the shore city ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:location . ?uri prop:cities . ?uri rdf:type onto:Sea}",lcquad "Name the team Ramiro Pea played for, which was also the first team of Steve Ontiveros?","PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:debutteam ?uri. onto:team ?uri} ",lcquad List the total number of awards of the musicals who have won Tony Award?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:awards . ?x prop:awards ?uri }",lcquad What is the debut team of people born in Vargas?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:birthPlace . ?x prop:debutteam ?uri . }",lcquad "What is the product of the BBC Multimedia and is the theme of Visions, the convention?","PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:product ?uri. prop:genre ?uri} ",lcquad Does the Jordan River start in the Golan Heights?,"PREFIX res: PREFIX onto: ASK WHERE { res:Jordan_River onto:sourceRegion res:Golan_Heights }",lcquad Count the awards received by the ones who fought the battle of france?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:battle . ?x onto:award ?uri . }",lcquad List the military branch of Henry Hyde ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Henry_Hyde onto:militaryBranch ?uri } ",lcquad What is the ethnicity of the Maike Evers and state of origin of the Theodor Hillenhinrichs ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Maike_Evers onto:ethnicity ?uri. res:Theodor_Hillenhinrichs onto:stateOfOrigin ?uri} ",lcquad How many people play for the Dallas Cowboys?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:team . }",lcquad Was Reza Amrollahi born in Iran?,"PREFIX res: PREFIX prop: ASK WHERE { res:Reza_Amrollahi prop:birthplace res:Iran }",lcquad "What is the country whose administrative centre is Hagta, Guam?","PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:capital . ?uri rdf:type onto:Country}",lcquad Which sports by Polytechnic University of the Philippines Taguig is the discipline of The Chess Monthly ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:The_Chess_Monthly prop:discipline ?uri. res:Polytechnic_University_of_the_Philippines_Taguig onto:sport ?uri} ",lcquad Which source country of SamurAbsheron channel is the birth place of Anar Salmanov ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Samur–Absheron_channel onto:sourceCountry ?uri. res:Anar_Salmanov prop:placeOfBirth ?uri} ",lcquad List the resting place of the people who served in Norwalk Trainband.,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:militaryUnit . ?x prop:restingplace ?uri . ?x rdf:type onto:Person}",lcquad Who was the designer of john madden Football '92 ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:designer ?uri } ",lcquad Give me all magazines whose editors live in Chicago?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:hometown . ?uri prop:editor ?x . ?uri rdf:type onto:Magazine}",lcquad Which company's cars are assembled in Iran?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:assembly . ?x prop:parentCompany ?uri . ?x rdf:type onto:Automobile}",lcquad Which are the television show which have been created by Donald Wilson?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:creator . ?uri rdf:type onto:TelevisionShow}",lcquad Count all the Colonels?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:rank . }",lcquad Does the croton river flow into the hudson?,"PREFIX res: PREFIX onto: ASK WHERE { res:Hudson_River onto:leftTributary res:Croton_River }",lcquad What sports can be played at universities in Metro Manila?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:state . ?x prop:athletics ?uri . ?x rdf:type onto:University}",lcquad What team has Sam Keller and Jim McMilin played for?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Sam_Keller onto:formerTeam ?uri. res:Jim_McMillin onto:team ?uri . }",lcquad What has location as Ontario?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:location res:Ontario . }",lcquad Where was Juno I launched from ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Juno_I onto:launchSite ?uri } ",lcquad "In which sects was the aristocrat venerated, whose parent is Thelred the Unready?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:parent . ?x prop:veneratedIn ?uri . ?x rdf:type onto:Royalty}",lcquad "Who won the ohio house of representatives, 2010?","PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:incumbent ?uri } ",lcquad Name the common distributing label of the Chinga Chang Records and StandBy Records ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Chinga_Chang_Records onto:distributingLabel ?uri. res:StandBy_Records onto:distributingLabel ?uri . }",lcquad What is the draft team of Gene Conley ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Gene_Conley prop:draftTeam ?uri } ",lcquad What was a common first team at the 1967 Mexican Grand Prix and 1971 US one?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:1967_Mexican_Grand_Prix prop:firstTeam ?uri. res:1971_United_States_Grand_Prix prop:firstTeam ?uri . }",lcquad What are some common ingredients used in Swedish dishes?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:country res:Sweden . ?x onto:ingredient ?uri . }",lcquad Where did Rheinmetall MG 60 originated ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Rheinmetall_MG_60 onto:origin ?uri } ",lcquad Did nokia 215 has the series 30+ OS?,"PREFIX prop: ASK WHERE { prop:os }",lcquad Gregg Toland cinematographed how many things?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:cinematography . }",lcquad What type of government is elected in Kumta?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Kumta onto:governmentType ?uri } ",lcquad List the birth city of the politicians of Democratic Party.,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:party . ?x onto:birthPlace ?uri . ?x rdf:type onto:Politician}",lcquad Was Tommy Tucker's Tooth animated by Walt Disney?,"PREFIX onto: ASK WHERE { onto:animator }",lcquad "What team does John McGeever play for, which also employed Ben Dreith at some time?","PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Ben_Dreith onto:occupation ?uri. res:John_McGeever onto:team ?uri . }",lcquad Give me the total number of lines owned by owner of Mwtro-Noth Railroad ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:owner . ?x prop:owner ?uri }",lcquad For which team do Guido Guerrini and Massimo Liverani currently play for?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Guido_Guerrini prop:currentTeam ?uri. res:Massimo_Liverani prop:currentTeam ?uri . }",lcquad What is the governing body of Fort Monroe ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Fort_Monroe prop:governingBody ?uri } ",lcquad List the common sports played by Polytechnic University of the Philippines Bataan and Jamiatu Muslim Mindanao ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Polytechnic_University_of_the_Philippines_–_Bataan onto:sport ?uri. res:Jamiatu_Muslim_Mindanao onto:athletics ?uri} ",lcquad How many television shows are broadcasted on Fox Broadcasting Company?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:channel . ?uri rdf:type onto:TelevisionShow}",lcquad What are some tv shows created by Simon Fuller?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:creator . ?uri rdf:type onto:TelevisionShow}",lcquad What is the place of birth of the Michael Marder which is also the place of death of the Tigran Petrosian,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Michael_Marder prop:placeOfBirth ?uri. res:Tigran_Petrosian onto:deathPlace ?uri} ",lcquad Who is married to Tony Ramo,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:partner res:Tony_Romo . }",lcquad How many states are in the Mediterranean Basketball Association?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { onto:country ?uri . ?uri rdf:type onto:Place}",lcquad What is the title of the Kakae and also the district of the Robert William Wilcox ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Kakae prop:title ?uri. res:Robert_William_Wilcox prop:district ?uri} ",lcquad Who wrote the singles on the Main Course?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:album . ?x prop:writer ?uri . ?x rdf:type onto:Single}",lcquad State the religion of the person known for People's Bank (Sri Lanka) ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:knownFor . ?x onto:religion ?uri . }",lcquad To which US states does the roads belong which meet at the East Whiteland Township in Pennsylvania?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:routeJunction . ?x onto:state ?uri . ?x rdf:type onto:Road}",lcquad In how many places can I find people who were the architects of the Dundas Castle?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { prop:architecture ?x . ?x prop:region ?uri . }",lcquad List all the children of Barbara Bush?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Barbara_Bush prop:children ?uri } ",lcquad Name the notable work by Russell T Davis which is also the series of Doctor Who:Destiny of the Doctors ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Russell_T_Davies prop:notableworks ?uri. res:Doctor_Who:_Destiny_of_the_Doctors onto:series ?uri} ",lcquad Who oarent organization of Get TV is also the label provider of I Pray on CHristmas ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:I_Pray_on_Christmas prop:label ?uri. res:GetTV onto:parentOrganisation ?uri} ",lcquad What company made facebook messenger and is the platform where Words of Gold can be played?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:computingPlatform ?uri. prop:developer ?uri . ?uri rdf:type onto:Company}",lcquad Who wrote the frost king?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:The_Frost_King onto:author ?uri } ",lcquad Which company had built the rockets launched at the Cape Canaveral Air Force Station Space Launch Complex 17?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:launchSite res:Cape_Canaveral_Air_Force_Station_Space_Launch_Complex_17 . ?x onto:manufacturer ?uri . }",lcquad Name a royalty whose one of the child is Augustus and is associated with Publius Servilius Vatia Isauricus?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:children . ?uri onto:associate . }",lcquad Who trained the wrestlers who are billed in Wisconsin?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:billed . ?x onto:trainer ?uri . ?x rdf:type onto:Wrestler}",lcquad Which currency of Republic of Montenegro is also the currency of the French Southern and Antarctic Lands ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:currency ?uri. prop:currency ?uri} ",lcquad Where are the movies directed by Faisal Aman Khan recorded?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:director res:Faisal_Aman_Khan . ?x prop:recorded ?uri . }",lcquad Where was the battle fought where 2nd Foreign Infantry Regiment participated ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:battle ?x . ?x onto:territory ?uri . ?x rdf:type onto:MilitaryConflict}",lcquad How many cities are around the sea in which the ionian sea flows?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { onto:outflow ?x . ?x prop:cities ?uri . ?x rdf:type onto:Sea}",lcquad Which team did Bill Murphy and Jean Segura play for?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:debutTeam ?uri. onto:team ?uri . }",lcquad What is the administrative headquarters of Pulau Ujong ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Pulau_Ujong onto:capital ?uri } ",lcquad "What all is produced by companies in Douglas, Isle of Man?","PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:locationCity . ?x onto:product ?uri . ?x rdf:type onto:Company}",lcquad Miguel de Cervantes wrote the musical extended from which book?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:author . ?x onto:basedOn ?uri . ?x rdf:type onto:Musical}",lcquad Which city amongst the one which belongs to Boundary Dam was the palce for Soccer Bowl '76 ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:city ?uri. prop:owner ?uri} ",lcquad Which employer of Manu Cornet has alsoe written Google.by ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Manu_Cornet prop:employer ?uri. res:Google.by onto:author ?uri} ",lcquad What is the common official residence of Lezlee Westine and Arnold W. Braswell?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Lezlee_Westine prop:residence ?uri. res:Arnold_W._Braswell prop:residence ?uri . }",lcquad Who had headed the governmental agencies whose admin HQ was in Niederkirchnerstrasse?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:headquarter . ?x onto:leader ?uri . ?x rdf:type onto:GovernmentAgency}",lcquad Where does the Kentucky cycle take place?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:The_Kentucky_Cycle prop:place ?uri } ",lcquad "Whichi burial place of the Henri, Duke of Rohan is also the birth place of Michel Frutschi ?","PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:placeOfBurial ?uri. prop:birthPlace ?uri} ",lcquad Which river's source mountain is Baikal Mountains and is located in Laptev Sea ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:sourceMountain . ?uri prop:mouthLocation . ?uri rdf:type onto:River}",lcquad Among which sitcoms in which theme music is composed by Gary Portnoy is located in Massachusetts ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:location . ?uri prop:themeMusicComposer . ?uri rdf:type onto:TelevisionShow}",lcquad Name the movies distributed by Warner Bros. and directed by Ridley Scott ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:distributor . ?uri prop:director . ?uri rdf:type onto:Film}",lcquad "WHich region of the Providence Chapel, Charlwood is also the region of the Joseph Case High School","PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:style ?uri. onto:region ?uri} ",lcquad Name a river starting from arequipa region?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:sourceRegion . ?uri rdf:type onto:River}",lcquad What basketball league's champion is Golden State Warriors,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:champion . ?uri rdf:type onto:BasketballLeague}",lcquad Name some people working at someplace owned by News Corp.,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:owners res:News_Corp . ?uri onto:employer ?x . }",lcquad Was Johnny Depp a member of Skull Gang?,"PREFIX res: PREFIX onto: ASK WHERE { res:Skull_Gang onto:bandMember res:Johnny_Depp }",lcquad What is the basketball team whose President's college is Brockport Golden Eagles?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:college . ?uri prop:president ?x . ?uri rdf:type onto:BasketballTeam}",lcquad Count the number of fileds of the scientist whose one of the interest is Chinese poetry ?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:fields . ?x prop:fields ?uri }",lcquad What organisations purpose is Peace?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:purpose . ?uri rdf:type onto:Organisation}",lcquad In how many different teams have all those who have played as a defenceman been?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:position . ?x prop:playedFor ?uri . ?uri rdf:type onto:SportsTeam}",lcquad How many teams have used the stadiums which have been rented by the Canadian Hockey team?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:tenant . ?x prop:tenants ?uri . }",lcquad How many teams have LA kings players in them currently?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:formerTeam . ?x onto:team ?uri . ?uri rdf:type onto:SportsTeam}",lcquad Is Hard Candy Fitness one of the divisions of Moscow?,"PREFIX res: PREFIX prop: ASK WHERE { res:Hard_Candy_Fitness prop:divisions res:Moscow }",lcquad What is the television show whose developer is J. Michael Straczynski?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:developer . ?uri rdf:type onto:TelevisionShow}",lcquad list the organisation with motive for peace and environmentalism?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri prop:purpose . ?uri prop:purpose . ?uri rdf:type onto:Organisation}",lcquad What is the content license of Darcs ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Darcs onto:license ?uri } ",lcquad Is Truth prevails the national motto of Czechoslovakia?,"PREFIX res: PREFIX prop: ASK WHERE { res:Czechoslovakia prop:nationalMotto res:Truth_prevails }",lcquad "Name a military unit whose command structure is United States Department of the Navy and garrison is Arlington County, Virginia?","PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:commandStructure . ?uri onto:garrison . ?uri rdf:type onto:MilitaryUnit}",lcquad Which company developed both Dart and Go?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:developer ?uri. onto:developer ?uri . }",lcquad In which country did Philippe tesnire and judson huss die?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Philippe_Tesnière prop:placeOfDeath ?uri. res:Judson_Huss prop:placeOfDeath ?uri . }",lcquad List all the artist of albums which have been produced by Stephen Kozmeniuk ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:producer . ?x prop:artist ?uri . ?x rdf:type onto:Album}",lcquad Is Olyokma River the right tributary of Lena River?,"PREFIX res: PREFIX onto: ASK WHERE { res:Lena_River onto:rightTributary res:Olyokma_River }",lcquad Which colored race horses have won the Grand National?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:honours . ?x onto:colour ?uri . ?x rdf:type onto:RaceHorse}",lcquad "What is common between sports played at Fr Agnel School and Jr college, and the genre of Virtual Kasparov?","PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Virtual_Kasparov onto:genre ?uri. res:Fr._Agnel_Multipurpose_School_and_Junior_College onto:sport ?uri} ",lcquad What are other famous works of the writer who created the Sarah Jane Adventures?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:notableworks . ?x onto:notableWork ?uri . ?x rdf:type onto:Writer}",lcquad What is the mascot of the alma mater of Deborah Crombie?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Deborah_Crombie onto:almaMater ?x . ?x prop:mascot ?uri . }",lcquad Where did the genres originate which can found in The Mudbloods?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:The_Mudbloods prop:genre ?x . ?x onto:stylisticOrigin ?uri . }",lcquad What is the resting place of the person who is the successor of James W. Hyatt ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:successor ?x . ?x onto:restingPlace ?uri . ?x rdf:type onto:Person}",lcquad Who wrote the mangas produced by Masahike Minami?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:producer . ?x onto:author ?uri . ?x rdf:type onto:Manga}",lcquad Which contnet license provider of Microsoft Office Picture Manager is also the game platform of Google Clud Connect ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Microsoft_Office_Picture_Manager onto:license ?uri. res:Google_Cloud_Connect onto:computingPlatform ?uri} ",lcquad What is the mascot of military in Quezon city?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:garrison . ?x prop:mascot ?uri . ?x rdf:type onto:MilitaryUnit}",lcquad "What all are in the states whose anthem is Ja, vi esker dette landet?","PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:anthem . ?uri onto:country ?x . }",lcquad Which officers fought in the war of Siege of Fort Recovery?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:battle . ?uri rdf:type onto:OfficeHolder}",lcquad Which company builds Microsoft Azure and Microsoft Surface?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:product . ?uri onto:product . ?uri rdf:type onto:Company}",lcquad return some players who have played in the NBA?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:league res:National_Basketball_Association } ",lcquad Name an airline with hub airports as Los Angeles International Airport and San Francisco International Airport?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:hubAirport . ?uri prop:hubs . ?uri rdf:type onto:Airline}",lcquad "Give me all office holders who finally retired in Montpelier, Orange, Virgina?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:restingplace . ?uri rdf:type onto:OfficeHolder}",lcquad Give me a count on scientist who are known for garrison is Tennessee ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:garrison . ?uri prop:knownFor ?x . ?uri rdf:type onto:Scientist}",lcquad Does Ronaldinho play in the brazil's under 23 team?,"PREFIX prop: ASK WHERE { prop:nationalteam }",lcquad "Which river starts from the county seat of Heathsville, Virginia?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:countySeat . ?uri prop:mouthLocation ?x . ?uri rdf:type onto:River}",lcquad Who owns the bank where Fabio Mercurio works?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:institution ?x . ?x prop:owner ?uri . ?x rdf:type onto:Bank}",lcquad Who owns the horses which have won the Timeform award?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:awards . ?x onto:owner ?uri . ?x rdf:type onto:Horse}",lcquad What are some fictional characters whose voice is in the peanuts movie?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:voice res:The_Peanuts_Movie . }",lcquad What religion do people of the country of Mahbuba Islam Rakhi follow?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Mahbuba_Islam_Rakhi onto:nationality ?x . ?x onto:religion ?uri . }",lcquad How many people used to play for Toronto Argonauts?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:formerTeam . }",lcquad How many different people have been in any political seat in places which are under the Indian Standard timezone?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:timeZone . ?x onto:leaderName ?uri . }",lcquad "The sports team which played at the American Basketball League championship (1996-1998), have which stadiums?","PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:league . ?x onto:stadium ?uri . ?x rdf:type onto:SportsTeam}",lcquad Whose county seats are Mediolanum and History of Trier?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:capital res:Mediolanum . ?uri onto:capital res:History_of_Trier . }",lcquad What is the national origin of Dornier Aerodyne and Hirth Acrostar ?;,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Dornier_Aerodyne prop:nationalOrigin ?uri. res:Hirth_Acrostar onto:origin ?uri} ",lcquad Was Class Conflict an interest of Karl Marx?,"PREFIX res: PREFIX onto: ASK WHERE { res:Karl_Marx onto:mainInterest res:Class_conflict }",lcquad Count the tenants of the stadiums owned by toronto.,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:owner . ?x prop:tenants ?uri . }",lcquad Name the president who has relations with Clinton family and had a lieutenant named Winston Bryant?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:relation . ?uri onto:lieutenant . ?uri rdf:type onto:President}",lcquad What is the fictional character whose voice over is done by the animator of Dick Lundy ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:animator . ?uri onto:voice ?x . ?uri rdf:type onto:FictionalCharacter}",lcquad How many sports are played in organizations presided by Emanuel de Guzman?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:president . ?x onto:sport ?uri . ?uri rdf:type onto:Sport}",lcquad What are the home stadiums of the things Leonid Fedun has been the chairman of?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:chairman res:Leonid_Fedun . ?x onto:homeStadium ?uri . }",lcquad Is Akan spoken in Ghana?,"PREFIX res: PREFIX prop: ASK WHERE { res:Ghana prop:languages res:Akan_language }",lcquad Which region of English American is also the palce of Death of Brent Darby ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:English_Americans prop:region ?uri. res:Brent_Darby prop:placeOfDeath ?uri} ",lcquad Who acted in the work written by Colin Brake?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:writer . ?x prop:starring ?uri . ?x rdf:type onto:Work}",lcquad Is Robin Gibb the singer of Oh! Darling?,"PREFIX onto: ASK WHERE { onto:musicalArtist }",lcquad List everything written in languages developed by EXperimental Computing Facility?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:author . ?uri prop:programmingLanguage ?x . ?uri rdf:type onto:Work}",lcquad What are some movies whose score is composed by relatives of Bodhi Elfman?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:relatives . ?uri prop:music ?x . ?uri rdf:type onto:Film}",lcquad Is the Chiva Bus by the Ford Motor Company?,"PREFIX res: PREFIX onto: ASK WHERE { res:Chiva_bus onto:automobilePlatform res:Ford_Motor_Company }",lcquad List the series of the books whose author is K. W. Jeter.,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:author . ?x onto:series ?uri . ?x rdf:type onto:Book}",lcquad What is the common university iof vanderbilt Commodores and also the college of hubert Wiggs ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Vanderbilt_Commodores onto:university ?uri. res:Hubert_Wiggs onto:college ?uri} ",lcquad "Name the common architecture of the Grand Serail of Aleppo and Shaheed Minar, Kolkata ?","PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:architecturalStyle ?uri. onto:architecturalStyle ?uri . }",lcquad What are the prizes awarded to the main members of DisneyToon Studios?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:DisneyToon_Studios onto:keyPerson ?x . ?x onto:award ?uri . }",lcquad How many sports are played at the university whose president is Emanuel de Guzman?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:president . ?x onto:sport ?uri . ?uri rdf:type onto:Sport}",lcquad Give me the count of interests of the philosopher whose primary interest is Metaphysics ?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:mainInterests . ?x prop:mainInterests ?uri }",lcquad Who was buried at St. Mary's Church and fought the battle of Benedict Arnold's expedition to Quebec ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:battle . ?uri prop:placeofburial . }",lcquad On which subjects does the author of the novel Thud! delve?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:nonFictionSubject ?uri } ",lcquad Who is the writer with notable works like Adventures of Huckleberry Finn and The Adventures of Tom Sawyer?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:notableWork . ?uri onto:notableWork . ?uri rdf:type onto:Writer}",lcquad Name the people living in a place governed by William W Brien?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:leaderName res:William_W._Brien . ?uri onto:residence ?x . }",lcquad Name the river whose source is located in Ikelenge District and mouth in Mozambique?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:sourceLocation . ?uri prop:mouthCountry . ?uri rdf:type onto:River}",lcquad How many people won the Gold Medal of the Royal Astronomical Society?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:prizes . }",lcquad What are the relatives of the parliament member whose successor is Peter Thorneycroft?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:successor . ?x onto:relation ?uri . ?x rdf:type onto:MemberOfParliament}",lcquad Which river's source country is Zambia and mouth country is Mozambique?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:sourceCountry . ?uri prop:mouthCountry . ?uri rdf:type onto:River}",lcquad Was the Funky Lab Rat released in North America?,"PREFIX res: PREFIX prop: ASK WHERE { res:Funky_Lab_Rat prop:released res:North_America }",lcquad What is the main common interests of the Philip Novak and Timothy Morton?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Philip_Novak prop:mainInterests ?uri. res:Timothy_Morton prop:mainInterests ?uri . }",lcquad How many members are there of the order of Bacillales?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:order . }",lcquad Which program was on NBC network with executive producer as Glen and Les Charles?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:network . ?uri onto:executiveProducer . ?uri rdf:type onto:TelevisionShow}",lcquad Moscow-Kazan high speed railway starts from which station?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:routeStart ?uri } ",lcquad Is Fluidinfo written in PostgreSQL language?,"PREFIX res: PREFIX prop: ASK WHERE { res:Fluidinfo prop:programmingLanguage res:PostgreSQL }",lcquad Which neighboring municipalities of Cologny has a mayor named Ester Alder ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:neighboringMunicipalities res:Cologny . ?uri onto:mayor res:Esther_Alder . }",lcquad How many people work in the Massachusetts house of Representatives?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:office . }",lcquad Which countries came together to serve a greater purpose and founded South Asia Subregional Economic Cooperation?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:South_Asia_Subregional_Economic_Cooperation prop:membership ?uri } ",lcquad Count the number of religions followed by Janta Dal members.,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:party . ?x onto:religion ?uri . }",lcquad Did Johann Gottfried Galle invent Neptune?,"PREFIX res: PREFIX prop: ASK WHERE { res:Neptune prop:discoverer res:Johann_Gottfried_Galle }",lcquad "Who is the founder of Wuropean School, Karlsruhe ?","PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:founder ?uri } ",lcquad Which football team is in a city where A J Clark was a builder?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:builder . ?uri prop:city ?x . ?uri rdf:type onto:AmericanFootballTeam}",lcquad Which city near to Elliott Bay was the death place of George F. Moore ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:nearestCity ?uri. prop:placeOfDeath ?uri} ",lcquad Where does Kafue and Shire river flow into?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Kafue_River onto:riverMouth ?uri. res:Shire_River onto:riverMouth ?uri . }",lcquad Through which label has Katy B released her singles?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:writer . ?x onto:recordLabel ?uri . ?x rdf:type onto:Single}",lcquad List the teams for which Bobby Hoppe played ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Bobby_Hoppe prop:pastteams ?uri } ",lcquad How many other characters are there of the plays which has a characters name Joker (comics) ?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:characters . ?x prop:characters ?uri }",lcquad Who first ascented a mountain of Cathedral Peak (California) ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:firstAscentPerson ?uri } ",lcquad Which awards did the children of Erik Bergman won ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:children ?x . ?x prop:awards ?uri . }",lcquad Name the sharehoders of The National Herald ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:owner ?uri } ",lcquad Which writer of A streetcar Named Desire is also the author of The Catastrophe of Success ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:writer ?uri. onto:author ?uri} ",lcquad How many people are buried in the Mausoleum of Augustus?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:placeOfBurial . }",lcquad What are some famous works of the writer of The Second Coming?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:writer ?x . ?x prop:notableworks ?uri . }",lcquad List the program genres of the sister stations of 97.1 WASH FM?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:sisterStations ?x . ?x onto:programmeFormat ?uri . }",lcquad Which team's players have played in the national hockey league?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:league . ?x onto:team ?uri . ?x rdf:type onto:Athlete}",lcquad Which associated band of the Teddy Riley is also the performer of the Before I Let You Go?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Teddy_Riley onto:associatedBand ?uri. res:Before_I_Let_You_Go onto:musicalArtist ?uri} ",lcquad Where was James McClure born ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:birthPlace ?uri } ",lcquad Who is the operator of AT&T Park ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:operator ?uri } ",lcquad Whose music composer is signed up with Sony Music Entertainment?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:label res:Sony_Music_Entertainment . ?uri onto:musicComposer ?x . }",lcquad In which company is Raymond Conner at an important position?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:keyPerson res:Raymond_Conner } ",lcquad Who hold stocks in the bank which is located at 731 Lexington Avenue?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:locationCity . ?x prop:owner ?uri . ?x rdf:type onto:Bank}",lcquad Which labels signs up progressive rock bands?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:genre . ?x onto:recordLabel ?uri . ?x rdf:type onto:MusicalArtist}",lcquad "Where does the railway tracks start, which ends in Kazan?","PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:routeEnd . ?x onto:routeStart ?uri . ?x rdf:type onto:RailwayLine}",lcquad Name the branch of Carroll E. Lanier ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Carroll_E._Lanier prop:branch ?uri } ",lcquad what are some devices made by asus?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:manufacturer . ?uri rdf:type onto:InformationAppliance}",lcquad Which former team of Franois Beauchemin does the Nathan Dempsey played for ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Nathan_Dempsey prop:playedFor ?uri. res:François_Beauchemin onto:formerTeam ?uri} ",lcquad What is the colour of Red Marauder ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Red_Marauder onto:colour ?uri } ",lcquad What is the draft team of Dale Mitchell (ice hockey) ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:draftTeam ?uri } ",lcquad "Give me a count of schools in Reading, Berkshire?","PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:city . ?uri rdf:type onto:School}",lcquad Who are some cofounders of record labels with Frank Rogers?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:foundedBy . ?x prop:founder ?uri . ?x rdf:type onto:RecordLabel}",lcquad By whom is the broadcaster network Bounce TV founded?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Bounce_TV onto:foundedBy ?uri } ",lcquad Who is the scientist whose doctoral student is Erich Bagge?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:doctoralStudent . ?uri rdf:type onto:Scientist}",lcquad Who appointed the successor of Thomas Bee?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Thomas_Bee onto:successor ?x . ?x prop:appointer ?uri . }",lcquad Was Buzz Williams the headcoach of the Marquette Golden Eagles mens team?,"PREFIX prop: ASK WHERE { prop:headcoach }",lcquad List books authored by Miguel de Cervantes and published by Francisco de Robles ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:author . ?uri onto:publisher . ?uri rdf:type onto:Book}",lcquad List down all notable works of Neil Cross ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Neil_Cross onto:notableWork ?uri } ",lcquad What is the local authority of the Buckhurst Hill County High School is also the birth palce of Sarah hampion ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:localAuthority ?uri. prop:birthPlace ?uri} ",lcquad what awards have been giving to Muhammad Yunus?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Muhammad_Yunus onto:award ?uri } ",lcquad Who is the meaning of the name Isa which was also one of the subject of play The Prodigal Son ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:meaning ?uri. prop:subject ?uri} ",lcquad "Who are the parent of the people that has POD as Redding, Connecticut ?","PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:deathPlace . ?x onto:parent ?uri . }",lcquad Was saddam hussein at the rank of Mushir ever?,"PREFIX res: PREFIX prop: ASK WHERE { res:Saddam_Hussein prop:rank res:Mushir }",lcquad What are the things Eric Schiller known for ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Eric_Schiller onto:knownFor ?uri } ",lcquad List the parts of Greater San Antonio?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Greater_San_Antonio onto:part ?uri } ",lcquad What is the president whose lieutenants are Winston Bryant and Joe Purcell?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:lieutenant . ?uri onto:lieutenant . ?uri rdf:type onto:President}",lcquad Where is Temenos Group founded ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Temenos_Group prop:foundation ?uri } ",lcquad Name some leaders of the parent organisation of the Gestapo?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Gestapo onto:parentOrganisation ?x . ?x onto:leader ?uri . }",lcquad How many venues are located in the US?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:address . ?uri rdf:type onto:Venue}",lcquad What are some neighboring cities of cologny?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:neighboringMunicipalities res:Cologny . }",lcquad What religion is Kabir Suman from?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:birthName res:Kabir_Suman . ?x prop:religion ?uri . }",lcquad Does Kirk Hammett play the Gibson Flying V?,"PREFIX res: PREFIX onto: ASK WHERE { res:Kirk_Hammett onto:instrument res:Gibson_Flying_V }",lcquad Who are the people who died in a place architected by Jens Jensen,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:architect . ?uri onto:deathPlace ?x . ?uri rdf:type onto:Person}",lcquad Who has Kelly Osbourne and Ozzy Osbourne as relatives?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:relative res:Kelly_Osbourne . ?uri onto:relative res:Ozzy_Osbourne . }",lcquad Name the television show whose subsequent work is Frasier and opening theme is Where Everybody Knows Your Name?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:subsequentWork . ?uri onto:openingTheme . ?uri rdf:type onto:TelevisionShow}",lcquad Name the television show whose company is HBO and Playtone?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:company . ?uri prop:company . ?uri rdf:type onto:TelevisionShow}",lcquad Name the cover artist of the adventure of Tom sawyer ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:The_Adventures_of_Tom_Sawyer onto:coverArtist ?uri } ",lcquad Who did Bruce Bochy play for ? ,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Bruce_Bochy onto:team ?uri } ",lcquad Name the company which provides Outlook.com as service and also has a product named Microsoft Azure ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:services . ?uri onto:product . ?uri rdf:type onto:Company}",lcquad Name the company with product named Microsft Azure and provides OneDrive as a service ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:product . ?uri prop:services . ?uri rdf:type onto:Company}",lcquad What is the deathplace of the Anatoly Kharlampiyev which is also the death place of Lyudmila Buldakova?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Anatoly_Kharlampiyev prop:deathPlace ?uri. res:Lyudmila_Buldakova prop:deathPlace ?uri . }",lcquad What is the Band whose band member is Mark Middleton?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:bandMember res:Mark_Middleton } ",lcquad Is Tamera Mowry the former band member of Voices?,"PREFIX onto: ASK WHERE { onto:formerBandMember }",lcquad List the actors of Lucy Sullivan Is Getting Married?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Lucy_Sullivan_Is_Getting_Married prop:starring ?uri } ",lcquad How many people have worked in the band one of whose current member is Hynief?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:currentMembers . ?x onto:bandMember ?uri . ?uri rdf:type onto:Person}",lcquad Enumerate all those who are in the Board of companies founded in New York?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:foundation . ?uri onto:board ?x . }",lcquad Name the awards that have been given to the writer made famous for Creature Comforts?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:notableWork . ?x onto:award ?uri . ?x rdf:type onto:Writer}",lcquad Murray Gold has composed music for how many things?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:composer . }",lcquad In which wars did Percy Fitzwallace fight?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Percy_Fitzwallace prop:battles ?uri } ",lcquad What other awards have Becket fund for religious liberty winners received?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:award res:Becket_Fund_for_Religious_Liberty . ?x prop:awards ?uri . }",lcquad Who was the vice president under which elizabeth alexander served?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:vicePresident ?uri . }",lcquad How many people have been presenters for NBC shows?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:channel . ?x prop:presenter ?uri . ?uri rdf:type onto:Person}",lcquad "Name the river whose source region is North-Western Province, Zambia and source location is Ikelenge District?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:sourceRegion . ?uri prop:sourceLocation . ?uri rdf:type onto:River}",lcquad Who is the compiler of British Gazette whose prime minister is also Peter Thorneycroft ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:British_Gazette prop:editor ?uri. res:Peter_Thorneycroft prop:primeminister ?uri} ",lcquad Name the states which have been billed by the wrestlers who has also billed Georgia ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:billed . ?x prop:billed ?uri . ?x rdf:type onto:Wrestler}",lcquad List the outflows of the lake whose one of the outflows is Benu river ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:outflow res:Benué_River . ?x onto:outflow ?uri . }",lcquad Name the television show with opening theme as Te Deum and is composed by Marc-Antoine Charpentier?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:openingTheme . ?uri prop:themeMusicComposer . ?uri rdf:type onto:TelevisionShow}",lcquad Is Grand Bahama lie in the achipelago of the bahamas?,"PREFIX res: PREFIX prop: ASK WHERE { res:Grand_Bahama prop:archipelago res:The_Bahamas }",lcquad Who produced wizards vs aliens?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Wizards_vs_Aliens onto:producer ?uri } ",lcquad Who is the distributer of Rev ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:distributor ?uri } ",lcquad Which city was founded by George Washington and John Forbes (British Army officer)?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:founder . ?uri onto:founder . ?uri rdf:type onto:City}",lcquad Which is the city closest to both the Lodaiska site and the home of David w brown?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:LoDaisKa_Site onto:nearestCity ?uri. res:David_W._Brown_House onto:nearestCity ?uri . }",lcquad Is Michael Schumacher the first driver of the 1994 grand prix?,"PREFIX res: PREFIX prop: ASK WHERE { res:1994_Hungarian_Grand_Prix prop:firstDriver res:Michael_Schumacher }",lcquad What are the books written by authors who died in Madrid?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:restingPlace . ?uri prop:author ?x . ?uri rdf:type onto:Book}",lcquad What is father's name who also served in military of Carlene Carter?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:children res:Carlene_Carter . }",lcquad Count the number of broadcast area of the TV stations which serves in Agalga ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:broadcastArea . ?x prop:broadcastArea ?uri }",lcquad "In which wars army men awarded with the Croix de Guerre, fought?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:awards . ?x prop:battles ?uri . ?x rdf:type onto:MilitaryPerson}",lcquad Where is the residence of the governor of Bangkok ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Bangkok onto:leaderName ?x . ?x prop:residence ?uri . }",lcquad Name the scientist whose supervisor was Ernest Rutherford and had a doctoral students named Charles Drummond Ellis?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:doctoralAdvisor . ?uri prop:doctoralStudents . ?uri rdf:type onto:Scientist}",lcquad What is the scientist whose PhD students are Erich Bagge and erban ieica?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri prop:doctoralStudents . ?uri prop:doctoralStudents . ?uri rdf:type onto:Scientist}",lcquad Name the movies writtten by the group Monty Python ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:writer . ?uri rdf:type onto:Film}",lcquad Where is Lao Plaza Hotel located?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Lao_Plaza_Hotel prop:developer ?uri } ",lcquad Was Walt Disney the cinematographer of Mickey's Mellerdrammer?,"PREFIX prop: ASK WHERE { prop:cinematography }",lcquad Which sitcom's company is Paramount Television and is located in Cheers Beacon hill ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:company . ?uri prop:location . ?uri rdf:type onto:TelevisionShow}",lcquad Which mainter of Pandaruan Bridge is also the land of Malaysia junior Hockey league ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Pandaruan_Bridge onto:maintainedBy ?uri. res:Malaysia_Junior_Hockey_League onto:country ?uri} ",lcquad Which Tv series led to Frasier?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:subsequentWork . ?uri rdf:type onto:TelevisionShow}",lcquad Which writer has childrens named Mother Mary Alphonsa and Julian Hawthorne?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri prop:children . ?uri prop:children . ?uri rdf:type onto:Writer}",lcquad What is the profession of William Luther Hill ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:William_Luther_Hill onto:profession ?uri } ",lcquad Name all the hubs of the airlines whose one of the hubs is Selangir ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:hubs . ?x prop:hubs ?uri . ?x rdf:type onto:Airline}",lcquad How many other school are there of the rugby players whose school is Michaelhouse ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:school . ?x prop:school ?uri }",lcquad In which country can I find the State Academic Opera and Ballet Theater and Baku Puppet Theatre?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:locationCountry ?uri. onto:locationCountry ?uri . ?uri rdf:type onto:Country}",lcquad What are the films whose atleast one cast member died due to Colorectal cancer?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:deathCause . ?uri prop:starring ?x . ?uri rdf:type onto:Film}",lcquad Who is the President of United World College of Costa Rica ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:United_World_College_of_Costa_Rica prop:president ?uri } ",lcquad Which city has it's landmark as Cheasty Boulevard South?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Cheasty_Boulevard_South onto:maintainedBy ?uri } ",lcquad List down the opponents of Frank Stilwell?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Frank_Stilwell onto:opponent ?uri } ",lcquad Name the movie whose director is Ridley Scott and it's music composer is Vangelis?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:director . ?uri onto:musicComposer . ?uri rdf:type onto:Film}",lcquad Where is Bogobiri House located ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Bogobiri_House prop:locationCity ?uri } ",lcquad What is the religion of the leader of South Korean legislative election of 1992 ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:leader ?x . ?x onto:religion ?uri . }",lcquad Who is the writer of Neverwhere (radio play) ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:writer ?uri } ",lcquad How many other key people are there of the non-profit organisations whose key people is Hillary Clinton ?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:keyPeople . ?x prop:keyPeople ?uri }",lcquad List the stadium of the teams which uses Nea Smyrni as one of the stadium ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:stadium res:Nea_Smyrni_Stadium . ?x prop:stadium ?uri . }",lcquad How many currencies are in used in places where people speak French?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:officialLanguage . ?x onto:currency ?uri . ?uri rdf:type onto:Currency}",lcquad Which football managers managed Middlesbrough F.C.?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:managerClub res:Middlesbrough_F.C. } ",lcquad "Who are some american football players whose high school is Oktoc, Mississippi?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:highSchool . ?uri rdf:type onto:AmericanFootballPlayer}",lcquad Name the company founded in US and created Visual Studio ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:foundation . ?uri prop:products . ?uri rdf:type onto:Company}",lcquad How many factions were involved in the battles fought by Arthur St. Clair?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { prop:battles ?x . ?x prop:combatant ?uri . }",lcquad Count the number of ingredient of the foods which have one of the ingredient is Pork ?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:ingredient . ?x onto:ingredient ?uri }",lcquad What is the television show whose opening theme is Te Deum (Charpentier)?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:openingTheme . ?uri rdf:type onto:TelevisionShow}",lcquad List the ideologies of the party of Boonchu Rojanastien?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Boonchu_Rojanastien prop:party ?x . ?x onto:ideology ?uri . }",lcquad To which country do gabriel paris gordillo and gustavo rojas pinilla owe their allegiance?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Gabriel_París_Gordillo prop:allegiance ?uri. res:Gustavo_Rojas_Pinilla prop:allegiance ?uri . }",lcquad Who were the narrators of the albums which had Ringo Starr as one of the narrator ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:narrated . ?x prop:narrated ?uri . ?x rdf:type onto:Album}",lcquad How many people have played for the ones who own the stadium of Bankers Life Fieldhouse?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:arena . ?uri prop:team ?x . }",lcquad List the newspapers whose headquarters's time zone is Central European Summer Time.,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:timeZone . ?uri prop:headquarters ?x . ?uri rdf:type onto:Newspaper}",lcquad Where does the river end which starts in Mazabuka?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:city . ?x onto:riverMouth ?uri . ?x rdf:type onto:River}",lcquad Count all american football players whose former team owns Lucas Oil Stadium ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:city . ?uri onto:formerTeam ?x . ?uri rdf:type onto:AmericanFootballPlayer}",lcquad What are the academic interests of the advisor of Paul Demiville ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Paul_Demiéville onto:academicAdvisor ?x . ?x prop:fields ?uri . }",lcquad Which awards are presented by Swedish Academy?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:presenter . ?uri rdf:type onto:Award}",lcquad Name the university whose teams have been managed by Albertin Montoya?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:managerclubs ?x . ?x onto:university ?uri . ?x rdf:type onto:SportsTeam}",lcquad what are some journals of academic Philosophy,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:discipline res:Philosophy } ",lcquad Who is the writer of the Cavalcade of America and The United States Steel Hour ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Cavalcade_of_America onto:writer ?uri. res:The_United_States_Steel_Hour onto:writer ?uri . }",lcquad Where did the conflict take place where Liu Mingchuan fought?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Liu_Mingchuan prop:battles ?x . ?x onto:territory ?uri . }",lcquad Which rivers originate from Dowra?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:sourceMountain res:Dowra } ",lcquad What is the official residence of the Lula J. Davis which is also the death location of the John McTaggart (jockey) ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:residence ?uri. onto:deathPlace ?uri} ",lcquad What is the military rank of the commanders of Regiment of Mounted Grenadiers?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Regiment_of_Mounted_Grenadiers prop:notableCommanders ?x . ?x onto:militaryRank ?uri . }",lcquad To which series does the character of Londo Mollari belong?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Londo_Mollari onto:series ?uri } ",lcquad What company's leader is Edwin Catmull?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:keyPeople . ?uri rdf:type onto:Company}",lcquad How many different layouts do cars designed by Oliver Boulay have?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:designer . ?x onto:layout ?uri . }",lcquad Whihc state of Timothy J. Roemer is also the location city of Dad's Root Beer ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:locationCity ?uri. prop:state ?uri} ",lcquad What is the type of Naval Station Bremerton ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Naval_Station_Bremerton prop:type ?uri } ",lcquad Name the borough of the Bordesley railway station which is also the route end of the Birmingham and Oxford Junction Railway?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Bordesley_railway_station prop:borough ?uri. res:Birmingham_and_Oxford_Junction_Railway onto:routeEnd ?uri} ",lcquad What are some movies written by British writers?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:nationality . ?uri onto:writer ?x . ?uri rdf:type onto:Film}",lcquad Which university is led by Jay Gogue?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:president . ?uri rdf:type onto:University}",lcquad Was Michael Schumacher a pole driver in the 1999 GP?,"PREFIX res: PREFIX prop: ASK WHERE { res:1999_Japanese_Grand_Prix prop:poleDriver res:Michael_Schumacher }",lcquad Count the number of artists who trained at the San Francisco Art Institute?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:training . ?uri rdf:type onto:Artist}",lcquad What tv shows were born out of a collaboration of playtone and dreamworks?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:company . ?uri onto:company . ?uri rdf:type onto:TelevisionShow}",lcquad What games can be played in schools founded by Fr. Orlando?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:foundedBy . ?x onto:sport ?uri . ?x rdf:type onto:School}",lcquad Is Ethics the main interests of Henry David Thoreau?,"PREFIX res: PREFIX prop: ASK WHERE { res:Henry_David_Thoreau prop:mainInterests res:Ethics }",lcquad Was Elizabeth Ann Seton canonized by Pope Paul VI?,"PREFIX res: PREFIX prop: ASK WHERE { res:Elizabeth_Ann_Seton prop:canonizedBy res:Pope_Paul_VI }",lcquad List the leaders of the government agencies whose jurisdiction was German-occupied Europe.,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:jurisdiction . ?x onto:leader ?uri . ?x rdf:type onto:GovernmentAgency}",lcquad List the cast member of the movies whose producer is Mark Johnson.,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:producer . ?x onto:starring ?uri . ?x rdf:type onto:Film}",lcquad Which city was designed by saleen Pator which is also the birht location of Jimmy Diggs ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Saleen_S5S_Raptor prop:designer ?uri. res:Jimmy_Diggs onto:birthPlace ?uri} ",lcquad Name the company whose products's predecessor is Boeing Vertol CH-46 Sea Knight?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:predecessor . ?uri prop:products ?x . ?uri rdf:type onto:Company}",lcquad What is the birth place of music artists which were associated with Albert Ayler ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:associatedActs ?x . ?x onto:birthPlace ?uri . ?x rdf:type onto:MusicalArtist}",lcquad What is the religious affiliation of Wickramabahu Central College (National School) ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:religiousAffiliation ?uri } ",lcquad Name the nearest city to Lake Victoria?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Lake_Victoria onto:nearestCity ?uri } ",lcquad Where is the tombstone of Johannes Gerhardus Strijdom?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Johannes_Gerhardus_Strijdom prop:restingplace ?uri } ",lcquad What is the common award won by Charles LeMaire and Eric Roth,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Charles_LeMaire prop:awards ?uri. res:Eric_Roth onto:award ?uri} ",lcquad Was Gareth Southgate a manager of Middlesbrough F.C.?,"PREFIX res: PREFIX prop: ASK WHERE { res:Gareth_Southgate prop:managerclubs res:Middlesbrough_F.C. }",lcquad What is the total number of builder of the military structures whose builder is also United States?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:builder . ?x onto:builder ?uri }",lcquad Tell me the total number of organizations who maintain the bridges made by the malaysian PWD?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:designer . ?x onto:maintainedBy ?uri . ?uri rdf:type onto:Organisation}",lcquad How many shows does HBO have?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:company . ?uri rdf:type onto:TelevisionShow}",lcquad How many people have been canonized by Pope Benedict XVI?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:canonizedBy . }",lcquad What party was in majority of Fourth Legislative Assembly of Delhi?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Fourth_Legislative_Assembly_of_Delhi prop:party ?uri } ",lcquad Bud Adams owns which american football team?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:owner . ?uri rdf:type onto:AmericanFootballTeam}",lcquad Whose work is in the Musee d'orsay?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:museum . ?x prop:artist ?uri . ?x rdf:type onto:Artwork}",lcquad For which team did both Butch Metzger and Brian Horwitz debuted ? ,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Butch_Metzger onto:debutTeam ?uri. res:Brian_Horwitz onto:debutTeam ?uri . }",lcquad Does the Sicklefin lemon shark belong in the animal kingdom?,"PREFIX res: PREFIX onto: ASK WHERE { res:Sicklefin_lemon_shark onto:kingdom res:Animal }",lcquad Does the stylistic origins of Plena lie in the Caribbean?,"PREFIX res: PREFIX prop: ASK WHERE { res:Plena prop:stylisticOrigins res:Caribbean }",lcquad What are the famous Uni Toronto scientists known for?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:almaMater . ?x onto:knownFor ?uri . ?x rdf:type onto:Scientist}",lcquad Who used to skate with the pupils of Laureano Ibarra?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:coach . ?x onto:formerPartner ?uri . ?x rdf:type onto:FigureSkater}",lcquad How many books have been penned by Miguel de Cervantes?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:author . ?uri rdf:type onto:Book}",lcquad Name the river flowing through Reading and source place as Gloucestershire ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:city . ?uri onto:sourcePlace . ?uri rdf:type onto:River}",lcquad Count the band members of Skull Gang?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { onto:bandMember ?uri . ?uri rdf:type onto:Person}",lcquad In which teams have league members of the Czech Extraliga played previously?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:league res:Czech_Extraliga . ?x onto:formerTeam ?uri . }",lcquad Which country's people have graduated from Ghana School of Law?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:almaMater . ?x onto:nationality ?uri . ?x rdf:type onto:Person}",lcquad "What does the river flow into, whose left tributary is Bukovica?","PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:leftTributary . ?x onto:mouthCountry ?uri . }",lcquad For which team does hunter pence play for?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Hunter_Pence onto:team ?uri } ",lcquad Name the ground of Al-Rayan SC ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:ground ?uri } ",lcquad In which cities were the chess grand masters born?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:title . ?x onto:birthPlace ?uri . }",lcquad Which city's governing body is led by Bruce Harrell?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:leader res:Bruce_Harrell . ?uri prop:governingBody ?x . }",lcquad "What band was Afrika Baby Bam a part of, and often performed with Q Tip?","PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:associatedBand ?uri. onto:associatedMusicalArtist ?uri} ",lcquad Which siler medalist of the Tennis at the 2012 Summer Olympics Men's singles was also the flagbearer of the Switzerland at the 2008 Summer Olympics,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:silverMedalist ?uri. prop:flagbearer ?uri} ",lcquad Who is the prime minister of the successor of Kingsley Wood?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Kingsley_Wood onto:successor ?x . ?x prop:primeminister ?uri . }",lcquad List the common relegion affiliation of khadra Haji Ismail and Yasmin khatun ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Khadra_Haji_Ismail_Geid prop:religion ?uri. res:Yasmin_Khatun onto:religion ?uri} ",lcquad Where was Thomy Bourdelle born?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Thomy_Bourdelle prop:placeOfBirth ?uri . }",lcquad How many bands are based in London?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:hometown . ?uri rdf:type onto:Band}",lcquad Name few TV shows aired by Prime Time Entertainment Network?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:network . ?uri rdf:type onto:TelevisionShow}",lcquad Which president of Lance Adams-Schneider had nickname Daniel O'Regan ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:president ?uri. prop:nickname ?uri} ",lcquad WHo gave the lyrcis of Doonesbury ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:lyrics ?uri } ",lcquad Which series are Lennier and Londo Mollari both from?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Lennier onto:series ?uri. res:Londo_Mollari onto:series ?uri . }",lcquad Who coached the marquet golden eagels during 2013,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:coach ?uri } ",lcquad Give me a list of computers whose CPU is in the US.,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:locationCity . ?uri onto:cpu ?x . ?uri rdf:type onto:InformationAppliance}",lcquad "What is that something which made Breann McGregor famous, and Frank Thorne received as an award?","PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Frank_Thorne onto:award ?uri. res:Breann_McGregor prop:knownFor ?uri} ",lcquad "Which things have been located, where governance is Houston City Council?","PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:governingBody res:Houston_City_Council . ?uri onto:location ?x . }",lcquad What beverages originate in Leuven?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:origin . ?uri rdf:type onto:Beverage}",lcquad Who are the parents of Charles Phelps Taft II and Robert A. Taft?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:child res:Charles_Phelps_Taft_II . ?uri onto:child res:Robert_A._Taft . }",lcquad What are the different religions followed by presidents whose prime minister was Surayud Chulanont?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:primeminister . ?x onto:religion ?uri . ?x rdf:type onto:President}",lcquad How many prime ministers did the predecessor of Duncan Sandys serve?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { prop:successor ?x . ?x prop:primeminister ?uri . }",lcquad Name the city served by Juhu Aerodrome ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Juhu_Aerodrome prop:cityServed ?uri } ",lcquad What is the settlement whose neighboring municipalities is Lancy and mayor name is Esther Alder?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:neighboringMunicipalities . ?uri onto:mayor . ?uri rdf:type onto:Settlement}",lcquad List the notable works of the writer of The Tony Randall Show ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:The_Tony_Randall_Show prop:writer ?x . ?x onto:notableWork ?uri . }",lcquad How many cars succeed the cars assembled in Canada?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:assembly . ?x onto:predecessor ?uri . ?uri rdf:type onto:Automobile}",lcquad Where has the employee of Columbia Records worked ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:employer res:Columbia_Records . ?x onto:employer ?uri . }",lcquad What is the birth place of the cast of Lagnacha Dhumdhadaka?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Lagnacha_Dhumdhadaka prop:starring ?x . ?x prop:placeOfBirth ?uri . }",lcquad Whci co founder of Sea gayle Music is also the artist of Brad Paisley Discography /,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Brad_Paisley_discography prop:artist ?uri. res:Sea_Gayle_Music prop:founder ?uri} ",lcquad Which wine region of Bogdanua is the mouth country of Upper Neretva ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Bogdanuša onto:wineRegion ?uri. res:Upper_Neretva onto:mouthCountry ?uri} ",lcquad Which television show's network is BBC HD and is related to Doctor Who Confidential?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:network . ?uri onto:related . ?uri rdf:type onto:TelevisionShow}",lcquad Name the products of Den norske Bank ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Den_norske_Bank prop:products ?uri } ",lcquad In how many places have people canonized by John Paul II died?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:canonizedBy . ?x prop:deathPlace ?uri . ?uri rdf:type onto:Place}",lcquad "Where does the river flow into, which starts at the Sierra Madre de Chiapas?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:source . ?x prop:mouthCountry ?uri . ?x rdf:type onto:River}",lcquad From which country did the Mauritius bank and the national commerce bank emerge?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:National_Commercial_Bank_Mauritius prop:locationCountry ?uri. res:Mauritius_Bank prop:locationCountry ?uri . }",lcquad Who are the shareholder of the broadcast networks whose owning company is Jamie Kellner?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:owningCompany . ?x prop:owner ?uri . ?x rdf:type onto:BroadcastNetwork}",lcquad The Prime minister who worked in the Khmer Issarak follows which religion?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:militaryBranch . ?x onto:religion ?uri . ?x rdf:type onto:PrimeMinister}",lcquad Which country does league of Nguendula Filipe belongs to?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Nguendula_Filipe onto:league ?x . ?x prop:country ?uri . }",lcquad Is the Bucyrus MT6300AC assembled in north america?,"PREFIX res: PREFIX prop: ASK WHERE { res:Bucyrus_MT6300AC prop:assembly res:North_America }",lcquad Which rivers flow into the lower manhatten?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:mouthMountain res:Lower_Manhattan } ",lcquad Who is the founder of Pittsburgh ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Pittsburgh onto:founder ?uri } ",lcquad What are the airlines whose hub is San Francisco International Airport?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:hubs . ?uri rdf:type onto:Airline}",lcquad Who rented the stadium where the UFC 152 take place?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:venue ?x . ?x onto:tenant ?uri . ?x rdf:type onto:Stadium}",lcquad Which appliance has cpu from Freescale Semiconductor and Marvell Technology Group?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:cpu . ?uri onto:cpu . ?uri rdf:type onto:InformationAppliance}",lcquad What is the place where the mayor's wife is Jean-Marc Germain?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:spouse . ?uri onto:mayor ?x . ?uri rdf:type onto:Place}",lcquad Was 2658 Gingerich invented in Harvard?,"PREFIX res: PREFIX onto: ASK WHERE { res:2658_Gingerich onto:discoverer res:Harvard_College }",lcquad Which religions' people fought in the Miao rebellion?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:combatant ?x . ?x onto:religion ?uri . }",lcquad Which universities are alma mater to Charles Plosser?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Charles_Plosser prop:almaMater ?uri } ",lcquad What is the constituency of Santo Versace?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Santo_Versace prop:constituency ?uri } ",lcquad Count all the shows whose music composers are in Oysterhead.,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:associatedMusicalArtist . ?uri prop:themeMusicComposer ?x . ?uri rdf:type onto:TelevisionShow}",lcquad List the significant building of the architect who also designed Kiev?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:significantBuilding . ?x onto:significantBuilding ?uri . ?x rdf:type onto:Architect}",lcquad How many other architect are there of the historic places whose architect is also Stanford White ?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:architect . ?x onto:architect ?uri }",lcquad What is the deathplace of the rugby player who is the relatives of Anton Oliver ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Anton_Oliver prop:relatives ?x . ?x onto:deathPlace ?uri . }",lcquad What is the alma mater of the Marshall Fletcher McCallie and has affiliation with Vanderbilt University Medical Center ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Marshall_Fletcher_McCallie prop:almaMater ?uri. res:Vanderbilt_University_Medical_Center prop:affiliation ?uri} ",lcquad Who has had been the tenant of the stadium built by PCL construction firm?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:builder . ?x onto:tenant ?uri . ?x rdf:type onto:Stadium}",lcquad Does the Amazon River start in Arequipa Region?,"PREFIX res: PREFIX prop: ASK WHERE { res:Amazon_River prop:sourceRegion res:Arequipa_Region }",lcquad Is San Salvador Island a part of the Bahamas?,"PREFIX res: PREFIX onto: ASK WHERE { res:San_Salvador_Island onto:archipelago res:The_Bahamas }",lcquad "List the people educated at Harvard-Westlake School and has resting place as Palo Alto, California?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:almaMater . ?uri prop:restingPlace . ?uri rdf:type onto:Person}",lcquad Which companies published Super Mario Adventures?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Super_Mario_Adventures prop:publisher ?uri } ",lcquad What is the television show whose producer is Stephen E. Ambrose?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:producer . ?uri rdf:type onto:TelevisionShow}",lcquad Which artist of Madagascar: Operation Penguin is also the writer of He's a Pirate ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:artist ?uri. prop:writer ?uri} ",lcquad Name the software whose operating system is Mac OS and programming language is C++ ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:operatingSystem . ?uri prop:programmingLanguage . ?uri rdf:type onto:Software}",lcquad In which state does the valley bordering the Modoc plateau lie?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:border . ?x onto:state ?uri . ?x rdf:type onto:Valley}",lcquad Where was the designer of REP Parasol born?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:REP_Parasol onto:designer ?x . ?x onto:birthPlace ?uri . }",lcquad Which religion is followed by people in the family of Meadow Sopranos?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:family . ?x onto:religion ?uri . ?x rdf:type onto:Person}",lcquad What religion does roshan ranasinghe and nhiek tioulong follow?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Roshan_Ranasinghe prop:religion ?uri. res:Nhiek_Tioulong onto:religion ?uri} ",lcquad How many cars are the predecessor of cars similar to the Pontiac G8?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { onto:relatedMeanOfTransportation ?x . ?x onto:predecessor ?uri . ?x rdf:type onto:Automobile}",lcquad What are some shows whose voice actors play the piano?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:instrument . ?uri prop:voices ?x . ?uri rdf:type onto:TelevisionShow}",lcquad What is the birth place of the successor of Ella T. Grasso ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Ella_T._Grasso prop:successor ?x . ?x prop:birthPlace ?uri . }",lcquad From how many different places have participants of Breeders's Cup Turf come?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:race . ?x prop:birthPlace ?uri . }",lcquad How many movies were cinematographed by Jordan Cronenweth?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:cinematography . ?uri rdf:type onto:Film}",lcquad South Side elevated railroad and twin cities 400 are operated by which city?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:South_Side_Elevated_Railroad onto:operatedBy ?uri. res:Twin_Cities_400 onto:operatedBy ?uri . }",lcquad Who is the famous relative of Kelly Osbourne?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:relatives res:Kelly_Osbourne . }",lcquad In how many different stadiums are the seasons of the 2015 NA Soccer league held?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:league . ?x onto:ground ?uri . ?uri rdf:type onto:Stadium}",lcquad What teams have Avangard Omsk's players played for?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:playedFor res:Avangard_Omsk . ?x onto:formerTeam ?uri . }",lcquad Who is the player who plays for the team that has the Michigan Stadium?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:stadium . ?uri prop:currentteam ?x . ?uri rdf:type onto:Athlete}",lcquad How many athletic associations are there in all of the private universities?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:type . ?x prop:athletics ?uri . }",lcquad In which cities can i find drinks similar to the IBC root beer?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:related . ?x prop:locationCity ?uri . ?x rdf:type onto:Beverage}",lcquad Is Queen Latifah associated with Afrika Baby Bam?,"PREFIX res: PREFIX onto: ASK WHERE { res:Afrika_Baby_Bam onto:associatedBand res:Queen_Latifah }",lcquad Which royal person married the successor of Darius I?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:predecessor . ?uri prop:spouse ?x . ?uri rdf:type onto:Royalty}",lcquad What are some products manufactured by Sony? ,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:manufacturer res:Sony . }",lcquad What is the producer of the television shows whose channel is CBBC?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:channel . ?x onto:producer ?uri . ?x rdf:type onto:TelevisionShow}",lcquad List all the movies whose music has been made up with someone under RCA records?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:recordLabel . ?uri prop:music ?x . ?uri rdf:type onto:Film}",lcquad Is N. C. Wyeth the illustration by of The Mysterious Stranger?,"PREFIX res: PREFIX prop: ASK WHERE { res:The_Mysterious_Stranger prop:illustrator res:N._C._Wyeth }",lcquad What cities are around the valley bordering Lake Mead?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:border . ?x onto:city ?uri . ?x rdf:type onto:Valley}",lcquad List the magazines published by Playbow Enterprises ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:publisher . ?uri rdf:type onto:Magazine}",lcquad In which series do I find Minbari species' characters?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:species . ?x onto:series ?uri . ?x rdf:type onto:FictionalCharacter}",lcquad "Did James brown make the song Killing is Out, School Is In?","PREFIX onto: ASK WHERE { onto:musicalBand }",lcquad What is the style of architecture of South Loop Printing House District ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:South_Loop_Printing_House_District onto:architecturalStyle ?uri } ",lcquad What is the university whose campus are Indiana and Iowa?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:campus . ?uri onto:campus . ?uri rdf:type onto:University}",lcquad Name the ssignificant buildings of Ivan Fomin ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Ivan_Fomin onto:significantBuilding ?uri } ",lcquad What are all the religions in which Jacob and Abraham are important?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Jacob prop:veneratedIn ?uri. res:Abraham prop:veneratedIn ?uri . }",lcquad Is Robert Boyle a chemist?,"PREFIX res: PREFIX onto: ASK WHERE { res:Robert_Boyle onto:field res:Chemistry }",lcquad Where did the relatives of David Hume study?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:relative res:David_Hume . ?x prop:education ?uri . }",lcquad Which state of Tendaho dam is the headquarters of Ethiopian People's revolutionary democratic Front located ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:headquarters ?uri. prop:country ?uri} ",lcquad What prizes have been awarded to the relatives of Linn Ullmann?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Linn_Ullmann prop:relatives ?x . ?x prop:awards ?uri . }",lcquad What are the television shows of a company headquartered in Geneva?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:headquarters . ?uri prop:company ?x . ?uri rdf:type onto:TelevisionShow}",lcquad Name the television show whose distributor is Comedy central and the character voice is given by Isaac hayes ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:distributor . ?uri prop:voices . ?uri rdf:type onto:TelevisionShow}",lcquad Give me the count of newspaper whose language is Sweedish and headquartered at stockholm ?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:language . ?uri prop:headquarters } ",lcquad What are the cities located on the sea into which the Aegean Sea flows?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Aegean_Sea onto:outflow ?x . ?x prop:cities ?uri . }",lcquad In which areas did the pupils of Sylvain Levi work?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:academicAdvisor res:Sylvain_Lévi . ?x prop:fields ?uri . }",lcquad Name the movie whose producer is Michael Deeley and music is given by Vangelis ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:producer . ?uri prop:music . ?uri rdf:type onto:Film}",lcquad How many people are in the band with Juelz Santana?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:currentMembers . ?x onto:bandMember ?uri . ?uri rdf:type onto:Person}",lcquad Name the partners of the models whose one of the partner is Thom Evans ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:partner . ?x onto:partner ?uri . ?x rdf:type onto:Model}",lcquad Who owns the broadcast network founded by CNN?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:foundedBy . ?x prop:owner ?uri . ?x rdf:type onto:BroadcastNetwork}",lcquad List the writers of Tales of Suspense ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Tales_of_Suspense prop:writers ?uri } ",lcquad Which magazine has publisher as Jann Wenner?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:publisher . ?uri rdf:type onto:Magazine}",lcquad List the academic discipline of the journals whose one of the discipline is neuro imaging ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:academicDiscipline . ?x onto:academicDiscipline ?uri . ?x rdf:type onto:AcademicJournal}",lcquad Who has authored books published by the Perkins school for the Blind?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:publisher . ?x onto:author ?uri . ?x rdf:type onto:WrittenWork}",lcquad Semani languages are spoken in which countries?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:languages . ?uri rdf:type onto:Country}",lcquad What kind of games does Blizzard games develop?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:developer . ?x onto:genre ?uri . ?x rdf:type onto:VideoGame}",lcquad "How many different pole drivers are there, of the GPs when Renault was the first team?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:firstTeam . ?x onto:poleDriver ?uri . ?uri rdf:type onto:FormulaOneRacer}",lcquad What is the label of Double Diamond (album) ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:recordLabel ?uri } ",lcquad "Where is the VP buried, which was served by Frederick Cooke?","PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:vicePresident ?x . ?x onto:restingPlace ?uri . }",lcquad Name the person whose child is Irne Joliot-Curie?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:children . ?uri rdf:type onto:Person}",lcquad How many destinations are covered by the airlines which also serves Europe ?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:destinations . ?x prop:destinations ?uri }",lcquad Where can i find companies which were started in Toronto?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:foundationPlace . ?x prop:locations ?uri . ?x rdf:type onto:Company}",lcquad Name few companies where don berlin and michael sears have worked together?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Don_R._Berlin onto:employer ?uri. res:Michael_M._Sears onto:employer ?uri . }",lcquad Name the university with mascot as Aubie and president as jay Gogue ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:mascot . ?uri onto:president . ?uri rdf:type onto:University}",lcquad How many things belong to phylum of Chordate?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:phylum . }",lcquad Did Gwo Ka originate in Western Africa?,"PREFIX res: PREFIX prop: ASK WHERE { res:Gwo_ka prop:stylisticOrigins res:West_Africa }",lcquad People from how many political parties exist in Maharashtra?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:placeOfBirth . ?x onto:party ?uri . }",lcquad What would be the most important creation which involved both Neil Cross and Russel Davies ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Neil_Cross onto:notableWork ?uri. res:Russell_T_Davies onto:notableWork ?uri . }",lcquad With which musical artist is the music group which sung Mind Blowin' related to ? ,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:musicalArtist ?x . ?x onto:associatedMusicalArtist ?uri . }",lcquad Where did the office holder died who also have faith in Episcopal Church ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:religion . ?x onto:deathPlace ?uri . ?x rdf:type onto:OfficeHolder}",lcquad Who are buried in Rome and Mausoleum of Augustus?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?uri prop:placeOfBurial res:Rome . ?uri prop:placeOfBurial res:Mausoleum_of_Augustus . }",lcquad To which branch Edwin F. Hunter belong ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Edwin_F._Hunter prop:branch ?uri } ",lcquad "Which university has affiliations to Graham Holdings and Kaplan, Inc.?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri prop:affiliations . ?uri prop:affiliations . ?uri rdf:type onto:University}",lcquad Which band's past member are Joe Jonas and Nick Jonas?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri prop:pastMembers . ?uri prop:pastMembers . ?uri rdf:type onto:Band}",lcquad Who are the children of Abigail Adams?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Abigail_Adams prop:children ?uri } ",lcquad Which things are Breann McGregor known for ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Breann_McGregor prop:knownFor ?uri } ",lcquad what are some common games played at both Fr Agnel Multipurpose School and Vishwajyot High School?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Fr._Agnel_Multipurpose_School_and_Junior_College onto:sport ?uri. res:Vishwajyot_High_School onto:sport ?uri . }",lcquad Who have done their PhDs under a National Medal of Science winner?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:prizes res:National_Medal_of_Science . ?uri prop:doctoralAdvisor ?x . }",lcquad List the profession of senate whose one of the profession is United States Coast Guard ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:profession . ?x onto:profession ?uri . ?x rdf:type onto:Politician}",lcquad Who is known for are Battle of the Thames and War of 1812?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:knownFor res:Battle_of_the_Thames . ?uri onto:knownFor res:War_of_1812 . }",lcquad Where is the headquarters of the public transit system which operators Go-to-card ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:operator ?x . ?x prop:headquarters ?uri . ?x rdf:type onto:PublicTransitSystem}",lcquad How many people are there who have relationship with Kennedy family?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:relation . }",lcquad "Name the company founded by Jim Harris located in Harris County, Texas ?","PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:foundedBy . ?uri onto:locationCity . ?uri rdf:type onto:Company}",lcquad What is the total number of fictional characters whose created by Greg Daniels and series is The Office (U.S. TV series)?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:creator . ?uri onto:series } ",lcquad Which local authority of Buckhurst Hill County High School is the palce of burial of Elizabeth Rhuddlan ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Elizabeth_of_Rhuddlan prop:placeOfBurial ?uri. res:Buckhurst_Hill_County_High_School onto:localAuthority ?uri} ",lcquad In which city where there is a headquarters of Orient News and also Feras Saied died?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Orient_News prop:headquarters ?uri. res:Feras_Saied onto:deathPlace ?uri} ",lcquad "Who were the opponents of employees of Henry Howard, the Northampton Earl?","PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:employer . ?x onto:opponent ?uri . }",lcquad What newspapers's owners is Schibsted,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:owners . ?uri rdf:type onto:Newspaper}",lcquad Who is the common parent of Gettv and hypnotize mind ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:GetTV onto:parentOrganisation ?uri. res:Hypnotize_Minds prop:parent ?uri} ",lcquad Name a fictional character whose relative is Uncle Henry and species is Human?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:relative . ?uri onto:species . ?uri rdf:type onto:FictionalCharacter}",lcquad Which river inflow of the Cahora Bassa is also Batoka Gorge Hydroelectric Power Station's river ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Cahora_Bassa prop:inflow ?uri. res:Batoka_Gorge_Hydroelectric_Power_Station onto:river ?uri} ",lcquad "Which cities come in the course of the river, into which Big Creek around Texas flows too?","PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:rightTributary . ?x onto:city ?uri . ?x rdf:type onto:River}",lcquad What islands are there on the Greater Antilles archipelago?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:archipelago . ?x prop:name ?uri . ?x rdf:type onto:Island}",lcquad Was Zachary taylor a major general?,"PREFIX prop: ASK WHERE { prop:rank }",lcquad Name the military units whose command structure's headquarters is The Pentagon?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:headquarters . ?uri onto:commandStructure ?x . ?uri rdf:type onto:MilitaryUnit}",lcquad Which TV show's setting is in Massachusetts and is the subsequent work of Fraiser ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:subsequentWork . ?uri onto:location . ?uri rdf:type onto:TelevisionShow}",lcquad Which bands are associated to David Paton?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:David_Paton onto:associatedBand ?uri } ",lcquad In how many teams have people previously played who play as defencemen?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:position . ?x onto:formerTeam ?uri . ?uri rdf:type onto:SportsTeam}",lcquad What is the Team Name of St. Viator High School ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:St._Viator_High_School prop:teamName ?uri } ",lcquad Give me the count of tenants of the stadia whose one of the tenants is Toronto Furies?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:tenants . ?x prop:tenants ?uri }",lcquad Who is the headcoach of 2013-14 Marquette Golden Eagles men's basketball team ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:headcoach ?uri } ",lcquad To what nation do Victor Gunasekara and Anuruddha Ratwatte owe their allegiance?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Victor_Gunasekara prop:allegiance ?uri. res:Anuruddha_Ratwatte prop:allegiance ?uri . }",lcquad Who is the musician of Before I let you Go ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Before_I_Let_You_Go onto:musicalArtist ?uri } ",lcquad Who developed the programming languages designed by Rob Pike?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:designer . ?x onto:developer ?uri . ?x rdf:type onto:ProgrammingLanguage}",lcquad "Name the military unit whose garrison is Arlington County, Virginia and command structure is United States Department of Defense?","PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:garrison . ?uri onto:commandStructure . ?uri rdf:type onto:MilitaryUnit}",lcquad Which races has the horse bred by Jacques Van't Hart participated in?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:breeder . ?x prop:race ?uri . ?x rdf:type onto:Horse}",lcquad Is the Journal of Cerebral Blood Flow and Metabolism about Brains?,"PREFIX onto: ASK WHERE { onto:academicDiscipline }",lcquad What are all the countires where food related to tuna salad is consumed ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:related res:Tuna_salad . ?x prop:country ?uri . }",lcquad What is the layout of the automobiles whose designer company is Olivier Boulay?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:designCompany . ?x onto:layout ?uri . ?x rdf:type onto:Automobile}",lcquad Is the Caterpullar 797F assembled in North America?,"PREFIX res: PREFIX prop: ASK WHERE { res:Caterpillar_797F prop:assembly res:North_America }",lcquad which band was Roger waters in?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:formerBandMember res:Roger_Waters } ",lcquad In which places can we find the people won the Project Runaway Canada?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:award . ?x onto:residence ?uri . ?x rdf:type onto:Person}",lcquad Who is the coach of England national under-21 football team ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:coach ?uri } ",lcquad "Which rivers end in Old Saybrook, Connecticut?","PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:mouthMountain } ",lcquad "Where does the river end, into which the Rakitnica flows?","PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:rightTributary res:Rakitnica . ?x onto:mouthCountry ?uri . }",lcquad "What does the bridge go over, which is in Katima Mulilo?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:locatedInArea . ?x prop:crosses ?uri . ?x rdf:type onto:Bridge}",lcquad What are the baseball players who played for San Francisco Giants?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:team . ?uri rdf:type onto:BaseballPlayer}",lcquad How many airlines have a hub at an airport run by LA World Airports?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:operator . ?uri onto:hubAirport ?x . ?uri rdf:type onto:Airline}",lcquad where is the thorington train station located?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Thorington_railway_station onto:district ?uri } ",lcquad Who is the person whose parent is Ptolemy XII Auletes?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:parent . ?uri rdf:type onto:Person}",lcquad "What are the schools whose city is Reading, Berkshire?","PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:city } ",lcquad List the television shows whose network's executive officer is Steve Burke.,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:keyPerson . ?uri onto:network ?x . ?uri rdf:type onto:TelevisionShow}",lcquad With whom were the engagements of Alpine Brigade Taurinense?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Alpine_Brigade_Taurinense onto:battle ?uri } ",lcquad Find the total number of tenants of the stadium whose tenants was Toronto Marlies?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:tenants . ?x prop:tenants ?uri }",lcquad Whose relatives are Uncle Henry (Oz) and Aunt Em?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:relative . ?uri onto:relative . }",lcquad What genres of games are available on the Commodore 64?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:computingPlatform . ?x prop:genre ?uri . ?x rdf:type onto:VideoGame}",lcquad Who gave the voice for Allen Walker ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Allen_Walker onto:voice ?uri } ",lcquad Which companies have Kumho Asiana Group as their parent company?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:parentCompany res:Kumho_Asiana_Group } ",lcquad How many buildings are located in Toronto ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:location . ?uri rdf:type onto:Building}",lcquad "Where does the river flows into, which starts in Gredelj?","PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:source res:Gredelj . ?x onto:riverMouth ?uri . }",lcquad "What is the country which lies on the European route E8, and where Ragnhild Jolson was born?","PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:European_route_E8 onto:county ?uri. res:Ragnhild_Jølsen prop:birthplace ?uri} ",lcquad How many people have been the head coach for Middlesbrough FC?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:club . ?x onto:manager ?uri . ?uri rdf:type onto:Person}",lcquad "Where do the people, famous for the Panathinaikos FC reside?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:knownFor . ?x prop:residence ?uri . ?x rdf:type onto:Person}",lcquad Who is the office holder whose resting place is Monticello?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:restingPlace . ?uri rdf:type onto:OfficeHolder}",lcquad What was founded by pina Records which has name of Geography of Puerto Rico ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Geography_of_Puerto_Rico prop:name ?uri. res:Pina_Records prop:founded ?uri} ",lcquad Is The Universe in a Single Atom a book about buddhism?,"PREFIX res: PREFIX onto: ASK WHERE { res:The_Universe_in_a_Single_Atom onto:literaryGenre res:Buddhism }",lcquad "Where is the tunnel, which is operated by BNSF railways?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:operatedBy . ?x prop:location ?uri . ?x rdf:type onto:RailwayTunnel}",lcquad Is Frontaccounting licensed under GNU license?,"PREFIX res: PREFIX onto: ASK WHERE { res:Frontaccounting onto:license res:GNU }",lcquad Terminal Station at Chattanooga is made by architects from which University?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:knownFor . ?x prop:education ?uri . ?x rdf:type onto:Architect}",lcquad How many producers have casted Michael Jackson?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:starring . ?x prop:producer ?uri . }",lcquad "Who is married to a Miss Louisiana, USA?","PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:title res:Miss_Louisiana_USA . ?uri prop:spouse ?x . }",lcquad What sports are played by school which owns Fr. Agnel Stadium ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:owner ?x . ?x onto:sport ?uri . ?x rdf:type onto:School}",lcquad What is the major shrine of Jacques-Dsir Laval ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:majorShrine ?uri } ",lcquad What fictional character's species is American Pekin duck,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:species res:American_Pekin_duck } ",lcquad What is the television show whose subsequent work is Crusade (TV series) and developed by J. Michael Straczynski?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:subsequentWork . ?uri onto:developer . ?uri rdf:type onto:TelevisionShow}",lcquad What is the county of Saint Lucia national cricket team ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Saint_Lucia_national_cricket_team onto:county ?uri } ",lcquad Who is the Pole driver of 1997 Canadian Grand Prix ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:1997_Canadian_Grand_Prix prop:poleDriver ?uri } ",lcquad What is the common region of the braod cast area of ITV and nationality of Ajahn Thate ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:broadcastArea ?uri. onto:nationality ?uri} ",lcquad Who is the president of United World College of Costa Rica ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:United_World_College_of_Costa_Rica onto:president ?uri } ",lcquad Things going to the mediterranean sea also go where?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:destinations . ?x onto:destination ?uri . }",lcquad Who is the distributor of Rev (drink) ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:distributor ?uri } ",lcquad In how many different places are Brown haired models living?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:hairColor . ?x onto:residence ?uri . }",lcquad Mouse Morris' horses have raced in which races?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:trainer . ?x prop:race ?uri . ?x rdf:type onto:Horse}",lcquad What are the television shows telecasted on the network which has headquarters at Atlanta?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:headquarters . ?uri prop:network ?x . ?uri rdf:type onto:TelevisionShow}",lcquad Name the award given in Norway and presented by Swedish Academy ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:presenter . ?uri onto:country . ?uri rdf:type onto:Award}",lcquad Which producer of Boeing F/A has Dennis Muilenburg as an important person ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:product . ?uri prop:keyPeople . }",lcquad "Where is the assembly of Plymouth Savoy, and where Special 26 was recorded?","PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Plymouth_Savoy onto:assembly ?uri. res:Special_26 prop:recorded ?uri} ",lcquad What is an airport inside ontario?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:cityServed . ?uri rdf:type onto:Airport}",lcquad Is Queen Latifah the narrator of Arctic Tale?,"PREFIX res: PREFIX prop: ASK WHERE { res:Arctic_Tale prop:narrator res:Queen_Latifah }",lcquad "What is the career of George Arceneaux, Jr. ?","PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:occupation ?uri } ",lcquad What are some shows by Comedy Central?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:network . ?uri rdf:type onto:TelevisionShow}",lcquad What are the party of the politicians whose deputy was Chaudhary Devi Lal?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:deputy . ?x onto:otherParty ?uri . ?x rdf:type onto:OfficeHolder}",lcquad Which movies' music is composed by people associated with the band Yes?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:associatedMusicalArtist . ?uri onto:musicComposer ?x . ?uri rdf:type onto:Film}",lcquad What came before PlayStation 4 and uses PlayStation 3 system software as OS?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:successor res:PlayStation_4 . ?uri prop:os res:PlayStation_3_system_software . }",lcquad "List the affiliation of Indian general election, 2004 (Andhra Pradesh) ?","PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:affiliation ?uri } ",lcquad How many religion's commanders have served in the Royal Thai Army?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { prop:notableCommanders ?x . ?x onto:religion ?uri . }",lcquad "Who are the people which were the influencer of the person, who influenced Costanzo Preve ?","PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:influencedBy ?x . ?x onto:influencedBy ?uri . ?x rdf:type onto:Person}",lcquad What is manufactured by Asus and Sony togather?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:manufacturer res:Asus . ?uri onto:manufacturer res:Sony . }",lcquad Name the TV show with theme music by Primus and broadcasted on Comedy Central ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:network . ?uri prop:themeMusicComposer . ?uri rdf:type onto:TelevisionShow}",lcquad Count all the games whose distributors are located in America,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:country . ?uri prop:distributor ?x . }",lcquad What is the location of the pope whose major shrine is St. Peter's Basilica ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:majorShrine . ?x prop:birthPlace ?uri . ?x rdf:type onto:Pope}",lcquad List all the faiths that British Columbian politicians follow?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:residence . ?x prop:religion ?uri . ?x rdf:type onto:Politician}",lcquad What is the birthplace of the Ferrel Harris which is also resting palce of Green Wix Unthank?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Ferrel_Harris prop:birthplace ?uri. res:Green_Wix_Unthank onto:restingPlace ?uri} ",lcquad What is the river one of whose left tributary's native name is Arabic?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:nativeName res:Arabic . ?uri onto:leftTributary ?x . }",lcquad What work has been directed by Orson Welles and distributed by RKO Pictures?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:director . ?uri prop:distributor . ?uri rdf:type onto:Work}",lcquad What is the alma mater of Andrew W. Lewis ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Andrew_W._Lewis onto:almaMater ?uri } ",lcquad Who is the spouse of Daniel Gibson? ,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:spouse res:Daniel_Gibson . }",lcquad Spanish harlem incident and girl from the north country were originally composed by whom?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Spanish_Harlem_Incident onto:composer ?uri. res:Girl_from_the_North_Country onto:composer ?uri . }",lcquad "Name the nearest city to the historic place which has Englewood, Colorado as one of them ?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:nearestCity . ?x onto:nearestCity ?uri . ?x rdf:type onto:HistoricPlace}",lcquad What are the movies directed by Joel Schumacher?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:director . ?uri rdf:type onto:Film}",lcquad Where did the music genre of Harry and the Potters originate?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:genre ?x . ?x onto:stylisticOrigin ?uri . }",lcquad To which political party do the children of Sonia Gandhi belong?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Sonia_Gandhi prop:children ?x . ?x onto:party ?uri . }",lcquad Name some relatives of the people studied in Manurewa High School?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:school res:Manurewa_High_School . ?x onto:relative ?uri . }",lcquad Name a TV show judged by Jennifier Lopez and presented by Brian Dunkleman ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:judges . ?uri prop:presenter . ?uri rdf:type onto:TelevisionShow}",lcquad What is the draft team of Antoine Bibeau ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Antoine_Bibeau prop:draftTeam ?uri } ",lcquad What are a few molluscas whose family is Buccinidae?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:family . ?uri rdf:type onto:Mollusca}",lcquad What is the television show whose vocals are performed by April Stewart and Mona Marshall?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri prop:voices . ?uri prop:voices . ?uri rdf:type onto:TelevisionShow}",lcquad How many have family as Ape and order (taxonomy) is Primate ?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:family . ?uri onto:order } ",lcquad From which team did Marv McFadden played ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Marv_McFadden prop:pastteams ?uri } ",lcquad "Who studied at Harvard-Westlake School and has Henry E. Catto, Jr. as predecessor ?","PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:almaMater . ?uri onto:predecessor . }",lcquad Name the licensee of the WRVU who has the affiliation of Monroe Carell Jr. Children's Hospital at Vanderbilt ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:licensee ?uri. prop:affiliation ?uri} ",lcquad Is Rajya Sabha a house of parliament in India?,"PREFIX res: PREFIX prop: ASK WHERE { res:Parliament_of_India prop:houses res:Rajya_Sabha }",lcquad Who are the trainersof Candice Michelle?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Candice_Michelle onto:trainer ?uri } ",lcquad Which constructor's team won the 1967 Mexican Grand Prix ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:1967_Mexican_Grand_Prix prop:firstTeam ?uri } ",lcquad Where is the main ground of soccer seasons whose chairman is Ronaldo?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:chairman . ?x onto:ground ?uri . ?x rdf:type onto:SoccerClubSeason}",lcquad Which person belongs to the board of Howard Hughes Medical Institute?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:board . ?uri rdf:type onto:Person}",lcquad Who is the stock holder of the bank where Peter Grauer works ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:occupation ?x . ?x prop:owner ?uri . ?x rdf:type onto:Bank}",lcquad Does the asiana airlines fly into the Gimhae International Airport?,"PREFIX res: PREFIX onto: ASK WHERE { res:Asiana_Airlines onto:targetAirport res:Gimhae_International_Airport }",lcquad Where is the head quarters of the owner of Hamline Avenue?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:owner ?x . ?x prop:headquarters ?uri . }",lcquad Who is the co-founder of the city where Owen Dougherty died?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:placeOfDeath ?x . ?x onto:founder ?uri . ?x rdf:type onto:City}",lcquad For which teams did the Hawai graduated players play their first game?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:college . ?x onto:debutTeam ?uri . ?x rdf:type onto:Athlete}",lcquad What is the title of Kakae ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Kakae prop:title ?uri } ",lcquad Which broadcast area of Mauritius Broadcasting Corporation is also the nationality of Michael Medor ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Mauritius_Broadcasting_Corporation prop:broadcastArea ?uri. res:Michael_Medor onto:nationality ?uri} ",lcquad What is the county of the road whose route end is Pahang ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:routeEnd . ?x onto:county ?uri . ?x rdf:type onto:Road}",lcquad Who wrote Heroman?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Heroman prop:author ?uri } ",lcquad Name the person who died in Fair Lane ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:deathPlace . ?uri rdf:type onto:Person}",lcquad List the religion of people in the Cambodian human rights party?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:otherParty . ?x onto:religion ?uri . ?x rdf:type onto:Person}",lcquad What relegious affiliation of Josiah Idowu-Fearon was canonized by john of Damasucs ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:canonizedBy ?uri. onto:religion ?uri} ",lcquad Which draft team od Dale Mitchell is also the tenant of Master Card center /,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:draftTeam ?uri. prop:tenants ?uri} ",lcquad "What cities does the river goes through, whose tributary is the little black river in Arkansas?","PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:leftTributary . ?x onto:city ?uri . ?x rdf:type onto:River}",lcquad Where did the ultimate fighter: a champion will be crowned tonight and ultimate fighter: team rousey vs team tate take place?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:The_Ultimate_Fighter:_A_Champion_Will_Be_Crowned prop:city ?uri. res:The_Ultimate_Fighter:_Team_Rousey_vs._Team_Tate prop:city ?uri . }",lcquad Is Roger Federer the flagbearer of Switzerland at the 2004 Summer Olympics?,"PREFIX res: PREFIX prop: ASK WHERE { res:Switzerland_at_the_2004_Summer_Olympics prop:flagbearer res:Roger_Federer }",lcquad What show has judge as Randy Jackson sculptors as Simon Fuller?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:judges . ?uri prop:creator . ?uri rdf:type onto:TelevisionShow}",lcquad Which nation's engineers have graduated in Poland?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:education . ?x prop:nationality ?uri . ?x rdf:type onto:Engineer}",lcquad Give me a count of movies whose music composer is Bernard Herrmann?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:musicComposer . ?uri rdf:type onto:Film}",lcquad "What awards have been given to the artists coming out of the university of Melbourne, faculty of VCA and MCM?","PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:training . ?x onto:award ?uri . ?x rdf:type onto:Artist}",lcquad List the destinations of Novair International Airways ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Novair_International_Airways prop:destinations ?uri } ",lcquad Name the state of Timothy J. Roemer ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Timothy_J._Roemer prop:state ?uri } ",lcquad What are all the religions that have been followed by the Sir Lankan attorneys?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:profession res:Attorneys_in_Sri_Lanka . ?x onto:religion ?uri . }",lcquad Which awards have been given to the horse who sired Triplicate ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Triplicate prop:sire ?x . ?x onto:honours ?uri . }",lcquad Where did the spouse of pmare ii die?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:spouse res:Pōmare_II . ?x onto:deathPlace ?uri . }",lcquad What killed John Thompson Mason and Martino Martini?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:deathCause ?uri. onto:deathCause ?uri . }",lcquad Into which water bodies does Lake Uniamsi outflow?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Lake_Uniamési prop:outflow ?uri } ",lcquad Which river does Katima Mulilo Bridge cross?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Katima_Mulilo_Bridge prop:crosses ?uri } ",lcquad Which office holder's successor is Adrian A. Basora and child named Lori Black?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:successor . ?uri prop:children . ?uri rdf:type onto:OfficeHolder}",lcquad What is the debut team of Tom O'Malley ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:debutteam ?uri } ",lcquad In which country is Bocas del toro a capital of some region?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:capital . ?x prop:country ?uri . }",lcquad What is the political party to which Purnima Banerjee is a member of??,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Purnima_Banerjee onto:party ?uri } ",lcquad Jimmie Fisher and Winston Bryant were governors under which president?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Jimmie_Lou_Fisher prop:governor ?uri. res:Winston_Bryant prop:governor ?uri . }",lcquad What is the headquarters of the public transit system which is the section of Red Ahead ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:isPartOf ?x . ?x prop:headquarters ?uri . ?x rdf:type onto:PublicTransitSystem}",lcquad List the leaders of all the cities through which the Ganga river flows ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:city ?x . ?x onto:leaderName ?uri . ?x rdf:type onto:City}",lcquad Did Christian Barnard study in the University of Minnesota?,"PREFIX res: PREFIX onto: ASK WHERE { res:Christiaan_Barnard onto:institution res:University_of_Minnesota }",lcquad Who has written works found in the Gangan comics?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:magazine res:Gangan_Comics . ?x prop:author ?uri . }",lcquad What is the currency of Republic of Montenegro (1992-2006) ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:currency ?uri } ",lcquad What is the device whose successor's CPU is by AMD?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:cpu . ?uri onto:successor ?x . ?uri rdf:type onto:Device}",lcquad What is the club of Perianne Jones ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Perianne_Jones prop:club ?uri } ",lcquad What awards did the founder of Grameen Bank win?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Grameen_Bank prop:founder ?x . ?x onto:award ?uri . }",lcquad What television show is aired on channel Sirius XM Holdings?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:channel . ?uri rdf:type onto:TelevisionShow}",lcquad How many have order (taxonomy) as Bacillales and division as Firmicutes are there?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:order . ?uri onto:division } ",lcquad What is the movie whose producer is Michael Deeley and directed by Ridley Scott?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:producer . ?uri prop:director . ?uri rdf:type onto:Film}",lcquad Which manufacturer of Ford Y-block engine is the parent of Ford Air Transport Service ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:manufacturer ?uri. prop:parent ?uri} ",lcquad Which governing body of the Oahu Railway and Land Company is also the military branch of the Jimmy Quillen ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Oahu_Railway_and_Land_Company prop:governingBody ?uri. res:Jimmy_Quillen onto:militaryBranch ?uri} ",lcquad Which arena of WPC Dynamo Moscow is the death palce of Mikhail Voronin ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:WPC_Dynamo_Moscow prop:arena ?uri. res:Mikhail_Voronin prop:deathPlace ?uri} ",lcquad Name the TV show with Simon Fuller as artist and Fox as the channel ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:creator . ?uri prop:channel . ?uri rdf:type onto:TelevisionShow}",lcquad list the software which works on both the OS - Microsoft Windows and Mac OS ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:operatingSystem res:Microsoft_Windows . ?uri onto:operatingSystem res:Mac_OS . }",lcquad Who are the opponents of graduates of the Middle Temple?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:education res:Middle_Temple . ?x onto:opponent ?uri . }",lcquad What religions are followed by economists?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:profession res:Economist . ?x onto:religion ?uri . }",lcquad What are some important works of US citizens?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:nationality res:United_States . ?x onto:notableWork ?uri . }",lcquad Name the rivers whose source country's capital is Lusaka?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:capital . ?uri onto:sourceCountry ?x . ?uri rdf:type onto:River}",lcquad Which sports are played typically in private schools?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:schooltype res:Private_school . ?x onto:sport ?uri . }",lcquad What is the state of the senator whose successor is Nathaniel P. Hill ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:successor . ?x prop:state ?uri . ?x rdf:type onto:Senator}",lcquad How many shows is Russell Davies known for?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { prop:notableworks ?uri . ?uri rdf:type onto:TelevisionShow}",lcquad "Who manages the operator of Norman Park Branch, CTA?","PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:operator ?x . ?x onto:operatedBy ?uri . }",lcquad What is the casting of the movie directed by Justin Zackham ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:director . ?x prop:starring ?uri . ?x rdf:type onto:Film}",lcquad Name the island with archipelago as Society Islands and has the largest city named Faaa ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:largestCity . ?uri prop:archipelago . ?uri rdf:type onto:Island}",lcquad List all the mmebers of Mekong River Commission?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Mekong_River_Commission prop:membership ?uri } ",lcquad Name the actors of the TV show which has an episode named The Five ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:series ?x . ?x prop:starring ?uri . ?x rdf:type onto:TelevisionShow}",lcquad How many religion's people have died in Malaysia?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:deathPlace . ?x onto:religion ?uri . }",lcquad Name the HBO TV show written by Erik jendresen ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:company . ?uri prop:writer . ?uri rdf:type onto:TelevisionShow}",lcquad How many different currencies are used in the places governed by the president of France?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:leaderTitle . ?x onto:currency ?uri . }",lcquad List the team for which Doug Acomb played ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Doug_Acomb prop:playedFor ?uri } ",lcquad Which architect of Marine Corps Air Station Kaneohe Bay was also tenant of New Sanno hotel /',"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Marine_Corps_Air_Station_Kaneohe_Bay prop:architect ?uri. res:New_Sanno_Hotel onto:tenant ?uri} ",lcquad Which sects people are part of local political parties which fall under the International Muslim Brotherhood?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:international . ?x onto:religion ?uri . ?x rdf:type onto:PoliticalParty}",lcquad List common systems are developed by of the Google Videos and written by of the Google Web Toolkit ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Google_Videos prop:developer ?uri. res:Google_Web_Toolkit onto:author ?uri} ",lcquad For which games are Sam Loyd and Eric Schiller both famous?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Sam_Loyd onto:knownFor ?uri. res:Eric_Schiller onto:knownFor ?uri . }",lcquad Is Peter Piper Pizza in the pizza industry?,"PREFIX res: PREFIX onto: ASK WHERE { res:Peter_Piper_Pizza onto:industry res:Pizza }",lcquad Name the artist who made Dream Dancing and is often associated with Joe Pass?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:associatedBand ?uri. prop:artist ?uri . }",lcquad Who is the office holder with deputies as Neil Brown and Andrew Peacock?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri prop:deputy . ?uri prop:deputy . ?uri rdf:type onto:OfficeHolder}",lcquad Where did these popular aeroplanes - Focke Wulf 260 and Start+Flug H 101 originate?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:nationalOrigin ?uri. prop:nationalOrigin ?uri . }",lcquad Which television show 's producer is Stephen E. Ambrose and written by Erik Jendresen?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:producer . ?uri prop:writer . ?uri rdf:type onto:TelevisionShow}",lcquad Who created the Women in the Garden and also the L'Enfant a la tasse ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:artist ?uri. prop:artist ?uri . }",lcquad Which famous horserace has seen both Fergie sutherland and the illustrious War of Attrition?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:race ?uri. prop:race ?uri . }",lcquad Tell me the name of the Prime Time Entertainment Network's TV show whose Artist is Christopher Franke ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:artist . ?uri onto:network . ?uri rdf:type onto:TelevisionShow}",lcquad How many other battles have the military person fought whose one of the battles is World War II ?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:battles . ?x prop:battles ?uri }",lcquad Whose network's parent organisation is Comcast?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:parentOrganisation res:Comcast . ?uri onto:network ?x . }",lcquad Is William H Blanchard buried in Colorado?,"PREFIX res: PREFIX prop: ASK WHERE { res:William_H._Blanchard prop:placeofburial res:Colorado }",lcquad Which cport of Vishwajyot High School is also the genere of Battle chess ,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Battle_Chess prop:genre ?uri. res:Vishwajyot_High_School onto:sport ?uri} ",lcquad In which state is the Channel district?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Channel_District onto:state ?uri } ",lcquad Who was in the missions of Apollo 11 and Gemini 8?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?uri prop:mission res:Apollo_11 . ?uri prop:mission res:Gemini_8 . }",lcquad What is the total number of other tenant of the stadia whose one of the tenant is Raptors 905?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:tenant . ?x onto:tenant ?uri }",lcquad Where can one find the Dzogchen Ponolop Rinpoche?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Dzogchen_Ponlop_Rinpoche prop:location ?uri } ",lcquad Who is the stockholder of the road tunnels operated by the Massachusetts Department of Transportation?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:operator . ?x prop:owner ?uri . ?x rdf:type onto:RoadTunnel}",lcquad What are the awards won by the film director of Saraband ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Saraband onto:director ?x . ?x prop:awards ?uri . }",lcquad What is the almamater of the president whose vice president was Enrique Jos Varona?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:vicePresident res:Enrique_José_Varona . ?x onto:almaMater ?uri . }",lcquad What is the route end of Birmingham and Oxford Junction Railway ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Birmingham_and_Oxford_Junction_Railway onto:routeEnd ?uri } ",lcquad Where did the Vitis Vinifera grapes originate?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:species . ?x onto:origin ?uri . ?x rdf:type onto:Grape}",lcquad How many people are there whose children died in Indiana?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:deathPlace . ?uri onto:child ?x . ?uri rdf:type onto:Person}",lcquad What is the military branch of the William French Smith which is also the branch of Pierre R. Graham ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:William_French_Smith onto:militaryBranch ?uri. res:Pierre_R._Graham prop:branch ?uri} ",lcquad What is the river whose source is Lake Ontario?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:source . ?uri rdf:type onto:River}",lcquad Whichlocation city of the Denver Broncos is the palce of birth of Steven Clark Cunningham ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Denver_Broncos onto:locationCity ?uri. res:Steven_Clark_Cunningham onto:birthPlace ?uri} ",lcquad What is the religion of the person who founded the Emel magazine?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:founder ?x . ?x onto:religion ?uri . ?x rdf:type onto:Person}",lcquad Give the name of the managers of England national under-20 football team and England national under-21 football team?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { ?uri prop:managerclubs . ?uri prop:managerclubs . }",lcquad How many cities are around the sea in which the the fig tree bay meets?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { onto:inflow ?x . ?x prop:cities ?uri . ?x rdf:type onto:Sea}",lcquad is blue lagoon island a part of the bahamas achipelago?,"PREFIX res: PREFIX onto: ASK WHERE { res:Blue_Lagoon_Island onto:archipelago res:The_Bahamas }",lcquad Name the movies distributed by RKO Pictures and has music composer as Bernard Herrmann?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:distributor . ?uri onto:musicComposer . ?uri rdf:type onto:Film}",lcquad Did the New Way party merge in the One Israel party?,"PREFIX onto: ASK WHERE { onto:mergedIntoParty }",lcquad How many pole drivers have been there in grand prixes where first driver was Damon Hill?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:firstDriver . ?x onto:poleDriver ?uri . ?uri rdf:type onto:FormulaOneRacer}",lcquad Where are jockeys in Dubai World Cup from?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:race . ?x prop:birthPlace ?uri . ?x rdf:type onto:Jockey}",lcquad Who owns the newspaper which was founded by Nehru?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:founder . ?x onto:owner ?uri . ?x rdf:type onto:Newspaper}",lcquad To which places do the flights go by airlines headquartered in the UK?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:headquarters . ?x prop:destinations ?uri . ?x rdf:type onto:Airline}",lcquad What is the magazine which have been founded by Ralph J. Gleason?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:founder . ?uri rdf:type onto:Magazine}",lcquad Is Seattle the Ship builder of USS Marmora (IX-189)?,"PREFIX prop: ASK WHERE { prop:shipBuilder }",lcquad Is Tirana the largest city of Albania?,"PREFIX res: PREFIX prop: ASK WHERE { res:Albania prop:largestCity res:Tirana }",lcquad In which cities can the beverage related to Barq's be found?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:related ?x . ?x prop:locationCity ?uri . }",lcquad What is the birth place of the astronaut whose mission was the Vostok programmer?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:mission . ?x onto:birthPlace ?uri . ?x rdf:type onto:Astronaut}",lcquad Count everyone who studied at an institute which are in Suburbs?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:campus . ?uri prop:education ?x . }",lcquad Where did Whitney Wistert debut?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Whitey_Wistert prop:debutteam ?uri } ",lcquad What is the major shrine of the monarchs whose successor is Dragimir of Travunia and Zachlumia?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:successor . ?x prop:majorShrine ?uri . ?x rdf:type onto:Monarch}",lcquad How many television shows have Fox Broadcasting Company as their channel?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:channel . ?uri rdf:type onto:TelevisionShow}",lcquad What is the river whose mouth locations are Arctic Ocean and Laptev Sea?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri prop:mouthLocation . ?uri prop:mouthLocation . ?uri rdf:type onto:River}",lcquad What are some wars fought when Chung Il Kwon as the country's prime minister?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:primeminister . ?uri onto:commander ?x . ?uri rdf:type onto:MilitaryConflict}",lcquad Where was the person born who died in Bryn Mawr Hospital?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:placeOfDeath res:Bryn_Mawr_Hospital . ?x prop:placeOfBirth ?uri . }",lcquad What is the faith of the Ajith Perera and religious affiliation of the Neungin High School?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Ajith_Perera onto:religion ?uri. res:Neungin_High_School prop:religiousAffiliation ?uri} ",lcquad Who was in military unit which played the role of Air interdiction?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:role res:Air_interdiction . ?uri onto:militaryUnit ?x . }",lcquad Who are the current members of Insects vs Robots?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Insects_vs_Robots prop:currentMembers ?uri } ",lcquad Is Ombla originate in Croatia?,"PREFIX res: PREFIX onto: ASK WHERE { res:Ombla onto:sourceMountain res:Croatia }",lcquad Greater Napanee is the home town of what people?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:hometown . ?uri rdf:type onto:Person}",lcquad "What place did Edwin Adams die at, which gave birth to William A Purtell?","PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:placeOfDeath ?uri. onto:birthPlace ?uri . }",lcquad Name the nationalteam of Trn Vit Hng ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Trần_Việt_Hương prop:nationalteam ?uri } ",lcquad Which designer of RENFE also owns Renaissance Center ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:RENFE_Class_333 onto:designer ?uri. res:Renaissance_Center prop:owner ?uri} ",lcquad Whihc uni did Joshua A. Siegel attend ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Joshua_A._Siegel prop:education ?uri } ",lcquad How many books are written by the author who is famous for Novelas Ejemplares?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:notableWork . ?uri onto:author ?x . ?uri rdf:type onto:Book}",lcquad Name the rivers who originate from Essex?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:mouthPlace . ?uri rdf:type onto:River}",lcquad Companies founded in Taiwan have typically which divisions?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:foundationPlace . ?x onto:division ?uri . ?x rdf:type onto:Company}",lcquad Did Timm Gunn guest in Sunrise (HIMYM)?,"PREFIX prop: ASK WHERE { prop:guests }",lcquad "to which university did both, the Stanford Cardinal and Gerald Reaven go?","PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Stanford_Cardinal onto:university ?uri. res:Gerald_Reaven onto:institution ?uri} ",lcquad Name the nearest city to David W. Brown House ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:David_W._Brown_House onto:nearestCity ?uri } ",lcquad where did Deion Sanders debut?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Deion_Sanders prop:debutteam ?uri } ",lcquad What cities are nearer to Fuountain Lake Farm?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Fountain_Lake_Farm prop:nearestCity ?uri } ",lcquad Who are the characters of Batman Live?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Batman_Live prop:characters ?uri } ",lcquad Which artists trained in San Francisco Art Institute?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:training . ?uri rdf:type onto:Artist}",lcquad What is the owning organisation of the Ford Kansas City Assembly Plant and also the builder of the Ford Y-block engine?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:owningOrganisation ?uri. onto:manufacturer ?uri} ",lcquad Name the country with currency as Aureus ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:currency . ?uri rdf:type onto:Country}",lcquad what awards have been given to A. Peter Dewey?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:A._Peter_Dewey onto:award ?uri } ",lcquad How many shows belong to the network one of whose sister station is Cartoonite?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:sisterStation . ?uri prop:network ?x . ?uri rdf:type onto:TelevisionShow}",lcquad what has been developed by John Fanning?,"PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:developer } ",lcquad Muhammad Yunus has won how many awards?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { onto:award ?uri . }",lcquad List the associates of bands which have a label by Motown ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:recordLabel . ?x prop:associatedActs ?uri . ?x rdf:type onto:Band}",lcquad Who wrote the musical whose composer is Emil Dean Zoghby?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:musicBy . ?x onto:author ?uri . ?x rdf:type onto:Musical}",lcquad "Count the units garrisoned at Arlington County, Virginia.","PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:garrison . ?uri rdf:type onto:MilitaryUnit}",lcquad What is the faith of Kwai Chang Caine ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Kwai_Chang_Caine onto:religion ?uri } ",lcquad Who is related to Kelly Osbourne & Ozzy Osbourne?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?uri prop:relatives res:Kelly_Osbourne . ?uri prop:relatives res:Ozzy_Osbourne . }",lcquad What are the houses of the legislature where the leader is called Pullaiahgaripalli ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:leaderTitle ?x . ?x prop:houses ?uri . ?x rdf:type onto:Legislature}",lcquad Which serving railway line of the Daund Junction railway station was also the place where 99 (2009 film) was recorded ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:servingRailwayLine ?uri. prop:recorded ?uri} ",lcquad List the ethnicity of Riley Reid?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Riley_Reid prop:ethnicity ?uri } ",lcquad Which shows are from a company whose subsidiary is Viacom Productions?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:subsidiary . ?uri prop:company ?x . ?uri rdf:type onto:TelevisionShow}",lcquad Giuseppe Bertello and Pietro Parolin are leaders of which place ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:leader . ?uri onto:leader . ?uri rdf:type onto:Place}",lcquad What is the university whose campus is Mount Moosilauke?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:campus . ?uri rdf:type onto:University}",lcquad How many religions are followed by the group whose architectural style can be seen on Sanggar Agung?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { prop:architecturalStyle ?x . ?x onto:religion ?uri . ?x rdf:type onto:EthnicGroup}",lcquad How many things are written in C++?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:programmingLanguage . }",lcquad Name the garrison of the Western Naval Command and line of the Vadodara Junction railway station ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Western_Naval_Command prop:garrison ?uri. res:Vadodara_Junction_railway_station prop:line ?uri} ",lcquad Who are the shareholder of the soccer club for whom Steve Holland plays?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:currentclub ?x . ?x prop:owner ?uri . }",lcquad Which city located on Mediterranean Sea is also the stadium of Panionios G.S.S. season ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:2014–15_Panionios_G.S.S._season prop:stadium ?uri. res:Mediterranean_Sea prop:cities ?uri} ",lcquad Was Don't Bring Me Down recorded in West Germany?,"PREFIX prop: ASK WHERE { prop:recorded }",lcquad Through which cities do the rivers starting at the Montauk State Park flow?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:sourcePlace . ?x onto:city ?uri . ?x rdf:type onto:River}",lcquad How many ideologies do the political party of Boonchu Rojanastien hold?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { prop:party ?x . ?x onto:ideology ?uri . ?x rdf:type onto:PoliticalParty}",lcquad "What are the hubs of PLUS Helicopter Services, a highway helicopter unit of PLUS Expressways?","PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:PLUS_Expressways prop:hubs ?uri } ",lcquad Name the movies for which music was given by Geoffrey Burgon and distributed by Cinema International Corporation?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:music . ?uri prop:distributor . ?uri rdf:type onto:Film}",lcquad Is Henry David Thoreau interested in Politics?,"PREFIX res: PREFIX prop: ASK WHERE { res:Henry_David_Thoreau prop:mainInterests res:Politics }",lcquad Among the companies who has product named Chinook who has a key person as Dennis Muilenburg ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:keyPeople . ?uri prop:products . ?uri rdf:type onto:Company}",lcquad Which country's leader is Giuseppe Bertello?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:leader . ?uri rdf:type onto:Country}",lcquad Who wrote the subsequent work of One Day at a Time (Em's Version) ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:subsequentWork ?x . ?x onto:writer ?uri . }",lcquad Name the TV shows with network as NBC and company as Paramount Television ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:network . ?uri prop:company . ?uri rdf:type onto:TelevisionShow}",lcquad Name the fictional character whose voice's animator is Hardie Gramatky?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:animator . ?uri onto:voice ?x . ?uri rdf:type onto:FictionalCharacter}",lcquad Which license provider of MSX basic is also the designer of Language Integrated Query ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Language_Integrated_Query onto:designer ?uri. res:MSX_BASIC prop:license ?uri} ",lcquad Who are the architect of the stadium whose one of the architect is louis D. Astorino ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:architect res:Louis_D._Astorino . ?x prop:architect ?uri . }",lcquad Who are the astronauts associated with NASA?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:type . ?uri rdf:type onto:Astronaut}",lcquad What is a common ingredient used in boyt Blodpalt and Kaszanka ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Blodpalt onto:ingredient ?uri. res:Kaszanka onto:ingredient ?uri . }",lcquad Who is the partner of Rob Patterson?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:partner res:Rob_Patterson . }",lcquad How many politicians are there from the city of Ganges?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { prop:city ?x . ?x onto:leaderName ?uri . }",lcquad To which american football teams does the Heinz Field serve as home stadium?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Heinz_Field prop:tenants ?uri } ",lcquad Which architect of the Marine Corps Air Station Kaneohe Bay is the branch of the Burnet R. Maybank?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Marine_Corps_Air_Station_Kaneohe_Bay prop:architect ?uri. res:Burnet_R._Maybank prop:branch ?uri} ",lcquad Which movies's screenplay is written by Akiva Goldsman,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:screenplay . ?uri rdf:type onto:Film}",lcquad How many TV shows are similar to the ones belonging to fantasy genre?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:genre . ?uri onto:related ?x . ?uri rdf:type onto:TelevisionShow}",lcquad "Give me all commanders which had an important role in both, the Battle of Fort Stephenson and Battle of the Thames?","PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Battle_of_Fort_Stephenson onto:commander ?uri. res:Battle_of_the_Thames onto:commander ?uri . }",lcquad How many developers were involved in creating games whose score is composed by Gerard Marino?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:composer . ?x onto:developer ?uri . }",lcquad Which sea is surrounded by Rostock and Kaliningrad?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri prop:cities . ?uri prop:cities . ?uri rdf:type onto:Sea}",lcquad Which television show's developer is Brian Graden and voices to the character is by Isaac Hayes?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:developer . ?uri prop:voices . ?uri rdf:type onto:TelevisionShow}",lcquad How did the child of Stevens T. Mason die?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:child ?x . ?x onto:deathCause ?uri . }",lcquad Does the Ontario International Airport serve the Inland Empire?,"PREFIX res: PREFIX prop: ASK WHERE { res:Ontario_International_Airport prop:cityServed res:Inland_Empire }",lcquad Is semnani one of the languages spoken in Iran?,"PREFIX res: PREFIX prop: ASK WHERE { res:Iran prop:languages res:Semnani_languages }",lcquad What is the nickname of the home stadium of Angels Toru?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Angels_Toruń onto:homeStadium ?x . ?x prop:nickname ?uri . }",lcquad What is the television show whose executive producer is Douglas Netter?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:executiveProducer . ?uri rdf:type onto:TelevisionShow}",lcquad List out the people who are related to the relatives of Jared Kushner ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Jared_Kushner onto:relation ?x . ?x onto:relation ?uri . }",lcquad List all the doctoral student of the scientist who has advised john Bowlby ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:doctoralStudents . ?x prop:doctoralStudents ?uri . ?x rdf:type onto:Scientist}",lcquad To which series does the book belong which came after the Blade Runner 2?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:previousWork res:Blade_Runner_2:_The_Edge_of_Human . ?x onto:series ?uri . }",lcquad In which city did The Ultimate Fighter: Team Rousey vs. Team Tate take place ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:The_Ultimate_Fighter:_Team_Rousey_vs._Team_Tate prop:city ?uri } ",lcquad Where was Sino-French War fought ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:territory ?uri } ",lcquad Who did Daniel Gibson marry?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:spouse res:Daniel_Gibson . }",lcquad What is the political party of the daughter of Jawaharlal Nehru ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Jawaharlal_Nehru onto:child ?x . ?x onto:party ?uri . }",lcquad Name the river with source as Shannon Pot and its mouth is located in Limerick?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:source . ?uri prop:mouthLocation . ?uri rdf:type onto:River}",lcquad What is the organisation whose purposes are Environmentalism and Peace?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri prop:purpose . ?uri prop:purpose . ?uri rdf:type onto:Organisation}",lcquad Count the number of sports team members which have player named Matt Williams ?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:name . ?x prop:name ?uri }",lcquad How many different people own the Timeform award winners?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:awards . ?x onto:owner ?uri . ?uri rdf:type onto:Person}",lcquad What religions do diplomats typically follow?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:profession res:Diplomacy . ?x prop:religion ?uri . }",lcquad Guggenheim family is the cofounder of a company that invested stocks in which baseball teams?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:founder . ?uri prop:owner ?x . ?uri rdf:type onto:BaseballTeam}",lcquad Was John muir one of the first to ascend a mountain on Mt hoffmann?,"PREFIX res: PREFIX onto: ASK WHERE { res:Mount_Hoffmann onto:firstAscentPerson res:John_Muir }",lcquad Which city is known for the people working in the western penn hospital?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:workInstitutions . ?x onto:knownFor ?uri . ?x rdf:type onto:Person}",lcquad In which country does the publishing house exist which was cofounded by Panos Loannides?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:founder . ?x prop:country ?uri . ?x rdf:type onto:Publisher}",lcquad Name the team which is owned by Dafenham wind turbines and stood first in 1967 mexican Grand Prix ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:1967_Mexican_Grand_Prix prop:firstTeam ?uri. res:Dagenham_wind_turbines prop:owner ?uri} ",lcquad Which education center Sidney Catlin Partrodge attended which was also the alma mater of Lisa Brummel ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Sidney_Catlin_Partridge prop:education ?uri. res:Lisa_Brummel onto:almaMater ?uri} ",lcquad What sports can be played in Kharghar's schools,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:city . ?x onto:sport ?uri . ?x rdf:type onto:School}",lcquad Which ethinicity of Riley Reid is the state of origin of Holmes Colbert?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Riley_Reid prop:ethnicity ?uri. res:Holmes_Colbert onto:stateOfOrigin ?uri} ",lcquad Was John Boehner the winner of the US House of Representatives elections in Ohio in 2010?,"PREFIX prop: ASK WHERE { prop:incumbent }",lcquad Which american football team has stadium as O.co Coliseum?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:locationCity . ?uri rdf:type onto:AmericanFootballTeam}",lcquad How many subjects are covered in the publications of Doubleday?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:publisher . ?x onto:nonFictionSubject ?uri . }",lcquad In which city of Pittsburg Steelers was the Congress of Inductrial Organization founded ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Congress_of_Industrial_Organizations prop:founded ?uri. res:Pittsburgh_Steelers prop:city ?uri} ",lcquad What is the hometown of the residents of Martha's vineyards?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:residence . ?x onto:hometown ?uri . }",lcquad Name the sea into which Danish Straits flows and has Kaliningrad as one of the city on the shore ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:cities . ?uri prop:outflow . ?uri rdf:type onto:Sea}",lcquad Name the team manger of Middlebrough F.C season 2006-07 ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:2006–07_Middlesbrough_F.C._season onto:manager ?uri } ",lcquad What city has the football team in which Lee Robinson debuted?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:debutTeam ?x . ?x onto:locationCity ?uri . }",lcquad Who is the owner of the bank which owns Bloomberg Radio?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:owner ?x . ?x prop:owner ?uri . ?x rdf:type onto:Bank}",lcquad Which companies were behind the renovation of McKechnie Field ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:McKechnie_Field prop:architect ?uri } ",lcquad "Who was the coach of marquette Golden Eagles men's basketball team-2012,13 season ?","PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:coach ?uri } ",lcquad Miluk and Cayuse are still spoken in which part of the world?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Miluk_language prop:region ?uri. res:Cayuse_language prop:region ?uri . }",lcquad Which governer of Winston bryant is also the president of Carl Stokes ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Winston_Bryant prop:governor ?uri. res:Carl_Stokes prop:president ?uri} ",lcquad List the sports of PATTS College of Aeronautics which are of interest of Jon Speelman ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:PATTS_College_of_Aeronautics prop:athletics ?uri. res:Jon_Speelman onto:field ?uri} ",lcquad What is the home stadium of the club coached by Justine Omojong?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:coach . ?x prop:homeStadium ?uri . ?x rdf:type onto:SoccerClub}",lcquad Which are the predecessors of the cars which are similar to the Oldsmobile 88?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Oldsmobile_88 prop:related ?x . ?x onto:predecessor ?uri . }",lcquad Name a queen whose parent is Ptolemy XII Auletes and consort is Ptolemy XIII Theos Philopator?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:parent . ?uri prop:spouse . ?uri rdf:type onto:Royalty}",lcquad Which show's theme music was composed by Primus and voiced by Isaac Hayes?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:themeMusicComposer . ?uri prop:voices . ?uri rdf:type onto:TelevisionShow}",lcquad "Who is the chancellor of the university whose campus is in Woodlane, New Jersey ?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:campus . ?x prop:chancellor ?uri . ?x rdf:type onto:University}",lcquad Name the mountain whose parent peak is located in Mexico.,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:locatedInArea . ?uri onto:parentMountainPeak ?x . ?uri rdf:type onto:Mountain}",lcquad List the ingredient of Blodpalt ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Blodpalt onto:ingredient ?uri } ",lcquad List the developers who has contributed to both GNOWSYS and GNU TeXmacs ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:GNOWSYS onto:developer ?uri. res:GNU_TeXmacs onto:developer ?uri . }",lcquad List the served region of the organisations of Trade association.,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:type . ?x onto:regionServed ?uri . ?x rdf:type onto:Organisation}",lcquad Is Hyundai Lavita assembled in Malaysia?,"PREFIX res: PREFIX onto: ASK WHERE { res:Hyundai_Lavita onto:assembly res:Malaysia }",lcquad Who composed the music for Tonight's the Night ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:music ?uri } ",lcquad How many things are made by companies who produce mass media articles?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:products . ?uri onto:manufacturer ?x . }",lcquad What awards have been given to race horses bred by Bert Michell?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:trainer . ?x onto:honours ?uri . ?x rdf:type onto:RaceHorse}",lcquad Whose mayors are affiliated with Christen-Democratisch en Vlaams?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:affiliation . ?uri onto:leaderName ?x . }",lcquad What is the common nationality of Viveka Babajee anad Ronny Vencatachellum ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Viveka_Babajee prop:citizenship ?uri. res:Ronny_Vencatachellum onto:nationality ?uri} ",lcquad Is the Hyundai Lavita assembled in Ulsan?,"PREFIX res: PREFIX prop: ASK WHERE { res:Hyundai_Lavita prop:assembly res:Ulsan }",lcquad Which party won the elections when Y.S. Rajasekhara Reddy was in power?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:leader . ?x onto:affiliation ?uri . ?x rdf:type onto:Election}",lcquad Where does the river begin whose left tributary is Krapanski Potok?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:leftTributary res:Krapanski_Potok . ?x onto:source ?uri . }",lcquad What are the notable commanders of the army whose one of the notable commanders is Paul Hausser?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:notableCommanders res:Paul_Hausser . ?x prop:notableCommanders ?uri . }",lcquad Name the source of Raa ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:source ?uri } ",lcquad Does Fa'a' International Airport serve tahiti too?,"PREFIX prop: ASK WHERE { prop:cityServed }",lcquad Who is the producer of Frampton's Camel ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:producer ?uri } ",lcquad Name the directors of Lennon Legend: The Very Best of John Lennon (DVD) ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:director ?uri } ",lcquad What is the political party of Arun Chandra Guha and Indira Gandhi?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Arun_Chandra_Guha onto:party ?uri. res:Indira_Gandhi onto:party ?uri . }",lcquad To which country is Svetlana Navasardyan from?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Svetlana_Navasardyan prop:origin ?uri } ",lcquad What is the alma mater of the scientist who is known for Rational analysis ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:knownFor . ?x onto:almaMater ?uri . ?x rdf:type onto:Scientist}",lcquad In how many places has Don R. Berlin worked?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { onto:employer ?uri . }",lcquad For how many movies are there whose musicians home town is in Volos ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:hometown . ?uri prop:music ?x . ?uri rdf:type onto:Film}",lcquad "In all the places with a stagecoach, where is a Peetz Table Wind Energy Center located too?","PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:location ?uri. prop:location ?uri . }",lcquad "Name the fictional character whose relatives are Huey, Dewey, and Louie and is of species American Pekin duck?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:relatives . ?uri onto:species . ?uri rdf:type onto:FictionalCharacter}",lcquad Who is the owner of the website which has the label Seed Eight ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:label ?x . ?x prop:owner ?uri . ?x rdf:type onto:Website}",lcquad In which country is Sierra del Merendin?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Sierra_del_Merendón onto:country ?uri . }",lcquad "What is on the border of the places which fall under crook county municipality, oregon?","PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:municipality . ?x onto:border ?uri . }",lcquad Which is the university of Vanderbilt Commodores ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Vanderbilt_Commodores onto:university ?uri } ",lcquad "Whose relatives are Clan McDuck and Huey, Dewey, and Louie?","PREFIX prop: SELECT DISTINCT ?uri WHERE { ?uri prop:relatives . ?uri prop:relatives . }",lcquad What musicians are signed up with colpix records?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:label . ?uri rdf:type onto:MusicalArtist}",lcquad Who is the person that first ascented the Cathedral Peak and Mount Hoffmann?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:firstAscentPerson ?uri. onto:firstAscentPerson ?uri . }",lcquad What currencies are used in the country whose capital is Podgorica?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:capital res:Podgorica . ?x prop:currency ?uri . }",lcquad How many other home stadium are there of the soccer club whose home stadium is Luzhniki Stadium ?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:homeStadium . ?x onto:homeStadium ?uri }",lcquad Where was William Anthony trained ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:training ?uri } ",lcquad Which composer of Motorpsycho Nitemare has also composed The time are A-Changing ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:composer ?uri. onto:musicBy ?uri} ",lcquad What river is it whose source is Dowra?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:sourceLocation . ?uri rdf:type onto:River}",lcquad "What is the religion of the president who won the Mongolian legislative election, 2004 ?","PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:leader ?x . ?x onto:religion ?uri . }",lcquad Give me everything owned by networks which is lead by Steve Burke?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:keyPerson . ?uri onto:network ?x . }",lcquad What is the municipality of Homestead Grays Bridge ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Homestead_Grays_Bridge onto:municipality ?uri } ",lcquad "What religion do the politicians follow, who graduated from the Yokkohama Nationaal University?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:almaMater . ?x onto:religion ?uri . ?x rdf:type onto:Politician}",lcquad "Who is the narrator of The Incredible Hulk , 1982 TV series ?","PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:narrated ?uri } ",lcquad What sports are played in schools where Swahili is the official language?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:language res:Swahili_language . ?x onto:sport ?uri . }",lcquad Which interest of Philip Novak is the relegion of Vesak ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Philip_Novak prop:mainInterests ?uri. res:Vesak onto:type ?uri} ",lcquad Count all the ethinic group who speaks language which belongs to Anglo-Frisian language family ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:languageFamily . ?uri prop:languages ?x . ?uri rdf:type onto:EthnicGroup}",lcquad What is the area of the Tar Heel Sports Network which is official residence of the Michael Nichols (photographer) ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:area ?uri. onto:residence ?uri} ",lcquad Cologny and Lancy are the neighboring municipalities of which place ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri prop:neighboringMunicipalities . ?uri prop:neighboringMunicipalities . ?uri rdf:type onto:Place}",lcquad How many artists have their works in the Sao Paolo Museum of Art?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:museum . ?x prop:artist ?uri . ?uri rdf:type onto:Artist}",lcquad VP-8 and VP-10 shares which command structure ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:commandStructure ?uri. onto:commandStructure ?uri . }",lcquad What is used as money for French Southern and Antarctic Lands is also the product of the Karafarin Bank ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:French_Southern_and_Antarctic_Lands onto:currency ?uri. res:Karafarin_Bank onto:product ?uri} ",lcquad Give me the total number of membership of the organisations which have memebers as Azerbaijan?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:membership . ?x prop:membership ?uri }",lcquad What is the content licence of MSX BASIC ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:MSX_BASIC prop:license ?uri } ",lcquad What are the central characters in spy kids series?,"PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:series . }",lcquad Which comic characters were created by Paul Dini?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:creators . ?uri rdf:type onto:ComicsCharacter}",lcquad who owns the ship Victoria?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:owner ?uri } ",lcquad Where was the predecessor of Sevan Ross born?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:successor res:Sevan_Ross . ?x prop:placeOfBirth ?uri . }",lcquad Which city council owns the Ted Williams tunnel and Leonard Memorial ridge?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Ted_Williams_Tunnel prop:owner ?uri. res:Leonard_P._Zakim_Bunker_Hill_Memorial_Bridge prop:owner ?uri . }",lcquad Where is the school which is the rival of Somerset Berkley Regional High?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:rival ?x . ?x onto:region ?uri . ?x rdf:type onto:School}",lcquad How many soccer manager have been in the Spain nation football team?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:nationalteam . ?uri rdf:type onto:SoccerManager}",lcquad Name the common alma mater of the Henry Morton Dexter and Jack McGregor,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Henry_Morton_Dexter onto:education ?uri. res:Jack_McGregor onto:education ?uri . }",lcquad What are some companies which are founded in Dallas Jurisdiction?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:governingBody . ?uri onto:foundationPlace ?x . ?uri rdf:type onto:Company}",lcquad How many bands collaborated with artists who signed up with EMI?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:recordLabel . ?x onto:associatedMusicalArtist ?uri . ?uri rdf:type onto:Band}",lcquad What is the purpose of New Zealand Chess Federation ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:New_Zealand_Chess_Federation prop:purpose ?uri } ",lcquad How many TV shows are of the company which are of company which is a subsidiary of Big Ticket Entertainment ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:subsidiary . ?uri prop:company ?x . ?uri rdf:type onto:TelevisionShow}",lcquad Who operates twin Cities 400 ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Twin_Cities_400 onto:operatedBy ?uri } ",lcquad What is the city of the Maine School of Science and Mathematics is also the resting place of Charles A. Boutelle ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Maine_School_of_Science_and_Mathematics onto:authority ?uri. res:Charles_A._Boutelle prop:restingplace ?uri} ",lcquad Give me a count of royalties buried in Rome ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:placeOfBurial . ?uri rdf:type onto:Royalty}",lcquad In how many places are Marjas found?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:title . ?x onto:location ?uri . ?uri rdf:type onto:Location}",lcquad List the soccer players whose current team has the ground Stoke-on-Trent.,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:ground . ?uri prop:currentclub ?x . ?uri rdf:type onto:SoccerPlayer}",lcquad Which are the countires where Pioneer Corporation has flourished?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Pioneer_Corporation prop:country ?uri } ",lcquad Who is the president of Carl Stokes nad Wyche Fowler ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Carl_Stokes prop:president ?uri. res:Wyche_Fowler onto:president ?uri} ",lcquad Is God Save the Queen the national anthem of United Kingdom?,"PREFIX res: PREFIX prop: ASK WHERE { res:United_Kingdom prop:nationalAnthem res:God_Save_the_Queen }",lcquad List few Swedish language movies ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:language . ?uri rdf:type onto:Film}",lcquad Was christina crawford trained by Booker T?,"PREFIX prop: ASK WHERE { prop:trainer }",lcquad What is the currency of Kerguelen Islands ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Kerguelen_Islands onto:currency ?uri } ",lcquad What are the musicals whose musicians worked under Sony Music Entertainment?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:label . ?uri prop:music ?x . ?uri rdf:type onto:Musical}",lcquad Whose shrines are in a place governed by Justin Trudeau?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:leaderName res:Justin_Trudeau . ?uri onto:majorShrine ?x . }",lcquad What are the academic interests of the past members of Senser?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Senser prop:pastMembers ?x . ?x prop:mainInterests ?uri . }",lcquad Who is the leader of Hackweiser ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Hackweiser prop:leaderName ?uri } ",lcquad In which city is the sister station of KTXY located ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:KTXY onto:sisterStation ?x . ?x onto:city ?uri . }",lcquad Where was the successor of Hank Brown born?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Hank_Brown prop:successor ?x . ?x onto:birthPlace ?uri . }",lcquad Name the constituency of Jonas Gahr where Sverre Krogh was born ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Jonas_Gahr_Støre prop:constituency ?uri. res:Sverre_Krogh_Sundbø prop:birthPlace ?uri} ",lcquad What is the common battle fought by Stephen Urban and Ali Habib Mahmud ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Stephen_Urban onto:battle ?uri. res:Ali_Habib_Mahmud prop:battles ?uri} ",lcquad What is the relegious affiliations of Katyayana ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:religion ?uri } ",lcquad Where was the engineer born who manufactured EP R.E.P. 1?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:manufacturer ?x . ?x onto:birthPlace ?uri . }",lcquad who all have been a manager of english under twenty one football team?,"PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:managerclubs } ",lcquad What is the military conflict whose commanders are John McEwen and Phm Vn ng?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:commander . ?uri onto:commander . ?uri rdf:type onto:MilitaryConflict}",lcquad Which party has come in power in Mumbai North?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:constituency . ?x onto:party ?uri . }",lcquad Name the tv show with judges Randy Jackson and Jennifer Lopez?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri prop:judges . ?uri prop:judges . ?uri rdf:type onto:TelevisionShow}",lcquad What is the largest city of the country which hosted the 1951 Asian Games?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:hostCity ?x . ?x onto:largestCity ?uri . ?x rdf:type onto:Country}",lcquad Which royalty was married to ptolemy XIII Theos Philopator and had mother named Cleopatra V ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:mother . ?uri prop:spouse . ?uri rdf:type onto:Royalty}",lcquad Whose theme music was composed by a band which collaborated with Phish?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:associatedBand res:Phish . ?uri prop:themeMusicComposer ?x . }",lcquad Is morrissey in the smiths?,"PREFIX res: PREFIX onto: ASK WHERE { res:Morrissey onto:associatedBand res:The_Smiths }",lcquad Which administrative headquarters of the Pulau Ubin is also the resting place of the Nicole Lai,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Pulau_Ubin onto:capital ?uri. res:Nicole_Lai onto:restingPlace ?uri} ",lcquad Where did the beverages sold by Refriango originate?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:manufacturer . ?x prop:origin ?uri . ?x rdf:type onto:Beverage}",lcquad Who built the stadium which was rented by Costa Rica national football team?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:tenants . ?x onto:builder ?uri . ?x rdf:type onto:Stadium}",lcquad In which country does the Auckland rugby union team play ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Auckland_rugby_union_team onto:league ?x . ?x onto:country ?uri . }",lcquad "What is the serving railway line of Warwick railway station, Perth ?","PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:servingRailwayLine ?uri } ",lcquad "What is the radio show created by Timoteo Jeffries, about?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:creator . ?x prop:format ?uri . ?x rdf:type onto:RadioProgram}",lcquad "Where are all the protected areas near Bend, Oregon?","PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:nearestCity . ?x onto:location ?uri . ?x rdf:type onto:ProtectedArea}",lcquad Was True Grit a novel of the western genre?,"PREFIX onto: ASK WHERE { onto:literaryGenre }",lcquad Which notable series of Russell T Davies is also the series of Short Trips: A day in the life ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Short_Trips:_A_Day_in_the_Life onto:series ?uri. res:Russell_T_Davies onto:notableWork ?uri} ",lcquad Which battles were fought under the president when Chung Won Shik was the prime minister?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:primeminister . ?x prop:battles ?uri . ?x rdf:type onto:President}",lcquad "Which office holder's resting place is in Palo Alto, California and was succeeded by Adrian A. Basora ?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:restingPlace . ?uri prop:successor . ?uri rdf:type onto:OfficeHolder}",lcquad which movies have been published by Cinema International Corporation?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:distributor res:Cinema_International_Corporation } ",lcquad What is the total number of other destinations of the airlines whose one of the destinations is Mediterranean Sea?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:destinations . ?x prop:destinations ?uri }",lcquad Count the total number of academic discipline of the journals whose one of the academic discipline is Neuroimaging ?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:academicDiscipline . ?x onto:academicDiscipline ?uri }",lcquad List the award which have been won by both Charles LeMaire and Nick Park ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Charles_LeMaire onto:award ?uri. res:Nick_Park onto:award ?uri . }",lcquad What are some cities which have a Ferris wheel?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:buildingType res:Ferris_wheel . ?x prop:locationTown ?uri . }",lcquad Name the movie who has screenplay by Akiva Goldsman and is edited by Mark Stevens ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:screenplay . ?uri prop:editing . ?uri rdf:type onto:Film}",lcquad Count the movies in Swedish language?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:language . ?uri rdf:type onto:Film}",lcquad Give me the total number of television shows whose theme music composer is Julian Gingell and created by Simon Fuller?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:themeMusicComposer . ?uri prop:creator } ",lcquad Which cloud platform of Google cloud connect also provides services to 21Vianet ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:21Vianet prop:services ?uri. res:Google_Cloud_Connect onto:computingPlatform ?uri} ",lcquad Name the office holder whose constituency is Haight-Ashbury?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:constituency . ?uri rdf:type onto:OfficeHolder}",lcquad Name the loocation of Lekh Castle which is also the location of SamurAbsheron channel ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Lekh_Castle onto:location ?uri. res:Samur–Absheron_channel onto:sourceCountry ?uri} ",lcquad Count the number of families of the Animal kingdom.,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:kingdom . ?x onto:family ?uri . }",lcquad What is the political party of the person succeeded by A.K. Singh?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:successor . ?x prop:party ?uri . ?x rdf:type onto:Person}",lcquad To which uni. did sidney c patridge and cyril hume both once went?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Sidney_Catlin_Partridge prop:education ?uri. res:Cyril_Hume prop:education ?uri . }",lcquad People in the royal Thai army follow which religion?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:branch . ?x onto:religion ?uri . ?x rdf:type onto:Person}",lcquad Was Lucrezia Tornabuoni the mother of Lorenzo de' Medici?,"PREFIX prop: ASK WHERE { prop:mother }",lcquad Who are the producers of the movies which has music by Gary Chang ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:music . ?x prop:producer ?uri . ?x rdf:type onto:Film}",lcquad Where was Special 26 recorded ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Special_26 prop:recorded ?uri } ",lcquad How many movies music composers are associated with Demis Roussos ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:associatedActs . ?uri onto:musicComposer ?x . ?uri rdf:type onto:Film}",lcquad To which nation did David Animle Hanses owe his allegiance?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:David_Animle_Hansen prop:allegiance ?uri } ",lcquad What is the alma mater of the actors of The God Who Wasn't There ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:starring ?x . ?x prop:almaMater ?uri . }",lcquad List some musicians associated with famous guitar players?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:notableInstruments res:Guitar . ?x onto:associatedMusicalArtist ?uri . }",lcquad What are the airlines whose hub airport is operated by the Los Angeles World Airports?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:operator . ?uri onto:hubAirport ?x . ?uri rdf:type onto:Airline}",lcquad Which company's cars are assembled in Colombia?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:assembly . ?x prop:parentCompany ?uri . ?x rdf:type onto:Automobile}",lcquad Who directed The Haunted House ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:director ?uri } ",lcquad Count all the different purposes followed by the different NGOs.,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:type . ?x prop:purpose ?uri . }",lcquad "The players born in Bellaire, Ohio have played for which team?","PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:birthPlace . ?x onto:team ?uri . }",lcquad What is the common ideology followed by Katyayana and Palang Dharma Party ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:religion ?uri. onto:ideology ?uri} ",lcquad Count the tenants of MasterCard Centre?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { prop:tenants ?uri . }",lcquad who are starring in the movies written by Mark Sandrich ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:writer . ?x onto:starring ?uri . ?x rdf:type onto:Film}",lcquad Count the number of religions followed by BJP members.,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:party . ?x onto:religion ?uri . }",lcquad What is the mascot of the rival school of Sullivan Central High?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Sullivan_Central_High_School prop:rival ?x . ?x prop:mascot ?uri . }",lcquad What award has been awarded to both Dion Beebe and Charles LeMaire?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Dion_Beebe onto:award ?uri. res:Charles_LeMaire prop:awards ?uri} ",lcquad What is the birth name of Putri Raemawasti ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Putri_Raemawasti prop:birthName ?uri } ",lcquad What is the party of the politicians whose children is Sanjay Gandhi ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:children . ?x onto:party ?uri . ?x rdf:type onto:OfficeHolder}",lcquad Name the tenants of MAsterCard center wich is also the draft team of Antoine Bibeau?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:MasterCard_Centre prop:tenants ?uri. res:Antoine_Bibeau prop:draftTeam ?uri} ",lcquad "What is the number of occupation of the people who died in tampa bay, florida?","PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:deathPlace . ?x onto:occupation ?uri . }",lcquad Who was the United States president who also served as a governor of Indiana Territory?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:branch res:Indiana_Territory } ",lcquad List the people who were born in Gelnhausen and graduated from Pepperdine University?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:birthPlace . ?uri prop:education . ?uri rdf:type onto:Person}",lcquad Musical artists who are associated with Ren & Angela were born where ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:associatedActs . ?x prop:birthPlace ?uri . ?x rdf:type onto:MusicalArtist}",lcquad What religion do the Wickramabahu Centeral College and Neungin High School both follow?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:religiousAffiliation ?uri. prop:religiousAffiliation ?uri . }",lcquad Who designed the language integrated query?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Language_Integrated_Query onto:designer ?uri . }",lcquad Name the debut team of Dan Otero ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Dan_Otero onto:debutTeam ?uri } ",lcquad Who started at the pole position in both 1997 canadian grand prix and the 94 spanish one?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:1997_Canadian_Grand_Prix prop:poleDriver ?uri. res:1994_Spanish_Grand_Prix prop:poleDriver ?uri . }",lcquad Who founded the Not on our Watch NGO?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:foundedBy ?uri } ",lcquad What is the name of the artist which worked on the subsequent work of Ella Loves Cole ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Ella_Loves_Cole onto:subsequentWork ?x . ?x prop:artist ?uri . }",lcquad Which company owns Sony bank ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Sony_Bank onto:owningCompany ?uri } ",lcquad "What state was Cyrus Mann born in, and has the famous Downriver ?","PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Downriver onto:state ?uri. res:Cyrus_Mann prop:birthPlace ?uri . }",lcquad Who is a religious figure titled superior general?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:title . ?uri rdf:type onto:Religious}",lcquad "List the employments of people who died in Tampa, Florida.","PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:deathPlace . ?x onto:occupation ?uri . }",lcquad What are some famous veterinary physicians known for?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:field res:Veterinary_physician . ?x prop:knownFor ?uri . }",lcquad List the movies edited by Julian Doyle in which music was composed by Geoffrey Brugon ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:music . ?uri prop:editing . ?uri rdf:type onto:Film}",lcquad Name the children of the person who is the star of The Weathered Underground ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:starring ?x . ?x prop:children ?uri . ?x rdf:type onto:Person}",lcquad Did Umkhonto we Sizwe had Nelson Mandela as a commander?,"PREFIX res: PREFIX prop: ASK WHERE { res:Umkhonto_we_Sizwe prop:notableCommanders res:Nelson_Mandela }",lcquad Name the office holder with associate as Marcus Calpurnius Bibulus and has a kid named Augustus?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:associate . ?uri onto:child . ?uri rdf:type onto:OfficeHolder}",lcquad What are the movies whose screenplay is done by Eric Roth?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:screenplay . ?uri rdf:type onto:Film}",lcquad What is the total number of writers whose singles are recorded in Miami?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:recordedIn . ?x prop:writer ?uri . }",lcquad What religions are followed by members of the societies whose architectural influences can be seen on the Sanggar Agung ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Sanggar_Agung prop:architecturalStyle ?x . ?x onto:religion ?uri . }",lcquad Who is the producer of album which has the song Money?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:album ?x . ?x prop:producer ?uri . }",lcquad List the Sci-fi TV shows with theme music given by Ron Grainer?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:genre . ?uri prop:themeMusicComposer . ?uri rdf:type onto:TelevisionShow}",lcquad What is the company to which Fusajiro Yamauchi proprietor to ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:foundedBy . ?uri rdf:type onto:Company}",lcquad Who is the writer of mark twain Tonight ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Mark_Twain_Tonight prop:writer ?uri } ",lcquad How many members are there in the European Go Federation?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { prop:membership ?uri . }",lcquad Was Kevin Rudd the PM of Julia Gillard?,"PREFIX res: PREFIX onto: ASK WHERE { res:Julia_Gillard onto:primeMinister res:Kevin_Rudd }",lcquad Daniel L D Granger and Job Durfee have based their political career in which US state?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Daniel_L._D._Granger prop:state ?uri. res:Job_Durfee prop:state ?uri . }",lcquad What is the mascot of the handball teams in the Turkish Handball Super League?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:league . ?x prop:mascot ?uri . ?x rdf:type onto:HandballTeam}",lcquad What city was recorded in Live in detroit which is also the official residence of ken Holland ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:recordedIn ?uri. onto:residence ?uri} ",lcquad Marika Gombitov makes songs in which languages?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:artist res:Marika_Gombitová . ?x prop:language ?uri . }",lcquad What are some musical artists associated with the ones signed up with EMI?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:recordLabel . ?x onto:associatedMusicalArtist ?uri . ?x rdf:type onto:MusicalArtist}",lcquad Name the river which flows through the closest city of Mount Raimer ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Mount_Raimer prop:nearestCity ?x . ?x onto:river ?uri . }",lcquad Name the scientist whose supervisor also supervised Mary Ainsworth?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:doctoralStudents . ?uri prop:doctoralAdvisor ?x . ?uri rdf:type onto:Scientist}",lcquad What are some relatives of armymen who died in Germany?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:placeOfDeath . ?x onto:relation ?uri . ?x rdf:type onto:MilitaryPerson}",lcquad Deion sanders and Hinkey haines debuted their career with which common team?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Hinkey_Haines prop:debutteam ?uri. res:Deion_Sanders prop:debutteam ?uri . }",lcquad Which garrison of East Indies Station is also the route end of Mumbai Vadodara Express ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Mumbai_Vadodara_Expressway onto:routeEnd ?uri. res:East_Indies_Station onto:garrison ?uri} ",lcquad To which political party does Virendra Kataria belongs ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Virendra_Kataria prop:party ?uri } ",lcquad Copley Medal has been awarded to which scientists?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:awards . ?uri rdf:type onto:Scientist}",lcquad "What is the total number of awards whose presenter's headquarters is Beverly Hills, California?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:headquarters . ?uri onto:presenter ?x . ?uri rdf:type onto:Award}",lcquad Who is the narrator of The Price of Beauty ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:The_Price_of_Beauty onto:narrator ?uri } ",lcquad Does Dan River flow into the Jordan Valley?,"PREFIX onto: ASK WHERE { onto:leftTributary }",lcquad Who is the producer of the device which is the operating system of Now TV ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:operatingSystem ?x . ?x onto:manufacturer ?uri . }",lcquad How many artists have collaborated with famous guitar players?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:notableInstruments . ?x onto:associatedMusicalArtist ?uri . ?uri rdf:type onto:Artist}",lcquad How many politicians live in India?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:residence . ?uri rdf:type onto:OfficeHolder}",lcquad What is the base currency of the country which operates the Marion Dufresne?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:operator ?x . ?x onto:currency ?uri . }",lcquad What is the region served by the governor of Stephen L.R. McNichols ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Stephen_L.R._McNichols prop:governor ?x . ?x onto:region ?uri . }",lcquad Who operates Liverpool Playhouse ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Liverpool_Playhouse onto:operatedBy ?uri } ",lcquad Who has composed songs produced by Terry Melcher?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:producer . ?x onto:composer ?uri . ?x rdf:type onto:Song}",lcquad To which series does Lost special belong to ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:The_Lost_Special prop:series ?uri } ",lcquad How many albums did the maker of The Band produce?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:artist . ?x onto:subsequentWork ?uri . ?uri rdf:type onto:Album}",lcquad List few musical artist whose notable instruments are Ludwig Drums and Remo?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:notableInstruments . ?uri onto:instrument . ?uri rdf:type onto:MusicalArtist}",lcquad How many rivers start in an English speaking country?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:officialLanguage . ?uri onto:sourceCountry ?x . ?uri rdf:type onto:River}",lcquad For a position in which institution were both Jack Ryan and Robert sarvis both appointed?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:nominee ?uri. onto:nominee ?uri . ?uri rdf:type onto:Organisation}",lcquad Where Everybody knows you is the theme album of which show ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Where_Everybody_Knows_Your_Name onto:album ?uri } ",lcquad Food in which countries has shallot in it?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:ingredient . ?x onto:country ?uri . ?x rdf:type onto:Food}",lcquad "Which rivers have source origins asnorth western, Zambia ?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:sourceRegion . ?uri rdf:type onto:River}",lcquad Organization holding stocks of Galician and German wikipedias?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Galician_Wikipedia prop:owner ?uri. res:German_Wikipedia onto:owner ?uri . }",lcquad "Name the river with Readin, Brekshire in its path and mouth place is Sothend-on-sea ?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:city . ?uri onto:mouthPlace . ?uri rdf:type onto:River}",lcquad "Alexander Magleby, a rugby player is alma mater to which university?","PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Alexander_Magleby prop:university ?uri } ",lcquad Is Amharic the official language of Ethiopia?,"PREFIX res: PREFIX onto: ASK WHERE { res:Ethiopia onto:officialLanguage res:Amharic }",lcquad What sport played at Islamic azad uni employes Craig Van Tilbury?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Craig_Van_Tilbury onto:occupation ?uri. res:Islamic_Azad_University_Central_Tehran_Branch onto:sport ?uri} ",lcquad List the products of the company which published Tweenies: Game Time.,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Tweenies:_Game_Time prop:publisher ?x . ?x prop:products ?uri . }",lcquad List the agencies located someplace lead by Alex Chalk.,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:leaderName . ?uri onto:location ?x . ?uri rdf:type onto:GovernmentAgency}",lcquad What religion are the characters of Absolutely Fabulous from?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:series . ?x onto:religion ?uri . ?x rdf:type onto:FictionalCharacter}",lcquad What are the movies whose music composer uses a Hammond organ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:instrument . ?uri onto:musicComposer ?x . ?uri rdf:type onto:Film}",lcquad Was Love Hurts in Short Cut Draw Blood?,"PREFIX res: PREFIX prop: ASK WHERE { res:Love_Hurts prop:album res:Short_Cut_Draw_Blood }",lcquad "Janaka Thissakuttiarachchi follows what religion, which once employed Atisa Srijnana too?","PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Janaka_Thissakuttiarachchi prop:religion ?uri. res:Atiśa onto:occupation ?uri . }",lcquad Whihc birthpalce of Svetlana Gounkina is also the largest city of Union State ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Union_State prop:largestCity ?uri. res:Svetlana_Gounkina onto:birthPlace ?uri} ",lcquad Name the TV show with artist Christopher Franke and cast member Jason Carter ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:artist . ?uri onto:starring . ?uri rdf:type onto:TelevisionShow}",lcquad Which artist married to Lee Krasner?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:spouse . ?uri rdf:type onto:Artist}",lcquad What teams did the ex teamplayers of lighthouse boy club start their career with?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:youthclubs res:Lighthouse_Boys_Club . ?x prop:debutteam ?uri . }",lcquad Where was the deadbody discovered of one of the alumni of General Educational Development?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:education res:General_Educational_Development . ?x prop:bodyDiscovered ?uri . }",lcquad Who designed the bridge in Oddamavadi?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:locatedInArea . ?x prop:designer ?uri . ?x rdf:type onto:Bridge}",lcquad What is the leader name of the settlements whose governing body is Municipal council?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:governingBody . ?x onto:leaderName ?uri . ?x rdf:type onto:Settlement}",lcquad Name the co-founder of the record labels which have one of the founder as Chris DuBois ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:founder . ?x prop:founder ?uri . ?x rdf:type onto:RecordLabel}",lcquad List the companies operating in Australia?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:regionServed res:Australia } ",lcquad In which countries is coconut used as a food ingredient?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:ingredient . ?x prop:country ?uri . ?x rdf:type onto:Food}",lcquad How many people have worked for teams chaired by Patricia Amorim?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:chairman . ?x prop:name ?uri . ?uri rdf:type onto:Person}",lcquad How many kinds of games can be played on the Amiga?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:computingPlatform . ?x prop:genre ?uri . }",lcquad Is the book The Buddha and his Dhamma a book about Buddhism?,"PREFIX res: PREFIX onto: ASK WHERE { res:The_Buddha_and_His_Dhamma onto:literaryGenre res:Buddhism }",lcquad How many relatives are there of people fought in the Battle of the Bulge?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:battles . ?x onto:relation ?uri . }",lcquad How many genres of games can I find on the commodore CDTV?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:computingPlatform . ?x onto:genre ?uri . }",lcquad Does Jevan Snead play as Quarterback?,"PREFIX res: PREFIX prop: ASK WHERE { res:Jevan_Snead prop:position res:Quarterback }",lcquad Give me the sitcoms where Eliza Schneider and Isaac Hayes gave voice?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri prop:voices . ?uri prop:voices . ?uri rdf:type onto:TelevisionShow}",lcquad Directors of which movies are buried in Ronda?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:restingPlace res:Ronda . ?uri prop:director ?x . }",lcquad List the debut team of the baseball player who born in Houston.,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:birthPlace . ?x onto:debutTeam ?uri . ?x rdf:type onto:BaseballPlayer}",lcquad Does Cascade Airways have a hub in Seattle?,"PREFIX res: PREFIX onto: ASK WHERE { res:Cascade_Airways onto:hubAirport res:Seattle }",lcquad Who edited British Gazette ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:British_Gazette prop:editor ?uri } ",lcquad List the things for which the relatives of Mrunalini Kunte are known?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Mrunalini_Kunte onto:relative ?x . ?x prop:knownFor ?uri . }",lcquad What acts and artists are associated with people who have worked with Divertis?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:associatedActs res:Divertis . ?x onto:associatedMusicalArtist ?uri . }",lcquad What are the notableworks of Russell T Davies?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Russell_T_Davies prop:notableworks ?uri } ",lcquad Which company has developed games whose music is done by Gerard Marino?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:composer . ?x onto:developer ?uri . ?x rdf:type onto:VideoGame}",lcquad Who all have developed softwares for Unix Like OSes?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:operatingSystem . ?x onto:developer ?uri . ?x rdf:type onto:Software}",lcquad What are some party leaders of the parties which have had a seat in Berlin?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:headquarter . ?x onto:leader ?uri . ?x rdf:type onto:PoliticalParty}",lcquad Was James maker in the band Noko?,"PREFIX res: PREFIX onto: ASK WHERE { res:Noko onto:associatedBand res:James_Maker }",lcquad Was Nick Jonas a member of the Jonas Brothers?,"PREFIX res: PREFIX prop: ASK WHERE { res:Jonas_Brothers prop:pastMembers res:Nick_Jonas }",lcquad Which tenant of New Sanno Hotel is the military branch of the Gary Holder-Winfield ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:tenant ?uri. onto:militaryBranch ?uri} ",lcquad List the director of The Adventures of mimi ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:director ?uri } ",lcquad List sports managers who managed Middlesbrough F.C. and England national under-21 football team?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:managerClub . ?uri prop:managerclubs . ?uri rdf:type onto:SportsManager}",lcquad Name all the soccer players who played in a under 18 club for La Liga?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:league . ?uri prop:youthclubs ?x . ?uri rdf:type onto:SoccerPlayer}",lcquad Which key perosn of the Elders is also the president of united World College ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:keyPeople ?uri. onto:president ?uri} ",lcquad Who are the players whose current clubs have Ferran Soriano as chairman?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:chairman . ?uri prop:currentclub ?x . ?uri rdf:type onto:Person}",lcquad What are some parties which have people from Mangalore as a member?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:placeOfBirth res:Mangalore . ?x prop:party ?uri . }",lcquad Which employer of Michael M. Sears is also the producer of Delta III ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Michael_M._Sears onto:employer ?uri. res:Delta_III onto:manufacturer ?uri} ",lcquad Name the largest city in the county where there is a Cy-Fair High School.,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:county ?x . ?x onto:largestCity ?uri . }",lcquad How many bacterias are there whose division is Firmicutes?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:division . ?uri rdf:type onto:Bacteria}",lcquad To which country does Peter Blay owe his allegiance?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Peter_Blay prop:allegiance ?uri } ",lcquad Is jim harbaugh currently in the Michigan Wolverines?,"PREFIX res: PREFIX prop: ASK WHERE { res:Jim_Harbaugh prop:currentteam res:Michigan_Wolverines }",lcquad Name the television show whose subsequent work is Crusade and Composer is Stewart Copeland?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:subsequentWork . ?uri prop:composer . ?uri rdf:type onto:TelevisionShow}",lcquad What are the current music bands of Chester Bennington?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:currentMembers res:Chester_Bennington } ",lcquad Who was the prime minister under which the predecessor of Derick Heathcoat Amory served?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:successor . ?x prop:primeminister ?uri . }",lcquad Which person designed the cars which has been designed by ASC Creative Services?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:designCompany . ?x prop:designer ?uri . ?x rdf:type onto:Automobile}",lcquad What are some orthonychidae birds?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:family . ?uri rdf:type onto:Bird}",lcquad Which driver had the pole position in 1994 Spanish Grand Prix ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:1994_Spanish_Grand_Prix onto:poleDriver ?uri } ",lcquad Does the US route 281 have a junction at San Antonio?,"PREFIX res: PREFIX prop: ASK WHERE { res:U.S._Route_281 prop:junction res:San_Antonio }",lcquad How many awards have been given to the founder of Grameen Bank?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { prop:founder ?x . ?x onto:award ?uri . }",lcquad Count the number of important works done by the writers of The Second Coming?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { onto:author ?x . ?x onto:notableWork ?uri . }",lcquad Who all are known to play the Gibson Guitar Corporation?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:notableInstruments res:Gibson_Guitar_Corporation } ",lcquad Which child of Jack Ferguson became a Prime Minister?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Jack_Ferguson onto:child ?x . ?x prop:primeminister ?uri . }",lcquad Did Annie Leibovitz do the cover of The Road Ahead?,"PREFIX onto: ASK WHERE { onto:coverArtist }",lcquad What are the things whose mascots are from the class Eutheria?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:class res:Eutheria . ?uri prop:mascot ?x . }",lcquad For whom did Michael Springer palyed for which is also had a former student named Donald Brooks ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Michael_Springer prop:team ?uri. res:Donald_Brooks prop:education ?uri} ",lcquad Name the common nationality of Georgina Theodora Wood and akwasi Oppong Fosu ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Georgina_Theodora_Wood onto:nationality ?uri. res:Akwasi_Oppong_Fosu onto:nationality ?uri . }",lcquad Name the movie written by Monty Python and distributed by Cinema International Corporation ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:distributor . ?uri prop:writer . ?uri rdf:type onto:Film}",lcquad Is Pittsburgh Steelers the former team of Marv McFadden?,"PREFIX res: PREFIX prop: ASK WHERE { res:Marv_McFadden prop:pastteams res:Pittsburgh_Steelers }",lcquad Which series was written by Eric Jendresen and John Orloff?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri prop:writer . ?uri prop:writer . ?uri rdf:type onto:TelevisionShow}",lcquad In which city can I find both the office of Elasticsearch and the Yellow Claw DJ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:location ?uri. prop:location ?uri . }",lcquad Name the partners of Kelly Brook?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Kelly_Brook onto:partner ?uri } ",lcquad What is the area of the broadcast network which has the affiliation with 9TV?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:affiliation ?x . ?x prop:area ?uri . ?x rdf:type onto:BroadcastNetwork}",lcquad Who is married to Gerard Piqu?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:partner res:Gerard_Piqué . }",lcquad Which sports are played in schools affiliated with the Harvest Christian Center?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:religiousAffiliation . ?x onto:sport ?uri . ?x rdf:type onto:School}",lcquad Who debuted their career in a team coached by Chip Kelly?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:coach res:Chip_Kelly . ?uri onto:debutTeam ?x . }",lcquad What are the nicknames given to the characters of The Wolves of the Mercy Falls?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:List_of_The_Wolves_of_Mercy_Falls_characters prop:nickname ?uri } ",lcquad "Name the river with source country in Zambia and source region as North-Western Province, Zambia?","PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:sourceCountry . ?uri onto:sourceRegion . ?uri rdf:type onto:River}",lcquad Members of how many political parties have died in Delhi?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:placeOfDeath . ?x prop:party ?uri . }",lcquad What is the birthplace of Adugna Deyas and the place where Fiq is located?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:country ?uri. prop:birthPlace ?uri . }",lcquad what is the headquarters of Juan Dalmau Ramerez?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Juan_Dalmau_Ramírez prop:headquarters ?uri } ",lcquad The president who was in office when Lee Hyun Jae was the PM followed which religion?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:primeminister . ?x onto:religion ?uri . ?x rdf:type onto:President}",lcquad Who is the maker of the engine of Ford F-Series first generation ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:engine ?x . ?x onto:manufacturer ?uri . }",lcquad What is the religious affiliation of Neungin High School?,"PREFIX res: PREFIX prop: 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: ASK WHERE { onto:silverMedalist }",lcquad Name the office holder with successor as Adrian A Basora and child as Lori Black ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:child . ?uri prop:successor . ?uri rdf:type onto:OfficeHolder}",lcquad Who is the owner of the South end ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:The_South_End prop:owners ?uri } ",lcquad What is the colour of Xocolatlite ?,"PREFIX res: PREFIX onto: 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: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:playedFor . ?x onto:formerTeam ?uri . }",lcquad What is the state of origin of the president whose alma mater is Hellenic Naval Academy ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:almaMater . ?x onto:stateOfOrigin ?uri . ?x rdf:type onto:President}",lcquad What is the common ethnicity of the Maike Evers and Francisco Lachowski ?,"PREFIX res: PREFIX onto: 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: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:foundationPlace . ?x onto:regionServed ?uri . ?x rdf:type onto:Company}",lcquad Which senator served in military units VMF-155 and VMF-218?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:militaryUnit . ?uri onto:militaryUnit . ?uri rdf:type onto:Senator}",lcquad What kind of games are made by Interplay Entertainment?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:publisher . ?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: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Purvis_Eureka prop:engine ?uri. res:Ford_Theatre prop:company ?uri} ",lcquad What developed EMMS?,"PREFIX res: PREFIX onto: 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: SELECT DISTINCT ?uri WHERE { onto:associatedBand ?uri. onto:musicalBand ?uri} ",lcquad In which time zone is Pong Pha?,"PREFIX res: PREFIX onto: 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: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:starring . ?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: PREFIX onto: 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: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:city . ?x prop:owner ?uri . ?x rdf:type onto:Airport}",lcquad What is the baseball team whose club manager is Chip Hale?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:manager . ?uri rdf:type onto:BaseballTeam}",lcquad Which bacteria's taxonomic class is Bacilli?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:class . ?uri rdf:type onto:Bacteria}",lcquad What honours did Reigh Count receive?,"PREFIX res: PREFIX onto: 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: PREFIX onto: 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: SELECT DISTINCT ?uri WHERE { ?x onto:tenant . ?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: PREFIX prop: PREFIX onto: 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: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:related . ?uri rdf:type onto:TelevisionShow}",lcquad In which city wasThe Triple Door (The Courage album) performed live?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:recorded ?uri } ",lcquad Which nearest city of Jurgens Site is the death plce of Jimmie Heuga ?,"PREFIX res: PREFIX prop: 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: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Ali_Habib_Mahmud prop:battles ?uri } ",lcquad How many companies were started in the states?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:foundationPlace . ?uri rdf:type onto:Company}",lcquad Is Charles Drummond Ellis a doctoral student of James Chadwick?,"PREFIX res: PREFIX onto: ASK WHERE { res:James_Chadwick onto:doctoralStudent res:Charles_Drummond_Ellis }",lcquad How many movies are distributed by Cinema International Corporation?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:distributor . ?uri rdf:type onto:Film}",lcquad "Name the local authority of Trinity School, Brentwood ?","PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:localAuthority ?uri } ",lcquad Name the president of Wyche Fowler ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Wyche_Fowler onto:president ?uri } ",lcquad In which fields have people born in Lausanne worked?,"PREFIX res: PREFIX prop: 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: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:locationCity . ?uri prop:founder . ?uri rdf:type onto:Company}",lcquad "Name a show hosted by Brian Dunkleman and judged by Harry Connick, Jr.?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:presenter . ?uri prop:judges . ?uri rdf:type onto:TelevisionShow}",lcquad To which educational institute does Cornell University Press belong to?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Cornell_University_Press onto:parentCompany ?uri } ",lcquad "In which country's cuisine, ham is an important part?","PREFIX res: PREFIX prop: 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: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:operatingSystem . ?uri onto:license . ?uri rdf:type onto:Software}",lcquad Which ppolitical party of Yashpal Kapur is also the owner of National Herald ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:owner ?uri. onto:party ?uri} ",lcquad Who all have been presenters on shows by the NBC?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:channel . ?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: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:class . ?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: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:restingPlace . ?uri prop:predecessor . ?uri rdf:type onto:Person}",lcquad What disease led to the demise of Letitia MacTavish Hargrave and Martino Martini ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:deathCause ?uri. 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: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:operatingSystem . ?uri prop:programmingLanguage ?x . ?uri rdf:type onto:Software}",lcquad "List all the movies whose directors were born in Kenosha, Wisconsin?","PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:birthPlace . ?uri prop:director ?x . }",lcquad "Does the St lawrence river start in Kingston, Ontario?","PREFIX onto: ASK WHERE { onto:sourceMountain }",lcquad What stadium's operator is Stan Kroenke,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:operator . ?uri rdf:type onto:Stadium}",lcquad Is Mike Babcock the head coach of Toronto Maple Leafs?,"PREFIX res: PREFIX prop: ASK WHERE { res:Toronto_Maple_Leafs prop:headCoach res:Mike_Babcock }",lcquad Whose commanders are John Mc Ewen and Park Chunghee?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:commander . ?uri onto:commander . }",lcquad Who gave guest appearances on the show which is the next episode after the Bombshell one?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:previousWork . ?x prop:guests ?uri . ?x rdf:type onto:TelevisionEpisode}",lcquad What is manufactured by a company headed by Kazuo Hirai?,"PREFIX res: PREFIX prop: PREFIX onto: 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: PREFIX prop: 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: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:governingBody res:Philadelphia_City_Council } ",lcquad What are the binomial authority of Menetries's warbler?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:binomialAuthority ?uri } ",lcquad Name the movie which has music composed by Elliot Goldenthal and screenplay by Akiva Goldsman ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:music . ?uri prop:screenplay . ?uri rdf:type onto:Film}",lcquad Name the fictional character whose relative are Duck family and Clan McDuck?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:relative . ?uri prop:relatives . ?uri rdf:type onto:FictionalCharacter}",lcquad Which university with athletics department in NCAA Division I Football Bowl Subdivision has nickname Tulane Green Wave ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:mouthMountain . ?uri onto:rightTributary . ?uri rdf:type onto:University}",lcquad Which state does Jerome B. Chaffee belong ?,"PREFIX res: PREFIX prop: 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: SELECT DISTINCT ?uri WHERE { onto:party ?uri. onto:leaderName ?uri} ",lcquad What awards are won by the screenwriter of Lucky You?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:screenplay ?x . ?x onto:award ?uri . }",lcquad Name the Pole driver of 1994 Spanish Grand Prix ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:1994_Spanish_Grand_Prix prop:poleDriver ?uri } ",lcquad Where did Georges Wolinski and Judson Huss die/,"PREFIX res: PREFIX prop: 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: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:hubs . ?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: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:cpu . ?uri rdf:type onto:InformationAppliance}",lcquad "Give me all magazines whose founder died in Berkeley, California?","PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:deathPlace . ?uri onto:founder ?x . ?uri rdf:type onto:Magazine}",lcquad Which technological products were manufactured by Foxconn?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:manufacturer . ?uri rdf:type onto:InformationAppliance}",lcquad Is George Lucas the cinematographer of 6-18-67?,"PREFIX prop: ASK WHERE { prop:cinematography }",lcquad Whose predecessor had Jenny Macklin as a deputy ?,"PREFIX res: PREFIX prop: 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: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:assembly . ?x prop:related ?uri . }",lcquad Count the number of region of AN/FSQ-7 Combat Direction Central?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { onto:region ?uri . }",lcquad What are the common houses of US Congress and the Kansas Legislature?,"PREFIX res: PREFIX prop: PREFIX onto: 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: ASK WHERE { onto:firstAscentPerson }",lcquad From how many different places have people gone to the Harward Medical School?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:institution . ?x onto:birthPlace ?uri . }",lcquad Name the television show where Mona Marshall has given voice and is distributed by Comedy Central?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:voices . ?uri prop:distributor . ?uri rdf:type onto:TelevisionShow}",lcquad What are Jerry Bock's musicals based upon?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:music . ?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: PREFIX onto: 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: PREFIX onto: 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: SELECT DISTINCT ?uri WHERE {?uri prop:allegiance . ?uri prop:restingplace . }",lcquad Was Tim Gunn a guest on The Broken Code?,"PREFIX res: PREFIX prop: ASK WHERE { res:The_Broken_Code prop:guests res:Tim_Gunn }",lcquad What is the successor of PlayStation 4,"PREFIX res: PREFIX prop: 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: PREFIX onto: 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: PREFIX prop: PREFIX onto: 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: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:destination ?uri. prop:cityServed ?uri} ",lcquad name the region served by Jerusalem Institue of Justice which was also the conflict region in GazaIsrael ?,"PREFIX res: PREFIX prop: PREFIX onto: 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: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:keyPeople . ?uri prop:products . ?uri rdf:type onto:Company}",lcquad What is the total number of professions in which someone who has suicided worked?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:deathCause . ?x onto:occupation ?uri . }",lcquad How many golf players are there in Arizona State Sun Devils ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:college . ?uri rdf:type onto:GolfPlayer}",lcquad Count the number of characters in Batman Live?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { 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: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:services . ?x prop:services ?uri . ?x rdf:type onto:Company}",lcquad What are some team members of the team based in Camp Nou?,"PREFIX res: PREFIX prop: PREFIX onto: 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: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:nickname . ?uri rdf:type onto:University}",lcquad What is the branch of the politicians whose governor is Bill Clements?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:governor . ?x prop:branch ?uri . ?x rdf:type onto:Politician}",lcquad Who composed the episode after which came Butter's Very own Episode?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:subsequentWork . ?x onto:musicComposer ?uri . ?x rdf:type onto:TelevisionEpisode}",lcquad What is the location country of Teperberg 1870 ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Teperberg_1870 prop:locationCountry ?uri } ",lcquad List the software developed by Shawn Fanning ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:developer . ?uri rdf:type onto:Software}",lcquad What is the stylistic origin of the music genres where the Bass guitar is important?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:instruments . ?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: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:executiveProducer ?x . ?x prop:notableworks ?uri . }",lcquad Who was the voice actor of allen walker also gave voice to kimihiro watanuki?,"PREFIX res: PREFIX onto: 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: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:battle . ?uri prop:restingplace . ?uri rdf:type onto:OfficeHolder}",lcquad What type of engines are utilised by Purvis Eureka?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Purvis_Eureka prop:engine ?uri } ",lcquad Who edited Easy street ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:editing ?uri } ",lcquad Who were involved in the wars where Jonathan Haskell battled?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Jonathan_Haskell prop:battles ?x . ?x prop:combatant ?uri . }",lcquad In which city was the film star of Singhasan Battisi born ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:starring ?x . ?x prop:birthPlace ?uri . }",lcquad What are the reason served by Toll Global Express which is also the country of LPGA ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Toll_Global_Express onto:regionServed ?uri. res:LPGA onto:country ?uri} ",lcquad List the territory of Tonkin Campaign ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Tonkin_Campaign onto:territory ?uri } ",lcquad For which teams did Ryan Powell play for?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:team ?uri } ",lcquad What are the awards won by the person who wrote the screen play for Lost in Rio ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:OSS_117:_Lost_in_Rio prop:screenplay ?x . ?x prop:awards ?uri . }",lcquad Total number of places where people drafted in the detroit pistons have died?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:draftTeam . ?x prop:placeOfDeath ?uri . ?uri rdf:type onto:Location}",lcquad What band made The trial and One of these days song?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:artist ?uri. onto:musicalArtist ?uri . }",lcquad Name the club of Julie Hastings ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Julie_Hastings onto:club ?uri } ",lcquad From where does the river Upper Neretva start flowing?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Upper_Neretva onto:riverMouth ?uri } ",lcquad "Name the university located in Indiana and has affiliations with Kaplan, Inc.?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:campus . ?uri prop:affiliations . ?uri rdf:type onto:University}",lcquad List the newspapers whose offices are situated in 1211 Avenue of the Americas?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:headquarter . ?uri rdf:type onto:Newspaper}",lcquad Was Morrissey a member of the Smiths?,"PREFIX res: PREFIX onto: ASK WHERE { res:The_Smiths onto:formerBandMember res:Morrissey }",lcquad Did Phillippe Cabot go to Columbia for studying?,"PREFIX res: PREFIX onto: ASK WHERE { res:Phillippe_Cabot onto:university res:Columbia_University }",lcquad What river originates in Kingston Ontario?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:sourceLocation . ?uri rdf:type onto:River}",lcquad "By what style was Providence Chapel, Charlwood made?","PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:style ?uri } ",lcquad "For how many PMs did the politician work, whose successor was Kingsley Wood?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { onto:successor ?x . ?x prop:primeminister ?uri . ?x rdf:type onto:OfficeHolder}",lcquad list some companies founded by Jim Harris.,"PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:foundedBy } ",lcquad Give me the total number of employer of the engineers whose one of the employer is McDonnell Aircraft ?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:employer . ?x onto:employer ?uri }",lcquad How many developers have games where I can hear Lightning McQueen?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { onto:voice ?x . ?x onto:developer ?uri . }",lcquad "Which universit's affiliation is with Kalpan, Inc. and has campus at Iowa ?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:affiliations . ?uri onto:campus . ?uri rdf:type onto:University}",lcquad How many record labels publish works of Jazz fusion?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:genre . ?x onto:recordLabel ?uri . }",lcquad What are the regions in which the distributor of Secrets and Lies serves ? ,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:distributor ?x . ?x onto:regionServed ?uri . }",lcquad List all the writers of the comics which has Robert Bernstein as one of the writer ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:writers . ?x prop:writers ?uri . ?x rdf:type onto:Comic}",lcquad What are the settlements whose neighboring municipalities is Lancy?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:neighboringMunicipalities . ?uri rdf:type onto:Settlement}",lcquad Count the total number of hometown of the gymnasts whose one of the hometown in Russia ?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:hometown . ?x prop:hometown ?uri }",lcquad In which states does the river flow whose left tributary is Toms Creek?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:leftTributary ?x . ?x onto:state ?uri . }",lcquad Name the river whose source mountain is Baikal Mountains and mouth location is Arctic Ocean?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:sourceMountain . ?uri prop:mouthLocation . ?uri rdf:type onto:River}",lcquad Count the PhD students whose thesis are supervised by National Medal of Science winners?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:prizes . ?x prop:doctoralStudents ?uri . }",lcquad Which broadcast area of CFRX is also the palce of birth of Anthony Raymond ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:CFRX onto:broadcastArea ?uri. res:Anthony_Raymond_Ceresko prop:placeOfBirth ?uri} ",lcquad Count the total number of cast member of the television shows whose actress is Joey McIntyre?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:starring . ?x prop:starring ?uri }",lcquad List all the awards won by the artist who has won SIGGRAPH ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:award res:SIGGRAPH . ?x onto:award ?uri . }",lcquad Where was david Scherman trained ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:David_Scherman prop:training ?uri } ",lcquad Count the battles fought by Raoul Magrin-Vernerey?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { prop:battles ?uri . ?uri rdf:type onto:MilitaryConflict}",lcquad Which athlete was the flag bearer for Switzerland in 2004 and 2008 summer Olympics ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Switzerland_at_the_2004_Summer_Olympics prop:flagbearer ?uri. res:Switzerland_at_the_2008_Summer_Olympics prop:flagbearer ?uri . }",lcquad Which nationalist group was responsible for foundation of Young Lords?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Young_Lords prop:international ?uri } ",lcquad What award was won by the father of Angelina Jolie?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:children res:Angelina_Jolie . ?x onto:award ?uri . }",lcquad What are the software whose programming language are Multilingual?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:language . ?uri prop:programmingLanguage ?x . ?uri rdf:type onto:Software}",lcquad Was Marshall Arisman the cover artist in american psycho?,"PREFIX res: PREFIX prop: ASK WHERE { res:American_Psycho prop:coverArtist res:Marshall_Arisman }",lcquad Which birthplace of Liliya Lobanova is also the location of the Snake Island ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:birthplace ?uri. prop:locationCountry ?uri} ",lcquad Count all the stateless people,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:citizenship . }",lcquad Josef Bhler belongs to which political party?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Josef_Bühler onto:occupation ?uri } ",lcquad Where did the war take place where one of the commander was Zuo Zongtang?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:commander . ?x onto:territory ?uri . ?x rdf:type onto:MilitaryConflict}",lcquad In which place is the company which is known for Barbara bestor located ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:knownFor ?x . ?x onto:location ?uri . ?x rdf:type onto:Company}",lcquad What novels are belong to the genre of Utopian and dystopian fiction?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:literaryGenre res:Utopian_and_dystopian_fiction } ",lcquad What are the movies written by Nick Castle?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:writer . ?uri rdf:type onto:Film}",lcquad On which river are there things belonging to zambezi river authority?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:owner res:Zambezi_River_Authority . ?x onto:river ?uri . }",lcquad Is Egyptian Arabic belong to the Central Semitic Languages family?,"PREFIX res: PREFIX onto: ASK WHERE { res:Egyptian_Arabic onto:languageFamily res:Central_Semitic_languages }",lcquad Who is the artist of Sings Kristofferson and also performed Milk Cow Blues atleast once?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Sings_Kristofferson prop:artist ?uri. res:Milk_Cow_Blues onto:artist ?uri . }",lcquad Who has fought in wars under commander Arthur St Clair?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:commander res:Arthur_St._Clair . ?x prop:combatant ?uri . }",lcquad Which Paramount TV show was produced by Glen and Les Charles ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:executiveProducer . ?uri prop:company . ?uri rdf:type onto:TelevisionShow}",lcquad Name some basketball players who have played for chicago bulls?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:team . ?uri rdf:type onto:BasketballPlayer}",lcquad Which owner of the national Herald india is the leader of Kumta ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:owner ?uri. prop:governmentType ?uri} ",lcquad "Was Francisco Pizarro of the monarch of Charles 5, of the roman empire?","PREFIX onto: ASK WHERE { onto:monarch }",lcquad What is the largest city of Pulau Ubin ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Pulau_Ubin onto:largestCity ?uri } ",lcquad What is the origin of the musical artist of A Todo Romantic Style ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:A_Todo_Romantic_Style prop:artist ?x . ?x prop:origin ?uri . }",lcquad Horses sired by Karinga Bay have participated in which races?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:sire . ?x prop:race ?uri . ?x rdf:type onto:Horse}",lcquad What is the alma mater of the scientists known for String theory?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:knownFor . ?x prop:almaMater ?uri . ?x rdf:type onto:Scientist}",lcquad How many apes are there?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:family . }",lcquad What is a common nickname given to both Lyons Township high school and the wheaton college in massachusetts?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:nickname ?uri. prop:nickname ?uri . }",lcquad Where do beauty queens with brown hair reside?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:hairColor res:Brown_hair . ?x onto:residence ?uri . }",lcquad List the television shows one of whose distributor's divisions is Warner Bros. Animation.,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:divisions . ?uri prop:distributor ?x . ?uri rdf:type onto:TelevisionShow}",lcquad Name the television show directed by Simon Fuller and judged by Jennifier Lopez ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:creator . ?uri prop:judges . ?uri rdf:type onto:TelevisionShow}",lcquad Name the appointer of William Clark ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:William_Clark prop:appointer ?uri } ",lcquad in which movies have momoki kochi acted,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:starring res:Momoko_Kōchi } ",lcquad What is the base currency of the Benelux and is also used as money in Kerguelen Islands?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Benelux prop:currency ?uri. res:Kerguelen_Islands onto:currency ?uri} ",lcquad List the mammals whose taxonomy is Diprotodontia and phylum is Chordate?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:order . ?uri onto:phylum . ?uri rdf:type onto:Mammal}",lcquad Count the key people of the Clinton Foundation?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { prop:keyPeople ?uri . }",lcquad Name the company founded in New Mexico and provides Outlook.com as services ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:foundation . ?uri prop:services . ?uri rdf:type onto:Company}",lcquad Which tv show was preceded by The spirit of Christmas and voice to the character was given by Mona Marshall ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:previousWork . ?uri prop:voices . ?uri rdf:type onto:TelevisionShow}",lcquad "Under which common jurisdiction do Trinity School, Brentwood and Buckhurst Hill County High School fall?","PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:localAuthority ?uri. onto:localAuthority ?uri . }",lcquad Music of how many things has been given by Akira Ifukube?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:music . }",lcquad What made jo garcia and merritt cabal both famous?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Jo_Garcia onto:knownFor ?uri. res:Merritt_Cabal onto:knownFor ?uri . }",lcquad What was the career of some people who have committed suicide?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:deathCause res:Suicide . ?x onto:occupation ?uri . }",lcquad In how many places are the tombs of people who died in Connecticut Colony?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:placeOfDeath . ?x onto:restingPlace ?uri . ?uri rdf:type onto:Place}",lcquad List the producer of the television shows distributed by FremantleMedia.,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:distributor . ?x onto:producer ?uri . ?x rdf:type onto:TelevisionShow}",lcquad Name the awards won by Elie Wiesel ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Elie_Wiesel prop:awards ?uri } ",lcquad Who are the producers of Marie Sisters?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Marie_Sisters prop:producer ?uri } ",lcquad Who won the silver medal when the bronze was won by Yang Yilin?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:bronzeMedalist res:Yang_Yilin . ?x onto:silverMedalist ?uri . }",lcquad "List the successor of successor of Hayden, Stone & Co.","PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:successor ?x . ?x onto:successor ?uri . }",lcquad Count the number of battles fought by the military person involved in Morocco ?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:battles . ?x prop:battles ?uri }",lcquad What is the origin of Xynisteri?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Xynisteri onto:origin ?uri } ",lcquad How many important works have been done by Russel Davies?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { onto:notableWork ?uri . }",lcquad Who are currently playing for Barcelona FC?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:currentclub res:FC_Barcelona } ",lcquad Is Andrew Lincoln the narrator of Million Dollar Traders?,"PREFIX res: PREFIX onto: ASK WHERE { res:Million_Dollar_Traders onto:narrator res:Andrew_Lincoln }",lcquad Who is the owner of Saumarez ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:owner ?uri } ",lcquad What is telecasted on the network where Deborah Turness holds important position?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:keyPerson res:Deborah_Turness . ?uri onto:network ?x . }",lcquad Who is the fictional character whose relative is Vestigial Peter?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:relative . ?uri rdf:type onto:FictionalCharacter}",lcquad "How many home stadium are there, of the soccer club seasons whose chairman is Merritt Paulson?","PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:chairman . ?x onto:homeStadium ?uri . }",lcquad Name the alma mater of Ernest de Saisset ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Ernest_de_Saisset onto:almaMater ?uri } ",lcquad What magazine companies are of form Limited liability company?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:company . ?uri rdf:type onto:Magazine}",lcquad List the driver of SA MArino Grand Prix is also the Pole driver of Canadian Grand Proix ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:1999_San_Marino_Grand_Prix prop:firstDriver ?uri. res:1997_Canadian_Grand_Prix prop:poleDriver ?uri} ",lcquad Where does John A Danaher III work?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:John_A._Danaher_III prop:office ?uri } ",lcquad Name few movies directed by Tim Burton ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:director . ?uri rdf:type onto:Film}",lcquad "Where was Live in Detroit, MI recorded ?","PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:recordedIn ?uri } ",lcquad Name all the bands which have members of QDT in them.,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:QDT onto:bandMember ?x . ?x onto:associatedBand ?uri . }",lcquad Which footballers did their high school in west Sacramento california? ,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:highSchool . ?uri rdf:type onto:AmericanFootballPlayer}",lcquad List the names of the soccer club seasons whose division is 2012 Campeonato Brasileiro Srie A.,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:league . ?x prop:name ?uri . ?x rdf:type onto:SoccerClubSeason}",lcquad Which successor of Philippine Ports Authority is the state of origin of Ruben J. Villote ?,"PREFIX res: PREFIX onto: 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: PREFIX onto: 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: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:owner . ?uri onto:locationCity . ?uri rdf:type onto:AmericanFootballTeam}",lcquad "The successor of Ulrich II, Count of East Frisia was born in what place?","PREFIX prop: SELECT DISTINCT ?uri WHERE { 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: PREFIX prop: PREFIX onto: 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: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { 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: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:family . ?x onto:binomialAuthority ?uri . ?x rdf:type onto:Crustacean}",lcquad What have some US citizens died of?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:citizenship res:United_States . ?x onto:deathCause ?uri . }",lcquad What are some apes?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:family res:Ape . }",lcquad Who is buried at the place governed by National Park Service?,"PREFIX res: PREFIX prop: 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: PREFIX onto: 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: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:pastMembers ?uri. onto:musicalBand ?uri} ",lcquad List all the notable works of Russell T Davies?,"PREFIX res: PREFIX onto: 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: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:garrison . ?uri prop:garrison . ?uri rdf:type onto:MilitaryUnit}",lcquad Name all the products produced by the producer of United States dollar ?,"PREFIX res: PREFIX onto: 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: SELECT DISTINCT ?uri WHERE { onto:launchSite ?uri } ",lcquad What are the players whose former teams are Carolina Panthers and Indianapolis Colts?,"PREFIX res: PREFIX onto: 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: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:phylum . ?uri onto:order } ",lcquad Who is the music composer of Kenny Dies ?,"PREFIX res: PREFIX onto: 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: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { 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: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:predecessor . ?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: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:associatedMusicalArtist . ?uri onto:associatedMusicalArtist . ?uri rdf:type onto:MusicalArtist}",lcquad Is the Hyundai Lavita assembled in Kulim?,"PREFIX res: PREFIX onto: ASK WHERE { res:Hyundai_Lavita onto:assembly res:Kulim }",lcquad What is the programme format of WWTR ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:WWTR onto:programmeFormat ?uri } ",lcquad list the founders of Bream Bay ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Bream_Bay prop:founder ?uri } ",lcquad Is Essex the Ceremonial County of West Tilbury?,"PREFIX res: PREFIX onto: ASK WHERE { res:West_Tilbury onto:ceremonialCounty res:Essex }",lcquad What is the total number of participant in conflict of SFOR?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:battles . ?x onto:battle ?uri . }",lcquad Name the people whose academic advisor has also mentored the thesis of Alexius Meinong?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:doctoralStudents . ?uri onto:academicAdvisor ?x . ?uri rdf:type onto:Person}",lcquad Where is Denver Broncos located ?,"PREFIX res: PREFIX onto: 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: SELECT DISTINCT ?uri WHERE { onto:homeport ?uri. onto:servingRailwayLine ?uri} ",lcquad "Which river flows through Hudson Highlands State park and also through Troy, New york ?","PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:river ?uri. onto:river ?uri} ",lcquad "What is the university to which Erica Frank went, and where Ivan Toplak was a club manager?","PREFIX res: PREFIX onto: 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: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:director . ?uri rdf:type onto:Film}",lcquad Which borough is common for Duddeston and Bordesley railway station ?,"PREFIX res: PREFIX prop: 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: PREFIX prop: 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: PREFIX onto: 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: PREFIX prop: PREFIX onto: 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: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { 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: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:residence . ?uri onto:leader ?x . ?uri rdf:type onto:PoliticalParty}",lcquad Which awards have been given to scientists that graduated from NKU athens?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:almaMater . ?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: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:executiveProducer . ?uri onto:series ?x . ?uri rdf:type onto:FictionalCharacter}",lcquad Did Jerry Rice study in Oktoc Mississippi?,"PREFIX prop: ASK WHERE { prop:highSchool }",lcquad Cable stayed bridges have been used to cross over how many things?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:design . ?x prop:crosses ?uri . }",lcquad Is north caucasian emirate have an islamic government?,"PREFIX res: PREFIX onto: 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: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:themeMusicComposer . ?uri rdf:type onto:TelevisionShow}",lcquad Who influenced the author of The Shooting of Dan McGrew ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:writer ?x . ?x prop:influences ?uri . }",lcquad Raymond Johansen is the mayor of what city?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:leaderName res:Raymond_Johansen . }",lcquad "What region was Gloria Schaffer born in, which also contains Newington?","PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:birthPlace ?uri. onto:isPartOf ?uri . }",lcquad "List some teams for which someone who has played as a defender, now plays?","PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:position res:Defenceman . ?x onto:team ?uri . }",lcquad Which rivers start from the Provinces of Zambia?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:settlementType . ?uri onto:sourceRegion ?x . ?uri rdf:type onto:River}",lcquad Who are the scientists known for the Manhattan Project?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:knownFor . ?uri rdf:type onto:Scientist}",lcquad What are some dishes from the family of dishes which primarily use flour?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:mainIngredient . ?uri onto:type ?x . ?uri rdf:type onto:Food}",lcquad "Which religion do the people follow, whose constituency is Jadavpur?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:constituency . ?x prop:religion ?uri . ?x rdf:type onto:Person}",lcquad "In which region is the rival school of Somerset, Massachusetts located?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:rival . ?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: PREFIX prop: PREFIX onto: 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: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:highschool . ?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: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:employer . ?uri prop:spouse . ?uri rdf:type onto:Person}",lcquad How many things are crossed over by bridges which can carry cars?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:carries . ?x prop:crosses ?uri . }",lcquad Which fictional character sculpted by Josh Friedmann was portrayed in Terminator 3 ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:creator . ?uri onto:portrayer . ?uri rdf:type onto:FictionalCharacter}",lcquad Which team won the American Football League?,"PREFIX res: PREFIX prop: 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: PREFIX onto: 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: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:affiliation ?x . ?x prop:founded ?uri . ?x rdf:type onto:TradeUnion}",lcquad Which leader of United States House of Representatives was the appinter of ohn Drayton ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:leader ?uri. prop:appointer ?uri} ",lcquad Is fox belong to the phylum of Chordate?,"PREFIX res: PREFIX onto: ASK WHERE { res:Fox onto:phylum res:Chordate }",lcquad Which researchers received fellowship from Royal Society?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:award . ?uri rdf:type onto:Scientist}",lcquad Which president of United States had vice president as John Adams?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:vicePresident . ?uri rdf:type onto:OfficeHolder}",lcquad Where was James H. Fields buried ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:James_H._Fields prop:placeofburial ?uri } ",lcquad Is Henry Knox a commander of Continental Artillery Regiment?,"PREFIX res: PREFIX onto: ASK WHERE { res:Continental_Artillery_Regiment onto:notableCommander res:Henry_Knox }",lcquad What is the commander of Battle of Brownstown ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Battle_of_Brownstown onto:commander ?uri } ",lcquad Is Baker's Dozen Donuts in the coffee industry?,"PREFIX onto: ASK WHERE { onto:industry }",lcquad What is Jon Speelman famous for?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Jon_Speelman onto:field ?uri } ",lcquad Who is the fictional character whose family member is Padme Amidala?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:family . ?uri rdf:type onto:FictionalCharacter}",lcquad What company is the one which wrote the google web toolkit and PlayN?,"PREFIX res: PREFIX onto: 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: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:recordedIn . ?x onto:writer ?uri . }",lcquad Which are the automobile platform whose one of the automobile platform is Dodge ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:automobilePlatform . ?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: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:combatant . ?x prop:combatant ?uri }",lcquad List some pupils of National Science Medal winning scientists?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:prizes . ?x prop:doctoralStudents ?uri . ?x rdf:type onto:Scientist}",lcquad Relatives of Moses used to follow which religions?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Moses onto:relative ?x . ?x onto:veneratedIn ?uri . }",lcquad "Where was Ne daj se, Nina first aired ?","PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:firstAired ?uri } ",lcquad Where did the 2015 MLS All-Star Game take place?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:city ?uri } ",lcquad Is Nikolai Morozov the former coach of Stanislav Morozov?,"PREFIX onto: ASK WHERE { onto:formerCoach }",lcquad Did Alexandre Tichonov study at the Moscow university?,"PREFIX res: PREFIX prop: 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: PREFIX onto: 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: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:president . ?x prop:president ?uri . ?x rdf:type onto:School}",lcquad Does Timothy Morton study Buddhism?,"PREFIX res: PREFIX prop: ASK WHERE { res:Timothy_Morton prop:mainInterests res:Buddhism }",lcquad Brian Moriarty designed video games written by whom?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:designer . ?x prop:writer ?uri . ?x rdf:type onto:VideoGame}",lcquad What are some movies whose distributors are led by Kevin Tsujihara?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:keyPerson . ?uri prop:distributor ?x . ?uri rdf:type onto:Film}",lcquad Name the common associate band of Blayse and Teddy Riley ?,"PREFIX res: PREFIX onto: 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: PREFIX onto: 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: SELECT DISTINCT ?uri WHERE { ?uri onto:militaryUnit . ?uri onto:militaryUnit . }",lcquad What automobile engine's successor is BMW M40,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:successor . ?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: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:product . ?uri prop:products . ?uri rdf:type onto:Company}",lcquad What is the district of Methodist Central Hall Westminster ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Methodist_Central_Hall_Westminster onto:district ?uri } ",lcquad Who develops the computation platform of Microsoft Expression Encoder ?,"PREFIX res: PREFIX onto: 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: SELECT DISTINCT ?uri WHERE { onto:officialLanguage ?uri. onto:academicDiscipline ?uri} ",lcquad Where did the conflict take place where Louis Briere de I'Isle was a commander?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:commander . ?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: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:almaMater . ?x prop:draftTeam ?uri . ?x rdf:type onto:Person}",lcquad How many people hold important positions alongwith Donna Shalala?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:keyPerson . ?x prop:keyPeople ?uri . }",lcquad What other things are provided by the producer of Office 365?,"PREFIX res: PREFIX prop: PREFIX onto: 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: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:products res:Edsel_Villager . ?x prop:parent ?uri . }",lcquad Which collaborator of Nice and Smooth wrote Same Song ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:associatedBand ?uri. prop:writer ?uri . }",lcquad Who fought in the battle at Tupelo Mississippi?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:place . ?x prop:combatant ?uri . ?x rdf:type onto:MilitaryConflict}",lcquad List the movies whose cast member were born in Scotland.,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:birthPlace . ?uri onto:starring ?x . ?uri rdf:type onto:Film}",lcquad List the other nicknames of city which has one of the nickname as City of Angels ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:nickname res:City_of_Angels . ?x prop:nickname ?uri . }",lcquad Count the writers whose work has been played in NY?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:place . ?x prop:writer ?uri . }",lcquad "Where did the graduates of Memphis, Tenessee continue their education?","PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:highschool . ?x onto:school ?uri . }",lcquad What subsequent work of Moondog Matinee has the composer of Motorpsycho Nitemare ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Motorpsycho_Nitemare prop:composer ?uri. res:Moondog_Matinee onto:subsequentWork ?uri} ",lcquad What was the language of the single which came before To Know Him Is to Love Him?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:To_Know_Him_Is_to_Love_Him onto:previousWork ?x . ?x prop:language ?uri . }",lcquad What are the television shows whose company is owned by Viacom?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:owningCompany . ?uri prop:company ?x . ?uri rdf:type onto:TelevisionShow}",lcquad How many people used to play in the youthclub of FC Barcelona?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:youthclubs . }",lcquad Quebec born ice hockey players have stopped playing for which teams?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:birthPlace . ?x onto:formerTeam ?uri . ?x rdf:type onto:IceHockeyPlayer}",lcquad Who is the chancellor of Falmouth University ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Falmouth_University prop:chancellor ?uri } ",lcquad what kind of things play on WBIG FM?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:programmeFormat ?uri } ",lcquad Name the are where South side Elevated Railroad operate and has place of birth as Arthur A. Ross ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:South_Side_Elevated_Railroad onto:operatedBy ?uri. res:Arthur_A._Ross prop:placeOfBirth ?uri} ",lcquad "In which fields are the graduates of Worcester College, Oxford working?","PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:almaMater . ?x onto:field ?uri . }",lcquad List the places where the relatives of Mark Donaldson died ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:relatives ?x . ?x onto:deathPlace ?uri . }",lcquad What famous politician died in the Petersen House?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:deathPlace . ?uri rdf:type onto:Person}",lcquad What are some artists on the show whose opening theme is Send It On?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:openingTheme . ?x prop:artist ?uri . ?x rdf:type onto:TelevisionShow}",lcquad What is the citizenship of Saima Chowdhury?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Saima_Chowdhury onto:citizenship ?uri } ",lcquad What are the musical performances whose label is Celluloid Records?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:label res:Celluloid_Records . }",lcquad What is the craft of the Ralph Flanders which is also the profession of Claiborne Pell ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Ralph_Flanders prop:occupation ?uri. res:Claiborne_Pell onto:profession ?uri} ",lcquad How many people have fought wars where Arthur St. Clair was a commander?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:commander . ?x prop:combatant ?uri . }",lcquad Does Chicago own the Monroe Station?,"PREFIX prop: ASK WHERE { prop:owned }",lcquad Which team has had both Martin prochzka and garry unger as its players ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Martin_Procházka onto:formerTeam ?uri. res:Garry_Unger onto:formerTeam ?uri . }",lcquad What are the awards received by spouse of Ellen Lundstrom?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:spouse res:Ellen_Lundström . ?x prop:awards ?uri . }",lcquad Who all have succeeded the kings buried in Rome?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:placeOfBurial . ?x onto:successor ?uri . ?x rdf:type onto:Royalty}",lcquad Through which states do the rivers flow which join in the republican river from the left?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Republican_River onto:leftTributary ?x . ?x onto:state ?uri . }",lcquad Give me the home town of all musical artists who uses Guitar as instrument ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:instrument . ?x onto:hometown ?uri . ?x rdf:type onto:MusicalArtist}",lcquad How many religions are followed amongst the people who've worked in the Korean army?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:militaryBranch . ?x onto:religion ?uri . }",lcquad Was andy warhol a part of Pop Art movement?,"PREFIX res: PREFIX prop: ASK WHERE { res:Andy_Warhol prop:movement res:Pop_art }",lcquad Count the number of musical work which were sold by Sony Music?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:label . ?uri prop:music ?x . ?uri rdf:type onto:MusicalWork}",lcquad "Who is the person whose home town is Fairmount, Indiana?","PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:hometown . ?uri rdf:type onto:Person}",lcquad Name the movies directed by Stanley Kubrick and edited by Anthony Harvey?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:director . ?uri prop:editing . ?uri rdf:type onto:Film}",lcquad List all binomial authority of the insects whose one of the binomial authority is douard Mntries?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:binomialAuthority res:Édouard_Ménétries . ?x onto:binomialAuthority ?uri . }",lcquad "Who is the military general buried in St Mary's Church, Battersea?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:placeofburial . ?uri rdf:type onto:MilitaryPerson}",lcquad What is the military unit whose command structures are United States Department of the Navy and United States Department of Defense?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:commandStructure . ?uri onto:commandStructure . ?uri rdf:type onto:MilitaryUnit}",lcquad What are some other things developed by the company who made the remote desktop protocol?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:products . ?x onto:product ?uri . ?x rdf:type onto:Company}",lcquad Where was Al-Muzaffar Umar buried ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:placeOfBurial ?uri } ",lcquad List the guests of On Broadway ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:guests ?uri } ",lcquad How many universities are there whose country's capital is Oslo?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:capital . ?uri onto:country ?x . ?uri rdf:type onto:University}",lcquad Did Bob Dylan write the lyrics of the times they are a changin'?,"PREFIX prop: ASK WHERE { prop:lyrics }",lcquad What is the religion of the ones in the Kampuchean Union of Salvation?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:militaryBranch res:Kampuchean_United_Front_for_National_Salvation . ?x onto:religion ?uri . }",lcquad Where did the members of judge advocate general corps study?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:militaryRank . ?x onto:almaMater ?uri . }",lcquad Name the airlines which have a hub in airport in SF?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:cityServed . ?uri prop:hubs ?x . ?uri rdf:type onto:Airline}",lcquad Which executive producer of the ultimate merger is also an important person at Trump Productions?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:The_Ultimate_Merger onto:executiveProducer ?uri. res:Trump_Productions onto:keyPerson ?uri . }",lcquad What is the official name of Colorado wine ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Colorado_wine prop:officialName ?uri } ",lcquad In how many states can one find Burr Tuss kind of bridges?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:style . ?x onto:state ?uri . ?uri rdf:type onto:Region}",lcquad who developed google videos?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Google_Videos prop:developer ?uri } ",lcquad "Who is the child of John Tyler, Sr.?","PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:child ?uri } ",lcquad Is Brazilian jiu-jitsu the trainer of Nick Diaz?,"PREFIX onto: ASK WHERE { onto:trainer }",lcquad Who is the owner of Latvian Wikipedia and Wiktionary ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Latvian_Wikipedia onto:owner ?uri. res:Wiktionary onto:owner ?uri . }",lcquad Name all those buried in a place governed by a city council.,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:governingBody res:City_council . ?uri prop:restingPlace ?x . }",lcquad What royalties's sepulchre is Mausoleum of Augustus?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:placeOfBurial res:Mausoleum_of_Augustus } ",lcquad Name the common university of the Cardinal and Jim Wylie?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Stanford_Cardinal onto:university ?uri. res:Jim_Wylie onto:university ?uri . }",lcquad What is the automobile platform of Chiva bus ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Chiva_bus onto:automobilePlatform ?uri } ",lcquad Who are the animator of The Skeleton Dance?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:The_Skeleton_Dance onto:animator ?uri } ",lcquad How many movies have a screenplay located in the States?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:birthPlace . ?uri prop:screenplay ?x . ?uri rdf:type onto:Film}",lcquad "Which ceremonial County of the East Tilbury is also the local authority of the Trinity School, Brentwood?","PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:ceremonialCounty ?uri. onto:localAuthority ?uri} ",lcquad What system is both a platform where Nord runs and also distributed The beauty inside?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:computingPlatform ?uri. onto:distributor ?uri . }",lcquad Name the country whose leader's deputy is Piotr Glinski?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:deputy . ?uri prop:leaderName ?x . ?uri rdf:type onto:Country}",lcquad Is Cologny a neighbouring city of Geneva?,"PREFIX res: PREFIX prop: ASK WHERE { res:Geneva prop:neighboringMunicipalities res:Cologny }",lcquad Whose creators are Jerry Seinfeld and Larry David?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:creator res:Jerry_Seinfeld . ?uri onto:creator res:Larry_David . }",lcquad Which TV show is related to The Sarah Jane Adventures and theme music is composed by Ron Grainer?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:related . ?uri prop:themeMusicComposer . ?uri rdf:type onto:TelevisionShow}",lcquad Name the parent company of Ford Air Transport Service ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Ford_Air_Transport_Service onto:parentCompany ?uri } ",lcquad "Who has these major shrines : Emmitsburg, Maryland and Shrine of St. Elizabeth Ann Bayley Seton?","PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:majorShrine . ?uri onto:majorShrine . }",lcquad Which region of Bannock is the origin od Spaghetti squash ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:origin ?uri. onto:region ?uri} ",lcquad Where in the us military did pierre r graham and edwin f hunter work?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Pierre_R._Graham prop:branch ?uri. res:Edwin_F._Hunter prop:branch ?uri . }",lcquad Count everyone who lives in a place where Indian English is an official language ?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:officialLanguage . ?uri onto:residence ?x . }",lcquad Did Raymond Picard take birth in Paris?,"PREFIX res: PREFIX prop: ASK WHERE { res:Raymond_Picard prop:birthplace res:Paris }",lcquad How many religions are practiced by diplomats?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:profession . ?x prop:religion ?uri . }",lcquad Was Elton John a chairman of a Watford FC Season?,"PREFIX res: PREFIX onto: ASK WHERE { res:1999–2000_Watford_F.C._season onto:chairman res:Elton_John }",lcquad Which publisher of Lucifer's hammer is also known for Jo Garcia ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:publisher ?uri. onto:knownFor ?uri} ",lcquad To whom was Tessa Dahl born to?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Tessa_Dahl onto:parent ?uri } ",lcquad Which sport at Polytechnic University of the Philippines Taguig is the field of Jon speelman ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Jon_Speelman onto:field ?uri. res:Polytechnic_University_of_the_Philippines_Taguig onto:sport ?uri} ",lcquad Count the number of things people who know linguistics are known for ?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:knownFor . ?x onto:knownFor ?uri }",lcquad Where were sverre krogh sundbo and havard vad petersson born?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Sverre_Krogh_Sundbø prop:birthPlace ?uri. res:Håvard_Vad_Petersson prop:placeOfBirth ?uri} ",lcquad Was Cliff Burton in Metallica?,"PREFIX res: PREFIX prop: ASK WHERE { res:Metallica prop:pastMembers res:Cliff_Burton }",lcquad How many religions are followed by organizations which are internationally known as the muslim brotherhood?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:international . ?x onto:religion ?uri . }",lcquad What are some people born in NY known for?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:birthPlace res:New_York_City . ?x onto:knownFor ?uri . }",lcquad Who is the developer of the software which is produced by Claris ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:products ?x . ?x onto:developer ?uri . ?x rdf:type onto:Software}",lcquad What is the river whose source is Cowombat Flat and has it's mouth located in Murray Mouth?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:source . ?uri onto:riverMouth . ?uri rdf:type onto:River}",lcquad Where does the river flow into which begins in Lebrsnik?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:sourcePlace res:Lebršnik . ?x onto:riverMouth ?uri . }",lcquad What is the government type of Ancient Rome ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Ancient_Rome onto:governmentType ?uri } ",lcquad Which director of On deadly Ground also released Mojo Priest ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Mojo_Priest prop:artist ?uri. res:On_Deadly_Ground prop:director ?uri . }",lcquad What is the television show whose channel's parent organisation is Fox Sports?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:parentOrganisation . ?uri onto:channel ?x . ?uri rdf:type onto:TelevisionShow}",lcquad Who commanded the invasion of Buwat and made Fatima bint Sa'd famous?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:commander ?uri. onto:knownFor ?uri . }",lcquad What is the home ground of the clubs managed by Ciao Zanardi?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:manager . ?x onto:ground ?uri . ?x rdf:type onto:SoccerClubSeason}",lcquad What is the country with native language as Languages of Ethiopia?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:language . ?uri rdf:type onto:Country}",lcquad What is the band with previous members Kevin Jonas and Joe Jonas?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri prop:pastMembers . ?uri prop:pastMembers . ?uri rdf:type onto:Band}",lcquad List the people with Scientology as their religious belief?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:religion . ?uri rdf:type onto:Person}",lcquad How many fictional characters were humans?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:species . ?uri rdf:type onto:FictionalCharacter}",lcquad Where was Girls (The Prodigy song) recorded ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:recorded ?uri } ",lcquad How many TV shows' networks are headquarterd in NY?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:headquarters . ?uri prop:network ?x . ?uri rdf:type onto:TelevisionShow}",lcquad Does StandBy records distribute via Sony?,"PREFIX res: PREFIX onto: ASK WHERE { res:StandBy_Records onto:distributingLabel res:Sony }",lcquad Give me some shows owned by BBC one and BBC hd?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:network . ?uri onto:network . ?uri rdf:type onto:TelevisionShow}",lcquad How many teams have rented stadiums in Canada?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:location . ?x prop:tenants ?uri . }",lcquad List the awards won by the film director of Chicken Run?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Chicken_Run prop:director ?x . ?x onto:award ?uri . }",lcquad What territory of Sino French War was the battle of Raoul Magrin-Vernerey fought ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:territory ?uri. prop:battles ?uri} ",lcquad List the outflow of Lake Uniamsi?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Lake_Uniamési onto:outflow ?uri } ",lcquad Did John Byrne create Emma Frost?,"PREFIX prop: ASK WHERE { prop:creators }",lcquad Was Heinrich Himmler ever a commanders of Army Group Oberrhein?,"PREFIX prop: ASK WHERE { prop:notableCommanders }",lcquad List the universities from a country where Norwegian language is officially accepted.,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:officialLanguage . ?uri onto:country ?x . ?uri rdf:type onto:University}",lcquad Name the incumbent of Linda Jenness ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Linda_Jenness onto:incumbent ?uri } ",lcquad "Which companies makes cars assembled in Karachi, Pakistan?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:assembly . ?x prop:parentCompany ?uri . ?x rdf:type onto:Automobile}",lcquad Which company founded by Fusajiro Yamauchi also provides services of Nintendo eShop ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:foundedBy . ?uri prop:services . ?uri rdf:type onto:Company}",lcquad In which countries does the sea lie on whose shore is the city of Cumana?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:cities . ?x onto:country ?uri . ?x rdf:type onto:Sea}",lcquad Tirana is the largest city of which country?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:largestCity . ?uri rdf:type onto:Country}",lcquad From which countries are the people from who are an academic authority of the Western pygmy blue species?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:binomialAuthority ?x . ?x onto:citizenship ?uri . ?x rdf:type onto:Person}",lcquad Where is the headquarters of Sigma TV,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Sigma_TV prop:headquarters ?uri } ",lcquad Which scientist was advised by John Robert Woodyard?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:doctoralAdvisor . ?uri rdf:type onto:Scientist}",lcquad What is the launch site of the Juno I which was also the ground of 2016 Fort Lauderdale Strikers season ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Juno_I onto:launchSite ?uri. res:2016_Fort_Lauderdale_Strikers_season onto:ground ?uri} ",lcquad Who has been married to both Penny Lancaster and Alana Stewart?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Penny_Lancaster onto:spouse ?uri. res:Alana_Stewart onto:spouse ?uri . }",lcquad Count the affiliations of International Union of Anarchists?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { prop:affiliation ?uri . }",lcquad What is the alma mater of the scientist whose PhD advisor is Jean-Claude Latombe ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:doctoralAdvisor . ?x prop:almaMater ?uri . ?x rdf:type onto:Scientist}",lcquad "List the people residing in Wilton, Connecticut?","PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:residence } ",lcquad What is the Location of the Peetz Table Wind Energy Center which is also the state of Ben Nighthorse Campbell ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Peetz_Table_Wind_Energy_Center prop:location ?uri. res:Ben_Nighthorse_Campbell prop:state ?uri} ",lcquad Count the water bodies that flow into the North Sea?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { prop:inflow ?uri . }",lcquad Who was the First Driver of 1999 San Marino Grand Prix ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:1999_San_Marino_Grand_Prix prop:firstDriver ?uri } ",lcquad Bantam Spectra is the publisher of which series?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:publisher res:Bantam_Spectra . ?x onto:series ?uri . }",lcquad Where is the sister station of Al Arabiya 99 located?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:sisterStations . ?x prop:location ?uri . ?x rdf:type onto:RadioStation}",lcquad Which common prime minister did Graham Richardson and Bon McMullan serve ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Graham_Richardson onto:primeMinister ?uri. res:Bob_McMullan onto:primeMinister ?uri . }",lcquad How many things are produced by companies located in Tehran?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:location . ?x onto:product ?uri . }",lcquad Which is the common past team of the Charlie Justice (American football player) and Bobby Hoppe ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:pastteams ?uri. prop:pastteams ?uri . }",lcquad Name the officeholder who hasa child named Augustus and has an associate named Marcus Bibulus ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:associate . ?uri prop:children . ?uri rdf:type onto:OfficeHolder}",lcquad Which party won both the general electoin and the andhra pradesh election in 2004?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:affiliation ?uri. onto:affiliation ?uri . }",lcquad Give me someone on the board of trinity house?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:board res:Trinity_House . }",lcquad Whose leaders are Willem-Alexander and Fredis Refunjol?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:leader . ?uri onto:leader . }",lcquad Horses grandsired by Sundridge have won which awards?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:grandsire . ?x onto:honours ?uri . ?x rdf:type onto:Horse}",lcquad "What is the river whose source region is North-Western Province, Zambia and river mouth is Indian Ocean?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:sourceRegion . ?uri onto:riverMouth . ?uri rdf:type onto:River}",lcquad "Who was on the first team in the GPs that were held at Watkins Glen, NY?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:location . ?x prop:firstTeam ?uri . ?x rdf:type onto:GrandPrix}",lcquad Name the movie whose screenplay is by Akiva Goldsman and directed by Joel Schumacher ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:screenplay . ?uri onto:director . ?uri rdf:type onto:Film}",lcquad What ethinicity of Linda Hogan is also the state of origin of Holmes Colbert ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Linda_Hogan onto:ethnicity ?uri. res:Holmes_Colbert onto:stateOfOrigin ?uri} ",lcquad What are the track and field events of Jamiatu Muslim Mindanao?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Jamiatu_Muslim_Mindanao prop:athletics ?uri } ",lcquad How many cities are close to Lake Victoria?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { onto:nearestCity ?uri . }",lcquad Is greasy pop recording the distributor of festival records?,"PREFIX res: PREFIX onto: ASK WHERE { res:Greasy_Pop_Records onto:distributingLabel res:Festival_Records }",lcquad What is the baseball team whose club manager's debut team is Houston Astros?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:debutTeam . ?uri onto:manager ?x . ?uri rdf:type onto:BaseballTeam}",lcquad What cities are near to Nihoa which is also known as Bird Island ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Nihoa prop:nearestCity ?uri } ",lcquad Is Sloth in the Chordate phylum?,"PREFIX res: PREFIX prop: ASK WHERE { res:Sloth prop:phylum res:Chordate }",lcquad Which shareholder of Naval Air facility Adak is also the operator of New Sanno Hotel ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:New_Sanno_Hotel prop:operator ?uri. res:Naval_Air_Facility_Adak prop:owner ?uri} ",lcquad What other awards have been given to Golden Globe winners?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:award res:Golden_Globe_Award . ?x prop:awards ?uri . }",lcquad Which allegiance of the John Kotelawala is also the sovereign state of the Sanath Weerakoon ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:John_Kotelawala prop:allegiance ?uri. res:Sanath_Weerakoon onto:country ?uri} ",lcquad List the television shows whose network's sister names is N-tv.,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:sisterNames . ?uri prop:network ?x . ?uri rdf:type onto:TelevisionShow}",lcquad God Defend New Zealand is the national anthem of which country?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:nationalAnthem res:God_Defend_New_Zealand } ",lcquad Where do the rivers starting from Zambia end?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:sourceCountry . ?x onto:riverMouth ?uri . ?x rdf:type onto:River}",lcquad "Which political party of kumta had affiliation with Indian general election, 2004 (Andhra Pradesh) ","PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:governmentType ?uri. onto:affiliation ?uri} ",lcquad Who was member of boards at Royal Society and Trinity House?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:board res:Royal_Society . ?uri onto:board res:Trinity_House . }",lcquad Where is the king buried whose predecessor was Iyasu II?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:predecessor . ?x prop:placeOfBurial ?uri . ?x rdf:type onto:Monarch}",lcquad In how many different places have people beatified by Pope Pius X died?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:beatifiedBy . ?x prop:deathPlace ?uri . ?uri rdf:type onto:Place}",lcquad What faiths are followed by the relatives of Meadow Soprano?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Meadow_Soprano onto:relative ?x . ?x onto:religion ?uri . }",lcquad "Where is the headquarters of the public transit system which owns Target Field, a Metro Transit Station ?","PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:owningOrganisation ?x . ?x prop:headquarters ?uri . }",lcquad What is the nationality of Aishath Saffa ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Aishath_Saffa prop:nationality ?uri } ",lcquad who was the president under whom winston bryant served as a lieutenant?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:lieutenant res:Winston_Bryant } ",lcquad What are the bands associated with the artists of My Favorite Girl ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:artist ?x . ?x onto:associatedBand ?uri . }",lcquad On what subjects was Broca's Brain written?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:subject ?uri } ",lcquad Which parent organization of GetTV is also the label of next thing ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Next_Thing onto:recordLabel ?uri. res:GetTV onto:parentOrganisation ?uri} ",lcquad Which teams have used the stadium whose architect was Populous ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:architect . ?x onto:tenant ?uri . ?x rdf:type onto:Stadium}",lcquad Name the route end of the North-South Transport Corridor and Mumbai Vadodara Expressway?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:North–South_Transport_Corridor onto:routeEnd ?uri. res:Mumbai_Vadodara_Expressway onto:routeEnd ?uri . }",lcquad Is Albert P Clark buried in Colorado?,"PREFIX res: PREFIX prop: ASK WHERE { res:Albert_P._Clark prop:placeofburial res:Colorado }",lcquad Which hockey team is head coached by Bill Peters?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:headCoach . ?uri rdf:type onto:HockeyTeam}",lcquad Count the number of religions followed by the alumini of Ananda College.,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:almaMater . ?x onto:religion ?uri . }",lcquad Which team did Wilfred McDonalds and Cam Plante play for?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Wilfred_McDonald prop:playedFor ?uri. res:Cam_Plante prop:playedFor ?uri . }",lcquad What are the television shows whose network's stockholder is Warner Bros. Television?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:owner . ?uri onto:network ?x . ?uri rdf:type onto:TelevisionShow}",lcquad Name the Fox TV show judged by Rand Jackson ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:judges . ?uri prop:channel . ?uri rdf:type onto:TelevisionShow}",lcquad What is the total number of software whose programming language is C++ and operating system is Microsoft Windows?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:programmingLanguage . ?uri onto:operatingSystem } ",lcquad Name the city of Phil-Ellena ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:city ?uri } ",lcquad how many companies are located in a spanish speaking region?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:language . ?uri onto:location ?x . ?uri rdf:type onto:Organisation}",lcquad What is the combatant of the Northwest Indian War and also the ethnic group of the Linda Hogan ,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Northwest_Indian_War prop:combatant ?uri. res:Linda_Hogan prop:ethnicity ?uri} ",lcquad Which airlines fly to Gimhae International Airport?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:targetAirport res:Gimhae_International_Airport } ",lcquad GetTV is owned by which organisation?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:GetTV onto:parentOrganisation ?uri } ",lcquad Name the islands that belong to the archipelago whose largest city is Papeete?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:largestCity res:Papeete . ?uri prop:archipelago ?x . }",lcquad In which team did Dave Bing and Ron Reed started their basketball career?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Dave_Bing prop:draftTeam ?uri. res:Ron_Reed prop:draftTeam ?uri . }",lcquad List the settlements area whose province is Metropolitan City of Venice ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:province . ?uri rdf:type onto:Settlement}",lcquad "What was recorded by Live in Detroit, MI and also palce of birth of the Bodhin Kjolhede?","PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:recordedIn ?uri. prop:placeOfBirth ?uri} ",lcquad From how many different institutes have the members of Judge Advocate General's Corps graduated?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:militaryRank . ?x onto:almaMater ?uri . ?uri rdf:type onto:EducationalInstitution}",lcquad Whos a famous relative of anne spielberg?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:relation res:Anne_Spielberg . }",lcquad To which city does Northeast Library belong?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Northeast_Library onto:city ?uri } ",lcquad What are the airline hubs of Cascade Airways?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Union_of_Cambodian_Democrats onto:ideology ?uri } ",lcquad Who has manufactured vehicles designed originally by NASA?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:designCompany . ?x onto:manufacturer ?uri . ?x rdf:type onto:Automobile}",lcquad What is the order of the Henry Clay and profession of the William Luther Hill?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Henry_Clay prop:order ?uri. res:William_Luther_Hill onto:profession ?uri} ",lcquad What show has theme music composer as Ron Grainer and at the same time related to Class (2016 TV series)?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:themeMusicComposer . ?uri onto:related . ?uri rdf:type onto:TelevisionShow}",lcquad What is the life stance of the ethnic groups related to Micronesia ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:related . ?x onto:religion ?uri . ?x rdf:type onto:EthnicGroup}",lcquad Name the river whose mouth mountain is Southend-on-Sea and mouth place is Essex?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:mouthMountain . ?uri onto:mouthPlace . ?uri rdf:type onto:River}",lcquad Which venue of indy PopCon is also the death palce of Louis Le Cocqq ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Indy_PopCon prop:venue ?uri. res:Louis_LeCocq prop:placeOfDeath ?uri} ",lcquad What genre's softwares are released with a GNU GPL license?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:license res:GNU_General_Public_License . ?x prop:genre ?uri . }",lcquad Is Christchurch the largest city of South Island?,"PREFIX res: PREFIX onto: ASK WHERE { res:South_Island onto:largestCity res:Christchurch }",lcquad Who is the leader of Allgemeine SS ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Allgemeine_SS onto:leader ?uri } ",lcquad Giorgos Kaminis is the mayor of what?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:mayor res:Giorgos_Kaminis } ",lcquad Where is the headquarters of Metro Transit (Minnesota) ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:headquarters ?uri } ",lcquad Give me the count of all the names of characters created by Frank Miller,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:creators . ?x prop:characterName ?uri . }",lcquad Which fictional character portrayed in Terminator 2: Judgment Day is painted by Josh Friedman?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:portrayer . ?uri onto:creator . ?uri rdf:type onto:FictionalCharacter}",lcquad Where was the narrator of Spain on the Road Again born?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Spain..._on_the_Road_Again onto:narrator ?x . ?x prop:birthPlace ?uri . }",lcquad Does AMC Gremlin have the Volkswagen engine?,"PREFIX res: PREFIX prop: ASK WHERE { res:AMC_Gremlin prop:engine res:Volkswagen }",lcquad Name the movie with narrator as Trevor Peacock and music composer as Christophe Beck?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:narrator . ?uri prop:music . ?uri rdf:type onto:Film}",lcquad Where did the scientist study whose doctoral thesis was supervised by Leonard Lerman?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:doctoralAdvisor . ?x prop:almaMater ?uri . ?x rdf:type onto:Scientist}",lcquad Where can one find some quick bread in the world?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:type res:Quick_bread . ?x onto:region ?uri . }",lcquad What is the sea whose cities are Gdask and Oulu?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri prop:cities . ?uri prop:cities . ?uri rdf:type onto:Sea}",lcquad What rivers originate from Australian Alps?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:sourcePlace . ?uri rdf:type onto:River}",lcquad Which venues are located at places governed by John Roberts?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:leader . ?uri prop:address ?x . ?uri rdf:type onto:Venue}",lcquad What is the venue of San Diego Comic-Con International ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:venue ?uri } ",lcquad "Which office holder owes its allegiance to a state whose capital town is Jamestown, Virginia?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:capital . ?uri prop:allegiance ?x . ?uri rdf:type onto:OfficeHolder}",lcquad "Which professional fighter, who is also a politician and was elected to House of Representatives of the Philippines?","PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:occupation res:House_of_Representatives_of_the_Philippines } ",lcquad List the comic characters created by Joe Shuster ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:creators . ?uri rdf:type onto:ComicsCharacter}",lcquad "Which kind of conventions are held in Rosemont, Illinois?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:location . ?x prop:genre ?uri . ?x rdf:type onto:Convention}",lcquad What city is located on the mouth of Duwamish River?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Duwamish_River onto:riverMouth ?x . ?x prop:cities ?uri . }",lcquad Which governer of Winston Bryant is the president of Joseph Stiglitz ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Winston_Bryant prop:governor ?uri. res:Joseph_Stiglitz prop:president ?uri} ",lcquad How many people have led agencies in German occupied Europe?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:jurisdiction . ?x onto:leader ?uri . }",lcquad Where did the plays written by Robert Schenkkan take place?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:writer . ?x prop:place ?uri . ?x rdf:type onto:Play}",lcquad Under which president did the predecessor of Simon Ferro work?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:successor res:Simon_Ferro . ?x onto:president ?uri . }",lcquad Name some ww1 veterans?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:battles res:World_War_I . }",lcquad Who appointed both John Drayton and William Clark to their respective offices?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:John_Drayton prop:appointer ?uri. res:William_Clark prop:appointer ?uri . }",lcquad Which operator of New Sanno Hotel is also the governing body of the Oahu Railway and Land Company ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:New_Sanno_Hotel prop:operator ?uri. res:Oahu_Railway_and_Land_Company prop:governingBody ?uri} ",lcquad Which predecessor of Alexander Downer was deputy to Neil Brown ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:predecessor . ?uri prop:deputy . }",lcquad Which are the predecessor of Chevrolet Caprice?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Chevrolet_Caprice onto:predecessor ?uri } ",lcquad Who wrote the album coming right before Dead Man's Chest's OST?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:nextAlbum . ?x prop:writer ?uri . ?x rdf:type onto:Album}",lcquad What is the series of the book which is a subsequent work of Blade Runner 2: The Edge of Human ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:subsequentWork ?x . ?x onto:series ?uri . ?x rdf:type onto:Book}",lcquad For how many cities's teams did David Bowens play?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { onto:formerTeam ?x . ?x onto:locationCity ?uri . ?x rdf:type onto:SportsTeam}",lcquad Is Anne Hidalgo the mayor of Paris?,"PREFIX res: PREFIX onto: ASK WHERE { res:Paris onto:mayor res:Anne_Hidalgo }",lcquad In which countries have models hanged themselves?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:deathCause . ?x prop:citizenship ?uri . ?x rdf:type onto:Model}",lcquad Is the Vadodara railway junction onwed by Indian Railway Ministry?,"PREFIX onto: ASK WHERE { onto:owningOrganisation }",lcquad What city gave birth to Mishal Raheja and also houses New India Assurance?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Mishal_Raheja onto:birthPlace ?uri. res:New_India_Assurance prop:location ?uri . }",lcquad Which TV show whose theme is composed by someone signed up with ATO records?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:recordLabel . ?uri prop:themeMusicComposer ?x . ?uri rdf:type onto:TelevisionShow}",lcquad Which models were featured in Playboy Playmates 1954?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:succeeded . ?uri rdf:type onto:PlayboyPlaymate}",lcquad What currencies have been prevalent in the country whose national anthem is La Marseillaise?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:anthem res:La_Marseillaise . ?x onto:currency ?uri . }",lcquad Who is the relative of Jim Farley (businessman) ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:relatives ?uri } ",lcquad Is Latin the official language of Sovereign Military Order of Malta?,"PREFIX res: PREFIX onto: ASK WHERE { res:Sovereign_Military_Order_of_Malta onto:officialLanguage res:Latin }",lcquad "Where do the politicians, Blanche Bruce and John Franklin Miller work?","PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:office ?uri. prop:office ?uri . }",lcquad Name an American football player whose debuted in Chicago Bears and former team is 1998 Baltimore Ravens season?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:debutteam . ?uri onto:formerTeam . ?uri rdf:type onto:AmericanFootballPlayer}",lcquad Name a river with source country as Zambia and source location as Ikelenge District?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:sourceCountry . ?uri prop:sourceLocation . ?uri rdf:type onto:River}",lcquad Does Ford own the Ford Kansas Assembly plant?,"PREFIX res: PREFIX onto: ASK WHERE { res:Ford_Kansas_City_Assembly_Plant onto:owningOrganisation res:Ford_Motor_Company }",lcquad Which fields of the Paul Demiville is also the faith of Koay Teng Hai ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Paul_Demiéville prop:fields ?uri. res:Koay_Teng_Hai onto:religion ?uri} ",lcquad Name the institute of Alton Ochsner ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Alton_Ochsner onto:institution ?uri } ",lcquad What movies have been written by authors of Monty Python ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:writer . ?uri rdf:type onto:Film}",lcquad Who was the cover artist of The Adventure of Tom Sawyer also wrote mark Twain Tonight ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:The_Adventures_of_Tom_Sawyer onto:coverArtist ?uri. res:Mark_Twain_Tonight prop:writer ?uri} ",lcquad Name the scientist whose academic advisor is Karl Ewald Hasse and supervisor is Georg Meissner?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:academicAdvisor . ?uri prop:doctoralAdvisor . ?uri rdf:type onto:Scientist}",lcquad Where do current famous NatGeo photographers live?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:knownFor . ?x onto:residence ?uri . ?x rdf:type onto:Photographer}",lcquad Georg Meissner was doctoral supervisor of which scientist ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:doctoralAdvisor . ?uri rdf:type onto:Scientist}",lcquad Did Stanlee write the Tales of Suspense?,"PREFIX res: PREFIX prop: ASK WHERE { res:Tales_of_Suspense prop:writers res:Stan_Lee }",lcquad Name the common home port of the Trishna (yacht) and INS Viraat (R22)?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:homeport ?uri. onto:homeport ?uri . }",lcquad does the US navy have the structure of command of us department of defence?,"PREFIX res: PREFIX prop: ASK WHERE { res:United_States_Navy prop:commandStructure res:United_States_Department_of_Defense }",lcquad Name books with publisher as Francisco de Robles and writer as Miguel de Cervantes ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:publisher . ?uri prop:author . ?uri rdf:type onto:Book}",lcquad Who owns the schools which have a penguin as its mascot?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:mascot . ?x onto:authority ?uri . ?x rdf:type onto:School}",lcquad River which flows into the eugene mahoney state park pass through which states?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:mouthLocation res:Eugene_T._Mahoney_State_Park . ?x onto:state ?uri . }",lcquad "What nation is Hornito located in, where Jamie Bateman Cayn died too?","PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:deathPlace ?uri. onto:country ?uri . }",lcquad "Which TV show had a judge named Harry Connick, Jr. and was presented by Ryan Seacrest?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:judges . ?uri onto:presenter . ?uri rdf:type onto:TelevisionShow}",lcquad Name the resting place of Fazlur Rahman Khan ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Fazlur_Rahman_Khan onto:restingPlace ?uri } ",lcquad Which arena of WPC Dynamo Moscow is death location of Tigran Petrosian >,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:WPC_Dynamo_Moscow prop:arena ?uri. res:Tigran_Petrosian onto:deathPlace ?uri} ",lcquad what cities are close by LoDaisKa ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:LoDaisKa_Site onto:nearestCity ?uri } ",lcquad Which wars were fought when the commanders involved served under PM Choi Tu Son?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:primeminister . ?uri onto:commander ?x . ?uri rdf:type onto:MilitaryConflict}",lcquad Who is the meaning of Isa ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:meaning ?uri } ",lcquad Who is venerated in Judaism and Islam?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:veneratedIn res:Judaism . ?uri onto:veneratedIn res:Islam . }",lcquad Count the number teams which have former ice hockey players which also included American Hockey League ?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:formerTeam . ?x onto:formerTeam ?uri }",lcquad Name the common editor of Easy Street (film) and Work (film)?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:editing ?uri. onto:editing ?uri . }",lcquad List all the schools of the rugby player whose went to school named Pietermaritzburg ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:school res:Pietermaritzburg . ?x prop:school ?uri . }",lcquad Name the office of Richard Coke ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Richard_Coke prop:office ?uri } ",lcquad Which river does the Brooklyn Bridge cross?,PREFIX onto: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:Brooklyn_Bridge onto:crosses ?uri . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) Give me the websites of companies with more than 500000 employees.,PREFIX foaf: PREFIX onto: PREFIX prop: PREFIX rdf: SELECT DISTINCT ?string WHERE { ?subject rdf:type onto:Company . ?subject prop:numEmployees ?employees . FILTER(DATATYPE(?employees) = xsd:integer && ?employees >= 500000 ) . ?subject foaf:homepage ?string . },julipc-p(huggingface) What is the official website of Tom Cruise?,PREFIX foaf: PREFIX res: SELECT DISTINCT ?string WHERE { res:Tom_Cruise foaf:homepage ?string . },julipc-p(huggingface) Give me all movies with Tom Cruise.,PREFIX onto: PREFIX res: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type onto:Film. ?uri onto:starring res:Tom_Cruise . OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } },julipc-p(huggingface) Who created Wikipedia?,PREFIX onto: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:Wikipedia onto:author ?uri . OPTIONAL { ?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } },julipc-p(huggingface) How many films did Hal Roach produce?,PREFIX onto: PREFIX res: SELECT COUNT(DISTINCT ?uri) WHERE { ?uri onto:producer res:Hal_Roach . },julipc-p(huggingface) In which country does the Nile start?,PREFIX onto: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:Nile onto:sourceCountry ?uri . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) Which states of Germany are governed by the Social Democratic Party?,PREFIX prop: PREFIX res: PREFIX yago: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type yago:StatesOfGermany . { ?uri prop:rulingParty 'SPD'@en . } UNION { ?uri prop:rulingParty res:Social_Democratic_Party_of_Germany . } OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) How tall is Claudia Schiffer?,PREFIX res: PREFIX onto: SELECT DISTINCT ?height WHERE { res:Claudia_Schiffer onto:height ?height . },julipc-p(huggingface) Which television shows were created by Walt Disney?,PREFIX onto: PREFIX res: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type onto:TelevisionShow . ?uri onto:creator res:Walt_Disney . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) What is the highest place of Karakoram?,PREFIX onto: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:Karakoram onto:highestPlace ?uri . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) Give me all cities in New Jersey with more than 100000 inhabitants.,PREFIX onto: PREFIX prop: PREFIX res: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type onto:City . ?uri onto:isPartOf res:New_Jersey . ?uri prop:populationTotal ?inhabitants . FILTER (?inhabitants > 100000) . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) Which actors were born in Germany?,PREFIX onto: PREFIX res: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type onto:Actor . { ?uri onto:birthPlace res:Germany . } UNION { ?uri onto:birthPlace ?place . ?place onto:country res:Germany . } OPTIONAL { ?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } },julipc-p(huggingface) Give me all actors starring in Batman Begins.,PREFIX onto: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:Batman_Begins onto:starring ?uri . OPTIONAL { ?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } },julipc-p(huggingface) Which mountain is the highest after the Annapurna?,PREFIX onto: PREFIX res: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:Annapurna onto:elevation ?elevation . ?uri rdf:type onto:Mountain . ?uri onto:elevation ?otherelevation . FILTER (?otherelevation < ?elevation) . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } } ORDER BY DESC(?otherelevation) LIMIT 1,julipc-p(huggingface) Who designed the Brooklyn Bridge?,PREFIX res: PREFIX prop: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:Brooklyn_Bridge prop:designer ?uri . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) Was Natalie Portman born in the United States?,PREFIX onto: PREFIX res: ASK WHERE { res:Natalie_Portman onto:birthPlace ?city . ?city onto:country res:United_States . },julipc-p(huggingface) Which countries have more than two official languages?,PREFIX onto: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type onto:Country . ?uri onto:officialLanguage ?language . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } } GROUP BY ?uri ?string HAVING (COUNT(?language) > 2),julipc-p(huggingface) Who created Goofy?,PREFIX onto: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:Goofy onto:creator ?uri . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) Give me all soccer clubs in Spain.,"PREFIX onto: PREFIX prop: PREFIX res: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type onto:SoccerClub . { ?uri onto:ground res:Spain . } UNION { ?uri prop:ground ?ground . FILTER (regex(?ground, 'Spain')) } OPTIONAL {?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } }",julipc-p(huggingface) Who wrote the book The pillars of the Earth?,PREFIX onto: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:The_Pillars_of_the_Earth onto:author ?uri . OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } },julipc-p(huggingface) Who is the mayor of New York City?,PREFIX onto: PREFIX res: PREFIX rdfs: SELECT ?uri ?string WHERE { res:New_York_City onto:leaderName ?uri . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) Which organizations were founded in 1950?,"PREFIX onto: PREFIX prop: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type onto:Organisation . { ?uri prop:foundation ?date . } UNION { ?uri onto:formationYear ?date . } FILTER regex(?date,'^1950') . OPTIONAL { ?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } }",julipc-p(huggingface) Which presidents were born in 1945?,"PREFIX onto: PREFIX yago: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { { ?uri rdf:type onto:President . } UNION { ?uri rdf:type yago:Presidents . } ?uri onto:birthDate ?date . FILTER regex(?date, '^1945') . OPTIONAL { ?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } }",julipc-p(huggingface) Who is the daughter of Bill Clinton married to?,PREFIX onto: PREFIX prop: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:Bill_Clinton onto:child ?child . ?child prop:spouse ?string . ?uri rdfs:label ?string . },julipc-p(huggingface) Through which countries does the Yenisei river flow?,PREFIX res: PREFIX prop: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:Yenisei_River prop:country ?uri . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) Which museum exhibits The Scream by Munch?,PREFIX prop: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:The_Scream prop:museum ?uri . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) Give me the capitals of all countries in Africa.,PREFIX onto: PREFIX yago: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?states rdf:type yago:AfricanCountries . ?states onto:capital ?uri . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) Which states border Illinois?,PREFIX res: PREFIX prop: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:Illinois prop:borderingstates ?uri . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') . } },julipc-p(huggingface) Which countries have places with more than two caves?,PREFIX onto: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?cave rdf:type onto:Cave . ?cave onto:location ?uri . ?uri rdf:type onto:Country . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } } GROUP BY ?uri ?string HAVING (COUNT(?cave) > 2),julipc-p(huggingface) Which European countries have a constitutional monarchy?,PREFIX onto: PREFIX res: PREFIX yago: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type yago:EuropeanCountries . ?uri onto:governmentType res:Constitutional_monarchy . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) What is the highest mountain in Australia?,PREFIX onto: PREFIX res: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type onto:Mountain . ?uri onto:locatedInArea res:Australia . ?uri onto:elevation ?elevation . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } } ORDER BY DESC(?elevation) LIMIT 1,julipc-p(huggingface) Which capitals in Europe were host cities of the summer olympic games?,PREFIX yago: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type yago:CapitalsInEurope . ?uri rdf:type yago:HostCitiesOfTheSummerOlympicGames . OPTIONAL { ?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } },julipc-p(huggingface) Who was the wife of U.S. president Lincoln?,PREFIX onto: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:Abraham_Lincoln onto:spouse ?uri. OPTIONAL { ?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } },julipc-p(huggingface) "Which airports are located in California, USA?",PREFIX onto: PREFIX res: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type onto:Airport . ?uri onto:location res:California . OPTIONAL { ?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } },julipc-p(huggingface) Which classis does the Millepede belong to?,PREFIX prop: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:Millipede prop:classis ?string . ?uri rdfs:label ?string . },julipc-p(huggingface) Is Christian Bale starring in Batman Begins?,PREFIX onto: PREFIX res: ASK WHERE { res:Batman_Begins onto:starring res:Christian_Bale . },julipc-p(huggingface) In which programming language is GIMP written?,PREFIX onto: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:GIMP onto:programmingLanguage ?uri . OPTIONAL { ?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } },julipc-p(huggingface) In which country is the Limerick Lake?,PREFIX onto: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:Limerick_Lake onto:country ?uri . OPTIONAL { ?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } },julipc-p(huggingface) Which monarchs of the United Kingdom were married to a German?,PREFIX yago: PREFIX onto: PREFIX res: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type yago:MonarchsOfTheUnitedKingdom . ?uri onto:spouse ?spouse . ?spouse onto:birthPlace res:Germany. OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) Give me all female German chancellors.,PREFIX yago: PREFIX prop: PREFIX res: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type yago:FemaleHeadsOfGovernment. ?uri prop:office res:Chancellor_of_Germany . OPTIONAL { ?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } },julipc-p(huggingface) Give me all video games published by Mean Hamster Software.,PREFIX onto: PREFIX prop: PREFIX res: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type onto:VideoGame . { ?uri prop:publisher 'Mean Hamster Software'@en . } UNION { ?uri onto:publisher res:Mean_Hamster_Software . } OPTIONAL { ?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } },julipc-p(huggingface) Who produced films starring Natalie Portman?,PREFIX onto: PREFIX res: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?film rdf:type onto:Film . ?film onto:starring res:Natalie_Portman . ?film onto:producer ?uri . OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } },julipc-p(huggingface) In which films did Julia Roberts as well as Richard Gere play?,PREFIX onto: PREFIX res: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type onto:Film . ?uri onto:starring res:Julia_Roberts . ?uri onto:starring res:Richard_Gere. OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } },julipc-p(huggingface) How many films did Leonardo DiCaprio star in?,PREFIX onto: PREFIX res: PREFIX rdf: PREFIX rdfs: SELECT COUNT(DISTINCT ?uri) WHERE { ?uri rdf:type onto:Film . ?uri onto:starring res:Leonardo_DiCaprio . },julipc-p(huggingface) When did Finland join the EU?,PREFIX res: PREFIX prop: SELECT DISTINCT ?date WHERE { res:Finland prop:accessioneudate ?date . },julipc-p(huggingface) Give me all school types.,PREFIX yago: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type yago:SchoolTypes . OPTIONAL { ?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } },julipc-p(huggingface) Give me the birthdays of all actors of the television show Charmed.,PREFIX onto: PREFIX res: SELECT DISTINCT ?date WHERE { res:Charmed onto:starring ?actor . ?actor onto:birthDate ?date . },julipc-p(huggingface) Where did Abraham Lincoln die?,PREFIX onto: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:Abraham_Lincoln onto:deathPlace ?uri . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) How many monarchical countries are there in Europe?,"PREFIX onto: PREFIX yago: PREFIX rdf: SELECT COUNT(DISTINCT ?uri) WHERE { ?uri rdf:type yago:EuropeanCountries . ?uri onto:governmentType ?govern . FILTER regex(?govern,'monarchy') . }",julipc-p(huggingface) Give me all presidents of the United States.,"PREFIX yago: PREFIX onto: PREFIX prop: PREFIX res: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type onto:Person . { ?uri rdf:type yago:PresidentsOfTheUnitedStates. } UNION { ?uri rdf:type onto:President. ?uri prop:title res:President_of_the_United_States. } ?uri rdfs:label ?string. FILTER (lang(?string) = 'en' && !regex(?string,'Presidency','i') && !regex(?string,'and the')) . }",julipc-p(huggingface) Who produced the most films?,PREFIX onto: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?film rdf:type onto:Film . ?film onto:producer ?uri . OPTIONAL { ?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } } ORDER BY DESC(COUNT(?film)) LIMIT 1,julipc-p(huggingface) Which languages are spoken in Estonia?,PREFIX onto: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { { res:Estonia onto:language ?uri . } UNION { ?uri onto:spokenIn res:Estonia . } OPTIONAL { ?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } },julipc-p(huggingface) Is there a video game called Battle Chess?,PREFIX onto: PREFIX rdf: PREFIX rdfs: ASK WHERE { ?uri rdf:type onto:VideoGame . ?uri rdfs:label 'Battle Chess'@en . },julipc-p(huggingface) Which mountains are higher than the Nanga Parbat?,PREFIX onto: PREFIX prop: PREFIX res: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:Nanga_Parbat prop:elevationM ?elevation . ?uri rdf:type onto:Mountain . ?uri prop:elevationM ?otherelevation . FILTER (?otherelevation > ?elevation) . OPTIONAL { ?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } },julipc-p(huggingface) Which telecommunications organizations are located in Belgium?,"PREFIX onto: PREFIX prop: PREFIX res: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type onto:Organisation . { ?uri prop:industry res:Telecommunications . } UNION { ?uri prop:industry ?industry . FILTER (regex(?industry, 'Telecommunication')) . } { ?uri onto:location res:Belgium. } UNION { ?uri prop:location res:Belgium. } UNION { ?uri prop:locationCountry 'Belgium'@en . } OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } }",julipc-p(huggingface) Which companies work in the aerospace industry as well as on nuclear reactor technology?,PREFIX onto: PREFIX prop: PREFIX res: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type onto:Company . ?uri prop:industry res:Aerospace . ?uri prop:industry res:Nuclear_reactor_technology . OPTIONAL { ?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } },julipc-p(huggingface) Which state of the USA has the highest population density?,PREFIX yago: PREFIX prop: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type yago:StatesOfTheUnitedStates . ?uri prop:densityrank ?rank . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } } ORDER BY ASC(?rank) LIMIT 1,julipc-p(huggingface) Is the wife of president Obama called Michelle?,"PREFIX onto: PREFIX res: PREFIX rdfs: ASK WHERE { res:Barack_Obama onto:spouse ?spouse . ?spouse rdfs:label ?name . FILTER(regex(?name,'Michelle')) }",julipc-p(huggingface) What is the highest mountain?,PREFIX onto: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type onto:Mountain . ?uri onto:elevation ?elevation . OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } } ORDER BY DESC(?elevation) LIMIT 1,julipc-p(huggingface) Give me all Canadian Grunge record labels.,PREFIX onto: PREFIX res: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type onto:RecordLabel . ?uri onto:genre res:Grunge . ?uri onto:country res:Canada . OPTIONAL { ?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } },julipc-p(huggingface) What is the currency of the Czech Republic?,PREFIX onto: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:Czech_Republic onto:currency ?uri . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) Give me all books written by Danielle Steel.,PREFIX onto: PREFIX res: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type onto:Book . ?uri onto:author res:Danielle_Steel . OPTIONAL { ?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } },julipc-p(huggingface) In which films directed by Garry Marshall was Julia Roberts starring?,PREFIX onto: PREFIX res: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type onto:Film . ?uri onto:starring res:Julia_Roberts . ?uri onto:director res:Garry_Marshall . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) Who developed the video game World of Warcraft?,PREFIX onto: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:World_of_Warcraft onto:developer ?uri . OPTIONAL { ?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } },julipc-p(huggingface) Who owns Aldi?,PREFIX res: PREFIX onto: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:Aldi onto:keyPerson ?uri . OPTIONAL { ?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } },julipc-p(huggingface) How many employees does IBM have?,PREFIX onto: PREFIX res: SELECT ?number WHERE { res:IBM onto:numberOfEmployees ?number . },julipc-p(huggingface) What is the area code of Berlin?,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?string WHERE { res:Berlin onto:areaCode ?string . },julipc-p(huggingface) When was the Battle of Gettysburg?,PREFIX onto: PREFIX res: SELECT DISTINCT ?date WHERE { res:Battle_of_Gettysburg onto:date ?date . },julipc-p(huggingface) What are the official languages of the Philippines?,PREFIX onto: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:Philippines onto:officialLanguage ?uri . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) Is Frank Herbert still alive?,PREFIX onto: PREFIX res: ASK WHERE { res:Frank_Herbert onto:deathDate ?date . FILTER (!BOUND(?date)) },julipc-p(huggingface) Give me the homepage of Forbes.,PREFIX res: PREFIX foaf: SELECT DISTINCT ?string WHERE { res:Forbes foaf:homepage ?string . },julipc-p(huggingface) Is proinsulin a protein?,PREFIX onto: PREFIX res: PREFIX rdf: ASK WHERE { res:Proinsulin rdf:type onto:Protein . },julipc-p(huggingface) Which awards did WikiLeaks win?,PREFIX res: PREFIX prop: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:WikiLeaks prop:awards ?uri . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) List all episodes of the first season of the HBO television series The Sopranos!,PREFIX onto: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri onto:series res:The_Sopranos . ?uri onto:seasonNumber 1 . OPTIONAL { ?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } },julipc-p(huggingface) Which country has the most official languages?,PREFIX onto: PREFIX prop: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type onto:Country . ?uri prop:officialLanguages ?language . OPTIONAL { ?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } } ORDER BY DESC(COUNT(?language)) LIMIT 1,julipc-p(huggingface) Which U.S. states possess gold minerals?,"PREFIX yago: PREFIX prop: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type yago:StatesOfTheUnitedStates . ?uri prop:mineral ?mineral . FILTER (regex(?mineral,'Gold')) . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } }",julipc-p(huggingface) Is Egypts largest city also its capital?,PREFIX res: PREFIX onto: ASK WHERE { res:Egypt onto:largestCity ?large . res:Egypt onto:capital ?capital . FILTER (?large = ?capital) },julipc-p(huggingface) Which caves have more than 3 entrances?,PREFIX onto: PREFIX res: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type onto:Cave . ?uri onto:numberOfEntrances ?entrance . FILTER (?entrance > 3) . OPTIONAL { ?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } },julipc-p(huggingface) Give me all films produced by Hal Roach.,PREFIX onto: PREFIX res: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type onto:Film . ?uri onto:producer res:Hal_Roach . OPTIONAL { ?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } },julipc-p(huggingface) Which bridges are of the same type as the Manhattan Bridge?,"PREFIX onto: PREFIX prop: PREFIX res: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type onto:Bridge . ?uri prop:design ?design . res:Manhattan_Bridge prop:design ?mdesign . FILTER (regex(?design, ?mdesign)). FILTER (?uri != res:Manhattan_Bridge) . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } }",julipc-p(huggingface) Was U.S. president Jackson involved in a war?,PREFIX onto: PREFIX res: ASK WHERE { res:Andrew_Jackson onto:battle ?battle . },julipc-p(huggingface) Which software has been developed by organizations founded in California?,PREFIX onto: PREFIX res: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?company rdf:type onto:Organisation . ?company onto:foundationPlace res:California . ?uri onto:developer ?company . ?uri rdf:type onto:Software . OPTIONAL { ?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } },julipc-p(huggingface) Who has been the 5th president of the United States of America?,PREFIX onto: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri onto:orderInOffice '5th President of the United States'@en . OPTIONAL { ?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } },julipc-p(huggingface) Which music albums contain the song Last Christmas?,PREFIX foaf: PREFIX onto: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?single onto:album ?uri . ?single foaf:name 'Last Christmas'@en . OPTIONAL { ?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } },julipc-p(huggingface) Give me all female Russian astronauts.,PREFIX yago: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type yago:RussianCosmonauts . ?uri rdf:type yago:FemaleAstronauts . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) Give me all companies in the advertising industry.,"PREFIX prop: PREFIX onto: PREFIX res: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type onto:Company . ?uri prop:industry ?industry . FILTER regex(?industry,'advertising','i') . OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } }",julipc-p(huggingface) Which countries in the European Union adopted the Euro?,PREFIX prop: PREFIX res: PREFIX yago: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type yago:EuropeanUnionMemberStates . { ?uri prop:currency res:Euro . } UNION { ?uri prop:currencyCode 'EUR'@en . } UNION { ?uri prop:currencyCode 'Euro'@en . } OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) When was Capcom founded?,PREFIX prop: PREFIX res: SELECT DISTINCT ?date WHERE { res:Capcom prop:foundation ?date . },julipc-p(huggingface) Give me all soccer clubs in the Premier League.,PREFIX onto: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri onto:league res:Premier_League . OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } },julipc-p(huggingface) Who is the owner of Universal Studios?,PREFIX onto: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:Universal_Studios onto:owner ?uri . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) What did Bruce Carver die from?,PREFIX res: PREFIX onto: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:Bruce_Carver onto:deathCause ?uri . OPTIONAL {?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) Which books by Kerouac were published by Viking Press?,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Book . ?uri onto:publisher res:Viking_Press . ?uri onto:author res:Jack_Kerouac . },julipc-p(huggingface) Which U.S. states are in the same timezone as Utah?,PREFIX res: PREFIX prop: PREFIX yago: PREFIX rdf: SELECT DISTINCT ?uri WHERE { res:Utah prop:timezone ?x . ?uri rdf:type yago:StatesOfTheUnitedStates . ?uri prop:timezone ?x . FILTER (?uri != res:Utah) },julipc-p(huggingface) Which daughters of British earls died in the same place they were born in?,PREFIX onto: PREFIX yago: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:DaughtersOfBritishEarls . ?uri onto:birthPlace ?x . ?uri onto:deathPlace ?y . FILTER (?x != ?y) . },julipc-p(huggingface) Which instruments did John Lennon play?,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:John_Lennon onto:instrument ?uri . },julipc-p(huggingface) When was the Statue of Liberty built?,PREFIX prop: PREFIX res: SELECT DISTINCT ?date WHERE { res:Statue_of_Liberty prop:beginningDate ?date . },julipc-p(huggingface) Give me all actors starring in movies directed by and starring William Shatner.,PREFIX onto: PREFIX prop: PREFIX res: SELECT DISTINCT ?uri WHERE { ?x onto:director res:William_Shatner . ?x onto:starring res:William_Shatner . { ?x onto:starring ?uri . } UNION { ?x prop:starring ?uri . } },julipc-p(huggingface) Give me all people that were born in Vienna and died in Berlin.,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri onto:birthPlace res:Vienna . ?uri onto:deathPlace res:Berlin . },julipc-p(huggingface) How tall is Michael Jordan?,PREFIX onto: PREFIX res: SELECT DISTINCT ?num WHERE { res:Michael_Jordan onto:height ?num . },julipc-p(huggingface) Give me all Argentine films.,PREFIX onto: PREFIX prop: PREFIX res: PREFIX yago: PREFIX rdf: SELECT DISTINCT ?uri WHERE { { ?uri rdf:type yago:ArgentineFilms . } UNION { ?uri rdf:type onto:Film . { ?uri onto:country res:Argentina . } UNION { ?uri prop:country 'Argentina'@en . } } },julipc-p(huggingface) What is the total amount of men and women serving in the FDNY?,PREFIX prop: PREFIX res: SELECT DISTINCT ?num WHERE { res:New_York_City_Fire_Department prop:strength ?num . },julipc-p(huggingface) Give me all breeds of the German Shepherd dog.,PREFIX prop: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri prop:breed res:German_Shepherd . },julipc-p(huggingface) Who composed the music for Harold and Maude?,PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Harold_and_Maude onto:musicComposer ?uri . },julipc-p(huggingface) In which city was the former Dutch queen Juliana buried?,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { res:Juliana_of_the_Netherlands onto:restingPlace ?uri. ?uri rdf:type onto:Settlement . },julipc-p(huggingface) What are the nicknames of San Francisco?,PREFIX prop: PREFIX res: SELECT DISTINCT ?string WHERE { res:San_Francisco prop:nickname ?string . },julipc-p(huggingface) Give me the Apollo 14 astronauts.,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri onto:mission res:Apollo_14 . },julipc-p(huggingface) Where is the residence of the prime minister of Spain?,PREFIX prop: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Prime_Minister_of_Spain prop:residence ?uri . },julipc-p(huggingface) Which other weapons did the designer of the Uzi develop?,PREFIX onto: PREFIX prop: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Weapon . ?uri prop:designer ?x . res:Uzi prop:designer ?x . FILTER (?uri != res:Uzi) },julipc-p(huggingface) To which countries does the Himalayan mountain system extend?,PREFIX prop: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Himalayas prop:country ?uri . },julipc-p(huggingface) What is the founding year of the brewery that produces Pilsner Urquell?,PREFIX prop: PREFIX res: SELECT DISTINCT ?num WHERE { res:Pilsner_Urquell prop:brewery ?uri . ?uri prop:foundation ?num . },julipc-p(huggingface) Which country does the creator of Miffy come from?,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Miffy onto:creator ?x . ?x onto:nationality ?uri . },julipc-p(huggingface) Was Margaret Thatcher a chemist?,PREFIX res: PREFIX onto: ASK WHERE { res:Margaret_Thatcher onto:profession res:Chemist . },julipc-p(huggingface) Which German cities have more than 250000 inhabitants?,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { { ?uri rdf:type onto:City . } UNION { ?uri rdf:type onto:Town . } ?uri onto:country res:Germany . ?uri onto:populationTotal ?population . FILTER ( ?population > 250000 ) },julipc-p(huggingface) For which label did Elvis record his first album?,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?x rdf:type onto:Album . ?x onto:artist res:Elvis_Presley . ?x onto:releaseDate ?y . ?x onto:recordLabel ?uri . } ORDER BY ASC(?y) LIMIT 1,julipc-p(huggingface) What is the capital of Canada?,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Canada onto:capital ?uri . },julipc-p(huggingface) In which U.S. state is Fort Knox located?,PREFIX onto: PREFIX prop: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Fort_Knox prop:location ?uri . ?uri onto:country res:United_States . },julipc-p(huggingface) Give me a list of all trumpet players that were bandleaders.,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri onto:occupation res:Bandleader . ?uri onto:instrument res:Trumpet . },julipc-p(huggingface) Do Prince Harry and Prince William have the same mother?,"PREFIX prop: ASK WHERE { prop:mother ?x . prop:mother ?y . FILTER (?x = ?y) }",julipc-p(huggingface) In which military conflicts did Lawrence of Arabia participate?,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:T._E._Lawrence onto:battle ?uri . },julipc-p(huggingface) Who developed Minecraft?,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Minecraft onto:developer ?uri . },julipc-p(huggingface) How many space missions have there been?,PREFIX onto: PREFIX rdf: SELECT COUNT(DISTINCT ?uri) WHERE { ?uri rdf:type onto:SpaceMission . },julipc-p(huggingface) Give me all cars that are produced in Germany.,PREFIX onto: PREFIX prop: PREFIX res: PREFIX yago: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Automobile . { ?uri prop:production res:Germany . } UNION { ?uri prop:assembly res:Germany . } UNION { ?uri prop:manufacturer ?x . { ?x onto:locationCountry res:Germany . } UNION { ?x rdf:type yago:AutomotiveCompaniesOfGermany . } } },julipc-p(huggingface) Give me a list of all American inventions.,PREFIX yago: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:AmericanInventions . },julipc-p(huggingface) How many children did Benjamin Franklin have?,PREFIX res: PREFIX onto: SELECT COUNT(DISTINCT ?uri) WHERE { res:Benjamin_Franklin onto:child ?uri . },julipc-p(huggingface) Who was the successor of John F. Kennedy?,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:John_F._Kennedy onto:successor ?uri . },julipc-p(huggingface) Is Michelle Obama the wife of Barack Obama?,PREFIX onto: PREFIX res: ASK WHERE { res:Barack_Obama onto:spouse res:Michelle_Obama . },julipc-p(huggingface) List the children of Margaret Thatcher.,PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Margaret_Thatcher onto:child ?uri . },julipc-p(huggingface) Who is the youngest player in the Premier League?,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri onto:team ?x . ?x onto:league res:Premier_League . ?uri onto:birthDate ?y . } ORDER BY DESC(?y) OFFSET 0 LIMIT 1,julipc-p(huggingface) In 2013 give me all world heritage sites designated within the past five years.,PREFIX onto: PREFIX prop: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:WorldHeritageSite . ?uri prop:year ?x . FILTER(DATATYPE(?x) = xsd:integer && ?x >= 2008) },julipc-p(huggingface) Was Dutch Schultz a jew?,PREFIX prop: PREFIX res: ASK WHERE { res:Dutch_Schultz prop:ethnicity 'Jewish'@en . },julipc-p(huggingface) What is the second highest mountain on Earth?,PREFIX onto: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Mountain . ?uri onto:elevation ?elevation . } ORDER BY DESC(?elevation) OFFSET 1 LIMIT 1,julipc-p(huggingface) Give me all books by William Goldman with more than 300 pages.,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Book . ?uri onto:author res:William_Goldman . ?uri onto:numberOfPages ?x . FILTER (?x > 300) },julipc-p(huggingface) How often did Nicole Kidman marry?,PREFIX onto: PREFIX res: SELECT COUNT(DISTINCT ?x) WHERE { res:Nicole_Kidman onto:spouse ?x . },julipc-p(huggingface) What is the largest city in Australia?,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Australia onto:largestCity ?uri . },julipc-p(huggingface) Who painted The Storm on the Sea of Galilee?,PREFIX prop: PREFIX res: SELECT DISTINCT ?uri WHERE { res:The_Storm_on_the_Sea_of_Galilee prop:artist ?uri . },julipc-p(huggingface) Give me all launch pads operated by NASA.,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:LaunchPad . ?uri onto:operator res:NASA . },julipc-p(huggingface) Who wrote the lyrics for the Polish national anthem?,PREFIX onto: PREFIX prop: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Poland onto:anthem ?x . ?x prop:author ?uri . },julipc-p(huggingface) Who created the comic Captain America?,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Captain_America onto:creator ?uri . },julipc-p(huggingface) Who was the father of Queen Elizabeth II?,PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Elizabeth_II prop:father ?uri . },julipc-p(huggingface) Which U.S. state has the abbreviation MN?,PREFIX prop: PREFIX yago: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:StatesOfTheUnitedStates . ?uri prop:postalabbreviation 'MN'@en . },julipc-p(huggingface) Which movies did Kurosawa direct after Rashomon?,PREFIX onto: PREFIX prop: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Film . ?uri onto:director res:Akira_Kurosawa . { ?uri onto:releaseDate ?x . } UNION { ?uri prop:released ?x . } onto:releaseDate ?y . FILTEr (?y > ?x) },julipc-p(huggingface) Which professional surfers were born on the Philippines?,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri onto:occupation res:Surfing . ?uri onto:birthPlace res:Philippines . },julipc-p(huggingface) Give me all current Methodist national leaders.,PREFIX prop: PREFIX res: PREFIX yago: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:CurrentNationalLeaders . ?uri prop:religion res:Methodism . },julipc-p(huggingface) Which films starring Clint Eastwood did he direct himself?,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri onto:director res:Clint_Eastwood . ?uri onto:starring res:Clint_Eastwood . },julipc-p(huggingface) Who are the parents of the wife of Juan Carlos I?,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Juan_Carlos_I_of_Spain onto:spouse ?x . ?x onto:parent ?uri . },julipc-p(huggingface) What is the birth name of Angela Merkel?,PREFIX prop: PREFIX res: SELECT DISTINCT ?string WHERE { res:Angela_Merkel prop:birthName ?string . },julipc-p(huggingface) Who was called Scarface?,PREFIX prop: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri prop:nickname res:Scarface . },julipc-p(huggingface) What is the longest river?,PREFIX onto: PREFIX prop: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:River . ?uri prop:length ?x . } ORDER BY DESC(?x) OFFSET 0 LIMIT 1,julipc-p(huggingface) Did Socrates influence Aristotle?,PREFIX onto: PREFIX res: ASK WHERE { res:Aristotle onto:influencedBy res:Socrates . },julipc-p(huggingface) In which UK city are the headquarters of the MI6?,PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Secret_Intelligence_Service onto:headquarter ?uri . ?uri onto:country res:United_Kingdom . },julipc-p(huggingface) What is the time zone of Salt Lake City?,PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Salt_Lake_City prop:timezone ?uri . },julipc-p(huggingface) List all games by GMT.,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri onto:publisher res:GMT_Games . },julipc-p(huggingface) Does the new Battlestar Galactica series have more episodes than the old one?,PREFIX onto: PREFIX res: ASK WHERE { onto:numberOfEpisodes ?x . onto:numberOfEpisodes ?y . FILTER (?y > ?x) },julipc-p(huggingface) When was Alberta admitted as province?,PREFIX prop: PREFIX res: SELECT DISTINCT ?date WHERE { res:Alberta prop:admittancedate ?date . },julipc-p(huggingface) Which countries are connected by the Rhine?,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Rhine onto:country ?uri . },julipc-p(huggingface) Give me all Frisian islands that belong to the Netherlands.,PREFIX onto: PREFIX res: PREFIX yago: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:FrisianIslands . ?uri onto:country res:Netherlands . },julipc-p(huggingface) Which ships were called after Benjamin Franklin?,PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?uri prop:shipNamesake res:Benjamin_Franklin . },julipc-p(huggingface) Who is the husband of Amanda Palmer?,PREFIX prop: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Amanda_Palmer prop:spouse ?uri . },julipc-p(huggingface) How many employees does Google have?,PREFIX res: PREFIX onto: SELECT DISTINCT ?num WHERE { res:Google onto:numberOfEmployees ?num . },julipc-p(huggingface) When did Michael Jackson die?,PREFIX onto: PREFIX res: SELECT DISTINCT ?date WHERE { res:Michael_Jackson onto:deathDate ?date . },julipc-p(huggingface) How many inhabitants does Maribor have?,PREFIX onto: PREFIX res: SELECT DISTINCT ?num WHERE { res:Maribor onto:populationTotal ?num . },julipc-p(huggingface) Give me a list of all lakes in Denmark.,PREFIX onto: PREFIX res: PREFIX yago: PREFIX rdf: SELECT DISTINCT ?uri WHERE { { ?uri rdf:type onto:Lake . ?uri onto:country res:Denmark . } UNION { ?uri rdf:type yago:LakesOfDenmark . } },julipc-p(huggingface) Which Greek goddesses dwelt on Mount Olympus?,PREFIX prop: PREFIX res: PREFIX yago: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:GreekGoddesses . ?uri prop:abode res:Mount_Olympus . },julipc-p(huggingface) How high is the Mount Everest?,PREFIX onto: PREFIX res: SELECT DISTINCT ?num WHERE { res:Mount_Everest onto:elevation ?num. },julipc-p(huggingface) Sean Parnell is the governor of which U.S. state?,PREFIX yago: PREFIX prop: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:StatesOfTheUnitedStates . ?uri prop:governor res:Sean_Parnell . },julipc-p(huggingface) Did Tesla win a nobel prize in physics?,PREFIX onto: PREFIX res: ASK WHERE { res:Nikola_Tesla onto:award res:Nobel_Prize_in_Physics . },julipc-p(huggingface) Who is the governor of Wyoming?,PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Wyoming prop:governor ?uri . },julipc-p(huggingface) When were the Hells Angels founded?,PREFIX prop: PREFIX res: SELECT DISTINCT ?date WHERE { res:Hells_Angels prop:founded ?date . },julipc-p(huggingface) Who is the mayor of Berlin?,PREFIX onto: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri WHERE { res:Berlin onto:leader ?uri . },julipc-p(huggingface) How many people live in the capital of Australia?,PREFIX onto: PREFIX res: SELECT DISTINCT ?num WHERE { res:Australia onto:capital ?x . ?x onto:populationTotal ?num . },julipc-p(huggingface) Who founded Intel?,PREFIX onto: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri WHERE { res:Intel onto:foundedBy ?uri . },julipc-p(huggingface) Give me all B-sides of the Ramones.,PREFIX onto: PREFIX prop: PREFIX res: SELECT DISTINCT ?string WHERE { ?x onto:musicalArtist res:Ramones . ?x prop:bSide ?string . },julipc-p(huggingface) Which cities does the Weser flow through?,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Weser onto:city ?uri . },julipc-p(huggingface) Give me all movies directed by Francis Ford Coppola.,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Film . ?uri onto:director res:Francis_Ford_Coppola . },julipc-p(huggingface) What is the ruling party in Lisbon?,PREFIX prop: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Lisbon prop:leaderParty ?uri . },julipc-p(huggingface) Who produces Orangina?,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri onto:product res:Orangina . },julipc-p(huggingface) Give me all companies in Munich.,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Company . { ?uri onto:location res:Munich . } UNION { ?uri onto:headquarter res:Munich . } UNION { ?uri onto:locationCity res:Munich . } },julipc-p(huggingface) Was the Cuban Missile Crisis earlier than the Bay of Pigs Invasion?,PREFIX onto: PREFIX res: ASK WHERE { res:Cuban_Missile_Crisis onto:date ?x . res:Bay_of_Pigs_Invasion onto:date ?y . FILTER (?x < ?y) },julipc-p(huggingface) Who is the Formula 1 race driver with the most races?,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:FormulaOneRacer . ?uri onto:races ?x . } ORDER BY DESC(?x) OFFSET 0 LIMIT 1,julipc-p(huggingface) Which U.S. state has been admitted latest?,PREFIX prop: PREFIX yago: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:StatesOfTheUnitedStates . ?uri prop:admittancedate ?x . } ORDER BY DESC(?x) OFFSET 0 LIMIT 1,julipc-p(huggingface) How many official languages are spoken on the Seychelles?,PREFIX onto: PREFIX res: SELECT COUNT(DISTINCT ?x) WHERE { res:Seychelles onto:officialLanguage ?x . },julipc-p(huggingface) Show me all songs from Bruce Springsteen released between 1980 and 1990.,PREFIX onto: PREFIX res: PREFIX yago: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Song . ?uri onto:artist res:Bruce_Springsteen . ?uri onto:releaseDate ?date . FILTER (?date >= '1980-01-01'^^xsd:date && ?date <= '1990-12-31'^^xsd:date) },julipc-p(huggingface) Give me all professional skateboarders from Sweden.,PREFIX onto: PREFIX prop: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri onto:occupation res:Skateboarding . { ?uri onto:birthPlace res:Sweden . } UNION { ?uri onto:birthPlace ?place . ?place onto:country res:Sweden . } },julipc-p(huggingface) Give me all members of Prodigy.,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:The_Prodigy onto:bandMember ?uri . },julipc-p(huggingface) How many students does the Free University in Amsterdam have?,PREFIX onto: PREFIX res: SELECT DISTINCT ?num WHERE { res:Vrije_Universiteit onto:numberOfStudents ?num . },julipc-p(huggingface) Give me all Australian nonprofit organizations.,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri onto:type res:Nonprofit_organization . { ?uri onto:locationCountry res:Australia . } UNION { ?uri onto:location ?x . ?x onto:country res:Australia . } },julipc-p(huggingface) How often did Jane Fonda marry?,PREFIX onto: PREFIX res: SELECT COUNT(DISTINCT ?uri) WHERE { res:Jane_Fonda onto:spouse ?uri . },julipc-p(huggingface) Which U.S. state has the highest population density?,PREFIX yago: PREFIX prop: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:StatesOfTheUnitedStates . ?uri prop:densityrank ?rank . } ORDER BY ASC(?rank) OFFSET 0 LIMIT 1,julipc-p(huggingface) Give me all federal chancellors of Germany.,PREFIX prop: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri prop:office res:Chancellor_of_Germany . },julipc-p(huggingface) In which U.S. state is Mount McKinley located?,PREFIX yago: PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:StatesOfTheUnitedStates . res:Mount_McKinley onto:locatedInArea ?uri . },julipc-p(huggingface) What is the official language of Suriname?,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Suriname onto:officialLanguage ?uri . },julipc-p(huggingface) Who wrote the book The Pillars of the Earth?,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:The_Pillars_of_the_Earth onto:author ?uri . },julipc-p(huggingface) Which companies work in the aerospace industry as well as in medicine?,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Company . ?uri onto:industry res:Aerospace . ?uri onto:industry res:Medicine . },julipc-p(huggingface) Are tree frogs a type of amphibian?,PREFIX onto: PREFIX res: ASK WHERE { res:Hylidae onto:class res:Amphibian . },julipc-p(huggingface) When did Latvia join the EU?,PREFIX res: PREFIX prop: SELECT DISTINCT ?date WHERE { res:Latvia prop:accessioneudate ?date . },julipc-p(huggingface) Which countries have more than ten caves?,PREFIX onto: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Country . ?cave rdf:type onto:Cave . { ?cave onto:location ?uri . } UNION { ?cave onto:location ?loc . ?loc onto:country ?uri . } } GROUP BY ?uri HAVING(COUNT(?cave) > 10),julipc-p(huggingface) Which countries adopted the Euro?,PREFIX prop: PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Country . { ?uri onto:currency res:Euro . } UNION { ?uri prop:currencyCode 'EUR'@en . } },julipc-p(huggingface) Give me all female given names.,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:GivenName . ?uri onto:gender res:Female . },julipc-p(huggingface) Was Marc Chagall a jew?,PREFIX prop: PREFIX res: ASK WHERE { res:Marc_Chagall prop:ethnicity 'Jewish'@en . },julipc-p(huggingface) How many Aldi stores are there?,PREFIX res: PREFIX onto: SELECT DISTINCT ?number WHERE { res:Aldi onto:numberOfLocations ?number . },julipc-p(huggingface) Which U.S. states are in the same time zone as Utah?,PREFIX res: PREFIX prop: PREFIX yago: PREFIX rdf: SELECT DISTINCT ?uri WHERE { res:Utah prop:timezone ?x . ?uri rdf:type yago:StatesOfTheUnitedStates . ?uri prop:timezone ?x . FILTER (?uri != res:Utah) },julipc-p(huggingface) Give me all islands that belong to Japan.,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Island . ?uri onto:country res:Japan . },julipc-p(huggingface) Who was the first president of the United States?,PREFIX onto: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Person . ?uri onto:office '1st President of the United States'@en . },julipc-p(huggingface) Which Chess players died in the same place they were born in?,PREFIX onto: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:ChessPlayer . ?uri onto:birthPlace ?x . ?uri onto:deathPlace ?y . FILTER (?x = ?y) . },julipc-p(huggingface) Give me all actors starring in movies directed by William Shatner.,PREFIX onto: PREFIX prop: PREFIX res: SELECT DISTINCT ?uri WHERE { ?x onto:director res:William_Shatner . ?x onto:starring ?uri . },julipc-p(huggingface) Which professional surfers were born in Australia?,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri onto:occupation res:Surfing . ?uri onto:birthPlace res:Australia . },julipc-p(huggingface) Who is the editor of Forbes?,PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Forbes onto:editor ?uri . },julipc-p(huggingface) Give me all actors starring in Last Action Hero.,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Last_Action_Hero onto:starring ?uri . },julipc-p(huggingface) Give me all Danish films.,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Film . ?uri onto:country res:Denmark . },julipc-p(huggingface) In which city did John F. Kennedy die?,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { res:John_F._Kennedy onto:deathPlace ?uri . ?uri rdf:type onto:City . },julipc-p(huggingface) List all episodes of the first season of the HBO television series The Sopranos.,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri onto:series res:The_Sopranos . ?uri onto:seasonNumber 1 . },julipc-p(huggingface) Is Christian Bale starring in Velvet Goldmine?,PREFIX onto: PREFIX res: ASK WHERE { res:Velvet_Goldmine onto:starring res:Christian_Bale . },julipc-p(huggingface) Which organizations were founded in 1930?,"PREFIX onto: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Organisation . { ?uri onto:formationYear ?date . } UNION { ?uri onto:foundingYear ?date. } FILTER regex(?date,'^1930') . }",julipc-p(huggingface) Give me all cosmonauts.,PREFIX rdf: PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Astronaut . { ?uri onto:nationality res:Russia . } UNION { ?uri onto:nationality res:Soviet_Union . } },julipc-p(huggingface) Who is the mayor of Tel Aviv?,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Tel_Aviv onto:leaderName ?uri . },julipc-p(huggingface) Does Breaking Bad have more episodes than Game of Thrones?,PREFIX onto: PREFIX res: ASK WHERE { res:Breaking_Bad onto:numberOfEpisodes ?x . res:Game_of_Thrones onto:numberOfEpisodes ?y . FILTER (?y > ?x) },julipc-p(huggingface) Give me a list of all bandleaders that play trumpet.,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri onto:occupation res:Bandleader . ?uri onto:instrument res:Trumpet . },julipc-p(huggingface) How many languages are spoken in Turkmenistan?,PREFIX onto: PREFIX res: SELECT COUNT(DISTINCT ?x) WHERE { res:Turkmenistan onto:language ?x . },julipc-p(huggingface) Give me all communist countries.,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Country . { ?uri onto:governmentType res:Communism . } UNION { ?uri onto:governmentType res:Communist_state . } },julipc-p(huggingface) Which instruments does Cat Stevens play?,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Cat_Stevens onto:instrument ?uri . },julipc-p(huggingface) Who is the daughter of Ingrid Bergman married to?,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Ingrid_Bergman onto:child ?child . ?child onto:spouse ?uri . },julipc-p(huggingface) Give me all libraries established earlier than 1400.,PREFIX onto: PREFIX prop: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Library . ?uri prop:established ?year . FILTER (?year < 1400) },julipc-p(huggingface) How many countries are there in Europe?,PREFIX yago: PREFIX rdf: SELECT COUNT(DISTINCT ?uri) WHERE { ?uri rdf:type yago:EuropeanCountries . },julipc-p(huggingface) Give me all Apollo 14 astronauts.,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri onto:mission res:Apollo_14 . },julipc-p(huggingface) Give me all world heritage sites designated within the past two years.,PREFIX onto: PREFIX prop: PREFIX rdf: PREFIX xsd: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:WorldHeritageSite . ?uri prop:year ?x . FILTER ( ?x >= '2012'^^xsd:integer) },julipc-p(huggingface) Who was John F. Kennedy's vice president?,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:John_F._Kennedy onto:vicePresident ?uri . },julipc-p(huggingface) Give me all Methodist politicians.,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Politician . ?uri onto:religion res:Methodism . },julipc-p(huggingface) What is the highest place of the Urals?,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Ural_Mountains onto:highestPlace ?uri . },julipc-p(huggingface) Which monarchs were married to a German?,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Monarch . ?uri onto:spouse ?spouse . { ?spouse onto:birthPlace res:Germany. } UNION { ?spouse onto:birthPlace ?p . ?p onto:country res:Germany. } },julipc-p(huggingface) In which country does the Ganges start?,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Ganges onto:sourceCountry ?uri . },julipc-p(huggingface) Do Prince Harry and Prince William have the same parents?,"PREFIX onto: ASK WHERE { onto:parent ?x . onto:parent ?x . }",julipc-p(huggingface) How many missions does the Soyuz programme have?,PREFIX prop: PREFIX res: SELECT COUNT(DISTINCT ?uri) WHERE { ?uri prop:programme res:Soyuz_programme . },julipc-p(huggingface) Give me all Danish movies.,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Film . ?uri onto:country res:Denmark . },julipc-p(huggingface) Is Rita Wilson the wife of Tom Hanks?,PREFIX onto: PREFIX res: ASK WHERE { res:Tom_Hanks onto:spouse res:Rita_Wilson . },julipc-p(huggingface) Who was called Frank The Tank?,PREFIX prop: SELECT DISTINCT ?uri WHERE { ?uri prop:nickname 'Frank The Tank'@en . },julipc-p(huggingface) Which movies did Kurosawa direct?,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Film . ?uri onto:director res:Akira_Kurosawa . },julipc-p(huggingface) آی.بی.آم. چند کارمند دارد؟,PREFIX onto: PREFIX res: SELECT DISTINCT ?number WHERE { res:IBM onto:numberOfEmployees ?number . },julipc-p(huggingface) Which television shows were created by John Cleese?,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:TelevisionShow . ?uri onto:creator res:John_Cleese . },julipc-p(huggingface) Which awards did Douglas Hofstadter win?,PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Douglas_Hofstadter onto:award ?uri . },julipc-p(huggingface) Who is the daughter of Robert Kennedy married to?,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Robert_F._Kennedy onto:child ?child . ?child onto:spouse ?uri . },julipc-p(huggingface) Who is the owner of Rolls-Royce?,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Rolls-Royce_Motors onto:owner ?uri . },julipc-p(huggingface) Was the wife of president Lincoln called Mary?,"PREFIX onto: PREFIX res: PREFIX rdfs: ASK WHERE { res:Abraham_Lincoln onto:spouse ?spouse . ?spouse rdfs:label ?name . FILTER(regex(?name,'Mary')) }",julipc-p(huggingface) Who was the 16th president of the United States?,PREFIX onto: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri onto:office 'President of the United States' . ?uri onto:orderInOffice '16th' . },julipc-p(huggingface) How many inhabitants does the largest city in Canada have?,PREFIX onto: PREFIX res: SELECT DISTINCT ?num WHERE { res:Canada onto:largestCity ?city . ?city onto:populationTotal ?num . },julipc-p(huggingface) Who was the first to climb Mount Everest?,PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Mount_Everest onto:firstAscentPerson ?uri . },julipc-p(huggingface) How many programming languages are there?,PREFIX onto: PREFIX rdf: SELECT COUNT(DISTINCT ?uri) WHERE { ?uri rdf:type onto:ProgrammingLanguage . },julipc-p(huggingface) What is the official color of the University of Oxford?,PREFIX onto: PREFIX res: SELECT DISTINCT ?string WHERE { res:University_of_Oxford onto:officialSchoolColour ?string . },julipc-p(huggingface) To which artistic movement did the painter of The Three Dancers belong?,PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:The_Three_Dancers onto:author ?person . ?person onto:movement ?uri . },julipc-p(huggingface) Give me all animals that are extinct.,PREFIX onto: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Animal . ?uri onto:conservationStatus 'EX' . },julipc-p(huggingface) Does Abraham Lincoln's death place have a website?,PREFIX onto: PREFIX prop: PREFIX res: ASK WHERE { res:Abraham_Lincoln onto:deathPlace ?p . ?p prop:website ?w . },julipc-p(huggingface) How deep is Lake Placid?,PREFIX onto: SELECT DISTINCT ?n WHERE { onto:depth ?n . },julipc-p(huggingface) Give me the grandchildren of Bruce Lee.,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Bruce_Lee onto:child ?child . ?child onto:child ?uri . },julipc-p(huggingface) Who is the youngest Darts player?,PREFIX onto: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:DartsPlayer . ?uri onto:birthDate ?date . } ORDER BY DESC(?date) OFFSET 0 LIMIT 1,julipc-p(huggingface) Where was Bach born?,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Johann_Sebastian_Bach onto:birthPlace ?uri . },julipc-p(huggingface) In which countries can you pay using the West African CFA franc?,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri onto:currency res:West_African_CFA_franc . },julipc-p(huggingface) What are the top-10 action role-playing video games according to IGN?,PREFIX onto: PREFIX prop: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri . ?uri prop:ign ?score . } ORDER BY DESC(?score) LIMIT 10,julipc-p(huggingface) What is the most frequent cause of death?,PREFIX onto: SELECT DISTINCT ?x WHERE { ?uri onto:deathCause ?x . } ORDER BY DESC(COUNT(DISTINCT ?uri)) OFFSET 0 LIMIT 1,julipc-p(huggingface) Does the Isar flow into a lake?,PREFIX onto: PREFIX res: PREFIX rdf: ASK WHERE { ?x onto:inflow res:Isar . ?x rdf:type onto:Lake . },julipc-p(huggingface) Give me all films produced by Steven Spielberg with a budget of at least $80 million.,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Film . ?uri onto:director res:Steven_Spielberg . ?uri onto:budget ?b . FILTER( xsd:double(?b) >= 8.0E7 ) },julipc-p(huggingface) Give me all writers that won the Nobel Prize in literature.,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Writer . ?uri onto:award res:Nobel_Prize_in_Literature . },julipc-p(huggingface) Give me all taikonauts.,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Astronaut . ?uri onto:nationality res:China . },julipc-p(huggingface) How many pages does War and Peace have?,PREFIX onto: PREFIX res: SELECT DISTINCT ?n WHERE { res:War_and_Peace onto:numberOfPages ?n . },julipc-p(huggingface) What is the bridge with the longest span?,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Bridge . ?uri onto:mainspan ?s . } ORDER BY DESC(?s) OFFSET 0 LIMIT 1,julipc-p(huggingface) Give me all actors called Baldwin.,PREFIX onto: PREFIX res: PREFIX foaf: SELECT DISTINCT ?uri WHERE { ?uri foaf:surname 'Baldwin'@en . { ?uri onto:occupation res:Actor . } UNION { ?uri rdf:type onto:Actor . } },julipc-p(huggingface) Who is the tallest player of the Atlanta Falcons?,PREFIX onto: PREFIX prop: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri onto:team res:Atlanta_Falcons . ?uri onto:height ?h . } ORDER BY DESC(?h) OFFSET 0 LIMIT 1,julipc-p(huggingface) Which rivers flow into a German lake?,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:River . ?x onto:inflow ?uri . ?x rdf:type onto:Lake . ?x onto:country res:Germany . },julipc-p(huggingface) How many James Bond movies are there?,PREFIX rdf: PREFIX yago: SELECT COUNT(DISTINCT ?uri) WHERE { ?uri rdf:type yago:JamesBondFilms . },julipc-p(huggingface) Which rockets were launched from Baikonur?,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Rocket . ?uri onto:launchSite res:Baikonur_Cosmodrome . },julipc-p(huggingface) Which pope succeeded John Paul II?,PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Pope_John_Paul_II prop:successor ?uri . },julipc-p(huggingface) Give me all Dutch parties.,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:PoliticalParty . ?uri onto:country res:Netherlands . },julipc-p(huggingface) When is Halloween?,PREFIX prop: PREFIX res: SELECT DISTINCT ?date WHERE { res:Halloween prop:date ?date . },julipc-p(huggingface) Give me all Swedish oceanographers.,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri onto:field res:Oceanography . ?uri onto:birthPlace res:Sweden . },julipc-p(huggingface) Give me all actors who were born in Berlin.,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Actor . ?uri onto:birthPlace res:Berlin . },julipc-p(huggingface) What was the last movie with Alec Guinness?,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Film . ?uri onto:starring res:Alec_Guinness . ?uri onto:releaseDate ?date . } ORDER BY DESC(?date) LIMIT 1,julipc-p(huggingface) Which poet wrote the most books?,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri onto:occupation res:Poet . ?x onto:author ?uri . ?x rdf:type onto:Book . } ORDER BY DESC(COUNT(?x)) OFFSET 0 LIMIT 1,julipc-p(huggingface) How many languages are spoken in Colombia?,PREFIX onto: PREFIX res: SELECT COUNT(DISTINCT ?uri) WHERE { ?uri rdf:type onto:Language . res:Colombia onto:language ?uri . },julipc-p(huggingface) What does IYCM stand for?,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri onto:abbreviation 'IYCM' . },julipc-p(huggingface) What was Brazil's lowest rank in the FIFA World Ranking?,PREFIX prop: PREFIX res: SELECT DISTINCT ?n WHERE { res:Brazil_national_football_team prop:fifaMin ?n . },julipc-p(huggingface) Give me the capitals of all countries that the Himalayas run through.,PREFIX prop: PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Himalayas prop:country ?country . ?country onto:capital ?uri . },julipc-p(huggingface) Which actor played Chewbacca?,PREFIX prop: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Chewbacca prop:portrayer ?uri . },julipc-p(huggingface) Which ingredients do I need for carrot cake?,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Carrot_cake onto:ingredient ?uri . },julipc-p(huggingface) Is Cola a beverage?,PREFIX onto: PREFIX res: PREFIX rdf: ASK WHERE { res:Cola rdf:type onto:Beverage . },julipc-p(huggingface) Who has Tom Cruise been married to?,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri onto:spouse res:Tom_Cruise. },julipc-p(huggingface) Which of Tim Burton's films had the highest budget?,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri onto:director res:Tim_Burton . ?uri onto:budget ?b . } ORDER BY ?b OFFSET 0 LIMIT 1,julipc-p(huggingface) How heavy is Jupiter's lightest moon?,PREFIX onto: PREFIX prop: PREFIX res: SELECT DISTINCT ?n WHERE { ?uri prop:satelliteOf res:Jupiter . ?uri onto:mass ?n . } ORDER BY ASC(?n) OFFSET 0 LIMIT 1,julipc-p(huggingface) Which actor was casted in the most movies?,PREFIX onto: PREFIX prop: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Actor . ?f rdf:type onto:Film . ?f onto:starring ?uri . } ORDER BY DESC(COUNT(DISTINCT(?f))) OFFSET 0 LIMIT 1,julipc-p(huggingface) Is James Bond married?,PREFIX onto: PREFIX res: ASK WHERE { res:James_Bond onto:spouse ?uri . },julipc-p(huggingface) Give me all Australian metalcore bands.,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Band . ?uri onto:genre res:Metalcore . { ?uri onto:hometown res:Australia . } UNION { ?uri onto:hometown ?h . ?h onto:country res:Australia . } },julipc-p(huggingface) Give me all actors who were born in Paris after 1950.,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Actor . ?uri onto:birthPlace res:Paris . ?uri onto:birthDate ?date . FILTER ( ?date >= xsd:dateTime('1950-12-31T00:00:00Z')) },julipc-p(huggingface) When was Carlo Giuliani shot?,PREFIX prop: PREFIX res: SELECT DISTINCT ?date WHERE { res:Death_of_Carlo_Giuliani prop:dateOfDeath ?date . },julipc-p(huggingface) Who are the four youngest MVP basketball players?,"PREFIX onto: PREFIX prop: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:BasketballPlayer . ?uri onto:birthDate ?date. ?uri prop:highlights ?h . FILTER regex(?h,'MVP') } ORDER BY DESC(?date) OFFSET 0 LIMIT 4",julipc-p(huggingface) Which companies have more than 1 million employees?,PREFIX onto: PREFIX prop: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Company . { ?uri onto:numberOfEmployees ?n . } UNION { ?uri prop:numEmployees ?n . } FILTER ( ?n > 1000000 ) },julipc-p(huggingface) Give all swimmers that were born in Moscow.,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Swimmer . ?uri onto:birthPlace res:Moscow . },julipc-p(huggingface) Who was called Rodzilla?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { ?uri prop:nickname ""Rodzilla""@en . }",julipc-p(huggingface) Show me the book that Muhammad Ali wrote.,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Book . ?uri onto:author res:Muhammad_Ali . },julipc-p(huggingface) How many museums does Paris have?,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Museum . ?uri onto:location res:Paris . },julipc-p(huggingface) Which city has the most inhabitants?,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:City . ?uri onto:populationTotal ?pop . } ORDER BY DESC(?pop) OFFSET 0 LIMIT 1,julipc-p(huggingface) Which city has the least inhabitants?,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:City . ?uri onto:populationTotal ?pop . } ORDER BY ASC(?pop) OFFSET 0 LIMIT 1,julipc-p(huggingface) Give me all the TV shows with Neil Patrick Harris.,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:TelevisionShow . ?uri onto:starring res:Neil_Patrick_Harris . },julipc-p(huggingface) Who wrote The Hunger Games?,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:The_Hunger_Games onto:author ?uri . },julipc-p(huggingface) Show a list of soccer clubs that play in the Bundesliga.,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:SoccerClub . ?uri onto:league res:Bundesliga . },julipc-p(huggingface) What country is Mount Everest in?,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { res:Mount_Everest onto:locatedInArea ?uri . ?uri rdf:type onto:Country . },julipc-p(huggingface) Who is the founder of Penguin Books?,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { res:Penguin_Books onto:founder ?uri . },julipc-p(huggingface) Which programming languages influenced Javascript?,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:ProgrammingLanguage . ?uri onto:influenced res:JavaScript . },julipc-p(huggingface) Did Che Guevara have children?,PREFIX onto: PREFIX res: ASK WHERE { res:Che_Guevara onto:child ?uri . },julipc-p(huggingface) List all the musicals with music by Elton John.,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Musical . ?uri onto:musicBy res:Elton_John . },julipc-p(huggingface) Show me all the breweries in Australia.,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri ?x WHERE { ?uri rdf:type onto:Brewery . { ?uri onto:location res:Australia . } UNION { ?uri onto:location ?x . ?x onto:country res:Australia . } },julipc-p(huggingface) When was the Titanic completed?,PREFIX onto: PREFIX res: SELECT DISTINCT ?date WHERE { res:RMS_Titanic onto:completionDate ?date . },julipc-p(huggingface) How much did Pulp Fiction cost?,PREFIX onto: PREFIX res: SELECT DISTINCT ?n WHERE { res:Pulp_Fiction onto:budget ?n . },julipc-p(huggingface) How many airlines are there?,PREFIX onto: PREFIX rdf: SELECT COUNT(DISTINCT ?uri) WHERE { ?uri rdf:type onto:Airline . },julipc-p(huggingface) Who played Agent Smith in Matrix?,PREFIX prop: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Agent_Smith prop:portrayer ?uri . },julipc-p(huggingface) How much carbs does peanut butter have?,PREFIX prop: PREFIX res: SELECT DISTINCT ?carbs WHERE { res:Peanut_butter prop:carbs ?carbs . },julipc-p(huggingface) Which book has the most pages?,PREFIX onto: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Book . ?uri onto:numberOfPages ?n . } ORDER BY DESC(?n) OFFSET 0 LIMIT 1,julipc-p(huggingface) Which bridges cross the Seine?,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Bridge . ?uri onto:crosses res:Seine . },julipc-p(huggingface) Who is the mayor of the capital of French Polynesia?,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:French_Polynesia onto:capital ?x . ?x onto:mayor ?uri . },julipc-p(huggingface) When did Dracula's creator die?,PREFIX onto: PREFIX res: SELECT DISTINCT ?date WHERE { res:Count_Dracula onto:creator ?x . ?x onto:deathDate ?date . },julipc-p(huggingface) What is the location of the Houses of Parliament?,PREFIX onto: PREFIX res: PREFIX rdf: SELECT ?uri WHERE { res:Palace_of_Westminster onto:location ?uri . },julipc-p(huggingface) Show me all English Gothic buildings in Kent.,PREFIX onto: PREFIX res: PREFIX rdf: SELECT ?uri WHERE { ?uri rdf:type onto:Building . ?uri onto:architecturalStyle res:English_Gothic_architecture . ?uri onto:location res:Kent . },julipc-p(huggingface) Who was the pope that founded the Vatican Television?,PREFIX onto: PREFIX res: PREFIX rdf: SELECT ?uri WHERE { ?uri rdf:type onto:Pope . res:Vatican_Television_Center onto:foundedBy ?uri . },julipc-p(huggingface) What airlines are part of the SkyTeam alliance?,PREFIX res: PREFIX prop: PREFIX onto: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Airline . { ?uri prop:alliance res:SkyTeam . } UNION { ?uri onto:Alliance res:SkyTeam . } },julipc-p(huggingface) "What is the total population of Melbourne, Florida?","PREFIX onto: SELECT ?uri WHERE { onto:populationTotal ?uri . }",julipc-p(huggingface) Which airports does Air China serve?,PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Air_China onto:targetAirport ?uri . },julipc-p(huggingface) In which year was Rachel Stevens born?,PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Rachel_Stevens onto:birthYear ?uri . },julipc-p(huggingface) Where was JFK assassinated?,PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:John_F._Kennedy onto:deathPlace ?uri . },julipc-p(huggingface) How many politicians graduated from Columbia University?,PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?uri onto:profession res:Politician . ?uri onto:almaMater res:Columbia_University . },julipc-p(huggingface) Which scientist is known for the Manhattan Project and the Nobel Peace Prize?,PREFIX res: PREFIX onto: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri onto:knownFor res:Manhattan_Project . ?uri rdf:type onto:Scientist . ?uri onto:knownFor res:Nobel_Peace_Prize . },julipc-p(huggingface) What is the highest volcano in Africa?,PREFIX onto: PREFIX res: PREFIX rdf: PREFIX yago: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Volcano . ?uri onto:locatedInArea ?area . ?area rdf:type yago:AfricanCountries . ?uri onto:elevation ?elevation . } ORDER BY DESC(?elevation) OFFSET 0 LIMIT 1,julipc-p(huggingface) Which beer originated in Ireland?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?uri prop:type res:Beer . ?uri prop:origin ""Ireland""@en . }",julipc-p(huggingface) What are the specialities of the UNC Health Care?,PREFIX onto: PREFIX res: PREFIX prop: PREFIX rdf: SELECT DISTINCT ?uri WHERE { res:UNC_Health_Care prop:speciality ?uri . },julipc-p(huggingface) Who is the owner of Facebook?,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Facebook onto:foundedBy ?uri . },julipc-p(huggingface) From which region is the Melon de Bourgogne?,PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Melon_de_Bourgogne onto:wineRegion ?uri . },julipc-p(huggingface) Who was influenced by Socrates?,PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:influencedBy res:Socrates . },julipc-p(huggingface) Who was president of Pakistan in 1978?,PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?uri prop:title res:President_of_Pakistan . ?uri prop:years 1978 . },julipc-p(huggingface) Give me English actors starring in Lovesick.,PREFIX res: PREFIX onto: PREFIX yago: SELECT DISTINCT ?uri WHERE { res:Lovesick onto:starring ?uri . { ?uri onto:birthPlace res:England . } UNION { ?uri rdf:type yago:EnglishFilmActors . } },julipc-p(huggingface) Give me all types of eating disorders.,PREFIX yago: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:EatingDisorders . },julipc-p(huggingface) Who was married to president Chirac?,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Jacques_Chirac onto:spouse ?uri . },julipc-p(huggingface) What is the largest metropolitan area in Washington state?,PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:largestmetro ?uri . },julipc-p(huggingface) Where in France is sparkling wine produced?,PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:wineProduced res:Sparkling_wine . ?uri onto:location res:France . },julipc-p(huggingface) Where did Hillel Slovak die?,PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Hillel_Slovak onto:deathPlace ?uri . },julipc-p(huggingface) What is the timezone in San Pedro de Atacama?,PREFIX res: PREFIX timezone: SELECT DISTINCT ?uri WHERE { res:San_Pedro_de_Atacama timezone:timezone ?uri . },julipc-p(huggingface) In which city does the Chile Route 68 end?,PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Chile_Route_68 onto:routeEnd ?uri . },julipc-p(huggingface) Give me all ESA astronauts.,PREFIX rdf: PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Astronaut . ?uri onto:type res:European_Space_Agency . },julipc-p(huggingface) Give me all Swedish holidays.,PREFIX rdf: PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Holiday . ?uri onto:country res:Sweden . },julipc-p(huggingface) Who is the youngest Pulitzer Prize winner?,PREFIX rdf: PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri onto:award res:Pulitzer_Prize . ?uri onto:birthDate ?d . } ORDER BY DESC(?d) OFFSET 0 LIMIT 1,julipc-p(huggingface) Which animals are critically endangered?,PREFIX onto: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Animal . ?uri onto:conservationStatus 'CR' . },julipc-p(huggingface) Which soccer players were born on Malta?,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:SoccerPlayer . ?uri onto:birthPlace res:Malta . },julipc-p(huggingface) Did Arnold Schwarzenegger attend a university?,PREFIX onto: PREFIX res: PREFIX rdf: ASK WHERE { res:Arnold_Schwarzenegger onto:almaMater ?x . ?x rdf:type onto:University . },julipc-p(huggingface) Which programming languages were influenced by Perl?,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:ProgrammingLanguage . { ?uri onto:influencedBy res:Perl . } UNION { res:Perl onto:influenced ?uri . } },julipc-p(huggingface) Is Barack Obama a democrat?,PREFIX onto: PREFIX res: ASK WHERE { res:Barack_Obama onto:party . },julipc-p(huggingface) How many children does Eddie Murphy have?,PREFIX prop: PREFIX res: SELECT DISTINCT ?n WHERE { res:Eddie_Murphy prop:children ?n . },julipc-p(huggingface) Who is the oldest child of Meryl Streep?,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Meryl_Streep onto:child ?uri . ?uri onto:birthDate ?d . } ORDER BY ASC(?d) OFFSET 0 LIMIT 1,julipc-p(huggingface) Who killed John Lennon?,PREFIX rdf: PREFIX onto: PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Person. ?uri prop:conviction res:Death_of_John_Lennon. },julipc-p(huggingface) Which frequent flyer program has the most airlines?,PREFIX onto: PREFIX prop: PREFIX rdf: PREFIX yago: SELECT ?uri WHERE { ?airline rdf:type onto:Airline. ?airline prop:frequentFlyer ?uri. ?uri rdf:type yago:FrequentFlyerPrograms. } ORDER BY DESC(COUNT(DISTINCT ?airline)) OFFSET 0 LIMIT 1,julipc-p(huggingface) In which city is Air China headquartered?,PREFIX res: PREFIX yago: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Air_China onto:headquarter ?uri . ?uri rdf:type yago:City108524735 . },julipc-p(huggingface) Which artists were born on the same date as Rachel Stevens?,PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Artist. res:Rachel_Stevens prop:dateOfBirth ?date . ?uri prop:dateOfBirth ?date . },julipc-p(huggingface) How many scientists graduated from an Ivy League university?,PREFIX res: PREFIX onto: SELECT DISTINCT count (?uri) WHERE { ?uri rdf:type onto:Scientist . ?uri onto:almaMater ?university . ?university onto:affiliation res:Ivy_League . },julipc-p(huggingface) Which types of grapes grow in Oregon?,PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Oregon_wine onto:growingGrape ?uri . },julipc-p(huggingface) Who is starring in Spanish movies produced by Benicio del Toro?,PREFIX res: PREFIX onto: PREFIX rdf: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?film rdf:type onto:Film . ?film onto:country res:Spain . ?film onto:producer res:Benicio_del_Toro . ?film onto:starring ?uri . ?uri rdf:type onto:Person . },julipc-p(huggingface) Who is the manager of Real Madrid?,PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:manager ?uri . },julipc-p(huggingface) Give me the currency of China.,PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:China onto:currency ?uri . },julipc-p(huggingface) Which movies starring Brad Pitt were directed by Guy Ritchie?,PREFIX res: PREFIX onto: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Film . ?uri onto:starring res:Brad_Pitt . ?uri onto:director res:Guy_Ritchie . },julipc-p(huggingface) How many companies were founded by the founder of Facebook?,PREFIX onto: PREFIX res: SELECT DISTINCT COUNT(?c) WHERE { res:Facebook onto:foundedBy ?uri . ?c onto:foundedBy ?uri . },julipc-p(huggingface) How many companies were founded in the same year as Google?,PREFIX onto: PREFIX res: SELECT COUNT(DISTINCT ?c) WHERE { ?c rdf:type onto:Company . ?c onto:foundingYear ?year . res:Google onto:foundingYear ?year . },julipc-p(huggingface) Which subsidiary of Lufthansa serves both Dortmund and Berlin Tegel?,PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Lufthansa onto:subsidiary ?uri . ?uri onto:targetAirport res:Dortmund_Airport . ?uri onto:targetAirport res:Berlin_Tegel_Airport . },julipc-p(huggingface) How many airlines are members of the Star Alliance?,PREFIX onto: PREFIX onto: PREFIX res: PREFIX rdf: SELECT COUNT(DISTINCT ?uri) WHERE { ?uri rdf:type onto:Airline . ?uri onto:alliance res:Star_Alliance . },julipc-p(huggingface) Give me all spacecrafts that flew to Mars.,PREFIX onto: PREFIX prop: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Spacecraft . ?uri prop:planet res:Mars . },julipc-p(huggingface) Which musician wrote the most books?,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri onto:occupation res:Musician . ?x onto:author ?uri . ?x rdf:type onto:Book . } ORDER BY DESC(COUNT(?x)) OFFSET 0 LIMIT 1,julipc-p(huggingface) Show me everyone who was born on Halloween.,PREFIX prop: PREFIX res: PREFIX onto: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Person . { ?uri onto:birthDate ?date . } UNION { ?uri prop:birthDate ?date . } res:Halloween prop:date ?date . },julipc-p(huggingface) Give me all Swiss non-profit organizations.,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri onto:type res:Nonprofit_organization . { ?uri onto:locationCountry res:Switzerland . } UNION { ?uri onto:location ?x . ?x onto:country res:Switzerland . } },julipc-p(huggingface) In which country is Mecca located?,PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Mecca onto:country ?uri . },julipc-p(huggingface) What is the net income of Apple?,PREFIX onto: SELECT DISTINCT ?ni WHERE { onto:netIncome ?ni . },julipc-p(huggingface) What does the abbreviation FIFA stand for?,PREFIX res: PREFIX prop: SELECT DISTINCT ?name WHERE { res:FIFA prop:name ?name . },julipc-p(huggingface) When did the Ming dynasty dissolve?,PREFIX res: PREFIX onto: SELECT DISTINCT ?date WHERE { res:Ming_dynasty onto:dissolutionDate ?date . },julipc-p(huggingface) Which museum in New York has the most visitors?,PREFIX res: PREFIX onto: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Museum . ?uri onto:location res:New_York_City . ?uri onto:numberOfVisitors ?num . } ORDER BY DESC(?num) OFFSET 0 LIMIT 1,julipc-p(huggingface) Is Lake Baikal bigger than the Great Bear Lake?,PREFIX res: PREFIX onto: ASK WHERE { res:Lake_Baikal onto:areaTotal ?a1 . res:Great_Bear_Lake onto:areaTotal ?a2 . FILTER (?a1 > ?a2) },julipc-p(huggingface) Desserts from which country contain fish?,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { ?x onto:type res:Dessert . ?x onto:origin ?uri . ?x onto:ingredient res:Fish . },julipc-p(huggingface) What is the highest mountain in Italy?,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Mountain . ?uri onto:locatedInArea res:Italy . ?uri onto:elevation ?num . } ORDER BY DESC(?num) OFFSET 0 LIMIT 1,julipc-p(huggingface) Where did the architect of the Eiffel Tower study?,PREFIX prop: PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Eiffel_Tower onto:architect ?x . ?x prop:almaMater ?uri . },julipc-p(huggingface) Which Greek parties are pro-European?,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:PoliticalParty . ?uri onto:country res:Greece . ?uri onto:ideology res:Pro-Europeanism . },julipc-p(huggingface) What is the height difference between Mount Everest and K2?,PREFIX onto: PREFIX res: SELECT DISTINCT (?h1-?h2) WHERE { res:Mount_Everest onto:elevation ?h1 . res:K2 onto:elevation ?h2 . },julipc-p(huggingface) Who is the mayor of Rotterdam?,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Rotterdam onto:leaderName ?uri . },julipc-p(huggingface) How high is the Yokohama Marine Tower?,PREFIX onto: PREFIX res: SELECT DISTINCT ?num WHERE { res:Yokohama_Marine_Tower onto:height ?num . },julipc-p(huggingface) Are Taiko a kind of Japanese musical instruments?,PREFIX yago: PREFIX res: ASK WHERE { res:Taiko rdf:type yago:JapaneseMusicalInstruments . },julipc-p(huggingface) How many ethnic groups live in Slovenia?,PREFIX onto: PREFIX res: SELECT COUNT(DISTINCT ?uri) WHERE { res:Slovenia onto:ethnicGroup ?uri . },julipc-p(huggingface) List the seven kings of Rome.,PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?uri prop:title res:King_of_Rome . },julipc-p(huggingface) Who were the parents of Queen Victoria?,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Queen_Victoria onto:parent ?uri . },julipc-p(huggingface) Who is the heaviest player of the Chicago Bulls?,PREFIX onto: PREFIX prop: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Person . ?uri onto:weight ?num . { ?uri prop:team res:Chicago_Bulls . } UNION { ?uri prop:draftTeam res:Chicago_Bulls . } UNION { ?uri onto:draftTeam res:Chicago_Bulls . } } ORDER BY DESC(?num) OFFSET 0 LIMIT 1,julipc-p(huggingface) Which volcanos in Japan erupted since 2000?,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Volcano . ?uri onto:locatedInArea res:Japan . ?uri onto:eruptionYear ?date . FILTER (year(?date) >= 2000) },julipc-p(huggingface) Who is the tallest basketball player?,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:BasketballPlayer . ?uri onto:height ?num . } ORDER BY DESC(?num) OFFSET 0 LIMIT 1,julipc-p(huggingface) Who are the presidents of the United States?,PREFIX rdf: PREFIX yago: PREFIX onto: PREFIX res: PREFIX rdfs: PREFIX prop: SELECT DISTINCT ?uri ?string WHERE { { ?uri rdf:type yago:PresidentsOfTheUnitedStates. } UNION { ?uri rdf:type onto:President. ?uri prop:title res:President_of_the_United_States. } OPTIONAL {?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) Who was the wife of President Lincoln?,PREFIX rdfs: PREFIX rdf: PREFIX foaf: PREFIX onto: SELECT ?uri ?string WHERE { ?person rdf:type onto:President . ?person foaf:surname 'Lincoln'@en . ?person onto:spouse ?uri. OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } },julipc-p(huggingface) Who created English Wikipedia?,PREFIX onto: PREFIX rdf: PREFIX rdfs: SELECT ?uri ?string WHERE { ?website rdf:type onto:Website . ?website onto:author ?uri . ?website rdfs:label 'English Wikipedia'@en . OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } },julipc-p(huggingface) Which country does the Airedale Terrier come from?,PREFIX rdfs: PREFIX prop: SELECT ?string WHERE { ?dog rdfs:label 'Airedale Terrier'@en . ?dog prop:country ?string },julipc-p(huggingface) Which birds are there in the United States?,PREFIX yago: PREFIX rdfs: PREFIX rdf: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type yago:BirdsOfTheUnitedStates. OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } },julipc-p(huggingface) Give me all European Capitals!,PREFIX yago: PREFIX rdfs: PREFIX rdf: SELECT ?uri ?string WHERE { ?uri rdf:type yago:CapitalsInEurope. OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } },julipc-p(huggingface) Which cities have more than 2 million inhabitants?,PREFIX rdfs: PREFIX rdf: PREFIX prop: PREFIX xsd: PREFIX onto: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type onto:City. { ?uri prop:population ?population. } UNION { ?uri prop:populationUrban ?population. } FILTER (xsd:integer(?population) > 2000000) . OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } },julipc-p(huggingface) Who was Tom Hanks married to?,PREFIX rdfs: PREFIX prop: SELECT DISTINCT ?uri ?string WHERE { ?person rdfs:label 'Tom Hanks'@en . ?person prop:spouse ?string . OPTIONAL { ?uri rdfs:label ?string . } },julipc-p(huggingface) When was DBpedia released?,PREFIX onto: PREFIX rdf: PREFIX rdfs: SELECT ?date WHERE { ?website rdf:type onto:Software . ?website onto:releaseDate ?date . ?website rdfs:label 'DBpedia'@en },julipc-p(huggingface) Which people were born in Heraklion?,PREFIX rdfs: PREFIX rdf: PREFIX onto: PREFIX yago: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type onto:Person . ?uri onto:birthPlace ?city . ?city rdfs:label 'Heraklion'@en OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } },julipc-p(huggingface) Which software has been published by Mean Hamster Software?,PREFIX rdfs: PREFIX rdf: PREFIX onto: PREFIX prop: PREFIX res: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type onto:Software . { ?uri prop:publisher 'Mean Hamster Software'@en . } UNION { ?uri onto:publisher res:Mean_Hamster_Software . } OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } },julipc-p(huggingface) What languages are spoken in Estonia?,"PREFIX rdfs: PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri ?string WHERE { ?country rdf:type onto:Country. { ?country onto:language ?uri . } UNION { ?uri onto:spokenIn ?country . } FILTER (regex(?country, 'Estonia')). OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } }",julipc-p(huggingface) Who is called Dana?,"PREFIX rdf: PREFIX rdfs: PREFIX foaf: PREFIX prop: SELECT DISTINCT ?uri ?string WHERE { { ?uri rdf:type foaf:Person. ?uri foaf:givenName 'Dana'@en. } UNION { ?uri prop:alias ?alias . FILTER regex(?alias,'Dana') . } OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } }",julipc-p(huggingface) Which books were written by Danielle Steel?,PREFIX rdfs: PREFIX rdf: PREFIX foaf: PREFIX onto: SELECT ?uri ?string WHERE { ?uri rdf:type onto:Book . ?uri onto:author ?author . ?author foaf:name 'Danielle Steel'@en . OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } },julipc-p(huggingface) "Which companies are located in California, USA?",PREFIX rdfs: PREFIX onto: PREFIX res: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type onto:Organisation . ?uri onto:location res:California . OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } },julipc-p(huggingface) Which genre does DBpedia belong to?,PREFIX prop: PREFIX onto: PREFIX rdf: PREFIX rdfs: SELECT ?uri ?string WHERE { ?dbpedia rdf:type onto:Software . ?dbpedia onto:genre ?uri . ?dbpedia rdfs:label 'DBpedia'@en . OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } },julipc-p(huggingface) Give me all movies with Tom Cruise!,PREFIX rdfs: PREFIX onto: PREFIX res: PREFIX rdf: PREFIX prop: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type onto:Film. { ?uri prop:starring res:Tom_Cruise . } UNION { ?uri onto:starring res:Tom_Cruise . } OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } },julipc-p(huggingface) Give me all female German chancellors!,"PREFIX rdf: PREFIX rdfs: PREFIX yago: PREFIX prop: SELECT ?uri ?string WHERE { ?uri rdf:type yago:FemaleHeadsOfGovernment. ?uri prop:office ?office . FILTER regex(?office, 'Chancellor of Germany'). OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } }",julipc-p(huggingface) Is Natalie Portman an actress?,PREFIX rdfs: PREFIX rdf: PREFIX onto: ASK WHERE { ?subject rdf:type onto:Actor. ?subject rdfs:label 'Natalie Portman'@en. },julipc-p(huggingface) Who wrote the book Les Piliers de la terre?,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:The_Pillars_of_the_Earth onto:author ?uri . },julipc-p(huggingface) Give me all anarcho punk bands that were formed in the 80s.,"PREFIX yago: PREFIX bio: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type yago:Anarcho-punkGroups . ?uri owl:sameAs ?mb_band . ?mb_band bio:event ?event . ?event rdf:type bio:Birth . ?event bio:date ?date . { ?event bio:date ?date . FILTER (?date <= '1989-12-31'^^xsd:date || ?date >= '1980-01-01'^^xsd:date ) } UNION { ?event bio:date ?date . FILTER regex(?date,'^198') } OPTIONAL { ?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } }",julipc-p(huggingface) What is the most frequent death cause?,PREFIX onto: SELECT DISTINCT ?x WHERE { ?uri onto:deathCause ?x . } ORDER BY DESC(COUNT(DISTINCT ?uri)) OFFSET 0 LIMIT 1,julipc-p(huggingface) Which spaceflights were launched from Baikonur?,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri onto:launchPad res:Baikonur_Cosmodrome . },julipc-p(huggingface) What does CPU stand for?,"PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri onto:abbreviation ""CPU"" . }",julipc-p(huggingface) Who assassinated President McKinley?,PREFIX rdf: PREFIX onto: PREFIX dct: PREFIX dbc: select distinct ?uri where { ?uri rdf:type onto:Person . ?uri dct:subject dbc:American_assassins . ?uri dct:subject dbc:Assassination_of_William_McKinley . },julipc-p(huggingface) Who was buried in the Great Pyramid of Giza?,PREFIX onto: PREFIX res: select ?uri where { ?uri onto:restingPlace res:Great_Pyramid_of_Giza . },julipc-p(huggingface) Which classis do tree frogs belong to?,PREFIX prop: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Hylidae prop:classis ?uri . },julipc-p(huggingface) Give me the official websites of actors of the television show Charmed.,PREFIX rdfs: PREFIX rdf: PREFIX foaf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?film rdf:type onto:TelevisionShow . ?film rdfs:label 'Charmed'@en . ?film onto:starring ?actors . ?actors foaf:homepage ?uri . },julipc-p(huggingface) Is the wife of President Obama called Michelle?,"PREFIX rdfs: PREFIX onto: PREFIX res: ASK WHERE { res:Barack_Obama onto:spouse ?spouse . ?spouse rdfs:label ?name . FILTER(regex(?name,'Michelle')) }",julipc-p(huggingface) Give me the capitals of all U.S. states.,PREFIX onto: PREFIX rdf: PREFIX rdfs: PREFIX yago: SELECT DISTINCT ?uri ?string WHERE { ?states rdf:type yago:StatesOfTheUnitedStates . ?states onto:capital ?uri . OPTIONAL {?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) What is the revenue of IBM?,PREFIX onto: PREFIX res: SELECT ?number WHERE { res:IBM onto:revenue ?number . },julipc-p(huggingface) Which states border Utah?,PREFIX res: PREFIX prop: PREFIX yago: SELECT DISTINCT ?uri ?string WHERE { {res:Kansas prop:north ?string.} UNION {res:Kansas prop:northeast ?string.} UNION {res:Kansas prop:south ?string.} UNION {res:Kansas prop:southeast ?string.} UNION {res:Kansas prop:east ?string.} UNION {res:Kansas prop:west ?string.} OPTIONAL { ?uri rdf:type yago:StatesOfTheUnitedStates . ?uri prop:name ?string . } },julipc-p(huggingface) Which European countries are a constitutional monarchy?,PREFIX onto: PREFIX yago: PREFIX rdf: PREFIX rdfs: PREFIX res: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type yago:EuropeanCountries . ?uri onto:governmentType res:Constitutional_monarchy . OPTIONAL {?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) Who is the author of WikiLeaks?,PREFIX res: PREFIX rdfs: PREFIX onto: SELECT ?uri ?string WHERE { res:WikiLeaks onto:author ?uri . OPTIONAL {?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) Which state of the United States of America has the highest density?,PREFIX yago: PREFIX rdf: PREFIX rdfs: PREFIX prop: SELECT ?uri ?string WHERE { ?uri rdf:type yago:StatesOfTheUnitedStates . ?uri prop:densityrank ?density OPTIONAL {?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } } ORDER BY ASC(?density) LIMIT 1,julipc-p(huggingface) When did Germany join the EU?,PREFIX res: PREFIX prop: SELECT ?date WHERE { res:Germany prop:accessioneudate ?date . },julipc-p(huggingface) What is the highest mountain in Germany?,"PREFIX rdf: PREFIX rdfs: PREFIX onto: SELECT ?uri ?string WHERE { ?uri rdf:type onto:Mountain . ?uri onto:elevation ?elevation . ?uri onto:locatedInArea ?area . FILTER (regex(?area,'Germany')) . OPTIONAL {?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } } ORDER BY DESC(?elevation) LIMIT 1",julipc-p(huggingface) What is the profession of Frank Herbert?,PREFIX prop: PREFIX res: SELECT DISTINCT ?string WHERE { res:Frank_Herbert prop:occupation ?string . },julipc-p(huggingface) Which companies are in the computer software industry?,"PREFIX rdfs: PREFIX rdf: PREFIX prop: PREFIX onto: PREFIX res: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type onto:Company . ?uri prop:industry ?indus . FILTER regex(?indus,'Computer') . FILTER regex(?indus,'software','i') . OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } }",julipc-p(huggingface) Did Robin Cook attend a university?,PREFIX onto: PREFIX res: PREFIX rdf: ASK WHERE { res:Robin_Cook onto:almaMater ?x . ?x rdf:type onto:University },julipc-p(huggingface) Did Tony Fry influence Aristotle?,PREFIX onto: PREFIX res: ASK WHERE { res:Aristotle onto:influencedBy res:Tony_Fry },julipc-p(huggingface) Does Por tu amor have more episodes than Game of Thrones?,PREFIX onto: PREFIX res: ASK WHERE { res:Por_tu_amor onto:numberOfEpisodes ?x . res:Game_of_Thrones onto:numberOfEpisodes ?y FILTER ( ?x > ?y ) },julipc-p(huggingface) Does the Alba River flow into a lake?,PREFIX onto: PREFIX res: PREFIX rdf: ASK WHERE { ?x onto:inflow res:Alba_River ; rdf:type onto:Lake },julipc-p(huggingface) From which region is the Refosco dal Peduncolo Rosso?,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Refosco_dal_Peduncolo_Rosso onto:wineRegion ?uri },julipc-p(huggingface) Give me all Avant-garde jazz record labels.,"PREFIX onto: PREFIX res: PREFIX rdfs: PREFIX rdf: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type onto:RecordLabel ; onto:genre res:Avant-garde_jazz OPTIONAL { ?uri rdfs:label ?string FILTER ( lang(?string) = ""en"" ) } }",julipc-p(huggingface) Give me all books written by David Foster Wallace.,PREFIX onto: PREFIX res: PREFIX prop: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Book ; prop:author res:David_Foster_Wallace },julipc-p(huggingface) Give me all cars that are produced in Netherlands.,PREFIX onto: PREFIX res: PREFIX prop: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Automobile { ?uri onto:assembly res:Netherlands } UNION { ?uri prop:assembly res:Netherlands } UNION { { ?uri onto:manufacturer ?x } UNION { ?uri prop:manufacturer ?x } { ?x onto:locationCountry res:Netherlands } UNION { ?x onto:location res:Netherlands } } },julipc-p(huggingface) Give me all companies in Jena.,"PREFIX onto: PREFIX res: PREFIX rdfs: PREFIX rdf: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type onto:Company { ?uri onto:location res:Jena } UNION { ?uri onto:headquarter res:Jena } UNION { ?uri onto:locationCity res:Jena } OPTIONAL { ?uri rdfs:label ?string FILTER ( lang(?string) = ""en"" ) } }",julipc-p(huggingface) Give me all inflows of the Lake Houston.,PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:inflow ?uri },julipc-p(huggingface) Give me all members of The Who.,"PREFIX onto: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:The_Who onto:bandMember ?uri OPTIONAL { ?uri rdfs:label ?string FILTER ( lang(?string) = ""en"" ) } }",julipc-p(huggingface) Give me all soccer clubs in Qatar.,"PREFIX onto: PREFIX res: PREFIX rdfs: PREFIX prop: PREFIX rdf: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type onto:SoccerClub { ?uri onto:ground res:Qatar } UNION { ?uri prop:ground ?ground FILTER regex(?ground, ""Qatar"") } OPTIONAL { ?uri rdfs:label ?string FILTER ( lang(?string) = ""en"" ) } }",julipc-p(huggingface) Give me all video games published by Black Isle Studios.,"PREFIX onto: PREFIX res: PREFIX rdfs: PREFIX prop: PREFIX rdf: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type onto:VideoGame { ?uri prop:publisher ""Black Isle Studios""@en } UNION { ?uri onto:publisher res:Black_Isle_Studios } OPTIONAL { ?uri rdfs:label ?string FILTER ( lang(?string) = ""en"" ) } }",julipc-p(huggingface) Give me the children of David Foster.,PREFIX onto: PREFIX res: SELECT DISTINCT ?child WHERE { res:David_Foster onto:child ?child },julipc-p(huggingface) Give me the homepage of Metropolitan Home.,PREFIX res: PREFIX foaf: SELECT DISTINCT ?string WHERE { res:Metropolitan_Home foaf:homepage ?string },julipc-p(huggingface) How big is the Mammoth Pool Reservoir?,PREFIX onto: SELECT ?area WHERE { onto:areaTotal ?area },julipc-p(huggingface) How deep is Steinsee?,PREFIX onto: SELECT DISTINCT ?n WHERE { onto:maximumDepth ?n },julipc-p(huggingface) How high is the Doe Hill Mountain?,PREFIX onto: PREFIX res: SELECT ?num WHERE { res:Doe_Hill_Mountain onto:elevation ?num },julipc-p(huggingface) How high is the Volcano Mountain?,PREFIX onto: PREFIX res: SELECT ?num WHERE { res:Volcano_Mountain onto:elevation ?num },julipc-p(huggingface) How high is the Landegode Lighthouse?,PREFIX onto: PREFIX res: SELECT DISTINCT ?num WHERE { res:Landegode_Lighthouse onto:height ?num },julipc-p(huggingface) How many employees does Staedtler have?,PREFIX onto: PREFIX res: SELECT ?number WHERE { res:Staedtler onto:numberOfEmployees ?number },julipc-p(huggingface) How many ethnic groups live in Spain?,PREFIX onto: PREFIX res: SELECT (COUNT(DISTINCT ?uri) AS ?count) WHERE { res:Spain onto:ethnicGroup ?uri },julipc-p(huggingface) How many inhabitants does Nagamangala have?,PREFIX onto: PREFIX res: SELECT ?num WHERE { res:Nagamangala onto:populationTotal ?num },julipc-p(huggingface) How many museums does Sofia have?,PREFIX onto: PREFIX res: PREFIX rdf: SELECT (COUNT(DISTINCT ?uri) AS ?count) WHERE { ?uri rdf:type onto:Museum ; onto:location res:Sofia },julipc-p(huggingface) How many pages does The Man with the Red Tattoo have?,PREFIX onto: PREFIX res: SELECT DISTINCT ?n WHERE { res:The_Man_with_the_Red_Tattoo onto:numberOfPages ?n },julipc-p(huggingface) How many people live in the capital of Togo?,PREFIX onto: PREFIX res: SELECT ?num WHERE { res:Togo onto:capital ?x . ?x onto:populationTotal ?num },julipc-p(huggingface) How many politicians graduated from Stanford University?,PREFIX onto: PREFIX res: SELECT (COUNT(DISTINCT ?uri) AS ?count) WHERE { ?uri onto:profession res:Politician ; onto:almaMater res:Stanford_University },julipc-p(huggingface) How many scientists graduated from Washburn University?,PREFIX onto: PREFIX res: PREFIX rdf: SELECT (COUNT(DISTINCT ?uri) AS ?count) WHERE { ?uri rdf:type onto:Scientist ; onto:almaMater res:Washburn_University },julipc-p(huggingface) How many students does the Texas Tech University have?,PREFIX onto: PREFIX res: SELECT ?num WHERE { res:Texas_Tech_University onto:numberOfStudents ?num },julipc-p(huggingface) How much did Vanilla Sky cost?,PREFIX onto: PREFIX res: SELECT DISTINCT ?n WHERE { res:Vanilla_Sky onto:budget ?n },julipc-p(huggingface) How often did Teresa Mo marry?,PREFIX onto: PREFIX res: SELECT (COUNT(DISTINCT ?uri) AS ?count) WHERE { res:Teresa_Mo onto:spouse ?uri },julipc-p(huggingface) How tall is John Windsor?,PREFIX onto: PREFIX res: SELECT ?num WHERE { res:John_Windsor onto:height ?num },julipc-p(huggingface) How tall is Kate Upton?,PREFIX onto: PREFIX res: SELECT DISTINCT ?height WHERE { res:Kate_Upton onto:height ?height },julipc-p(huggingface) In which country is Solaize located?,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Solaize onto:country ?uri },julipc-p(huggingface) In which country is the Tasman Lake?,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Tasman_Lake onto:country ?uri },julipc-p(huggingface) In which country is the Tiefer See?,"PREFIX onto: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:Tiefer_See onto:country ?uri OPTIONAL { ?uri rdfs:label ?string FILTER ( lang(?string) = ""en"" ) } }",julipc-p(huggingface) In which programming language is QuickTime written?,"PREFIX onto: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:QuickTime onto:programmingLanguage ?uri OPTIONAL { ?uri rdfs:label ?string FILTER ( lang(?string) = ""en"" ) } }",julipc-p(huggingface) Is Campari a beverage?,PREFIX onto: PREFIX res: PREFIX rdf: ASK WHERE { res:Campari rdf:type onto:Beverage },julipc-p(huggingface) Is Lisa Guerrero a model?,PREFIX onto: PREFIX res: PREFIX rdf: ASK WHERE { res:Lisa_Guerrero rdf:type onto:Model },julipc-p(huggingface) Is Sol Tax a scientist?,PREFIX onto: PREFIX res: PREFIX rdf: ASK WHERE { res:Sol_Tax rdf:type onto:Scientist },julipc-p(huggingface) Is Joe Biden a democrat?,PREFIX onto: PREFIX res: ASK WHERE { res:Joe_Biden onto:party },julipc-p(huggingface) Is David Macaulay still alive?,PREFIX onto: PREFIX res: ASK WHERE { OPTIONAL { res:David_Macaulay onto:deathDate ?date } FILTER ( ! bound(?date) ) },julipc-p(huggingface) Is Wilma Flintstone married?,PREFIX onto: PREFIX res: ASK WHERE { res:Wilma_Flintstone onto:spouse ?uri },julipc-p(huggingface) Is there a video game called Flappy Bird?,"PREFIX onto: PREFIX rdfs: PREFIX rdf: ASK WHERE { ?uri rdf:type onto:VideoGame ; rdfs:label ""Flappy Bird""@en }",julipc-p(huggingface) Show me everyone who was born on Boxing Day.,PREFIX onto: PREFIX res: PREFIX prop: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Person { ?uri onto:birthDate ?date } UNION { ?uri prop:birthDate ?date } res:Boxing_Day prop:date ?date },julipc-p(huggingface) Was Peter Isola a chemist?,PREFIX onto: PREFIX res: ASK WHERE { res:Peter_Isola onto:profession res:Chemist },julipc-p(huggingface) Was Denis Dutton born in Sioux City?,PREFIX onto: PREFIX res: ASK WHERE { res:Denis_Dutton onto:birthPlace res:Sioux_City },julipc-p(huggingface) Was Vannes Wu born in Aachen-Mitte?,PREFIX onto: PREFIX res: ASK WHERE { res:Vanness_Wu onto:birthPlace res:Aachen-Mitte },julipc-p(huggingface) What are the official languages of Tunisia?,"PREFIX onto: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:Tunisia onto:officialLanguage ?uri OPTIONAL { ?uri rdfs:label ?string FILTER ( lang(?string) = ""en"" ) } }",julipc-p(huggingface) What is the area code of Aegina?,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?string WHERE { res:Aegina onto:areaCode ?string },julipc-p(huggingface) What is the capital of Venezuela?,"PREFIX onto: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:Venezuela onto:capital ?uri OPTIONAL { ?uri rdfs:label ?string FILTER ( lang(?string) = ""en"" ) } }",julipc-p(huggingface) What is the currency of Rhodesia?,"PREFIX onto: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:Rhodesia onto:currency ?uri OPTIONAL { ?uri rdfs:label ?string FILTER ( lang(?string) = ""en"" ) } }",julipc-p(huggingface) What is the eye color of Liza Kennedy?,PREFIX onto: PREFIX res: SELECT DISTINCT ?color WHERE { res:Liza_Kennedy onto:eyeColor ?color },julipc-p(huggingface) What is the hair color of Marlon Teixeira?,PREFIX onto: PREFIX res: SELECT DISTINCT ?color WHERE { res:Marlon_Teixeira onto:hairColor ?color },julipc-p(huggingface) What is the official color of the Carleton University?,PREFIX onto: PREFIX res: SELECT DISTINCT ?string WHERE { res:Carleton_University onto:officialSchoolColour ?string },julipc-p(huggingface) What is the ruling party in Lo Espejo?,"PREFIX res: PREFIX rdfs: PREFIX prop: SELECT DISTINCT ?uri ?string WHERE { res:Lo_Espejo prop:leaderParty ?uri OPTIONAL { ?uri rdfs:label ?string FILTER ( lang(?string) = ""en"" ) } }",julipc-p(huggingface) When did Jules Bergman die?,PREFIX onto: PREFIX res: SELECT DISTINCT ?date WHERE { res:Jules_Bergman onto:deathDate ?date },julipc-p(huggingface) When did Red Sonja's creator die?,PREFIX onto: PREFIX res: SELECT DISTINCT ?date WHERE { res:Red_Sonja onto:creator ?x . ?x onto:deathDate ?date },julipc-p(huggingface) When is Gibraltar Diamond Jubilee Flotilla?,PREFIX res: PREFIX prop: SELECT DISTINCT ?date WHERE { res:Gibraltar_Diamond_Jubilee_Flotilla prop:date ?date },julipc-p(huggingface) When was Sevcon founded?,PREFIX onto: PREFIX res: SELECT DISTINCT ?date WHERE { res:Sevcon onto:foundingDate ?date },julipc-p(huggingface) When was Albert Schweitzer born?,PREFIX onto: PREFIX res: SELECT DISTINCT ?date WHERE { res:Albert_Schweitzer onto:birthDate ?date },julipc-p(huggingface) When was the Cobble Hill Tunnel built?,PREFIX res: PREFIX prop: SELECT ?num WHERE { res:Cobble_Hill_Tunnel prop:built ?num },julipc-p(huggingface) When was the Riverdale Monument built?,PREFIX res: PREFIX prop: SELECT ?num WHERE { res:Riverdale_Monument prop:built ?num },julipc-p(huggingface) When was the Operation Purple Haze?,PREFIX onto: PREFIX res: SELECT DISTINCT ?date WHERE { res:Operation_Purple_Haze onto:date ?date },julipc-p(huggingface) Where did Queen Emma of Hawaii die?,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Queen_Emma_of_Hawaii onto:deathPlace ?uri },julipc-p(huggingface) Where is the Sandhammaren located?,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Sandhammaren onto:location ?uri },julipc-p(huggingface) Which airports are located in Chios?,PREFIX onto: PREFIX res: PREFIX prop: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Airport { ?uri onto:location res:Chios } UNION { ?uri prop:location res:Chios } UNION { ?uri onto:city res:Chios } UNION { ?uri onto:city ?city . ?city onto:isPartOf res:Chios } UNION { ?uri onto:operator res:Chios } UNION { ?uri prop:cityServed res:Chios } },julipc-p(huggingface) Which artist made the album Old School Prankstas?,PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:artist ?uri },julipc-p(huggingface) Which books were published by DAW Books?,"PREFIX onto: PREFIX res: PREFIX rdfs: PREFIX rdf: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type onto:Book ; onto:publisher res:DAW_Books OPTIONAL { ?uri rdfs:label ?string FILTER ( lang(?string) = ""en"" ) } }",julipc-p(huggingface) Which bridges cross the Prut?,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Bridge ; onto:crosses res:Prut },julipc-p(huggingface) Which instruments does Courtney Love play?,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Courtney_Love onto:instrument ?uri },julipc-p(huggingface) Which languages are spoken in Romania?,"PREFIX onto: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { { res:Romania onto:language ?uri } UNION { ?uri onto:spokenIn res:Romania } OPTIONAL { ?uri rdfs:label ?string FILTER ( lang(?string) = ""en"" ) } }",julipc-p(huggingface) Which museum exhibits The Skater?,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:The_Skater onto:museum ?uri },julipc-p(huggingface) Which music albums contain the song Into Your Arms?,"PREFIX onto: PREFIX rdfs: SELECT DISTINCT ?uri WHERE { ?single onto:album ?uri ; rdfs:label ""Into Your Arms""@en }",julipc-p(huggingface) Which organizations were founded in 1918?,"PREFIX onto: PREFIX rdfs: PREFIX prop: PREFIX rdf: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type onto:Organisation { ?uri prop:foundation ?date } UNION { ?uri onto:formationYear ?date } FILTER regex(?date, ""^1918"") OPTIONAL { ?uri rdfs:label ?string FILTER ( lang(?string) = ""en"" ) } }",julipc-p(huggingface) Which presidents were born in 1891?,"PREFIX onto: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:President ; onto:birthDate ?date FILTER regex(?date, ""^1891"") }",julipc-p(huggingface) Who created Retrocrush?,"PREFIX onto: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:Retrocrush onto:author ?uri OPTIONAL { ?uri rdfs:label ?string FILTER ( lang(?string) = ""en"" ) } }",julipc-p(huggingface) Who created Miss Marple?,"PREFIX onto: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:Miss_Marple onto:creator ?uri OPTIONAL { ?uri rdfs:label ?string FILTER ( lang(?string) = ""en"" ) } }",julipc-p(huggingface) Who created the comic Old Man Logan?,"PREFIX onto: PREFIX res: PREFIX rdfs: SELECT ?uri ?string WHERE { res:Old_Man_Logan onto:writer ?uri OPTIONAL { ?uri rdfs:label ?string FILTER ( lang(?string) = ""en"" ) } }",julipc-p(huggingface) Who designed the Langebro?,"PREFIX res: PREFIX rdfs: PREFIX prop: SELECT DISTINCT ?uri ?string WHERE { res:Langebro prop:designer ?uri OPTIONAL { ?uri rdfs:label ?string FILTER ( lang(?string) = ""en"" ) } }",julipc-p(huggingface) Who developed Quake engine?,"PREFIX onto: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:Quake_engine onto:developer ?uri OPTIONAL { ?uri rdfs:label ?string FILTER ( lang(?string) = ""en"" ) } }",julipc-p(huggingface) Who developed the video game Duke Nukem 3D?,"PREFIX onto: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:Duke_Nukem_3D onto:developer ?uri OPTIONAL { ?uri rdfs:label ?string FILTER ( lang(?string) = ""en"" ) } }",julipc-p(huggingface) Who founded Sony?,"PREFIX onto: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:Sony onto:foundedBy ?uri OPTIONAL { ?uri rdfs:label ?string FILTER ( lang(?string) = ""en"" ) } }",julipc-p(huggingface) Who is the editor of Semana?,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Semana onto:editor ?uri },julipc-p(huggingface) Who is the founder of DC Comics?,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { res:DC_Comics onto:founder ?uri },julipc-p(huggingface) Who is the heaviest player of the ASK Riga?,PREFIX onto: PREFIX res: PREFIX prop: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Person ; onto:weight ?num { ?uri prop:team res:ASK_Riga } UNION { ?uri prop:draftTeam res:ASK_Riga } UNION { ?uri onto:draftTeam res:ASK_Riga } } ORDER BY DESC(?num) OFFSET 0 LIMIT 1,julipc-p(huggingface) Who is the manager of Gazelle FC?,PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:manager ?uri },julipc-p(huggingface) Who is the mayor of Virar?,"PREFIX onto: PREFIX res: PREFIX rdfs: SELECT ?uri ?string WHERE { res:Virar onto:leaderName ?uri OPTIONAL { ?uri rdfs:label ?string FILTER ( lang(?string) = ""en"" ) } }",julipc-p(huggingface) Who is the mayor of the capital of New Caledonia?,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:New_Caledonia onto:capital ?x . ?x onto:mayor ?uri },julipc-p(huggingface) Who is the owner of Mazda?,"PREFIX onto: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:Mazda onto:owner ?uri OPTIONAL { ?uri rdfs:label ?string FILTER ( lang(?string) = ""en"" ) } }",julipc-p(huggingface) Who is the tallest player of Udinese Calcio?,PREFIX onto: PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?uri onto:team res:Udinese_Calcio ; onto:height ?h } ORDER BY DESC(?h) OFFSET 0 LIMIT 1,julipc-p(huggingface) Who is the youngest Snooker player?,PREFIX onto: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:SnookerPlayer ; onto:birthDate ?date } ORDER BY DESC(?date) OFFSET 0 LIMIT 1,julipc-p(huggingface) Who painted Unfinished portrait of General Bonaparte?,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Unfinished_portrait_of_General_Bonaparte onto:author ?uri },julipc-p(huggingface) Who produces Red Bull?,"PREFIX onto: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri onto:product res:Red_Bull OPTIONAL { ?uri rdfs:label ?string FILTER ( lang(?string) = ""en"" ) } }",julipc-p(huggingface) Who were the parents of Maria of Antioch?,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Maria_of_Antioch onto:parent ?uri },julipc-p(huggingface) Who wrote the book Leave It to Psmith?,"PREFIX onto: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:Leave_It_to_Psmith onto:author ?uri OPTIONAL { ?uri rdfs:label ?string FILTER ( lang(?string) = ""en"" ) } }",julipc-p(huggingface) Which software has been published by Electronic Arts?,"PREFIX rdfs: PREFIX rdf: PREFIX onto: PREFIX prop: SELECT ?uri ?string WHERE { ?uri rdf:type onto:Software . ?uri prop:publisher ""Electronic Arts""@en . OPTIONAL {?uri rdfs:label ?string .} FILTER (lang(?string) = ""en"") }",julipc-p(huggingface) "List all episodes of the first season of the HBO television series ""The Sopranos""!","PREFIX rdfs: PREFIX onto: PREFIX res: SELECT ?uri ?string WHERE { ?uri onto:series res:The_Sopranos . ?uri onto:seasonNumber 1 . OPTIONAL {?uri rdfs:label ?string .} FILTER (lang(?string) = ""en"") }",julipc-p(huggingface) "Is Christian Bale starring in ""Batman Begins""?","PREFIX rdf: PREFIX foaf: PREFIX onto: ASK WHERE { ?film rdf:type onto:Film . ?film onto:starring ?actors . ?actors rdfs:label ""Christian Bale""@en . ?film foaf:name ""Batman Begins""@en }",julipc-p(huggingface) "Which companies were founded in California, USA?","PREFIX rdfs: PREFIX onto: PREFIX res: SELECT ?uri ?string WHERE { ?uri a onto:Organisation . ?uri onto:foundationPlace res:California . OPTIONAL {?uri rdfs:label ?string .} FILTER (lang(?string) = ""en"") }",julipc-p(huggingface) Give me all films with Tom Cruise!,"PREFIX rdfs: PREFIX onto: PREFIX res: PREFIX rdf: PREFIX prop: SELECT ?uri ?string WHERE { ?uri rdf:type onto:Film. ?uri prop:starring res:Tom_Cruise. OPTIONAL {?uri rdfs:label ?string .} FILTER (lang(?string) = ""en"") }",julipc-p(huggingface) Which people have as their given name Jimmy?,"PREFIX rdfs: PREFIX rdf: PREFIX foaf: PREFIX onto: SELECT DISTINCT ?uri ?string WHERE { ?uri a foaf:Person. ?uri rdf:type onto:Person. ?uri foaf:givenName ""Jimmy""@en . OPTIONAL {?uri rdfs:label ?string .} FILTER (lang(?string) = ""en"") }",julipc-p(huggingface) Which software has been developed by organizations in California?,"PREFIX rdfs: PREFIX onto: PREFIX res: SELECT ?uri ?string WHERE { ?company a onto:Organisation . ?company onto:foundationPlace res:California . ?uri onto:developer ?company . ?uri a onto:Software . OPTIONAL {?uri rdfs:label ?string .} FILTER (lang(?string) = ""en"") }",julipc-p(huggingface) Who has been the 5th president of the United states of America?,"PREFIX rdf: PREFIX onto: PREFIX rdfs: SELECT ?uri ?string WHERE { ?uri rdf:type onto:President . ?uri onto:orderInOffice ""5th President of the United States""@en . OPTIONAL {?uri rdfs:label ?string .} FILTER (lang(?string) = ""en"") }",julipc-p(huggingface) Which are the presidents of the United States of America?,"PREFIX rdf: PREFIX yago: PREFIX onto: PREFIX res: PREFIX rdfs: PREFIX prop: SELECT DISTINCT ?uri ?string WHERE { { ?uri rdf:type yago:PresidentsOfTheUnitedStates. OPTIONAL {?uri rdfs:label ?string.} FILTER (lang(?string) = ""en"") } UNION { ?uri rdf:type onto:President. ?uri prop:title res:President_of_the_United_States. OPTIONAL {?uri rdfs:label ?string.} FILTER (lang(?string) = ""en"") } }",julipc-p(huggingface) When was Lucas Arts founded?,PREFIX res: PREFIX prop: SELECT ?date WHERE { res:LucasArts prop:foundation ?date . },julipc-p(huggingface) Who is the governor of Texas?,PREFIX res: PREFIX prop: PREFIX foaf: SELECT DISTINCT ?uri ?string WHERE { res:Texas prop:governor ?string . ?uri foaf:name ?string. },julipc-p(huggingface) "Do Harry and William, Princes of Wales, have the same mother?","PREFIX prop: ASK WHERE { prop:mother ?x . prop:mother ?y . FILTER (?x = ?y) }",julipc-p(huggingface) Who developed Skype?,PREFIX onto: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:Skype onto:developer ?uri . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) List all boardgames by GMT.,PREFIX onto: PREFIX res: PREFIX rdfs: SELECT ?uri ?string WHERE { ?uri onto:publisher res:GMT_Games . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) In which U.S. state is Area 51 located?,PREFIX onto: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:Area_51 onto:location ?uri . ?uri onto:country res:United_States . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) Which U.S. State has the abbreviation MN?,PREFIX prop: PREFIX res: PREFIX yago: PREFIX rdf: PREFIX rdfs: SELECT ?uri ?string WHERE { ?uri rdf:type yago:StatesOfTheUnitedStates . ?uri prop:postalabbreviation 'MN'@en . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) Which movies did Sam Raimi direct after Army of Darkness?,PREFIX onto: PREFIX prop: PREFIX res: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type onto:Film . ?uri onto:director res:Sam_Raimi . { ?uri onto:releaseDate ?x . } UNION { ?uri prop:released ?x . } res:Army_of_Darkness onto:releaseDate ?y . FILTER (?x > ?y) OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) ¿Qué libros de Kerouac han sido publicados por Viking Press?,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Book . ?uri onto:publisher res:Viking_Press . ?uri onto:author res:Jack_Kerouac . },julipc-p(huggingface) ¿Qué estados americanos se encuentran en la misma zona que Utah?,PREFIX res: PREFIX prop: PREFIX yago: PREFIX rdf: SELECT DISTINCT ?uri WHERE { res:Utah prop:timezone ?x . ?uri rdf:type yago:StatesOfTheUnitedStates . ?uri prop:timezone ?x . FILTER (?uri != res:Utah) },julipc-p(huggingface) ¿Qué hijas de condes ingleses murieron en sus lugares de nacimiento?,PREFIX onto: PREFIX yago: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:DaughtersOfBritishEarls . ?uri onto:birthPlace ?x . ?uri onto:deathPlace ?y . FILTER (?x != ?y) . },julipc-p(huggingface) ¿Qué instrumentos tocaba John Lennon?,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:John_Lennon onto:instrument ?uri . },julipc-p(huggingface) ¿Cuándo fue construída la estatua de la libertad?,PREFIX prop: PREFIX res: SELECT DISTINCT ?date WHERE { res:Statue_of_Liberty prop:beginningDate ?date . },julipc-p(huggingface) Dame todos los actores de películas dirigidas por William Shatner en las qué también haya actúado el mismo.,PREFIX onto: PREFIX prop: PREFIX res: SELECT DISTINCT ?uri WHERE { ?x onto:director res:William_Shatner . ?x onto:starring res:William_Shatner . { ?x onto:starring ?uri . } UNION { ?x prop:starring ?uri . } },julipc-p(huggingface) Dame todas las personas que hayan nacido en Viena y hayan muerto en Berlin.,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri onto:birthPlace res:Vienna . ?uri onto:deathPlace res:Berlin . },julipc-p(huggingface) ¿Qué altura tiene Michael Jordan?,PREFIX onto: PREFIX res: SELECT DISTINCT ?num WHERE { res:Michael_Jordan onto:height ?num . },julipc-p(huggingface) Dame todas las películas argentinas.,PREFIX onto: PREFIX prop: PREFIX res: PREFIX yago: PREFIX rdf: SELECT DISTINCT ?uri WHERE { { ?uri rdf:type yago:ArgentineFilms . } UNION { ?uri rdf:type onto:Film . { ?uri onto:country res:Argentina . } UNION { ?uri prop:country 'Argentina'@en . } } },julipc-p(huggingface) ¿Cúantos hombres y mujeres trabajan para los bomberos de Nueva York?,PREFIX prop: PREFIX res: SELECT DISTINCT ?num WHERE { res:New_York_City_Fire_Department prop:strength ?num . },julipc-p(huggingface) Dame todas las razas de pastor alemán.,PREFIX prop: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri prop:breed res:German_Shepherd . },julipc-p(huggingface) ¿Quién compuso la música para Harold y Maude?,PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Harold_and_Maude onto:musicComposer ?uri . },julipc-p(huggingface) ¿En qué ciudad fué enterrada la antigua reina de los países bajos Juliana?,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { res:Juliana_of_the_Netherlands onto:restingPlace ?uri. ?uri rdf:type onto:Settlement . },julipc-p(huggingface) ¿Cuál es el apodo de San Francisco?,PREFIX prop: PREFIX res: SELECT DISTINCT ?string WHERE { res:San_Francisco prop:nickname ?string . },julipc-p(huggingface) Dame todos los astronautas de Apolo 14?,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri onto:mission res:Apollo_14 . },julipc-p(huggingface) ¿Dónde vive el primer ministor de España?,PREFIX prop: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Prime_Minister_of_Spain prop:residence ?uri . },julipc-p(huggingface) ¿Qué otras armas desarrolló el inventor del Uzi?,PREFIX onto: PREFIX prop: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Weapon . ?uri prop:designer ?x . res:Uzi prop:designer ?x . FILTER (?uri != res:Uzi) },julipc-p(huggingface) ¿Por qué países se extiende el Himalaya?,PREFIX prop: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Himalayas prop:country ?uri . },julipc-p(huggingface) ¿En qué año fue fundada la cervecería que produce Pilsner Urquell?,PREFIX prop: PREFIX res: SELECT DISTINCT ?num WHERE { res:Pilsner_Urquell prop:brewery ?uri . ?uri prop:foundation ?num . },julipc-p(huggingface) ¿De qué país viene el creador de Nijntje?,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Miffy onto:creator ?x . ?x onto:nationality ?uri . },julipc-p(huggingface) ¿Fue Margaret Thatcher química?,PREFIX res: PREFIX onto: ASK WHERE { res:Margaret_Thatcher onto:profession res:Chemist . },julipc-p(huggingface) ¿Qué ciudades alemanas tienen más de 250000 habitantes?,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { { ?uri rdf:type onto:City . } UNION { ?uri rdf:type onto:Town . } ?uri onto:country res:Germany . ?uri onto:populationTotal ?population . FILTER ( ?population > 250000 ) },julipc-p(huggingface) ¿Qué discográfica grabó el primer album de Elvis?,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?x rdf:type onto:Album . ?x onto:artist res:Elvis_Presley . ?x onto:releaseDate ?y . ?x onto:recordLabel ?uri . } ORDER BY ASC(?y) LIMIT 1,julipc-p(huggingface) ¿Cuál es la capital de Canadá?,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Canada onto:capital ?uri . },julipc-p(huggingface) ¿En qué estado american se encuentra Fort Knox?,PREFIX onto: PREFIX prop: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Fort_Knox prop:location ?uri . ?uri onto:country res:United_States . },julipc-p(huggingface) Dame una lista de todos los trompeteros que fueron líderes de un grupo.,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri onto:occupation res:Bandleader . ?uri onto:instrument res:Trumpet . },julipc-p(huggingface) ¿Tienen el príncipe Harry y el prínciple William la misma madre?,"PREFIX prop: ASK WHERE { prop:mother ?x . prop:mother ?y . FILTER (?x = ?y) }",julipc-p(huggingface) ¿En qué conflictos militares participó Lawrence de Arabia?,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:T._E._Lawrence onto:battle ?uri . },julipc-p(huggingface) ¿Quién desarrolló Minecraft?,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Minecraft onto:developer ?uri . },julipc-p(huggingface) ¿Cuántas misiones espaciales ha habido?,PREFIX onto: PREFIX rdf: SELECT COUNT(DISTINCT ?uri) WHERE { ?uri rdf:type onto:SpaceMission . },julipc-p(huggingface) Dame todos los coches producidos en Alemania.,PREFIX onto: PREFIX prop: PREFIX res: PREFIX yago: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Automobile . { ?uri prop:production res:Germany . } UNION { ?uri prop:assembly res:Germany . } UNION { ?uri prop:manufacturer ?x . { ?x onto:locationCountry res:Germany . } UNION { ?x rdf:type yago:AutomotiveCompaniesOfGermany . } } },julipc-p(huggingface) Dame una lista de todos los inventos americanos.,PREFIX yago: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:AmericanInventions . },julipc-p(huggingface) ¿Cuántos hijos tuvo Benjamin Franklin?,PREFIX res: PREFIX onto: SELECT COUNT(DISTINCT ?uri) WHERE { res:Benjamin_Franklin onto:child ?uri . },julipc-p(huggingface) ¿Quién fué el sucesor de John F. Kennedy?,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:John_F._Kennedy onto:successor ?uri . },julipc-p(huggingface) ¿Es Michele Obama la esposa de Barack Obama?,PREFIX onto: PREFIX res: ASK WHERE { res:Barack_Obama onto:spouse res:Michelle_Obama . },julipc-p(huggingface) Dame una lista de los hijos de Margaret Thatcher.,PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Margaret_Thatcher onto:child ?uri . },julipc-p(huggingface) ¿Quién es el jugador más jóven de la Premier League?,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri onto:team ?x . ?x onto:league res:Premier_League . ?uri onto:birthDate ?y . } ORDER BY DESC(?y) OFFSET 0 LIMIT 1,julipc-p(huggingface) ¿En 2013 qué patrimonios de la humanidad fueron reconocidos en los últimos cinco años?,PREFIX onto: PREFIX prop: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:WorldHeritageSite . ?uri prop:year ?x . FILTER(DATATYPE(?x) = xsd:integer && ?x >= 2008 ) },julipc-p(huggingface) ¿Fué Dutch Schultz judío?,PREFIX prop: PREFIX res: ASK WHERE { res:Dutch_Schultz prop:ethnicity 'Jewish'@en . },julipc-p(huggingface) ¿Cuál es la segunda montaña más alta de la tierra?,PREFIX onto: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Mountain . ?uri onto:elevation ?elevation . } ORDER BY DESC(?elevation) OFFSET 1 LIMIT 1,julipc-p(huggingface) Dame todos los libros de Wiliam Goldman con más de 300 páginas.,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Book . ?uri onto:author res:William_Goldman . ?uri onto:numberOfPages ?x . FILTER (?x > 300) },julipc-p(huggingface) ¿Cuántas veces ha estado casada Nicole Kidman?,PREFIX onto: PREFIX res: SELECT COUNT(DISTINCT ?x) WHERE { res:Nicole_Kidman onto:spouse ?x . },julipc-p(huggingface) ¿Cuál es la cuidad más grande de Australia?,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Australia onto:largestCity ?uri . },julipc-p(huggingface) ¿Quién pintó el Cristo en la tormenta en el lago de Galilea?,PREFIX prop: PREFIX res: SELECT DISTINCT ?uri WHERE { res:The_Storm_on_the_Sea_of_Galilee prop:artist ?uri . },julipc-p(huggingface) Dame todas las plataformas de lanzamiento operadas por la NASA.,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:LaunchPad . ?uri onto:operator res:NASA . },julipc-p(huggingface) ¿Quién escribió el texto del himno de Polonia?,PREFIX onto: PREFIX prop: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Poland onto:anthem ?x . ?x prop:author ?uri . },julipc-p(huggingface) ¿Quién creó el comic Capitán América?,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Captain_America onto:creator ?uri . },julipc-p(huggingface) ¿Quién fue el padre de la reina Isabel II?,PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Elizabeth_II prop:father ?uri . },julipc-p(huggingface) ¿Qué estado americano tiene la abreviación MN?,PREFIX prop: PREFIX yago: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:StatesOfTheUnitedStates . ?uri prop:postalabbreviation 'MN'@en . },julipc-p(huggingface) ¿Qué películas ha rodado Kurosawa después de Rashomon?,PREFIX onto: PREFIX prop: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Film . ?uri onto:director res:Akira_Kurosawa . { ?uri onto:releaseDate ?x . } UNION { ?uri prop:released ?x . } onto:releaseDate ?y . FILTEr (?y > ?x) },julipc-p(huggingface) ¿Qué surfistas profesionales nacieron en las Filipinas?,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri onto:occupation res:Surfing . ?uri onto:birthPlace res:Philippines . },julipc-p(huggingface) Dame todos los jefes de estado actuales que sean metodístas.,PREFIX prop: PREFIX res: PREFIX yago: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:CurrentNationalLeaders . ?uri prop:religion res:Methodism . },julipc-p(huggingface) ¿En qué películas con Clint Eastwood están dirigidas por él mismo?,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri onto:director res:Clint_Eastwood . ?uri onto:starring res:Clint_Eastwood . },julipc-p(huggingface) ¿Quién son los padres de la esposa de Juan Carlos I?,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Juan_Carlos_I_of_Spain onto:spouse ?x . ?x onto:parent ?uri . },julipc-p(huggingface) ¿Cuál es el nombre de soltera de Angela Merkel?,PREFIX prop: PREFIX res: SELECT DISTINCT ?string WHERE { res:Angela_Merkel prop:birthName ?string . },julipc-p(huggingface) ¿Quién era llamado Scarface?,PREFIX prop: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri prop:nickname res:Scarface . },julipc-p(huggingface) ¿Cuál es el río más largo?,PREFIX onto: PREFIX prop: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:River . ?uri prop:length ?x . } ORDER BY DESC(?x) OFFSET 0 LIMIT 1,julipc-p(huggingface) ¿Tuvo Sócrates influencia sobre Aristóteles?,PREFIX onto: PREFIX res: ASK WHERE { res:Aristotle onto:influencedBy res:Socrates . },julipc-p(huggingface) ¿En qué ciudad del reino unido se encuentra el cuartel genetal del MI6?,PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Secret_Intelligence_Service onto:headquarter ?uri . ?uri onto:country res:United_Kingdom . },julipc-p(huggingface) ¿En qué zona horaria se encuentra Salt Lake City?,PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Salt_Lake_City prop:timezone ?uri . },julipc-p(huggingface) Dame todos los juegos de GMT.,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri onto:publisher res:GMT_Games . },julipc-p(huggingface) ¿Tiene la nueve serie de Battlestar-Galactica más episodios que la anterior?,PREFIX onto: PREFIX res: ASK WHERE { onto:numberOfEpisodes ?x . onto:numberOfEpisodes ?y . FILTER (?y > ?x) },julipc-p(huggingface) ¿Cúando fué fundada la provincia de Alberta?,PREFIX prop: PREFIX res: SELECT DISTINCT ?date WHERE { res:Alberta prop:admittancedate ?date . },julipc-p(huggingface) ¿Qué países une el Rhin?,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Rhine onto:country ?uri . },julipc-p(huggingface) Dame todas la islas frisias que pertenezcan a los Países Bajos.,PREFIX onto: PREFIX res: PREFIX yago: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:FrisianIslands . ?uri onto:country res:Netherlands . },julipc-p(huggingface) ¿Qué barcos fueron bautizados en honor a Benjamin Franklin?,PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?uri prop:shipNamesake res:Benjamin_Franklin . },julipc-p(huggingface) ¿Quién es el marido de Amanda Palmer?,PREFIX prop: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Amanda_Palmer prop:spouse ?uri . },julipc-p(huggingface) ¿Cuántos empleados tiene Google?,PREFIX res: PREFIX onto: SELECT DISTINCT ?num WHERE { res:Google onto:numberOfEmployees ?num . },julipc-p(huggingface) ¿Cuándo murió Michael Jackson?,PREFIX onto: PREFIX res: SELECT DISTINCT ?date WHERE { res:Michael_Jackson onto:deathDate ?date . },julipc-p(huggingface) ¿Cuántos habitantes tiene Maribor?,PREFIX onto: PREFIX res: SELECT DISTINCT ?num WHERE { res:Maribor onto:populationTotal ?num . },julipc-p(huggingface) Dame una lista de todos los lagos en Dinamarca.,PREFIX onto: PREFIX res: PREFIX yago: PREFIX rdf: SELECT DISTINCT ?uri WHERE { { ?uri rdf:type onto:Lake . ?uri onto:country res:Denmark . } UNION { ?uri rdf:type yago:LakesOfDenmark . } },julipc-p(huggingface) ¿Qué diosas griegas habitan el Olimpo?,PREFIX prop: PREFIX res: PREFIX yago: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:GreekGoddesses . ?uri prop:abode res:Mount_Olympus . },julipc-p(huggingface) ¿Qué alto es el Monte Everest?,PREFIX onto: PREFIX res: SELECT DISTINCT ?num WHERE { res:Mount_Everest onto:elevation ?num. },julipc-p(huggingface) ¿De qué estado americano es Sean Parnell el gobernador?,PREFIX yago: PREFIX prop: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:StatesOfTheUnitedStates . ?uri prop:governor res:Sean_Parnell . },julipc-p(huggingface) ¿Obtuvo Tesla el premio nobel de física?,PREFIX onto: PREFIX res: ASK WHERE { res:Nikola_Tesla onto:award res:Nobel_Prize_in_Physics . },julipc-p(huggingface) ¿Quién es el gobernador de Wyoming?,PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Wyoming prop:governor ?uri . },julipc-p(huggingface) ¿Cúando se fundaron los Hells Angels?,PREFIX prop: PREFIX res: SELECT DISTINCT ?date WHERE { res:Hells_Angels prop:founded ?date . },julipc-p(huggingface) ¿Quién es el alcalde de Berlin?,PREFIX onto: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri WHERE { res:Berlin onto:leader ?uri . },julipc-p(huggingface) ¿Cuánta gente vive en la capital de Australia?,PREFIX onto: PREFIX res: SELECT DISTINCT ?num WHERE { res:Australia onto:capital ?x . ?x onto:populationTotal ?num . },julipc-p(huggingface) ¿Quién fundó Intel?,PREFIX onto: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri WHERE { res:Intel onto:foundedBy ?uri . },julipc-p(huggingface) Dame todas las caras B de los Ramones.,PREFIX onto: PREFIX prop: PREFIX res: SELECT DISTINCT ?string WHERE { ?x onto:musicalArtist res:Ramones . ?x prop:bSide ?string . },julipc-p(huggingface) ¿Por qué ciudades pasa el río Weser?,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Weser onto:city ?uri . },julipc-p(huggingface) Dame todas las películas que haya dirigido Francis Ford Coppola.,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Film . ?uri onto:director res:Francis_Ford_Coppola . },julipc-p(huggingface) ¿Qué partido gobierna en Lisboa?,PREFIX prop: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Lisbon prop:leaderParty ?uri . },julipc-p(huggingface) ¿Quién produce Orangina?,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri onto:product res:Orangina . },julipc-p(huggingface) Dame todas las empresas de Munich?,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Company . { ?uri onto:location res:Munich . } UNION { ?uri onto:headquarter res:Munich . } UNION { ?uri onto:locationCity res:Munich . } },julipc-p(huggingface) ¿Fué la crisis de cuba antes de la invasión de bahía de cochinos?,PREFIX onto: PREFIX res: ASK WHERE { res:Cuban_Missile_Crisis onto:date ?x . res:Bay_of_Pigs_Invasion onto:date ?y . FILTER (?x < ?y) },julipc-p(huggingface) ¿Quién es el conductor de Formula 1 con más carreras?,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:FormulaOneRacer . ?uri onto:races ?x . } ORDER BY DESC(?x) OFFSET 0 LIMIT 1,julipc-p(huggingface) ¿Qué estado americano fué el último en ser admitido?,PREFIX prop: PREFIX yago: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:StatesOfTheUnitedStates . ?uri prop:admittancedate ?x . } ORDER BY DESC(?x) OFFSET 0 LIMIT 1,julipc-p(huggingface) ¿Cuántos idiomas oficiales se hablan en las Seychelles?,PREFIX onto: PREFIX res: SELECT COUNT(DISTINCT ?x) WHERE { res:Seychelles onto:officialLanguage ?x . },julipc-p(huggingface) ¿Enseñame todas las canciones de Bruce Springsteen que aparecieron entre 1980 y 1990.,PREFIX onto: PREFIX res: PREFIX yago: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Song . ?uri onto:artist res:Bruce_Springsteen . ?uri onto:releaseDate ?date . FILTER (?date >= '1980-01-01'^^xsd:date && ?date <= '1990-12-31'^^xsd:date) },julipc-p(huggingface) Dame todos las skateboarders profesionales de Suecia.,PREFIX onto: PREFIX prop: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri onto:occupation res:Skateboarding . { ?uri onto:birthPlace res:Sweden . } UNION { ?uri onto:birthPlace ?place . ?place onto:country res:Sweden . } },julipc-p(huggingface) Dame todos los miembros de la banda Prodigy.,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:The_Prodigy onto:bandMember ?uri . },julipc-p(huggingface) ¿Cuántos estudiantes tiene la Universidad Libre de Amsterdam?,PREFIX onto: PREFIX res: SELECT DISTINCT ?num WHERE { res:Vrije_Universiteit onto:numberOfStudents ?num . },julipc-p(huggingface) Dame todas las organizaciones benéficas de Australia.,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri onto:type res:Nonprofit_organization . { ?uri onto:locationCountry res:Australia . } UNION { ?uri onto:location ?x . ?x onto:country res:Australia . } },julipc-p(huggingface) ¿Cuántas veces ha estado casada Jane Fonda?,PREFIX onto: PREFIX res: SELECT COUNT(DISTINCT ?uri) WHERE { res:Jane_Fonda onto:spouse ?uri . },julipc-p(huggingface) ¿Cuál el la página de Web oficial de Tom Cruise?,PREFIX prop: PREFIX res: SELECT DISTINCT ?string WHERE { res:Tom_Cruise prop:website ?string . },julipc-p(huggingface) ¿Que estado de los estados unidos de america tiene la mayor densidad de población?,PREFIX yago: PREFIX prop: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:StatesOfTheUnitedStates . ?uri prop:densityrank ?rank . } ORDER BY ASC(?rank) OFFSET 0 LIMIT 1,julipc-p(huggingface) ¿Quién creó Wikipedia?,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Wikipedia onto:author ?uri . },julipc-p(huggingface) ¿Cuántas películas ha producido Hal Roach?,PREFIX onto: PREFIX res: SELECT COUNT(DISTINCT ?uri) WHERE { ?uri onto:producer res:Hal_Roach . },julipc-p(huggingface) ¿En qué país nace el Nilo?,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Nile onto:sourceCountry ?uri . },julipc-p(huggingface) Dame todos los cancilleres alemanos.,PREFIX prop: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri prop:office res:Chancellor_of_Germany . },julipc-p(huggingface) ¿En qué estados federales de Alemania gobierna la SPD?,PREFIX prop: PREFIX onto: PREFIX res: PREFIX yago: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:StatesOfGermany . { ?uri onto:leaderParty res:Social_Democratic_Party_of_Germany . } UNION { ?uri prop:rulingParty 'SPD'@en . } },julipc-p(huggingface) ¿Por qué río cruza la Brooklyn Bridge?,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Brooklyn_Bridge onto:crosses ?uri . },julipc-p(huggingface) ¿Cómo de alta es Claudia Schiffer?,PREFIX res: PREFIX onto: SELECT DISTINCT ?height WHERE { res:Claudia_Schiffer onto:height ?height . },julipc-p(huggingface) ¿Qué series televisivas ideó Walt Disney?,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:TelevisionShow . ?uri onto:creator res:Walt_Disney . },julipc-p(huggingface) Dame todas las páginas de Web de empresas con más de 500000 empleados.,PREFIX onto: PREFIX prop: PREFIX rdf: PREFIX xsd: SELECT DISTINCT ?string WHERE { ?c rdf:type onto:Company . { ?c onto:numberOfEmployees ?employees . } UNION { ?c prop:numEmployees ?employees . } FILTER( xsd:integer(?employees) > 500000 ) . ?c prop:homepage ?string . },julipc-p(huggingface) Dame todas las cuidades en New Jersey que tengan más de 100000 habitantes.,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:City . ?uri onto:isPartOf res:New_Jersey . ?uri onto:populationTotal ?inhabitants . FILTER (?inhabitants > 100000) . },julipc-p(huggingface) ¿Qué actores nacieron en Alemania?,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Actor . { ?uri onto:birthPlace res:Germany . } UNION { ?uri onto:birthPlace ?place . ?place onto:country res:Germany . } },julipc-p(huggingface) ¿Qué países tienes más de dos lenguas oficiales?,PREFIX onto: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Country . ?uri onto:officialLanguage ?language . } GROUP BY ?uri HAVING (COUNT(?language) > 2),julipc-p(huggingface) ¿En qué estado de los estados unidos se encuentra el monte McKinley?,PREFIX yago: PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:StatesOfTheUnitedStates . res:Mount_McKinley onto:locatedInArea ?uri . },julipc-p(huggingface) Dame todas las películas con Tom Cruise,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Film. ?uri onto:starring res:Tom_Cruise . },julipc-p(huggingface) ¿Cuál es la idioma oficial de Surinam?,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Suriname onto:officialLanguage ?uri . },julipc-p(huggingface) ¿Quen escribió el libro Los pilares de la Tierra?,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:The_Pillars_of_the_Earth onto:author ?uri . },julipc-p(huggingface) ¿Qué empresas aerospaciales trabajar también en en medicina?,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Company . ?uri onto:industry res:Aerospace . ?uri onto:industry res:Medicine . },julipc-p(huggingface) ¿Qué idiomas se hablan en Estonia?,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri onto:spokenIn res:Estonia . },julipc-p(huggingface) ¿Son las ranas verdes un tipo de anfibio?,PREFIX onto: PREFIX res: ASK WHERE { res:Hylidae onto:class res:Amphibian . },julipc-p(huggingface) ¿Cuándo ingresó Letonia a la unión europea?,PREFIX res: PREFIX prop: SELECT DISTINCT ?date WHERE { res:Latvia prop:accessioneudate ?date . },julipc-p(huggingface) ¿Qué países tienen más de diez cuevas?,PREFIX onto: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Country . ?cave rdf:type onto:Cave . { ?cave onto:location ?uri . } UNION { ?cave onto:location ?loc . ?loc onto:country ?uri . } } GROUP BY ?uri HAVING(COUNT(?cave) > 10),julipc-p(huggingface) ¿Quién es el creador de Goofy?,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Goofy onto:creator ?uri . },julipc-p(huggingface) Dame todos los club de fútbol de España.,"PREFIX onto: PREFIX prop: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:SoccerClub . { ?uri onto:ground res:Spain . } UNION { ?uri prop:ground ?ground . FILTER (regex(?ground,'Spain')) } }",julipc-p(huggingface) ¿Qué cuevas tienen más de 3 entradas?,PREFIX onto: PREFIX prop: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Cave . ?uri prop:entranceCount ?entrance . FILTER (?entrance > 3) . },julipc-p(huggingface) ¿Qué países han introducido el Euro?,PREFIX prop: PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Country . { ?uri onto:currency res:Euro . } UNION { ?uri prop:currencyCode 'EUR'@en . } },julipc-p(huggingface) Dame todos los nombres propios femeninos.,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:GivenName . ?uri onto:gender res:Female . },julipc-p(huggingface) ¿Fué Marc Chagall judío?,PREFIX prop: PREFIX res: ASK WHERE { res:Marc_Chagall prop:ethnicity 'Jewish'@en . },julipc-p(huggingface) ¿Qué presidentes nacieron en 1945?,"PREFIX onto: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:President . ?uri onto:birthDate ?date . FILTER regex(?date, '^1945') . }",julipc-p(huggingface) ¿Cuántas tiendas Aldi hay?,PREFIX res: PREFIX onto: SELECT DISTINCT ?number WHERE { res:Aldi onto:numberOfLocations ?number . },julipc-p(huggingface) ¿Estuvo el el presidente de los estados unidos Jackson involucrado en una guerra?,PREFIX onto: PREFIX res: ASK WHERE { res:Andrew_Jackson onto:battle ?battle . },julipc-p(huggingface) ¿En qué museo está expuesto el Grito de Munch?,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:The_Scream onto:museum ?uri . },julipc-p(huggingface) Dame las capitales de todos los países africanos.,PREFIX onto: PREFIX yago: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?states rdf:type yago:AfricanCountries . ?states onto:capital ?uri . },julipc-p(huggingface) ¿Qué estados tienen frontera con Illinois?,PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Illinois prop:borderingstates ?uri . },julipc-p(huggingface) Dame todas la islas que pertenezcan a Japón.,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Island . ?uri onto:country res:Japan . },julipc-p(huggingface) ¿Quién diseñó la Brooklyn Bridge?,PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Brooklyn_Bridge prop:designer ?uri . },julipc-p(huggingface) ¿Quién era el primer presidente de los Estados Unidos?,PREFIX onto: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Person . ?uri onto:office '1st President of the United States'@en . },julipc-p(huggingface) ¿Cuál es la montaña más alta de Australia?,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Mountain . ?uri onto:locatedInArea res:Australia . ?uri onto:elevation ?elevation . } ORDER BY DESC(?elevation) OFFSET 0 LIMIT 1,julipc-p(huggingface) ¿Cuántos aeropuertos hay en California?,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Airport . { ?uri onto:location res:California . } UNION { ?uri onto:city res:California . } UNION { ?uri onto:city ?city . ?city onto:isPartOf res:California . } UNION { ?uri onto:operator res:California . } },julipc-p(huggingface) ¿Qué jugadores de ajedrez murieron en sus lugares de nacimiento?,PREFIX onto: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:ChessPlayer . ?uri onto:birthPlace ?x . ?uri onto:deathPlace ?y . FILTER (?x = ?y) . },julipc-p(huggingface) ¿En qué capitales europeas tuvieron lugar los juegos olímpicos de verano?,PREFIX yago: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:CapitalsInEurope . ?uri rdf:type yago:HostCitiesOfTheSummerOlympicGames . },julipc-p(huggingface) ¿Quién fué la mujer del presidente americano Lincoln?,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Abraham_Lincoln onto:spouse ?uri. },julipc-p(huggingface) Dame todos los actores de películas dirigidas por William Shatner.,PREFIX onto: PREFIX prop: PREFIX res: SELECT DISTINCT ?uri WHERE { ?x onto:director res:William_Shatner . ?x onto:starring ?uri . },julipc-p(huggingface) ¿Qué surfistas profesionales nacieron en Australia?,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri onto:occupation res:Surfing . ?uri onto:birthPlace res:Australia . },julipc-p(huggingface) ¿Quién es el editor de Forbes?,PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Forbes onto:editor ?uri . },julipc-p(huggingface) Dame todos los actores que hayan actuado en Last Action Hero.,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Last_Action_Hero onto:starring ?uri . },julipc-p(huggingface) ¿En qué lenguaje de programación esta programado GIMP?,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:GIMP onto:programmingLanguage ?uri . },julipc-p(huggingface) ¿En qué país se encuentra el lago Limerick?,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Limerick_Lake onto:country ?uri . },julipc-p(huggingface) Dame todos los videojuegos de Mean Hamster Software.,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:VideoGame . ?uri onto:publisher res:Mean_Hamster_Software . },julipc-p(huggingface) ¿Quién ha producido películas en las que actua Natalie Portman?,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?film rdf:type onto:Film . ?film onto:starring res:Natalie_Portman . ?film onto:producer ?uri . },julipc-p(huggingface) ¿En qué películas actúan Julia Roberts y Richard Gere?,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Film . ?uri onto:starring res:Julia_Roberts . ?uri onto:starring res:Richard_Gere. },julipc-p(huggingface) ¿Nació Natalie Portman en los estados unidos de américa?,PREFIX onto: PREFIX res: ASK WHERE { res:Natalie_Portman onto:birthPlace ?city . ?city onto:country res:United_States . },julipc-p(huggingface) ¿En cuántas películas ha actuado Leonardo DiCaprio?,PREFIX onto: PREFIX res: PREFIX rdf: SELECT COUNT(DISTINCT ?uri) WHERE { ?uri rdf:type onto:Film . ?uri onto:starring res:Leonardo_DiCaprio . },julipc-p(huggingface) Dame todas las películas danesas.,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Film . ?uri onto:country res:Denmark . },julipc-p(huggingface) Dame los cumpleaños de los actores de la serie de televisión Charmed.,PREFIX onto: PREFIX res: SELECT DISTINCT ?date WHERE { res:Charmed onto:starring ?actor . ?actor onto:birthDate ?date . },julipc-p(huggingface) ¿En qué ciudad murió John F. Kennedy?,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { res:John_F._Kennedy onto:deathPlace ?uri . ?uri rdf:type onto:City . },julipc-p(huggingface) ¿Quién ha producido más películas?,PREFIX onto: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?film rdf:type onto:Film . ?film onto:producer ?uri . } ORDER BY DESC(COUNT(?film)) OFFSET 0 LIMIT 1,julipc-p(huggingface) ¿Hay algún videojuego que se llame Battle Chess?,PREFIX onto: PREFIX rdf: PREFIX rdfs: ASK WHERE { ?uri rdf:type onto:VideoGame . ?uri rdfs:label 'Battle Chess'@en . },julipc-p(huggingface) ¿Qué montañas son más altas que el Nanga Parbat?,PREFIX onto: PREFIX prop: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { res:Nanga_Parbat onto:elevation ?elevation . ?uri rdf:type onto:Mountain . { ?uri onto:elevation ?otherelevation . } UNION { ?uri prop:elevationM ?otherelevation . } FILTER (?otherelevation > ?elevation) . },julipc-p(huggingface) Dame todos los episodios de la prímera época de la serie de HBO Los Sporanos.,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri onto:series res:The_Sopranos . ?uri onto:seasonNumber 1 . },julipc-p(huggingface) ¿Qué empresas de telecomunicaciones tienen su sede en Bélgica?,"PREFIX onto: PREFIX prop: PREFIX res: PREFIX rdf: SELECT COUNT(DISTINCT ?uri) WHERE { ?uri rdf:type onto:Organisation . { ?uri onto:industry res:Telecommunication . } UNION { ?uri prop:industry ?industry . FILTER (regex(?industry,'Telecommunications')) . } { ?uri onto:location res:Belgium. } UNION { ?uri prop:locationCountry 'Belgium'@en . } }",julipc-p(huggingface) ¿La mujer del presidente Obama se llama Michelle?,"PREFIX onto: PREFIX res: PREFIX rdfs: ASK WHERE { res:Barack_Obama onto:spouse ?spouse . ?spouse rdfs:label ?name . FILTER(regex(?name,'Michelle')) }",julipc-p(huggingface) ¿Cuál es la montaña más alta?,PREFIX onto: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Mountain . ?uri onto:elevation ?elevation . } ORDER BY DESC(?elevation) OFFSET 0 LIMIT 1,julipc-p(huggingface) Dame todos las empresas canadienses productoras de música Grunge.,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:RecordLabel . ?uri onto:genre res:Grunge . ?uri onto:country res:Canada . },julipc-p(huggingface) ¿En qué películas dirigidas por Garry Mashall actuó Julia Roberts?,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Film . ?uri onto:starring res:Julia_Roberts . ?uri onto:director res:Garry_Marshall . },julipc-p(huggingface) ¿Actúa Christian Bale en Velvet Goldmine?,PREFIX onto: PREFIX res: ASK WHERE { res:Velvet_Goldmine onto:starring res:Christian_Bale . },julipc-p(huggingface) ¿Quién desarrolló el videojuego Warcraft?,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:World_of_Warcraft onto:developer ?uri . },julipc-p(huggingface) ¿Por qué países fluye el río Yenisei?,PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Yenisei_River onto:country ?uri . },julipc-p(huggingface) ¿Qué empresas fueron fundadas en 1930?,"PREFIX onto: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Organisation . { ?uri onto:formationYear ?date . } UNION { ?uri onto:foundingYear ?date. } FILTER regex(?date,'^1930') . }",julipc-p(huggingface) ¿Cuántos empleados tiene IBM?,PREFIX onto: PREFIX res: SELECT DISTINCT ?number WHERE { res:IBM onto:numberOfEmployees ?number . },julipc-p(huggingface) Dame todas las cosmonautas.,PREFIX rdf: PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Astronaut . { ?uri onto:nationality res:Russia . } UNION { ?uri onto:nationality res:Soviet_Union . } },julipc-p(huggingface) ¿Quién es el alcalde de Tel Aviv?,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Tel_Aviv onto:leaderName ?uri . },julipc-p(huggingface) ¿Cuál es la montaña más alta después del Annapurna?,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { res:Annapurna onto:elevation ?elevation . ?uri rdf:type onto:Mountain . ?uri onto:elevation ?otherelevation . FILTER (?otherelevation < ?elevation) . } ORDER BY DESC(?otherelevation) OFFSET 0 LIMIT 1,julipc-p(huggingface) ¿Tiene Breaking Bad más episodios que Game of Thrones?,PREFIX onto: PREFIX res: ASK WHERE { res:Breaking_Bad onto:numberOfEpisodes ?x . res:Game_of_Thrones onto:numberOfEpisodes ?y . FILTER (?y > ?x) },julipc-p(huggingface) Dame una lista de todos los líderes de un grupo que tocan la trompeta.,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri onto:occupation res:Bandleader . ?uri onto:instrument res:Trumpet . },julipc-p(huggingface) ¿Cuándo tuvo lugar la batalla de Gettysburg?,PREFIX onto: PREFIX res: SELECT DISTINCT ?date WHERE { res:Battle_of_Gettysburg onto:date ?date . },julipc-p(huggingface) ¿Cuántos idiomas se hablan en Turkmenistán?,PREFIX onto: PREFIX res: SELECT COUNT(DISTINCT ?x) WHERE { res:Turkmenistan onto:language ?x . },julipc-p(huggingface) ¿Todavía vive Frank Herbert?,PREFIX onto: PREFIX res: ASK WHERE { OPTIONAL { res:Frank_Herbert onto:deathDate ?date . } FILTER (!BOUND(?date)) },julipc-p(huggingface) ¿La proinsulina es una proteina?,PREFIX onto: PREFIX res: PREFIX rdf: ASK WHERE { res:Proinsulin rdf:type onto:Protein . },julipc-p(huggingface) ¿Qué premios ha ganado WikiLeaks?,PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:WikiLeaks prop:awards ?uri . },julipc-p(huggingface) ¿Qué país tiene más idiomas oficiales?,PREFIX onto: PREFIX prop: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Country . ?uri prop:officialLanguages ?language . } ORDER BY DESC(COUNT(?language)) OFFSET 0 LIMIT 1,julipc-p(huggingface) Dame todos los países comunistas.,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Country . { ?uri onto:governmentType res:Communism . } UNION { ?uri onto:governmentType res:Communist_state . } },julipc-p(huggingface) ¿Qué instrumentos tocaba Cat Stevens?,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Cat_Stevens onto:instrument ?uri . },julipc-p(huggingface) Dame todos los libros escritos por Danielle Steel.,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Book . ?uri onto:author res:Danielle_Steel . },julipc-p(huggingface) ¿A quién le pertenecen los Universal Studios?,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Universal_Studios onto:owner ?uri . },julipc-p(huggingface) ¿Con quién está casada la hija de Ingrid Bergman?,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Ingrid_Bergman onto:child ?child . ?child onto:spouse ?uri . },julipc-p(huggingface) Dame todas las bibliotecas que fueron establecidas antes de 1400.,PREFIX onto: PREFIX prop: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Library . ?uri prop:established ?year . FILTER (?year < 1400) },julipc-p(huggingface) ¿Es la cuidad más grande de Egipto también capital?,PREFIX res: PREFIX onto: ASK WHERE { res:Egypt onto:largestCity ?large . res:Egypt onto:capital ?capital . FILTER (?large = ?capital) },julipc-p(huggingface) ¿Cuántos países existen en Europa?,PREFIX yago: PREFIX rdf: SELECT COUNT(DISTINCT ?uri) WHERE { ?uri rdf:type yago:EuropeanCountries . },julipc-p(huggingface) Dame todas las películas del producente Hal Roach.,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Film . ?uri onto:producer res:Hal_Roach . },julipc-p(huggingface) ¿Qué puentes son del mismo tipo que el puente de Manhattan?,PREFIX onto: PREFIX prop: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Bridge . ?uri prop:design ?design . res:Manhattan_Bridge prop:design ?mdesign . FILTER (?design = ?mdesign && ?uri != res:Manhattan_Bridge) . },julipc-p(huggingface) ¿Cuál es el prefijo de Berlin?,PREFIX onto: PREFIX res: SELECT DISTINCT ?string WHERE { res:Berlin onto:areaCode ?string . },julipc-p(huggingface) ¿Qué productos de software han sido desarrollados por empresas fundadas en California?,PREFIX rdf: PREFIX onto: PREFIX prop: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Software . ?company rdf:type onto:Company . ?uri onto:developer ?company . { ?company onto:foundationPlace res:California . } UNION { ?company prop:foundation res:California . } },julipc-p(huggingface) ¿Cuál es la moneda de la república checa?,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Czech_Republic onto:currency ?uri . },julipc-p(huggingface) ¿Qué albums musicales contienen la canción Las Christmas?,PREFIX onto: PREFIX rdfs: SELECT DISTINCT ?uri WHERE { ?single onto:album ?uri . ?single rdfs:label 'Last Christmas'@en . },julipc-p(huggingface) ¿Qué patrimonios de la humanidad fueron reconocidos en los últimos dos años?,PREFIX onto: PREFIX prop: PREFIX rdf: PREFIX xsd: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:WorldHeritageSite . ?uri prop:year ?x . FILTER ( ?x >= '2012'^^xsd:integer) },julipc-p(huggingface) Dame todas las empresas publicitarias.,"PREFIX prop: PREFIX onto: PREFIX res: PREFIX rdf: SELECT COUNT(DISTINCT ?uri) WHERE { ?uri rdf:type onto:Company . ?uri prop:industry ?industry . FILTER regex(?industry,'advertising','i') . }",julipc-p(huggingface) ¿Quién fué el vicepresidente de John F. Kennedy?,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:John_F._Kennedy onto:vicePresident ?uri . },julipc-p(huggingface) ¿Cúando se fundó Capcom?,PREFIX onto: PREFIX res: SELECT DISTINCT ?date WHERE { res:Capcom onto:foundingDate ?date . },julipc-p(huggingface) Dame todos los políticos que sean metodístas.,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Politician . ?uri onto:religion res:Methodism . },julipc-p(huggingface) ¿Cuál es el punto más alto del montes Urales?,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Ural_Mountains onto:highestPlace ?uri . },julipc-p(huggingface) Dame todos los clubs de la Premier League.,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:SoccerClub . ?uri onto:league res:Premier_League . },julipc-p(huggingface) ¿Qué monárcas estaban casados con una persona alemana?,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Monarch . ?uri onto:spouse ?spouse . { ?spouse onto:birthPlace res:Germany. } UNION { ?spouse onto:birthPlace ?p . ?p onto:country res:Germany. } },julipc-p(huggingface) ¿De qué murió Bruce Carver?,PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Bruce_Carver onto:deathCause ?uri . },julipc-p(huggingface) ¿En qué país nace el Ganges?,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Ganges onto:sourceCountry ?uri . },julipc-p(huggingface) ¿Cuántas misiones tiene el programa Soyuz?,PREFIX prop: PREFIX res: SELECT COUNT(DISTINCT ?uri) WHERE { ?uri prop:programme res:Soyuz_programme . },julipc-p(huggingface) ¿Es Rita Wilson la esposa de Tom Hanks?,PREFIX onto: PREFIX res: ASK WHERE { res:Tom_Hanks onto:spouse res:Rita_Wilson . },julipc-p(huggingface) ¿Quién era llamado Frank The Tank?,PREFIX prop: SELECT DISTINCT ?uri WHERE { ?uri prop:nickname 'Frank The Tank'@en . },julipc-p(huggingface) ¿Qué películas ha rodado Kurosawa?,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Film . ?uri onto:director res:Akira_Kurosawa . },julipc-p(huggingface) ¿Qué series televisivas ideó John Cleese?,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:TelevisionShow . ?uri onto:creator res:John_Cleese . },julipc-p(huggingface) ¿Qué premios ha ganado Douglas Hofstadter?,PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Douglas_Hofstadter onto:award ?uri . },julipc-p(huggingface) ¿Con quién está casada la hija de Robert Kennedy?,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Robert_F._Kennedy onto:child ?child . ?child onto:spouse ?uri . },julipc-p(huggingface) ¿Quién es el dueño de Rolls-Royce?,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Rolls-Royce_Motors onto:owner ?uri . },julipc-p(huggingface) ¿La mujer del presidente Lincoln se llama Mary?,"PREFIX onto: PREFIX res: PREFIX rdfs: ASK WHERE { res:Abraham_Lincoln onto:spouse ?spouse . ?spouse rdfs:label ?name . FILTER(regex(?name,'Mary')) }",julipc-p(huggingface) ¿Quién fue el 16th presidente de los Estados Unidos?,PREFIX onto: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri onto:office 'President of the United States' . ?uri onto:orderInOffice '16th' . },julipc-p(huggingface) ¿Cuántos habitantes tiene la ciudad más grande de Canadá?,PREFIX onto: PREFIX res: SELECT DISTINCT ?num WHERE { res:Canada onto:largestCity ?city . ?city onto:populationTotal ?num . },julipc-p(huggingface) ¿Quién fue el primero en ascender al Monte Everest?,PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Mount_Everest onto:firstAscentPerson ?uri . },julipc-p(huggingface) ¿Cuántos lenguajes de programación existen?,PREFIX onto: PREFIX rdf: SELECT COUNT(DISTINCT ?uri) WHERE { ?uri rdf:type onto:ProgrammingLanguage . },julipc-p(huggingface) ¿Cuál es el color oficial de la Universidad de Oxford?,PREFIX onto: PREFIX res: SELECT DISTINCT ?string WHERE { res:University_of_Oxford onto:officialSchoolColour ?string . },julipc-p(huggingface) ¿A qué estilo artístico pertenece el pinto de Los Tres Bailarines?,PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:The_Three_Dancers onto:author ?person . ?person onto:movement ?uri . },julipc-p(huggingface) Dame todos los animales extintos,PREFIX onto: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Animal . ?uri onto:conservationStatus 'EX' . },julipc-p(huggingface) ¿Tiene el lugar de nacimiento de Abraham Lincol una página web?,PREFIX onto: PREFIX prop: PREFIX res: ASK WHERE { res:Abraham_Lincoln onto:deathPlace ?p . ?p prop:website ?w . },julipc-p(huggingface) Cómo de hondo es el Lago Placid?,PREFIX onto: SELECT DISTINCT ?n WHERE { onto:depth ?n . },julipc-p(huggingface) Dame todos los nietos de Bruce Lee.,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Bruce_Lee onto:child ?child . ?child onto:child ?uri . },julipc-p(huggingface) ¿Quién es el jugador mas jóven de dardos?,PREFIX onto: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:DartsPlayer . ?uri onto:birthDate ?date . } ORDER BY DESC(?date) OFFSET 0 LIMIT 1,julipc-p(huggingface) ¿Dónde nació Bach?,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Johann_Sebastian_Bach onto:birthPlace ?uri . },julipc-p(huggingface) ¿En qué páises se paga con el Franco CFA?,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri onto:currency res:West_African_CFA_franc . },julipc-p(huggingface) ¿Cuáles son los 10 mejores videojuegos de rol de acción según la IGN?,PREFIX onto: PREFIX prop: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri . ?uri prop:ign ?score . } ORDER BY DESC(?score) LIMIT 10,julipc-p(huggingface) ¿Cual es la causa mortal más común?,PREFIX onto: SELECT DISTINCT ?x WHERE { ?uri onto:deathCause ?x . } ORDER BY DESC(COUNT(DISTINCT ?uri)) OFFSET 0 LIMIT 1,julipc-p(huggingface) ¿Desemboca el Isar en un lago?,PREFIX onto: PREFIX res: PREFIX rdf: ASK WHERE { ?x onto:inflow res:Isar . ?x rdf:type onto:Lake . },julipc-p(huggingface) Dame todas las películas producidas por Steven Spielberg con un presupuesto de al menos 80 milliones de dólares.,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Film . ?uri onto:director res:Steven_Spielberg . ?uri onto:budget ?b . FILTER( xsd:double(?b) >= 8.0E7 ) },julipc-p(huggingface) Dame todos los escritores que hayan recibido el premio nobel de literatura.,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Writer . ?uri onto:award res:Nobel_Prize_in_Literature . },julipc-p(huggingface) Dame todas las taikonautas.,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Astronaut . ?uri onto:nationality res:China . },julipc-p(huggingface) ¿Cuántas páginas tiene Guerra y Paz?,PREFIX onto: PREFIX res: SELECT DISTINCT ?n WHERE { res:War_and_Peace onto:numberOfPages ?n . },julipc-p(huggingface) ¿Qué puente tiene el mayor largo del vano?,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Bridge . ?uri onto:mainspan ?s . } ORDER BY DESC(?s) OFFSET 0 LIMIT 1,julipc-p(huggingface) Dame todos los actores llamados Baldwin.,PREFIX onto: PREFIX res: PREFIX foaf: SELECT DISTINCT ?uri WHERE { ?uri foaf:surname 'Baldwin'@en . { ?uri onto:occupation res:Actor . } UNION { ?uri rdf:type onto:Actor . } },julipc-p(huggingface) ¿Quién es el jugador más alto de los Atlanta Falcons?,PREFIX onto: PREFIX prop: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri onto:team res:Atlanta_Falcons . ?uri onto:height ?h . } ORDER BY DESC(?h) OFFSET 0 LIMIT 1,julipc-p(huggingface) ¿Qué ríos desembocan en un lago alemán?,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:River . ?x onto:inflow ?uri . ?x rdf:type onto:Lake . ?x onto:country res:Germany . },julipc-p(huggingface) ¿Cuántas películas de James Bond existen?,PREFIX rdf: PREFIX yago: SELECT COUNT(DISTINCT ?uri) WHERE { ?uri rdf:type yago:JamesBondFilms . },julipc-p(huggingface) ¿Qué cohetes han sido lanzados desde Baionur?,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Rocket . ?uri onto:launchSite res:Baikonur_Cosmodrome . },julipc-p(huggingface) ¿Qué papa fue el sucesor de Juan Pablo II?,PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Pope_John_Paul_II prop:successor ?uri . },julipc-p(huggingface) Dame todos los partidos políticos holandeses,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:PoliticalParty . ?uri onto:country res:Netherlands . },julipc-p(huggingface) ¿Cuándo es Halloween?,PREFIX prop: PREFIX res: SELECT DISTINCT ?date WHERE { res:Halloween prop:date ?date . },julipc-p(huggingface) Dame todos los oceanógrafos suecos.,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri onto:field res:Oceanography . ?uri onto:birthPlace res:Sweden . },julipc-p(huggingface) Dame todos los actores nacidos en Berlin.,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Actor . ?uri onto:birthPlace res:Berlin . },julipc-p(huggingface) ¿Cuál fue la última película con Alec Guinness?,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Film . ?uri onto:starring res:Alec_Guinness . ?uri onto:releaseDate ?date . } ORDER BY DESC(?date) LIMIT 1,julipc-p(huggingface) ¿Que poeta ha escrito el mayor número de libros?,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri onto:occupation res:Poet . ?x onto:author ?uri . ?x rdf:type onto:Book . } ORDER BY DESC(COUNT(?x)) OFFSET 0 LIMIT 1,julipc-p(huggingface) ¿Cuántos idiomas se hablan en Colombia?,PREFIX onto: PREFIX res: SELECT COUNT(DISTINCT ?uri) WHERE { ?uri rdf:type onto:Language . res:Colombia onto:language ?uri . },julipc-p(huggingface) ¿Qué abrevia IYCM?,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri onto:abbreviation 'IYCM' . },julipc-p(huggingface) ¿Cuál ha sido la posición de ranking más baja de Brasil en el ranking mundial de la FIFA?,PREFIX prop: PREFIX res: SELECT DISTINCT ?n WHERE { res:Brazil_national_football_team prop:fifaMin ?n . },julipc-p(huggingface) Dame las capitales de todos los países que atraviesa el Himalaya.,PREFIX prop: PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Himalayas prop:country ?country . ?country onto:capital ?uri . },julipc-p(huggingface) ¿Qué actor hizo el papel de Chewbacca?,PREFIX prop: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Chewbacca prop:portrayer ?uri . },julipc-p(huggingface) ¿Qué ingredientes son necesarios para una tarta de zanahorias?,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Carrot_cake onto:ingredient ?uri . },julipc-p(huggingface) ¿La Coca Cola es una bebida?,PREFIX onto: PREFIX res: PREFIX rdf: ASK WHERE { res:Cola rdf:type onto:Beverage . },julipc-p(huggingface) ¿Quién ha estado casado con Tom Cruise?,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri onto:spouse res:Tom_Cruise. },julipc-p(huggingface) ¿Cuál es la película de Tim Burton con el mayor presupuesto?,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri onto:director res:Tim_Burton . ?uri onto:budget ?b . } ORDER BY ?b OFFSET 0 LIMIT 1,julipc-p(huggingface) ¿Cuánto pesa el satélite más ligero de Júpiter?,PREFIX onto: PREFIX prop: PREFIX res: SELECT DISTINCT ?n WHERE { ?uri prop:satelliteOf res:Jupiter . ?uri onto:mass ?n . } ORDER BY ASC(?n) OFFSET 0 LIMIT 1,julipc-p(huggingface) ¿Qué actor ha actuado en el mayor número de películas?,PREFIX onto: PREFIX prop: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Actor . ?f rdf:type onto:Film . ?f onto:starring ?uri . } ORDER BY DESC(COUNT(DISTINCT(?f))) OFFSET 0 LIMIT 1,julipc-p(huggingface) ¿Está James Bond casado?,PREFIX onto: PREFIX res: ASK WHERE { res:James_Bond onto:spouse ?uri . },julipc-p(huggingface) Dame todos los grupos australianos de metalcore.,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Band . ?uri onto:genre res:Metalcore . { ?uri onto:hometown res:Australia . } UNION { ?uri onto:hometown ?h . ?h onto:country res:Australia . } },julipc-p(huggingface) Dame todos los actores nacidos en Paris después de 1950.,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Actor . ?uri onto:birthPlace res:Paris . ?uri onto:birthDate ?date . FILTER ( ?date >= xsd:dateTime('1950-12-31T00:00:00Z')) },julipc-p(huggingface) ¿Cuándo fue disparado Carlo Giuliani?,PREFIX prop: PREFIX res: SELECT DISTINCT ?date WHERE { res:Death_of_Carlo_Giuliani prop:dateOfDeath ?date . },julipc-p(huggingface) ¿Cuáles son los cuatro jugadores de baloncesto de categoría MVP más jóvenes?,"PREFIX onto: PREFIX prop: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:BasketballPlayer . ?uri onto:birthDate ?date. ?uri prop:highlights ?h . FILTER regex(?h,'MVP') } ORDER BY DESC(?date) OFFSET 0 LIMIT 4",julipc-p(huggingface) ¿Qué empresas tienen mas de 1 millón de empleados?,PREFIX onto: PREFIX prop: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Company . { ?uri onto:numberOfEmployees ?n . } UNION { ?uri prop:numEmployees ?n . } FILTER ( ?n > 1000000 ) },julipc-p(huggingface) Dame todos los nadadores nacidos en Moscú,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Swimmer . ?uri onto:birthPlace res:Moscow . },julipc-p(huggingface) ¿Quien se llamaba Rodzilla?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { ?uri prop:nickname ""Rodzilla""@en . }",julipc-p(huggingface) Muéstrame el libro escrito por Muhammad Ali.,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Book . ?uri onto:author res:Muhammad_Ali . },julipc-p(huggingface) ¿Cuantos museos hay en Paris?,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Museum . ?uri onto:location res:Paris . },julipc-p(huggingface) ¿Que ciudad tiene la mayor población?,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:City . ?uri onto:populationTotal ?pop . } ORDER BY DESC(?pop) OFFSET 0 LIMIT 1,julipc-p(huggingface) ¿Que ciudad tiene la menor población?,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:City . ?uri onto:populationTotal ?pop . } ORDER BY ASC(?pop) OFFSET 0 LIMIT 1,julipc-p(huggingface) Dame todos los programas de televisión con Neil Patrick Harris.,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:TelevisionShow . ?uri onto:starring res:Neil_Patrick_Harris . },julipc-p(huggingface) ¿Quien escribió Los juegos del hambre?,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:The_Hunger_Games onto:author ?uri . },julipc-p(huggingface) Dame una lista de los clubs de futbol que juegan en Bundesliga.,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:SoccerClub . ?uri onto:league res:Bundesliga . },julipc-p(huggingface) ¿En que país esta el monte Everest?,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { res:Mount_Everest onto:locatedInArea ?uri . ?uri rdf:type onto:Country . },julipc-p(huggingface) ¿Quien es el fundador de Penguin Books?,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { res:Penguin_Books onto:founder ?uri . },julipc-p(huggingface) ¿Que lenguajes de programación influenciaron el Javascript?,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:ProgrammingLanguage . ?uri onto:influenced res:JavaScript . },julipc-p(huggingface) ¿Tuvo hijos el Che Guevara?,PREFIX onto: PREFIX res: ASK WHERE { res:Che_Guevara onto:child ?uri . },julipc-p(huggingface) Dame todos los musicales con música de Elton John.,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Musical . ?uri onto:musicBy res:Elton_John . },julipc-p(huggingface) Muéstrame todas las cervecerías en Australia.,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri ?x WHERE { ?uri rdf:type onto:Brewery . { ?uri onto:location res:Australia . } UNION { ?uri onto:location ?x . ?x onto:country res:Australia . } },julipc-p(huggingface) ¿Cuando se completo el Titanic?,PREFIX onto: PREFIX res: SELECT DISTINCT ?date WHERE { res:RMS_Titanic onto:completionDate ?date . },julipc-p(huggingface) ¿Cuanto costo Pulp Fiction?,PREFIX onto: PREFIX res: SELECT DISTINCT ?n WHERE { res:Pulp_Fiction onto:budget ?n . },julipc-p(huggingface) ¿Cuantas líneas aéreas existen?,PREFIX onto: PREFIX rdf: SELECT COUNT(DISTINCT ?uri) WHERE { ?uri rdf:type onto:Airline . },julipc-p(huggingface) ¿Quien actuó como el agente Smith en Matrix?,PREFIX prop: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Agent_Smith prop:portrayer ?uri . },julipc-p(huggingface) ¿Cuantos hidrates de carbono tienen la manteca de cacahuete?,PREFIX prop: PREFIX res: SELECT DISTINCT ?carbs WHERE { res:Peanut_butter prop:carbs ?carbs . },julipc-p(huggingface) ¿Que libro tiene el mayor numero de paginas?,PREFIX onto: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Book . ?uri onto:numberOfPages ?n . } ORDER BY DESC(?n) OFFSET 0 LIMIT 1,julipc-p(huggingface) ¿Cuantos puentes cruzan el Siena?,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Bridge . ?uri onto:crosses res:Seine . },julipc-p(huggingface) ¿Quien es el alcalde de la capital de la Polinesia Francesa?,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:French_Polynesia onto:capital ?x . ?x onto:mayor ?uri . },julipc-p(huggingface) ¿Cuando murió el creador de Drácula?,PREFIX onto: PREFIX res: SELECT DISTINCT ?date WHERE { res:Count_Dracula onto:creator ?x . ?x onto:deathDate ?date . },julipc-p(huggingface) ¿Donde están situadas las Casas del Parlamento?,PREFIX onto: PREFIX res: PREFIX rdf: SELECT ?uri WHERE { res:Palace_of_Westminster onto:location ?uri . },julipc-p(huggingface) Muéstrame todos los edificios góticos en Kent.,PREFIX onto: PREFIX res: PREFIX rdf: SELECT ?uri WHERE { ?uri rdf:type onto:Building . ?uri onto:architecturalStyle res:English_Gothic_architecture . ?uri onto:location res:Kent . },julipc-p(huggingface) ¿Quien fue el papa que fundo la televisión Vaticana?,PREFIX onto: PREFIX res: PREFIX rdf: SELECT ?uri WHERE { ?uri rdf:type onto:Pope . res:Vatican_Television_Center onto:foundedBy ?uri . },julipc-p(huggingface) ¿Qué aerolíneas forman parte del la alianza SkyTeam?,PREFIX res: PREFIX prop: PREFIX onto: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Airline . { ?uri prop:alliance res:SkyTeam . } UNION { ?uri onto:Alliance res:SkyTeam . } },julipc-p(huggingface) "¿Cuál es la población total de Melbourne, Florida?","PREFIX onto: SELECT ?uri WHERE { onto:populationTotal ?uri . }",julipc-p(huggingface) ¿Qué aeropuertos sirve Air China?,PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Air_China onto:targetAirport ?uri . },julipc-p(huggingface) ¿En que año nació Rachel Stevens?,PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Rachel_Stevens onto:birthYear ?uri . },julipc-p(huggingface) ¿Dónde fue JFK asesinado?,PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:John_F._Kennedy onto:deathPlace ?uri . },julipc-p(huggingface) ¿Cuántos políticos se han graduado en la universidad de Columbia?,PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?uri onto:profession res:Politician . ?uri onto:almaMater res:Columbia_University . },julipc-p(huggingface) ¿Qué científicos son conocidos por el proyecto Manhattan y el premio Nobel de la Paz?,PREFIX res: PREFIX onto: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri onto:knownFor res:Manhattan_Project . ?uri rdf:type onto:Scientist . ?uri onto:knownFor res:Nobel_Peace_Prize . },julipc-p(huggingface) ¿Cuál es el volcán mas alto en África?,PREFIX onto: PREFIX res: PREFIX rdf: PREFIX yago: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Volcano . ?uri onto:locatedInArea ?area . ?area rdf:type yago:AfricanCountries . ?uri onto:elevation ?elevation . } ORDER BY DESC(?elevation) OFFSET 0 LIMIT 1,julipc-p(huggingface) ¿Qué cerveza se ha originado en Irlanda?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?uri prop:type res:Beer . ?uri prop:origin ""Ireland""@en . }",julipc-p(huggingface) ¿Cuáles son las especialidades del UNC Health Care?,PREFIX onto: PREFIX res: PREFIX prop: PREFIX rdf: SELECT DISTINCT ?uri WHERE { res:UNC_Health_Care prop:speciality ?uri . },julipc-p(huggingface) ¿Quién es el dueño de Facebook?,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Facebook onto:foundedBy ?uri . },julipc-p(huggingface) ¿De que región es el vino Melon de Bourgogne?,PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Melon_de_Bourgogne onto:wineRegion ?uri . },julipc-p(huggingface) ¿Quién fue influenciado por Socrates?,PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:influencedBy res:Socrates . },julipc-p(huggingface) ¿Quién fue el presidente de Pakistán en 1978?,PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?uri prop:title res:President_of_Pakistan . ?uri prop:years 1978 . },julipc-p(huggingface) Dame actores Ingleses protagonizando Lovesick.,PREFIX res: PREFIX onto: PREFIX yago: SELECT DISTINCT ?uri WHERE { res:Lovesick onto:starring ?uri . { ?uri onto:birthPlace res:England . } UNION { ?uri rdf:type yago:EnglishFilmActors . } },julipc-p(huggingface) ¿Que tipos hay de trastornos de la alimentación?,PREFIX yago: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:EatingDisorders . },julipc-p(huggingface) ¿Quién estuvo casado con el presidente Chirac?,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Jacques_Chirac onto:spouse ?uri . },julipc-p(huggingface) ¿Cuál es el área metropolitana mas larga en el estado de Washington?,PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:largestmetro ?uri . },julipc-p(huggingface) ¿Dónde en Francia se produce el vino espumoso?,PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:wineProduced res:Sparkling_wine . ?uri onto:location res:France . },julipc-p(huggingface) ¿Dónde murió Hillel Slovak?,PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Hillel_Slovak onto:deathPlace ?uri . },julipc-p(huggingface) ¿Cuál es la zona horaria en San Pedro de Atacama?,PREFIX res: PREFIX timezone: SELECT DISTINCT ?uri WHERE { res:San_Pedro_de_Atacama timezone:timezone ?uri . },julipc-p(huggingface) ¿En que ciudad termina la ruta Chilena 68?,PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Chile_Route_68 onto:routeEnd ?uri . },julipc-p(huggingface) Dame todos los astronautas de la ESA.,PREFIX rdf: PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Astronaut . ?uri onto:type res:European_Space_Agency . },julipc-p(huggingface) Dame todos los días festivos en Suecia.,PREFIX rdf: PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Holiday . ?uri onto:country res:Sweden . },julipc-p(huggingface) ¿Quien es el premio Pilitzer mas joven?,PREFIX rdf: PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri onto:award res:Pulitzer_Prize . ?uri onto:birthDate ?d . } ORDER BY DESC(?d) OFFSET 0 LIMIT 1,julipc-p(huggingface) ¿Que animales están en peligro de extinción?,PREFIX onto: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Animal . ?uri onto:conservationStatus 'CR' . },julipc-p(huggingface) ¿Que jugadores de futbol han nacido en Malta?,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:SoccerPlayer . ?uri onto:birthPlace res:Malta . },julipc-p(huggingface) ¿Fue Arnold Schwarzenegger a la universidad?,PREFIX onto: PREFIX res: PREFIX rdf: ASK WHERE { res:Arnold_Schwarzenegger onto:almaMater ?x . ?x rdf:type onto:University . },julipc-p(huggingface) ¿Qué lenguajes de programación fueron influenciados por el Perl?,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:ProgrammingLanguage . { ?uri onto:influencedBy res:Perl . } UNION { res:Perl onto:influenced ?uri . } },julipc-p(huggingface) ¿Es Barack Obama demócrata?,PREFIX onto: PREFIX res: ASK WHERE { res:Barack_Obama onto:party . },julipc-p(huggingface) ¿Cuántos hijos tiene Eddie Murphy?,PREFIX prop: PREFIX res: SELECT DISTINCT ?n WHERE { res:Eddie_Murphy prop:children ?n . },julipc-p(huggingface) ¿Cuál es el hijo mas mayor de Meryl Streep?,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Meryl_Streep onto:child ?uri . ?uri onto:birthDate ?d . } ORDER BY ASC(?d) OFFSET 0 LIMIT 1,julipc-p(huggingface) ¿Quién asesino a John Lennon?,PREFIX rdf: PREFIX onto: PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Person. ?uri prop:conviction res:Death_of_John_Lennon. },julipc-p(huggingface) ¿Qué programa de viajero frecuente tienen la mayoría de las aerolineas?,PREFIX onto: PREFIX prop: PREFIX rdf: PREFIX yago: SELECT ?uri WHERE { ?airline rdf:type onto:Airline. ?airline prop:frequentFlyer ?uri. ?uri rdf:type yago:FrequentFlyerPrograms. } ORDER BY DESC(COUNT(DISTINCT ?airline)) OFFSET 0 LIMIT 1,julipc-p(huggingface) ¿En que ciudad esta la sede de Air China?,PREFIX res: PREFIX yago: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Air_China onto:headquarter ?uri . ?uri rdf:type yago:City108524735 . },julipc-p(huggingface) ¿Qué artistas nacieron en la misma fecha que Rachel Stevens?,PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Artist. res:Rachel_Stevens prop:dateOfBirth ?date . ?uri prop:dateOfBirth ?date . },julipc-p(huggingface) ¿Cuántos científicos se han graduado en un Universidad de la Ivy League?,PREFIX res: PREFIX onto: SELECT DISTINCT count (?uri) WHERE { ?uri rdf:type onto:Scientist . ?uri onto:almaMater ?university . ?university onto:affiliation res:Ivy_League . },julipc-p(huggingface) ¿Que tipo de uva crece en Oregon?,PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Oregon_wine onto:growingGrape ?uri . },julipc-p(huggingface) ¿Quien protagoniza peliculas españolas producidas por Benicio del Toro?,PREFIX res: PREFIX onto: PREFIX rdf: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?film rdf:type onto:Film . ?film onto:country res:Spain . ?film onto:producer res:Benicio_del_Toro . ?film onto:starring ?uri . ?uri rdf:type onto:Person . },julipc-p(huggingface) ¿Quien es el manager de Real Madrid?,PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:manager ?uri . },julipc-p(huggingface) ¿Cual es la moneda de China?,PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:China onto:currency ?uri . },julipc-p(huggingface) ¿Que peliculas protagonizadas por Brad Pitt han sido dirigidas por Guy Ritchie?,PREFIX res: PREFIX onto: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Film . ?uri onto:starring res:Brad_Pitt . ?uri onto:director res:Guy_Ritchie . },julipc-p(huggingface) ¿Cuantas compañías han sido fundadas por el fundador de Facebook?,PREFIX onto: PREFIX res: SELECT DISTINCT COUNT(?c) WHERE { res:Facebook onto:foundedBy ?uri . ?c onto:foundedBy ?uri . },julipc-p(huggingface) ¿Cuántas compañías fueron fundadas en el mismo año que Google?,PREFIX onto: PREFIX res: SELECT COUNT(DISTINCT ?c) WHERE { ?c rdf:type onto:Company . ?c onto:foundingYear ?year . res:Google onto:foundingYear ?year . },julipc-p(huggingface) ¿Qué subsidiario de Lufthansa vuela en Dortmund y en Berlin?,PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Lufthansa onto:subsidiary ?uri . ?uri onto:targetAirport res:Dortmund_Airport . ?uri onto:targetAirport res:Berlin_Tegel_Airport . },julipc-p(huggingface) ¿Cuántas compañías son miembros del la Star Alliance?,PREFIX onto: PREFIX onto: PREFIX res: PREFIX rdf: SELECT COUNT(DISTINCT ?uri) WHERE { ?uri rdf:type onto:Airline . ?uri onto:alliance res:Star_Alliance . },julipc-p(huggingface) Dame todas las naves espaciales que han volado a Marte,PREFIX onto: PREFIX prop: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Spacecraft . ?uri prop:planet res:Mars . },julipc-p(huggingface) ¿Qué músico ha escrito el mayor numero de libros?,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri onto:occupation res:Musician . ?x onto:author ?uri . ?x rdf:type onto:Book . } ORDER BY DESC(COUNT(?x)) OFFSET 0 LIMIT 1,julipc-p(huggingface) Muestrame todas las personas nacidas en Halloween,PREFIX prop: PREFIX res: PREFIX onto: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Person . { ?uri onto:birthDate ?date . } UNION { ?uri prop:birthDate ?date . } res:Halloween prop:date ?date . },julipc-p(huggingface) Dame todas las organizaciones Suizas sin animo de lucro,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri onto:type res:Nonprofit_organization . { ?uri onto:locationCountry res:Switzerland . } UNION { ?uri onto:location ?x . ?x onto:country res:Switzerland . } },julipc-p(huggingface) ¿En que país se sitúa la Meca?,PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Mecca onto:country ?uri . },julipc-p(huggingface) ¿Cual es la ganancia en neto de Apple?,PREFIX onto: SELECT DISTINCT ?ni WHERE { onto:netIncome ?ni . },julipc-p(huggingface) ¿Qué significa la abreviación FIFA?,PREFIX res: PREFIX prop: SELECT DISTINCT ?name WHERE { res:FIFA prop:name ?name . },julipc-p(huggingface) ¿Cuándo se disolvió la dinastía de Ming?,PREFIX res: PREFIX onto: SELECT DISTINCT ?date WHERE { res:Ming_dynasty onto:dissolutionDate ?date . },julipc-p(huggingface) ¿Qué museo en Nueva York tiene el mayor numero de visitantes?,PREFIX res: PREFIX onto: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Museum . ?uri onto:location res:New_York_City . ?uri onto:numberOfVisitors ?num . } ORDER BY DESC(?num) OFFSET 0 LIMIT 1,julipc-p(huggingface) ¿Es el lago Baikal mayor que el lago Great Bear?,PREFIX res: PREFIX onto: ASK WHERE { res:Lake_Baikal onto:areaTotal ?a1 . res:Great_Bear_Lake onto:areaTotal ?a2 . FILTER (?a1 > ?a2) },julipc-p(huggingface) ¿Los postres de que país contienen pescado?,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { ?x onto:type res:Dessert . ?x onto:origin ?uri . ?x onto:ingredient res:Fish . },julipc-p(huggingface) ¿Cuál es la montaña mas alta en Italia?,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Mountain . ?uri onto:locatedInArea res:Italy . ?uri onto:elevation ?num . } ORDER BY DESC(?num) OFFSET 0 LIMIT 1,julipc-p(huggingface) ¿Dónde estudio el arquitecto de la torre Eiffel?,PREFIX prop: PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Eiffel_Tower onto:architect ?x . ?x prop:almaMater ?uri . },julipc-p(huggingface) ¿Qué partidos Griegos están a favor de Europa?,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:PoliticalParty . ?uri onto:country res:Greece . ?uri onto:ideology res:Pro-Europeanism . },julipc-p(huggingface) ¿Cuál es la diferencia de altura entra el Monte Everest y K2?,PREFIX onto: PREFIX res: SELECT DISTINCT (?h1-?h2) WHERE { res:Mount_Everest onto:elevation ?h1 . res:K2 onto:elevation ?h2 . },julipc-p(huggingface) ¿Quién es el alcalde de Rotterdam?,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Rotterdam onto:leaderName ?uri . },julipc-p(huggingface) ¿Cómo de alta el la torre Yokohama Marine?,PREFIX onto: PREFIX res: SELECT DISTINCT ?num WHERE { res:Yokohama_Marine_Tower onto:height ?num . },julipc-p(huggingface) ¿Es el Taiko un tipo de instrumento musical?,PREFIX yago: PREFIX res: ASK WHERE { res:Taiko rdf:type yago:JapaneseMusicalInstruments . },julipc-p(huggingface) ¿Cuántos grupos étnicos viven en Eslovenia?,PREFIX onto: PREFIX res: SELECT COUNT(DISTINCT ?uri) WHERE { res:Slovenia onto:ethnicGroup ?uri . },julipc-p(huggingface) Lista los siete reyes de Roma.,PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?uri prop:title res:King_of_Rome . },julipc-p(huggingface) ¿Quiénes fueron los padres de la reina Victoria?,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Queen_Victoria onto:parent ?uri . },julipc-p(huggingface) ¿Quien es el jugador mas pesado del los Chicago Bulls?,PREFIX onto: PREFIX prop: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Person . ?uri onto:weight ?num . { ?uri prop:team res:Chicago_Bulls . } UNION { ?uri prop:draftTeam res:Chicago_Bulls . } UNION { ?uri onto:draftTeam res:Chicago_Bulls . } } ORDER BY DESC(?num) OFFSET 0 LIMIT 1,julipc-p(huggingface) ¿Que volcanos han erupcionado en Japon desde el 2000?,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Volcano . ?uri onto:locatedInArea res:Japan . ?uri onto:eruptionYear ?date . FILTER (year(?date) >= 2000) },julipc-p(huggingface) Quien es el jugador de baloncesto mas alto?,PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:BasketballPlayer . ?uri onto:height ?num . } ORDER BY DESC(?num) OFFSET 0 LIMIT 1,julipc-p(huggingface) ¿Actúa Christian Bale en Batman Begins?,PREFIX onto: PREFIX res: ASK WHERE { res:Batman_Begins onto:starring res:Christian_Bale . },julipc-p(huggingface) ¿Qué misiones espaciales partieron desde Baionur?,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri onto:launchPad res:Baikonur_Cosmodrome . },julipc-p(huggingface) ¿Qué abrevia CPU?,"PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri onto:abbreviation ""CPU"" . }",julipc-p(huggingface) ¿Es la Coca Cola una bebida?,PREFIX onto: PREFIX res: PREFIX rdf: ASK WHERE { res:Cola rdf:type onto:Beverage . },julipc-p(huggingface) ¿A qué estilo artístico pertenece el pintor de Los Tres Bailarines?,PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:The_Three_Dancers onto:author ?person . ?person onto:movement ?uri . },julipc-p(huggingface) ¿Cuál es el punto más alto del Karakorum?,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Karakoram onto:highestPlace ?uri . },julipc-p(huggingface) ¿A qué especie pertenece la rana verde?,PREFIX prop: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Hylidae prop:classis ?uri . },julipc-p(huggingface) ¿Quién es el alcalde de la cuidad de Nueva York?,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:New_York_City onto:leaderName ?uri . },julipc-p(huggingface) ¿Qué empresas fueron fundadas en 1950?,"PREFIX onto: PREFIX prop: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Organisation . { ?uri onto:formationYear ?date . } UNION { ?uri onto:foundingYear ?date. } UNION { ?uri prop:foundation ?date . } UNION { ?uri prop:formation ?date . } FILTER regex(?date,'^1950') . }",julipc-p(huggingface) ¿Qué países tienen lugares con más de dos cuevas?,PREFIX onto: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?cave rdf:type onto:Cave . ?cave onto:location ?uri . ?uri rdf:type onto:Country . } GROUP BY ?uri HAVING (COUNT(?cave) > 2),julipc-p(huggingface) ¿Qué países europeos tienen una monarquía constitucional?,PREFIX onto: PREFIX res: PREFIX yago: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:EuropeanCountries . ?uri onto:governmentType res:Constitutional_monarchy . },julipc-p(huggingface) ¿Qué monárcas del reino unido estaban casados con una persona alemana?,PREFIX yago: PREFIX onto: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:MonarchsOfTheUnitedKingdom . ?uri onto:spouse ?spouse . ?spouse onto:birthPlace res:Germany. },julipc-p(huggingface) Dame todas las cancilleres alemanas.,PREFIX yago: PREFIX prop: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:FemaleHeadsOfGovernment. ?uri prop:office res:Chancellor_of_Germany . },julipc-p(huggingface) Dame todos los tipos de escuela.,PREFIX yago: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:SchoolTypes . },julipc-p(huggingface) ¿Cuántas monarquías existen en Europa?,"PREFIX onto: PREFIX yago: PREFIX rdf: SELECT COUNT(DISTINCT ?uri) WHERE { ?uri rdf:type yago:EuropeanCountries . ?uri onto:governmentType ?govern . FILTER regex(?govern,'monarchy') . }",julipc-p(huggingface) Dame todos los presidentes de los estados unidos de américa.,PREFIX yago: PREFIX onto: PREFIX prop: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Person . { ?uri rdf:type yago:PresidentsOfTheUnitedStates. } UNION { ?uri rdf:type onto:President. ?uri prop:title res:President_of_the_United_States. } },julipc-p(huggingface) ¿Qué empresas aerospaciales trabajar también en en tecnología de reactores?,PREFIX onto: PREFIX prop: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Company . ?uri prop:industry res:Aerospace . ?uri prop:industry res:Nuclear_reactor_technology . },julipc-p(huggingface) ¿A quién pertenece Aldi?,PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Aldi onto:keyPerson ?uri . },julipc-p(huggingface) ¿Cuáles son los idiomas oficiales de Las Philipinas?,PREFIX onto: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Philippines onto:officialLanguage ?uri . },julipc-p(huggingface) Dame la página de web de Forbes.,PREFIX res: PREFIX foaf: SELECT DISTINCT ?string WHERE { res:Forbes foaf:homepage ?string . },julipc-p(huggingface) ¿En qué estados de los estados unidos de américa hay oro?,"PREFIX yago: PREFIX prop: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:StatesOfTheUnitedStates . ?uri prop:mineral ?mineral . FILTER (regex(?mineral,'gold','i')) . }",julipc-p(huggingface) ¿Quién fue el quinto presidente de los estados unidos de américa?,PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:orderInOffice '5th President of the United States'@en . },julipc-p(huggingface) Dame todas las astronautas rusas.,PREFIX yago: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:RussianCosmonauts . ?uri rdf:type yago:FemaleAstronauts . },julipc-p(huggingface) ¿Qué países de la unión europea han introducido el Euro?,PREFIX prop: PREFIX res: PREFIX yago: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:EuropeanUnionMemberStates . { ?uri prop:currency res:Euro . } UNION { ?uri prop:currencyCode 'EUR'@en . } UNION { ?uri prop:currencyCode 'Euro'@en . } },julipc-p(huggingface) How high is the lighthouse in Colombo?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?num WHERE { res:Colombo_Lighthouse onto:height ?num . }",julipc-p(huggingface) How much did Pulp Fiction cost?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?n WHERE { res:Pulp_Fiction onto:budget ?n . }",julipc-p(huggingface) When did Operation Overlord commence?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?d WHERE { res:Operation_Overlord onto:date ?d . }",julipc-p(huggingface) In which city does the Chile Route 68 end?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Chile_Route_68 onto:routeEnd ?uri . }",julipc-p(huggingface) Which cities does the Weser flow through?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Weser onto:city ?uri . }",julipc-p(huggingface) How many seats does the home stadium of FC Porto have?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?n WHERE { res:FC_Porto onto:ground ?x . ?x onto:seatingCapacity ?n . }",julipc-p(huggingface) Who is the daughter of Robert Kennedy married to?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Robert_F._Kennedy onto:child ?child . ?child onto:spouse ?uri . }",julipc-p(huggingface) Which books by Kerouac were published by Viking Press?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Book . ?uri onto:publisher . ?uri onto:author . }",julipc-p(huggingface) How tall is Amazon Eve?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?height WHERE { res:Amazon_Eve onto:height ?height . }",julipc-p(huggingface) How much did the Lego Movie cost?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?n WHERE { res:The_Lego_Movie onto:budget ?n . }",julipc-p(huggingface) Where does Piccadilly start?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:routeStart res:Piccadilly. }",julipc-p(huggingface) How many languages are spoken in Turkmenistan?,"PREFIX onto: SELECT (COUNT(DISTINCT ?x) as ?c) WHERE { onto:language ?x . }",julipc-p(huggingface) In which films did Julia Roberts as well as Richard Gere play?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Film . ?uri onto:starring . ?uri onto:starring . }",julipc-p(huggingface) In which year was Rachel Stevens born?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Rachel_Stevens onto:birthYear ?uri . }",julipc-p(huggingface) How often did Jane Fonda marry?,"PREFIX onto: SELECT (COUNT(DISTINCT ?uri) as ?c) WHERE { onto:spouse ?uri . }",julipc-p(huggingface) How many people live in Poland?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Poland onto:populationTotal ?uri . }",julipc-p(huggingface) What is the location of the Houses of Parliament?,"PREFIX res: PREFIX onto: SELECT ?uri WHERE { res:Palace_of_Westminster onto:location ?uri . }",julipc-p(huggingface) What was the last movie with Alec Guinness?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Film . ?uri onto:starring . ?uri onto:releaseDate ?date . } ORDER BY DESC(?date) LIMIT 1",julipc-p(huggingface) Who created Family Guy?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Family_Guy onto:creator ?uri . }",julipc-p(huggingface) Give me all actors starring in movies directed by William Shatner.,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:director res:William_Shatner . ?x onto:starring ?uri . }",julipc-p(huggingface) Which ingredients do I need for carrot cake?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Carrot_cake onto:ingredient ?uri . }",julipc-p(huggingface) Which computer scientist won an oscar?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { { ?uri onto:field . } UNION { ?uri ?s . FILTER regex(?s,'computer scientist','i') } ?uri onto:award . }",julipc-p(huggingface) How many companies were founded in the same year as Google?,"PREFIX rdf: PREFIX onto: SELECT (COUNT(DISTINCT ?uri) as ?c) WHERE { ?uri rdf:type onto:Company . ?uri onto:foundingYear ?year . onto:foundingYear ?year . }",julipc-p(huggingface) Who created Batman?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Batman onto:creator ?uri . }",julipc-p(huggingface) How many Aldi stores are there?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?number WHERE { res:Aldi onto:numberOfLocations ?number . }",julipc-p(huggingface) What is the capital of Cameroon?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Cameroon onto:capital ?uri. }",julipc-p(huggingface) Give me all movies directed by Francis Ford Coppola.,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Film . ?uri onto:director . }",julipc-p(huggingface) Which movies starring Mickey Rourke were directed by Guy Ritchie?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Film . ?uri onto:starring . ?uri onto:director . }",julipc-p(huggingface) When did Dracula's creator die?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?date WHERE { res:Count_Dracula onto:creator ?x . ?x onto:deathDate ?date . }",julipc-p(huggingface) What form of government does Russia have?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Russia onto:governmentType ?uri . }",julipc-p(huggingface) How many companies were founded by the founder of Facebook?,"PREFIX onto: SELECT (COUNT(DISTINCT ?uri) as ?c) WHERE { onto:foundedBy ?uri . ?uri onto:foundedBy ?uri . }",julipc-p(huggingface) How many children did Benjamin Franklin have?,"PREFIX onto: SELECT (COUNT(DISTINCT ?uri) as ?c) WHERE { onto:child ?uri . }",julipc-p(huggingface) Which airports does Yeti Airlines serve?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Yeti_Airlines onto:targetAirport ?uri . }",julipc-p(huggingface) How many ethnic groups live in Slovenia?,"PREFIX onto: SELECT (COUNT(DISTINCT ?uri) as ?c) WHERE { onto:ethnicGroup ?uri . }",julipc-p(huggingface) Who is the president of Eritrea?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:leader ?uri . onto:leaderTitle 'President'@en . }",julipc-p(huggingface) Who composed the soundtrack for Cameron's Titanic?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:musicComposer ?uri . }",julipc-p(huggingface) In which time zone is Rome?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Rome onto:timeZone ?uri . }",julipc-p(huggingface) Who is the king of the Netherlands?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Netherlands onto:leader ?uri . ?uri a onto:Royalty . }",julipc-p(huggingface) Give me a list of all critically endangered birds.,"PREFIX onto: SELECT DISTINCT ?uri ?p WHERE { ?uri a onto:Bird . { ?uri onto:conservationStatus 'CR'^^ . } UNION { ?uri . } }",julipc-p(huggingface) Who is the Formula 1 race driver with the most races?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:FormulaOneRacer . ?uri onto:races ?x . } ORDER BY DESC(?x) OFFSET 0 LIMIT 1",julipc-p(huggingface) Did Elvis Presley have children?,"PREFIX res: PREFIX onto: ASK WHERE { res:Elvis_Presley onto:child ?uri . }",julipc-p(huggingface) In which city was the president of Montenegro born?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:office res:President_of_Montenegro . ?x onto:birthPlace ?uri . ?uri a onto:City . }",julipc-p(huggingface) In which countries do people speak Japanese?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri a onto:Country . ?uri onto:language res:Japanese_language . }",julipc-p(huggingface) What are the nicknames of San Francisco?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?string WHERE { res:San_Francisco prop:nickname ?string . }",julipc-p(huggingface) Whom did Lance Bass marry?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:spouse res:Lance_Bass . }",julipc-p(huggingface) When did Boris Becker end his active career?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?d WHERE { res:Boris_Becker onto:activeYearsEndDate ?d . }",julipc-p(huggingface) Which types of grapes grow in Oregon?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Oregon_wine onto:growingGrape ?uri . }",julipc-p(huggingface) In which city are the headquarters of the United Nations?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Headquarters_of_the_United_Nations onto:location ?uri . ?uri a onto:City . }",julipc-p(huggingface) When was Jack Wolfskin founded?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?year WHERE { res:Jack_Wolfskin onto:foundingYear ?year . }",julipc-p(huggingface) Who is the tallest basketball player?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:BasketballPlayer . ?uri onto:height ?num . } ORDER BY DESC(?num) OFFSET 0 LIMIT 1",julipc-p(huggingface) Which city has the least inhabitants?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:City . ?uri onto:populationTotal ?pop . } ORDER BY ASC(?pop) OFFSET 0 LIMIT 1",julipc-p(huggingface) Where is Fort Knox located?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Fort_Knox prop:location ?uri . }",julipc-p(huggingface) Where is Syngman Rhee buried?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Syngman_Rhee onto:restingPlace ?uri . }",julipc-p(huggingface) What is the timezone in San Pedro de Atacama?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:San_Pedro_de_Atacama onto:timeZone ?uri . }",julipc-p(huggingface) To which artistic movement did the painter of The Three Dancers belong?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:The_Three_Dancers onto:author ?person . ?person onto:movement ?uri . }",julipc-p(huggingface) Show me all books in Asimov's Foundation series.,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:series res:Foundation_series . }",julipc-p(huggingface) Which museum in New York has the most visitors?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Museum . ?uri onto:location . ?uri onto:numberOfVisitors ?num . } ORDER BY DESC(?num) OFFSET 0 LIMIT 1",julipc-p(huggingface) Give me all members of Prodigy.,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:The_Prodigy onto:bandMember ?uri . }",julipc-p(huggingface) Who is starring in Spanish movies produced by Benicio del Toro?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?film rdf:type onto:Film . ?film onto:country . ?film onto:producer . ?film onto:starring ?uri . ?uri rdf:type onto:Person . }",julipc-p(huggingface) Which subsidiary of TUI Travel serves both Glasgow and Dublin?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:TUI_Travel onto:subsidiary ?uri . ?uri onto:targetAirport res:Glasgow_Airport . ?uri onto:targetAirport res:Dublin_Airport . }",julipc-p(huggingface) How many languages are spoken in Colombia?,"PREFIX rdf: PREFIX onto: SELECT (COUNT(DISTINCT ?uri) as ?c) WHERE { ?uri rdf:type onto:Language . onto:language ?uri . }",julipc-p(huggingface) How many movies did Stanley Kubrick direct?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:director . }",julipc-p(huggingface) Which city's foundeer is John Forbes?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:founder . ?uri rdf:type onto:City}",julipc-p(huggingface) What is the river whose mouth is in deadsea?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:riverMouth . ?uri rdf:type onto:River}",julipc-p(huggingface) What is the allegiance of John Kotelawala ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:John_Kotelawala prop:allegiance ?uri }",julipc-p(huggingface) How many races have the horses bred by Jacques Van't Hart participated in?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:breeder . ?x prop:race ?uri . }",julipc-p(huggingface) "What is the incumbent of the Al Gore presidential campaign, 2000 and also the president of the Ann Lewis ?","PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:incumbent ?uri. onto:president ?uri}",julipc-p(huggingface) What is the region of Tom Perriello ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Tom_Perriello onto:region ?uri }",julipc-p(huggingface) What layout can be found in cars similar to the Subaru Outback?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:related . ?x onto:layout ?uri . ?x rdf:type onto:Automobile}",julipc-p(huggingface) Starwood operates in which places?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:operator res:Starwood_Hotels_and_Resorts_Worldwide . ?x prop:address ?uri . }",julipc-p(huggingface) Name the mascot of Austin College ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Austin_College prop:mascot ?uri }",julipc-p(huggingface) What was the university of the rugby player who coached the Stanford rugby teams during 1906-1917?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:1906–17_Stanford_rugby_teams prop:headcoach ?x . ?x onto:university ?uri . }",julipc-p(huggingface) "How many people live in Wilton, Connecticut?","PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:residence . }",julipc-p(huggingface) What awards did the film director of The Haunted House win ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:director ?x . ?x onto:award ?uri . }",julipc-p(huggingface) Name the origin of Henry Cluney ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Henry_Cluney prop:origin ?uri }",julipc-p(huggingface) List the things for which people of New Orleans are famous for?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:placeOfBirth . ?x prop:knownFor ?uri . ?x rdf:type onto:Person}",julipc-p(huggingface) What sports are played in schools in the capital region?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:region . ?x onto:sport ?uri . ?x rdf:type onto:School}",julipc-p(huggingface) "What company brought Riddim Ribbon to the market, and developed the batch monitor?","PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Batch_Monitor prop:developer ?uri. res:Riddim_Ribbon_feat._The_Black_Eyed_Peas prop:distributor ?uri}",julipc-p(huggingface) which awards have been given to people who fought in the Battle of France?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:battle . ?x onto:award ?uri . ?x rdf:type onto:Person}",julipc-p(huggingface) Name the resting place of Charles Edward Magoon ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Charles_Edward_Magoon prop:restingplace ?uri }",julipc-p(huggingface) Who built the stadium which was rented for the 2013 Copa Centroamericana ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:tenant . ?x onto:builder ?uri . ?x rdf:type onto:Stadium}",julipc-p(huggingface) Who was the silver medalist of Gymnastics at the 2008 Summer Olympics Women's artistic individual all-around ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:silverMedalist ?uri }",julipc-p(huggingface) what are some common surnames of female people?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:gender res:Female }",julipc-p(huggingface) Which company owns the manufacturer of the Edsel Ranger?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:products res:Edsel_Ranger . ?x prop:parent ?uri . }",julipc-p(huggingface) List the total number of board members who share board with Creative commons ?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:board . ?x onto:board ?uri }",julipc-p(huggingface) "Who is the leader of United States House of Representatives elections, 1788 and 1789 ?","PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:leader ?uri }",julipc-p(huggingface) Name the mountain whose range is Sierra Nevada (U.S.) and parent mountain peak is Nevado de Toluca?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:mountainRange . ?uri onto:parentMountainPeak . ?uri rdf:type onto:Mountain}",julipc-p(huggingface) Where did the designer of Monument to Salavat Yulaev die?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Monument_to_Salavat_Yulaev onto:designer ?x . ?x prop:placeOfDeath ?uri . }",julipc-p(huggingface) How many mammals are in the Chordate phylum?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:phylum . ?uri rdf:type onto:Mammal}",julipc-p(huggingface) List the battles fought by Roh Tae-woo ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:battles ?uri }",julipc-p(huggingface) Which genre of books are published by Random House?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:publisher . ?x prop:subject ?uri . ?x rdf:type onto:Book}",julipc-p(huggingface) "Which famous political figure appointed william cushing, and also founded Pittsburgh>","PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Pittsburgh onto:founder ?uri. res:William_Cushing onto:appointer ?uri}",julipc-p(huggingface) Which newspapers are owned by companies which are under Rolv Erik Ryssdal?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:keyPerson . ?uri prop:owners ?x . ?uri rdf:type onto:Newspaper}",julipc-p(huggingface) Which series has an episode called The lost special and also a character named Sherlock Holmes ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:series ?uri. prop:characters ?uri}",julipc-p(huggingface) What are some Louisiana based models known for?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:placeOfBirth . ?x prop:knownFor ?uri . ?x rdf:type onto:Model}",julipc-p(huggingface) What are the prizes won by the animator of The Skeleton Dance ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:The_Skeleton_Dance onto:animator ?x . ?x onto:award ?uri . }",julipc-p(huggingface) Which office holder's constituency is Haight-Ashbury and has military unit as USS Kittiwake ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:constituency . ?uri onto:militaryUnit . ?uri rdf:type onto:OfficeHolder}",julipc-p(huggingface) What is the region of the ethnic group which speaks the language of Arkansas?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:language ?x . ?x prop:region ?uri . ?x rdf:type onto:EthnicGroup}",julipc-p(huggingface) What is the religion of the member of parliament who is a relative of Sarathchandra Rajakaruna?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:relation . ?x onto:religion ?uri . ?x rdf:type onto:MemberOfParliament}",julipc-p(huggingface) What organisation regulates and controls the New Sanno Hotel?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:New_Sanno_Hotel onto:tenant ?uri }",julipc-p(huggingface) Who is the common manager of Aston Villa 2000-02 season and aldo the manager of Middlesbrough F.C. season 2009-10,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:name ?uri. onto:manager ?uri}",julipc-p(huggingface) Name the F1 racer with relative as Ralf Schumacher and has child named Mick Schumacher?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:relatives . ?uri onto:child . ?uri rdf:type onto:FormulaOneRacer}",julipc-p(huggingface) Does the Toyota Verossa have the front engine design platform?,"PREFIX onto: ASK WHERE { onto:automobilePlatform . }",julipc-p(huggingface) What are some other products of the banks which makes Postbanken?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:product . ?x prop:products ?uri . ?x rdf:type onto:Bank}",julipc-p(huggingface) Who produces the trains operated by the MTR?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:operator . ?x onto:manufacturer ?uri . ?x rdf:type onto:Train}",julipc-p(huggingface) Name the TV show with distributor as Broadcast syndication and has theme music composed by Primus ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:distributor . ?uri prop:themeMusicComposer . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) In which countries can i find some feminist writers?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:movement . ?x onto:nationality ?uri . ?x rdf:type onto:Writer}",julipc-p(huggingface) "In which teams did anyone who played as a defencemen, play previously?","PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:position res:Defenceman . ?x onto:formerTeam ?uri . }",julipc-p(huggingface) What are the other band member of the Bands whose current members is Hynief?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:currentMembers . ?x onto:bandMember ?uri . ?x rdf:type onto:Band}",julipc-p(huggingface) Which line of the Vadodara Junction railway station is the route end of Mumbai Vadodara Expressway ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Mumbai_Vadodara_Expressway onto:routeEnd ?uri. res:Vadodara_Junction_railway_station prop:line ?uri}",julipc-p(huggingface) Who authored the works published in the Jump Square Magazine?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:magazine res:Jump_Square . ?x prop:author ?uri . }",julipc-p(huggingface) How many things are aired on BBC HD?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:network . }",julipc-p(huggingface) Which work of Craig van Tilbury is close to the area of The Chess Monthyl ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:The_Chess_Monthly prop:discipline ?uri. res:Craig_Van_Tilbury onto:occupation ?uri}",julipc-p(huggingface) Where does the successor of Thongsuk Samdaengpan reside?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Thongsuk_Samdaengpan prop:successor ?x . ?x onto:location ?uri . }",julipc-p(huggingface) What is the location city of the Denver Broncos which is also place of birth of the William C. Cramer ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Denver_Broncos onto:locationCity ?uri. res:William_C._Cramer prop:placeOfBirth ?uri}",julipc-p(huggingface) List bacteria whose order (taxonomy) is Bacillales and domain is Bacteria?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:order . ?uri prop:domain . ?uri rdf:type onto:Bacteria}",julipc-p(huggingface) What is the place of the Geography Club (play) which is also the official residence of the Scott Berkun?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:place ?uri. prop:residence ?uri}",julipc-p(huggingface) What are some characters of series produced by Ricky Grevais?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:executiveProducer res:Ricky_Gervais . ?uri onto:series ?x . }",julipc-p(huggingface) Which band's former member are Kevin Jonas and Joe Jonas?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:formerBandMember . ?uri prop:pastMembers . ?uri rdf:type onto:Band}",julipc-p(huggingface) Count all those whose youth club was managed by Luis Enrique.,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:manager . ?uri prop:youthclubs ?x . }",julipc-p(huggingface) What is the purpose of the Maharashtra Chess Association which is genere of PyChess?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Maharashtra_Chess_Association prop:purpose ?uri. res:PyChess onto:genre ?uri}",julipc-p(huggingface) In which language is All I need is Your Sweet lovin written ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:language ?uri }",julipc-p(huggingface) Which colonel consort is Dolley Madison?,"PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:rank . ?uri prop:spouse . }",julipc-p(huggingface) Which title of Zaman Shah Durrani is also the nationality of Salahuddin ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Zaman_Shah_Durrani prop:title ?uri. res:Salahuddin_Rabbani onto:nationality ?uri}",julipc-p(huggingface) List the judges of Rising Star which is also the artist of Brad Paisley discography ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:judges ?uri. prop:artist ?uri}",julipc-p(huggingface) Who are some people whose relation is hqed in Gold Base?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:headquarters res:Gold_Base . ?uri onto:religion ?x . }",julipc-p(huggingface) In which state is the alma mater of Ben Ysursa located ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Ben_Ysursa prop:almaMater ?x . ?x onto:state ?uri . }",julipc-p(huggingface) "What sport amongst the one Lagos Preparatory School practices, did Willian Garne play for?","PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Lagos_Preparatory_School onto:sport ?uri. res:William_Garne onto:occupation ?uri}",julipc-p(huggingface) What are the beverages whose origin is England?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:origin res:England }",julipc-p(huggingface) Which current member of Insect vs Robots is also the music composer of Kenny Dies ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Insects_vs_Robots prop:currentMembers ?uri. res:Kenny_Dies onto:musicComposer ?uri}",julipc-p(huggingface) What are the television shows whose distributer is HBO?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:distributor . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) What is the distributing label of StandBy Records ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:StandBy_Records onto:distributingLabel ?uri }",julipc-p(huggingface) Who is the film star of On Air with Ryan Seacrest ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:On_Air_with_Ryan_Seacrest onto:starring ?uri }",julipc-p(huggingface) In how many different places does Canal and River Trust own its assets?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:owner . ?x onto:location ?uri . }",julipc-p(huggingface) Count the total number of launch site of the rockets which have been launched form Cape Canaveral Air Force Station ?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:launchSite . ?x onto:launchSite ?uri }",julipc-p(huggingface) List some leaders of regions in the Indian Standard Time Zone?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:timeZone . ?x onto:leaderName ?uri . ?x rdf:type onto:Place}",julipc-p(huggingface) Name some comic characters created by Bruce Timm?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:creator res:Bruce_Timm . }",julipc-p(huggingface) Which university attended by Franklin W. Olin was also the alma mater of Patty Lin ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Patty_Lin prop:almaMater ?uri. res:Franklin_W._Olin prop:education ?uri}",julipc-p(huggingface) Whihc associate of THomas Bryan Martin is also the founder of Pittsburgh ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Thomas_Bryan_Martin onto:associate ?uri. res:Pittsburgh onto:founder ?uri}",julipc-p(huggingface) Who gives the license of WXXV-DT2 ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:licensee ?uri }",julipc-p(huggingface) Count the number of sports played by schools which play hockey ?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:sport . ?x onto:sport ?uri }",julipc-p(huggingface) List the tomb of the royalties whose burial place is Little Easton ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:placeOfBurial . ?x prop:placeOfBurial ?uri . ?x rdf:type onto:Royalty}",julipc-p(huggingface) What are some relatives of the people who fought in Operation Barbarossa?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:battle . ?x onto:relation ?uri . ?x rdf:type onto:Person}",julipc-p(huggingface) How many awards have been given to screenwriters?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:occupation . ?x prop:awards ?uri . }",julipc-p(huggingface) Who is the builder of Estadio Nacional de Costa Rica (2011) ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:builder ?uri }",julipc-p(huggingface) How many software run on operating system is Microsoft Windows?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:operatingSystem . ?uri rdf:type onto:Software}",julipc-p(huggingface) What is the awards given to the horse whose grandson is the famous Counterpoint?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:grandsire ?x . ?x onto:honours ?uri . ?x rdf:type onto:Horse}",julipc-p(huggingface) Where is the swedish covenant hospital?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Swedish_Covenant_Hospital onto:location ?uri }",julipc-p(huggingface) Who won a Norbert Wiener Award for Social and Professional Responsibility?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:prizes res:Norbert_Wiener_Award_for_Social_and_Professional_Responsibility . }",julipc-p(huggingface) What awards have been given to Screenwriters?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:occupation res:Screenwriter . ?x prop:awards ?uri . }",julipc-p(huggingface) Which office's people have died on the US Route 165?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:deathPlace . ?x prop:office ?uri . ?x rdf:type onto:Person}",julipc-p(huggingface) In which races have Tillingdale's horses participated?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:owner . ?x prop:race ?uri . ?x rdf:type onto:Horse}",julipc-p(huggingface) List the show related to the which was followed by Doctor Who Extra?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:subsequentWork . ?uri onto:related ?x . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) What is the predecessor of the automobile which is the related of Cadillac Fleetwood?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:related ?x . ?x onto:predecessor ?uri . ?x rdf:type onto:Automobile}",julipc-p(huggingface) Which country's largest city is Lima?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:largestCity res:Lima }",julipc-p(huggingface) List the institute of Robert hall ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:institution ?uri }",julipc-p(huggingface) To which religion does the commander of South Thailand insurgency belong?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:South_Thailand_insurgency onto:commander ?x . ?x onto:religion ?uri . }",julipc-p(huggingface) Who was the writer of the novel Maniac Magee?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:notableworks . ?uri rdf:type onto:Writer}",julipc-p(huggingface) Where is Emmett Hughes from?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Emmett_Hughes onto:nationality ?uri . }",julipc-p(huggingface) What are the movies whose music is given by Laurie Johnson?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:music . ?uri rdf:type onto:Film}",julipc-p(huggingface) What appliance Sony made after the success of PlayStation 2?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:manufacturer res:Sony . ?uri onto:predecessor res:PlayStation_2 . }",julipc-p(huggingface) What are some cars similar to luxury cars?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:class . ?x prop:related ?uri . ?x rdf:type onto:Automobile}",julipc-p(huggingface) "What television show is magistrated by Harry Connick, Jr.?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:judges . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) What genre of games are made by Blizzard Entertainment studios?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:developer . ?x prop:genre ?uri . ?x rdf:type onto:VideoGame}",julipc-p(huggingface) Name the series of Doctor Who: Evacuation Earth ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Doctor_Who:_Evacuation_Earth onto:series ?uri }",julipc-p(huggingface) List the awards won by the writer of Face to Face ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:writer ?x . ?x prop:awards ?uri . }",julipc-p(huggingface) What is the common party of Chandra Shekhar and Govinda ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:otherParty ?uri. onto:party ?uri}",julipc-p(huggingface) What awards were given to the screenplayer of The Motorcycle Diaries?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:screenplay ?x . ?x prop:awards ?uri . }",julipc-p(huggingface) What are some music artists whose bands have signed up with Entertainment One Music?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:label . ?x onto:bandMember ?uri . ?x rdf:type onto:Band}",julipc-p(huggingface) Name the broadcast area of Radio Philippines Network ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Radio_Philippines_Network prop:area ?uri }",julipc-p(huggingface) Which district of Fort Heath radar station is also the state of Joesph Story ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Fort_Heath_radar_station prop:district ?uri. res:Joseph_Story prop:state ?uri}",julipc-p(huggingface) Which river's mouth is located in Gulf of Mexico and has source location as Itasca State Park ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:riverMouth . ?uri prop:sourceLocation . ?uri rdf:type onto:River}",julipc-p(huggingface) Which religion is prevalent in the schools of the Ashanti region?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:region . ?x prop:denomination ?uri . ?x rdf:type onto:School}",julipc-p(huggingface) Which politician was succeeded by someone who graduated from the Instituts d'tudes politiques?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:almaMater . ?uri prop:successor ?x . ?uri rdf:type onto:OfficeHolder}",julipc-p(huggingface) How many different mascots are there of the NCAA teams?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:athletics . ?x prop:mascot ?uri . }",julipc-p(huggingface) "Which of the continents that Digitalb worked in, was christine rolfes born in?","PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:regionServed ?uri. onto:birthPlace ?uri}",julipc-p(huggingface) Which nation hosts the WTA Tour Championships?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:WTA_Tour_Championships prop:country ?uri }",julipc-p(huggingface) Name the television show whose theme music is composed by Julian Gingell and broadcasted on FOX ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:themeMusicComposer . ?uri prop:channel . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) What is the prize received by the one who wrote the screen play of The Postman ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:screenplay ?x . ?x onto:award ?uri . }",julipc-p(huggingface) What are the awrds won by Laemmle Theatres ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Laemmle_Theatres onto:service ?uri }",julipc-p(huggingface) "Name the office holder whose predecessor is Henry E. Catto, Jr. and won Screen Actors Guild Life Achievement Award?","PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:predecessor . ?uri onto:award . ?uri rdf:type onto:OfficeHolder}",julipc-p(huggingface) Which notable commanders of the Army Group Oberrhein (Germany) is the leader of the Kriminalpolizei?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:notableCommanders ?uri. onto:leader ?uri}",julipc-p(huggingface) Which maintainer of Cheasty Boulevard South is also the city of Soccer Bowl' 76 ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:city ?uri. onto:maintainedBy ?uri}",julipc-p(huggingface) Which colonel has allegiance to Colony of Virginia ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:allegiance . ?uri prop:rank . ?uri rdf:type onto:OfficeHolder}",julipc-p(huggingface) Which driver came first in the 1993 European Grand Prix ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:1993_European_Grand_Prix prop:firstDriver ?uri }",julipc-p(huggingface) What is the layout of the cars similar to that of the Subaru Outback?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:relatedMeanOfTransportation . ?x onto:layout ?uri . ?x rdf:type onto:Automobile}",julipc-p(huggingface) Name the university which has Lieutenaunt general as superintendent and mascot as Gyrfalcon ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:superintendent . ?uri prop:mascot . ?uri rdf:type onto:University}",julipc-p(huggingface) How many other ingredient are there in the foods whihh have one of the ingredient as Potato ?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:ingredient . ?x onto:ingredient ?uri }",julipc-p(huggingface) In which country is the Duong river?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Đuống_River onto:sourceCountry ?uri . }",julipc-p(huggingface) How many companies have launched their rockets from the Vandenerg Air base?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:launchSite . ?x onto:manufacturer ?uri . ?uri rdf:type onto:Company}",julipc-p(huggingface) List the destinations to which the airlines headquartered at the Gatwick Airport fly to?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:headquarters . ?x onto:destination ?uri . ?x rdf:type onto:Airline}",julipc-p(huggingface) What are some given names for males?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:gender res:Male }",julipc-p(huggingface) The official residence of Sukhumbhand paribatra ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Sukhumbhand_Paribatra prop:residence ?uri }",julipc-p(huggingface) What are the television shows whose company's predecessor is Desilu Productions?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:predecessor . ?uri prop:company ?x . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) What is operated by FedExField ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:FedExField onto:operator ?uri }",julipc-p(huggingface) "Which company which assembles its cars in Broadmeadows, Victoria?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:assembly . ?x onto:parentCompany ?uri . ?x rdf:type onto:Automobile}",julipc-p(huggingface) Foxconn makes how many things?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:manufacturer . }",julipc-p(huggingface) In how many nations can I find dishes made of Shallot?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:ingredient . ?x onto:country ?uri . ?uri rdf:type onto:Country}",julipc-p(huggingface) What is the mascot of the military unit of David Prowse?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:branch ?x . ?x prop:mascot ?uri . }",julipc-p(huggingface) How many other important things have been written by the creator of Stuart Alan Jones?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { onto:creator ?x . ?x onto:notableWork ?uri . }",julipc-p(huggingface) What is the genre of the Band whose home town is County Westmeath?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:hometown . ?x prop:genre ?uri . ?x rdf:type onto:Band}",julipc-p(huggingface) Which sports are played at institues in Taguig?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:city . ?x onto:sport ?uri . ?x rdf:type onto:EducationalInstitution}",julipc-p(huggingface) "Whose album is Haiti, I am sorry?","PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Haiti_I_Am_Sorry onto:album ?uri }",julipc-p(huggingface) Whose band members are known to play a PRS guitar?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:notableInstruments res:PRS_Guitars . ?uri prop:currentMembers ?x . }",julipc-p(huggingface) Which river's source place is Gloucestershire and mouth in North Sea?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:sourcePlace . ?uri onto:riverMouth . ?uri rdf:type onto:River}",julipc-p(huggingface) Name the commanders of military conflicts where Roundhead was one of the commander ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:commander . ?x onto:commander ?uri . ?x rdf:type onto:MilitaryConflict}",julipc-p(huggingface) What are some short story kind of Books?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:literaryGenre res:Short_story }",julipc-p(huggingface) What are the nicknames of the schools whose color is royal blue?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:colour . ?x prop:nickname ?uri . ?x rdf:type onto:School}",julipc-p(huggingface) "To what political party do the politicians graduated from Somerville college, Oxford belong to?","PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:almaMater . ?x onto:party ?uri . ?x rdf:type onto:OfficeHolder}",julipc-p(huggingface) What awards did Jos Rivera (playwright) win?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:awards ?uri }",julipc-p(huggingface) Which political figures were awarded Screen Actors Guild Life Achievement Award?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:award res:Screen_Actors_Guild_Life_Achievement_Award . }",julipc-p(huggingface) What are the things whose director of photography died in United States?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:deathPlace res:United_States . ?uri prop:cinematography ?x . }",julipc-p(huggingface) What is the Home Stadium of the Kenya national under-20 football team where Matin Suji was also born ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:homeStadium ?uri. onto:birthPlace ?uri}",julipc-p(huggingface) Name a company with key person as Dennis Muilenburg and Raymond Conner ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:keyPeople . ?uri onto:keyPerson . ?uri rdf:type onto:Company}",julipc-p(huggingface) What are some scientists who have stateless citizenship?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:citizenship . ?uri rdf:type onto:Scientist}",julipc-p(huggingface) Name the regions served by Toll Global Express ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Toll_Global_Express onto:regionServed ?uri }",julipc-p(huggingface) What is the protected area whose nearest city is Kenya?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:nearestCity . ?uri rdf:type onto:ProtectedArea}",julipc-p(huggingface) Count the nearest city to the historic palce whose one of the nearest city is Wisconsin ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:nearestCity . ?x prop:nearestCity ?uri }",julipc-p(huggingface) Give me the total number of commander of the military conflicts whose commander is Roundhead (Wyandot).,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:commander . ?x onto:commander ?uri }",julipc-p(huggingface) How many places were ruled by Elizabeth II?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:leaderName . ?uri rdf:type onto:Place}",julipc-p(huggingface) List the interest of the scientists whose one of the field is Chinese poetry ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:fields . ?x prop:fields ?uri . ?x rdf:type onto:Scientist}",julipc-p(huggingface) Who was the narrator of the show who's music is composed by John Douglas?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:composer . ?x prop:narrated ?uri . ?x rdf:type onto:TelevisionShow}",julipc-p(huggingface) "Which parent comapny of hypnotize Minds is the label of the Producers , a 2005 film ?","PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:parent ?uri. prop:label ?uri}",julipc-p(huggingface) Which college of Luke List (golfer) is the alma mater of K. Terry Dornbush,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:college ?uri. prop:almaMater ?uri}",julipc-p(huggingface) Who is the fictional character who portrayed in Terminator 2: Judgment Day?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:portrayer . ?uri rdf:type onto:FictionalCharacter}",julipc-p(huggingface) Which team of Dan Shamash is also the debutant team of John Estes ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:John_Estes onto:debutTeam ?uri. res:Dan_Shamash onto:team ?uri}",julipc-p(huggingface) Where do employees of Deroit Red Wings live?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:employer res:Detroit_Red_Wings . ?x onto:residence ?uri . }",julipc-p(huggingface) What are some countries where companies headquartered in the Klang Valley operate?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:headquarters . ?x prop:country ?uri . ?x rdf:type onto:Company}",julipc-p(huggingface) "Name the river whose mouth country is Mozambique and source region is North-Western Province, Zambia?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:mouthCountry . ?uri prop:sourceRegion . ?uri rdf:type onto:River}",julipc-p(huggingface) Give me a count of bacterias which belongs to Bacilli class?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:class . ?uri rdf:type onto:Bacteria}",julipc-p(huggingface) How many producers have worked for FremantleMedia productions?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:company . ?x onto:producer ?uri . }",julipc-p(huggingface) Who is on the board of Kate Spade and company?,"PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:board . }",julipc-p(huggingface) Which animator of Tommy Ticker's Tooth is also the director of The Haunted house ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:animator ?uri. onto:director ?uri}",julipc-p(huggingface) Name the university whose athletic department is called National Collegiate Athletic Association and has a chancellor named Nicholas S. Zeppos?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:athletics . ?uri prop:chancellor . ?uri rdf:type onto:University}",julipc-p(huggingface) How many shows are made by Larry David?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:creator . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) Martin AN/GSG-5 is a part of the building in which city?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:part . ?x prop:district ?uri . ?x rdf:type onto:Building}",julipc-p(huggingface) How many architects are there who have made something used by Oakland athletics?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:tenant . ?x prop:architect ?uri . }",julipc-p(huggingface) In which company's boards does the founder of Bomis sit?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Bomis onto:foundedBy ?x . ?x onto:board ?uri . }",julipc-p(huggingface) "What genre isPyChess from, which employes Craig Van Tilbury?","PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Craig_Van_Tilbury onto:occupation ?uri. res:PyChess prop:genre ?uri}",julipc-p(huggingface) Where is Ethiopian Parliament Building located ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Ethiopian_Parliament_Building prop:locationCountry ?uri }",julipc-p(huggingface) "Which are the cities on the river which also flows in Tukwila, Washington ?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:city . ?x onto:city ?uri . ?x rdf:type onto:River}",julipc-p(huggingface) Which award is presented by Downtown Athletic Club?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:presenter . ?uri rdf:type onto:Award}",julipc-p(huggingface) Who are the biological parents of Dannielynn Birkhead?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Dannielynn_Birkhead onto:parent ?uri }",julipc-p(huggingface) List the awards won by the spouse of Harriet Andersson?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Harriet_Andersson onto:partner ?x . ?x prop:awards ?uri . }",julipc-p(huggingface) Which company owns the airlines whose hub is in Dubai?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:hubs . ?x prop:parent ?uri . ?x rdf:type onto:Airline}",julipc-p(huggingface) Which appointer of William Clark is the successor of Levi Lincoln Sr ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:successor ?uri. prop:appointer ?uri}",julipc-p(huggingface) Which company's division is Audi India? Correct Question,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:divisions res:Audi_India }",julipc-p(huggingface) "What was the book that lead to Sagan's Cosmos, about?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:subsequentWork . ?x prop:subject ?uri . ?x rdf:type onto:Book}",julipc-p(huggingface) What is the nationality of the chancellor who was served by Michael Mayr?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:deputy ?x . ?x onto:nationality ?uri . ?x rdf:type onto:Chancellor}",julipc-p(huggingface) What is the official residence of the Helen Getachew which is also the palce of death of the Haile Selassie Gugsa ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Helen_Getachew onto:residence ?uri. res:Haile_Selassie_Gugsa prop:placeOfDeath ?uri}",julipc-p(huggingface) Who built the Ford Y-block engine ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:manufacturer ?uri }",julipc-p(huggingface) What is the region of Lumberjack ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Lumberjack_100 prop:region ?uri }",julipc-p(huggingface) "Where did the president study, who's the president of Besiktas JK?","PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:president ?x . ?x prop:almaMater ?uri . }",julipc-p(huggingface) How many awards have royal designers for industry awardwinners got?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:awards . ?x onto:award ?uri . ?uri rdf:type onto:Award}",julipc-p(huggingface) Where is the team of Abdel Boucker located ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Abdel_Bouckar prop:team ?x . ?x onto:location ?uri . }",julipc-p(huggingface) For which other teams do members of tanzanian national football team play?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:nationalteam res:Tanzania_national_football_team . ?x onto:team ?uri . }",julipc-p(huggingface) What is the governing body of Burro Flats Painted Cave ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Burro_Flats_Painted_Cave onto:governingBody ?uri }",julipc-p(huggingface) What are some cartoons distributed by a subsidiary of Time Warner?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:parentCompany . ?uri prop:distributor ?x . ?uri rdf:type onto:Cartoon}",julipc-p(huggingface) Whose famous works have been illustrated by E W Kemble?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:illustrator res:E._W._Kemble . ?uri onto:notableWork ?x . }",julipc-p(huggingface) Which Fox show is presented by Ryan Seacrest?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:presenter . ?uri prop:channel . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) How many TV show has distributor located in Burbank California ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:locationCity . ?uri prop:distributor ?x . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) List the ceremonial county of East Tilbury ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:East_Tilbury onto:ceremonialCounty ?uri }",julipc-p(huggingface) Which television show's theme music composer is Gary Portnoy and subsequent work is Frasier?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:themeMusicComposer . ?uri onto:subsequentWork . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) List the common sports between Fr. Agnel Multipurpose School and Jamiatu Muslim Mindanao,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Fr._Agnel_Multipurpose_School_and_Junior_College onto:sport ?uri. res:Jamiatu_Muslim_Mindanao onto:athletics ?uri}",julipc-p(huggingface) "Which award that has been given to James F Obrien, had used Laemmle Theatres for some service?","PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:service ?uri. onto:award ?uri}",julipc-p(huggingface) What is the drafted team of the people expected to join toronto marlies?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:prospectTeam . ?x prop:draftTeam ?uri . ?x rdf:type onto:Person}",julipc-p(huggingface) Which office holder's predecessor is Lucius Cornelius and his associate is Marcus Calpurnius Bibulus?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:predecessor . ?uri onto:associate . ?uri rdf:type onto:OfficeHolder}",julipc-p(huggingface) How many people have parterned with the person choroegraphed by Catarina Lindgren in the past?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:formerChoreographer . ?x onto:formerPartner ?uri . ?uri rdf:type onto:Person}",julipc-p(huggingface) List everything governed by the Democratic Party of US?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:leaderName . ?uri onto:location ?x . }",julipc-p(huggingface) Name the current club of Abdelhameed Amarri ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Abdelhameed_Amarri prop:currentclub ?uri }",julipc-p(huggingface) The pope whose shrine is in St Peter's Basilica was venerated in which sects?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:majorShrine . ?x prop:veneratedIn ?uri . ?x rdf:type onto:Pope}",julipc-p(huggingface) Who is the father of Barbara Ann Crancer?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:child res:Barbara_Ann_Crancer . }",julipc-p(huggingface) Which home stadium of 2011-12 FC Spartak Moscow season is also the location of birth of the Svetlana Gounkina ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:2011–12_FC_Spartak_Moscow_season onto:homeStadium ?uri. res:Svetlana_Gounkina onto:birthPlace ?uri}",julipc-p(huggingface) Which games publishers are located in California?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:location res:California . ?uri onto:publisher ?x . }",julipc-p(huggingface) Where is the stadium of Philadelphia Rage ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Philadelphia_Rage onto:stadium ?uri }",julipc-p(huggingface) Who produced the Pixar Image Computer?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:product res:Pixar_Image_Computer . }",julipc-p(huggingface) What are the baseball teams who belongs to Guggenheim Partners?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:owner . ?uri rdf:type onto:BaseballTeam}",julipc-p(huggingface) Count all the things licensed as Software as a service.,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:license . }",julipc-p(huggingface) Who is the headcoach of 2014-15 Virginia Tech Hokies men's basketball team ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:headcoach ?uri }",julipc-p(huggingface) What is the resting place of the politician who succeeded Samuel Hayes?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:successor ?x . ?x onto:restingPlace ?uri . ?x rdf:type onto:Politician}",julipc-p(huggingface) What country had the title of 2001 Speedway Ekstraliga ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:2001_Speedway_Ekstraliga prop:title ?x . ?x onto:country ?uri . }",julipc-p(huggingface) How many broadcast area of the television stations exists whose broadcast area is Rodrigues ?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:broadcastArea . ?x prop:broadcastArea ?uri }",julipc-p(huggingface) Count the drinks originated in England.,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:origin . ?uri rdf:type onto:Beverage}",julipc-p(huggingface) What is the total number of other non-fiction subject of the books whose one of the subject is Racism?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:nonFictionSubject . ?x onto:nonFictionSubject ?uri }",julipc-p(huggingface) Name all the junctions of U.S. Route 59?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:U.S._Route_59 prop:junction ?uri }",julipc-p(huggingface) What are some other services of the company whose service is Onedrive?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:service . ?x prop:services ?uri . ?x rdf:type onto:Company}",julipc-p(huggingface) Give me some softwares which run on mac os,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:operatingSystem . ?uri rdf:type onto:Software}",julipc-p(huggingface) What is the city of the television station whose affiliations is LATV?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:affiliations . ?x prop:city ?uri . ?x rdf:type onto:TelevisionStation}",julipc-p(huggingface) "What is the state of the administrative region where Oscoda, Michigan is located?","PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:isPartOf ?x . ?x onto:state ?uri . ?x rdf:type onto:AdministrativeRegion}",julipc-p(huggingface) Who were all the people in office when bob hawke was the PM?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:primeMinister res:Bob_Hawke }",julipc-p(huggingface) What is Bob Adams (American football) known for?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:knownFor ?uri }",julipc-p(huggingface) Who owns Chelsea F.C.?,"PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:occupation . }",julipc-p(huggingface) What is the common affiliation of the Monroe Carell Jr. Children's Hospital at Vanderbilt and alma mater of the Duncan U. Fletcher?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:affiliation ?uri. onto:almaMater ?uri}",julipc-p(huggingface) Among the scientist known for Manhattan Project who had a doctoral student named Charles Ellis ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:doctoralStudents . ?uri prop:knownFor . ?uri rdf:type onto:Scientist}",julipc-p(huggingface) UEM group have made bridges crossing over what?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:designer res:UEM_Group . ?x prop:crosses ?uri . }",julipc-p(huggingface) How many relatives are there of the people who died in Germany?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:placeOfDeath . ?x onto:relation ?uri . }",julipc-p(huggingface) Where do bachelor of arts live?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:almaMater res:Bachelor_of_Arts . ?x onto:residence ?uri . }",julipc-p(huggingface) How many mountain are there in Sierra Nevada range?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:mountainRange . ?uri rdf:type onto:Mountain}",julipc-p(huggingface) What is the total number of other characters of the plays whose characters is Robin (comics)?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:characters . ?x prop:characters ?uri }",julipc-p(huggingface) What are the awards won by the spouse of Liv Ullmann ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Liv_Ullmann onto:partner ?x . ?x prop:awards ?uri . }",julipc-p(huggingface) What is the Recorded of the Kaptaan is also the headquarters of the Orient News ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Kaptaan prop:recorded ?uri. res:Orient_News prop:headquarters ?uri}",julipc-p(huggingface) What is the total number of other nearest countries to the lakes whose nearest countries is Uganda?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:nearestCity . ?x onto:nearestCity ?uri }",julipc-p(huggingface) How many companies have developed cross platformed softwares?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:operatingSystem . ?x onto:developer ?uri . }",julipc-p(huggingface) List the shows whose network is run by BBC.,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:owningCompany . ?uri onto:network ?x . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) How many titles were given to people who engaged in the Operation Dragoon?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:battles . ?x onto:award ?uri . }",julipc-p(huggingface) Which place founded by Penobscot Island Air is also the location fo Ellei Johndro ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Penobscot_Island_Air prop:founded ?uri. res:Ellei_Johndro onto:birthPlace ?uri}",julipc-p(huggingface) Name the TV show whose opening theme is Gary Portnoy and the subsequent work is Frasier?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:openingTheme . ?uri onto:subsequentWork . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) List the pole drivers in the grand prixes where Williams Grand Prix Engineering was a first team?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:firstTeam . ?x onto:poleDriver ?uri . ?x rdf:type onto:GrandPrix}",julipc-p(huggingface) Which appointer of the Joseph Clay (Georgia) is also the President of the William Carmichael (diplomat) ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:appointer ?uri. prop:president ?uri}",julipc-p(huggingface) Who is the employer of Michael M. Sears ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Michael_M._Sears prop:employer ?uri }",julipc-p(huggingface) List things developed by Autoconf ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Autoconf onto:developer ?uri }",julipc-p(huggingface) List all the artist of the TV shows which has McClain as one of the artist ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:artist . ?x prop:artist ?uri . ?x rdf:type onto:TelevisionShow}",julipc-p(huggingface) Who is the person whose child performed with Tony Bennett?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:associatedActs res:Tony_Bennett . ?uri onto:child ?x . }",julipc-p(huggingface) Name the river with mouth as Thames Estuary and passes through Reading Berkshire ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:riverMouth . ?uri prop:city . ?uri rdf:type onto:River}",julipc-p(huggingface) Who all play for the Ivory Coast football team?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:nationalteam res:Ivory_Coast_national_football_team }",julipc-p(huggingface) List all the layouts of the automobile whose one of the layout is four-wheel-drive layout ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:layout . ?x onto:layout ?uri . ?x rdf:type onto:Automobile}",julipc-p(huggingface) "To how many places does the airlines fly, whose head office is located at the Gatwick Airport?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:headquarter . ?x prop:destinations ?uri . ?uri rdf:type onto:Place}",julipc-p(huggingface) What are the television shows whose distributor is a division of Warner Bros. International TV?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:divisions . ?uri prop:distributor ?x . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) Where is the arena of WPC Dynamo Moscow situated?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:WPC_Dynamo_Moscow prop:arena ?uri }",julipc-p(huggingface) Which relative of George Madison is the appointer of John Drayton ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:John_Drayton prop:appointer ?uri. res:George_Madison onto:relation ?uri}",julipc-p(huggingface) How many scientist have won an award by the society led by Venkatraman Ramakrishnan?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:leaderName . ?uri prop:prizes ?x . ?uri rdf:type onto:Scientist}",julipc-p(huggingface) Who all did their high school in Denbigh high School?,"PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:highSchool }",julipc-p(huggingface) Name the company founded in US and provides OneDrive as service ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:services . ?uri prop:foundation . ?uri rdf:type onto:Company}",julipc-p(huggingface) Which manufacturer of the Boeing B-17 Flying fortress is the manager of burro Flats Painted Caves ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:governingBody ?uri. onto:manufacturer ?uri}",julipc-p(huggingface) What is the information appliance whose successor is PlayStation 4 and maker is Foxconn?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:successor . ?uri prop:manufacturer . ?uri rdf:type onto:InformationAppliance}",julipc-p(huggingface) What country provides a citizenship too Newin Chidchob and Seni Pramoj?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Newin_Chidchob prop:nationality ?uri. res:Seni_Pramoj onto:nationality ?uri}",julipc-p(huggingface) Which person has opponent Ike Clanton?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:opponent . ?uri rdf:type onto:Person}",julipc-p(huggingface) Who is the builder of Atamurat-Kerkichi Bridge ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:builder ?uri }",julipc-p(huggingface) name the mountain range of Le Gibloux ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Le_Gibloux onto:mountainRange ?uri }",julipc-p(huggingface) Count me all the video game distributor whose parent company is Warner Bros ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:parent . ?uri prop:distributor ?x . ?uri rdf:type onto:VideoGame}",julipc-p(huggingface) Who all were involved in the wars fought by the commander Blue Jacket?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:commander . ?x prop:combatant ?uri . ?x rdf:type onto:MilitaryConflict}",julipc-p(huggingface) Who is the associate of Thomas Bryan Martin ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Thomas_Bryan_Martin onto:associate ?uri }",julipc-p(huggingface) In what wars was Steve Buyer involved?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Steve_Buyer onto:battle ?uri }",julipc-p(huggingface) What is the profession of the children of Herbert Pell ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Herbert_Pell prop:children ?x . ?x onto:profession ?uri . }",julipc-p(huggingface) Which astronauts went on the Gemini 8 mission?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:mission . ?uri rdf:type onto:Astronaut}",julipc-p(huggingface) Erik Jendresen is the writer of which television show?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:writer . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) Where is the station whose sister channel is the Channel 3 in Thailand?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:sisterStations . ?x prop:city ?uri . ?x rdf:type onto:TelevisionStation}",julipc-p(huggingface) How many people have written stuff broadcasted on the Tokyo Broadcasting System?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:network . ?x prop:writer ?uri . ?uri rdf:type onto:Person}",julipc-p(huggingface) What is the mascot of the military unit whose commander is Herbert Bautista ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:notableCommander . ?x prop:mascot ?uri . ?x rdf:type onto:MilitaryUnit}",julipc-p(huggingface) Which new Mexico based company produces Surface ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:foundation . ?uri onto:product . ?uri rdf:type onto:Company}",julipc-p(huggingface) Who is the person who are on the board of Freedom of the City?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:board . ?uri rdf:type onto:Person}",julipc-p(huggingface) What cities are around the sea which flows into Marmara?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:inflow . ?x prop:cities ?uri . ?x rdf:type onto:Sea}",julipc-p(huggingface) Companies headquartered in Geneva own which TV Shows?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:headquarter res:Geneva . ?uri prop:company ?x . }",julipc-p(huggingface) Who died due to Morphine ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:deathCause res:Morphine . }",julipc-p(huggingface) Which purpose of the Maharashtra Chess Association is Abhijit kunte is also know for ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Maharashtra_Chess_Association prop:purpose ?uri. res:Abhijit_Kunte prop:knownFor ?uri}",julipc-p(huggingface) What does the famous relative of Levon Ashotovich Grigorian do for a living?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:relatives res:Levon_Ashotovich_Grigorian . ?x onto:occupation ?uri . }",julipc-p(huggingface) Where is the debut team of Shaquil Barrett located?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Shaquil_Barrett prop:debutteam ?x . ?x onto:locationCity ?uri . }",julipc-p(huggingface) Who owns Ivanpah Solar Power Facility?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Ivanpah_Solar_Power_Facility onto:owner ?uri }",julipc-p(huggingface) What artist of Charing Cross Bridge influenced Dorothea Sharp in her career?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:artist ?uri. prop:influencedBy ?uri}",julipc-p(huggingface) What is the game whose genre is Mind sport?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:genre . ?uri rdf:type onto:Game}",julipc-p(huggingface) List the awards given to the race horses bred by Willis Sharpe Kilmer.,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:breeder . ?x onto:honours ?uri . ?x rdf:type onto:RaceHorse}",julipc-p(huggingface) Which country's engineered have studied at Aero Klub in Wroclaw?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:institution res:AeroKlub_Wrocław . ?x prop:nationality ?uri . }",julipc-p(huggingface) "What is the common place where USS Camp DE-251 was built, and is one of the destinations of Emerald Air?","PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:shipBuilder ?uri. onto:destination ?uri}",julipc-p(huggingface) List the religions of the commanders of Royal Thai Army.,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Royal_Thai_Army prop:notableCommanders ?x . ?x onto:religion ?uri . }",julipc-p(huggingface) What is the official name of Arkansas wine ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Arkansas_wine prop:officialName ?uri }",julipc-p(huggingface) Which country is the birth place of Marcus Samuelsson and Samuel of Waldebba ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Marcus_Samuelsson prop:birthPlace ?uri. res:Samuel_of_Waldebba prop:placeOfBirth ?uri}",julipc-p(huggingface) Name the battle fought by the military persons who also fought in Algeria ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:battles . ?x prop:battles ?uri . ?x rdf:type onto:MilitaryPerson}",julipc-p(huggingface) Where is the head quarters of the parent company of Mall of America located?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Mall_of_America prop:owned ?x . ?x prop:headquarters ?uri . }",julipc-p(huggingface) Bridge that starts at Seberang Perai crosses over what?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:routeStart res:Seberang_Perai . ?x prop:crosses ?uri . }",julipc-p(huggingface) what cities are located on the sides of mediterranean sea?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Mediterranean_Sea prop:cities ?uri }",julipc-p(huggingface) What is the purpose of some Maharashtran organizations?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:headquarter . ?x prop:purpose ?uri . ?x rdf:type onto:Organisation}",julipc-p(huggingface) In how many territories were the wars fought where Fusil Gras Mile 1874 were used?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { onto:usedInWar ?x . ?x onto:territory ?uri . ?x rdf:type onto:MilitaryConflict}",julipc-p(huggingface) Mota Engil built bridges over which rivers?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:builder . ?x onto:crosses ?uri . ?x rdf:type onto:Bridge}",julipc-p(huggingface) How many other field are there of the scientists whose one of the field is Mathematics ?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:field . ?x onto:field ?uri }",julipc-p(huggingface) "Twin cities 400 is operated by what city, which is the birthplace of Leona Baumgarter?","PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Twin_Cities_400 onto:operatedBy ?uri. res:Leona_Baumgartner onto:birthPlace ?uri}",julipc-p(huggingface) How many people currently play for the NYC FC?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:currentclub . }",julipc-p(huggingface) "In how many other states do people live, whose languages are spoken in Nebraska?","PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { onto:language ?x . ?x prop:region ?uri . }",julipc-p(huggingface) Name the alma mater of Michael hahn ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Michael_Hahn onto:almaMater ?uri }",julipc-p(huggingface) What is the mascot of the unit whose garrison is Canberra ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:garrison . ?x prop:mascot ?uri . ?x rdf:type onto:MilitaryUnit}",julipc-p(huggingface) List the governers of Jimmie Lou Fisher?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Jimmie_Lou_Fisher prop:governor ?uri }",julipc-p(huggingface) How many people have played for a club whose coach is Fred Hoiberg?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:coach . ?uri prop:team ?x . }",julipc-p(huggingface) Who discovered Callisto ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:discoverer ?uri }",julipc-p(huggingface) which politician is currently ruling over Rishkiesh?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Rishikesh onto:leaderName ?uri }",julipc-p(huggingface) Where is Carmel Winery?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Carmel_Winery prop:locationCountry ?uri }",julipc-p(huggingface) Name the architect of Marine Corps Air Station Kaneohe Bay ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Marine_Corps_Air_Station_Kaneohe_Bay prop:architect ?uri }",julipc-p(huggingface) How many different organizations own the railway lines which are a part of Norfolk Southern Railway?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:system . ?x prop:owner ?uri . ?uri rdf:type onto:Organisation}",julipc-p(huggingface) Name the parts of the settlements which has New Braunfels as one of the parts ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:part . ?x onto:part ?uri . ?x rdf:type onto:Settlement}",julipc-p(huggingface) Which shows had their painters born in England?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:birthPlace . ?uri onto:creator ?x . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) Which mountain is located in inyo National Forest and has a parent peak named Nevado de Toluca ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:locatedInArea . ?uri onto:parentMountainPeak . ?uri rdf:type onto:Mountain}",julipc-p(huggingface) Which office holder's resting place is William Henry Harrison Tomb State Memorial and has governor named Charles Willing Byrd?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:restingplace . ?uri onto:governor . ?uri rdf:type onto:OfficeHolder}",julipc-p(huggingface) Where was the movie after Khiladi 786 recorded?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:nextAlbum ?x . ?x prop:recorded ?uri . ?x rdf:type onto:Film}",julipc-p(huggingface) Who are the politicians whose death place is Ontario?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:deathPlace . ?uri rdf:type onto:Politician}",julipc-p(huggingface) Which statesman is married to Dolley Madison?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:spouse . ?uri rdf:type onto:OfficeHolder}",julipc-p(huggingface) How many theme musics have been composed by Julian Gingell?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:themeMusicComposer . }",julipc-p(huggingface) Name the monarch of L Buwei ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Lü_Buwei onto:monarch ?uri }",julipc-p(huggingface) Name the musician who was given label by Celluloid Records and has been associated with Africa'70 ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:label . ?uri onto:associatedMusicalArtist . ?uri rdf:type onto:MusicalArtist}",julipc-p(huggingface) What is the stylistic origin of Wizard rock ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Wizard_rock onto:stylisticOrigin ?uri }",julipc-p(huggingface) List the fields of the scientists with Sanskrit as one of the interest ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:fields . ?x prop:fields ?uri . ?x rdf:type onto:Scientist}",julipc-p(huggingface) "Of all the teams that Andrew Economos played for, which one did Jerrel Jackson play his first game for?","PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Jerrell_Jackson onto:debutTeam ?uri. res:Andrew_Economos onto:formerTeam ?uri}",julipc-p(huggingface) What are the movies whose director's daughter is Luke Scott?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:child . ?uri prop:director ?x . ?uri rdf:type onto:Film}",julipc-p(huggingface) List the other members of the band of which Juelz Santana is a part?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:currentMembers . ?x onto:bandMember ?uri . ?x rdf:type onto:Band}",julipc-p(huggingface) Give me a count of everything made by the company which offers electronical manufacturing too.,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:service . ?uri onto:manufacturer ?x . }",julipc-p(huggingface) How many games have been composed by Hirokazu Tanaka?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:composer . ?uri rdf:type onto:VideoGame}",julipc-p(huggingface) Who are the tenants of the stadium where the UFC 140 is located?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:location ?x . ?x onto:tenant ?uri . ?x rdf:type onto:Stadium}",julipc-p(huggingface) Which kmascot od seneca Academy is also the species of The Fox and the Cat ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:The_Fox_and_the_Cat prop:species ?uri. res:Seneca_Academy_and_Circle_School prop:mascot ?uri}",julipc-p(huggingface) "Name the university whose affiliations's foundation place is Washington, D.C.?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:foundationPlace . ?uri prop:affiliations ?x . ?uri rdf:type onto:University}",julipc-p(huggingface) What awards did the cast members of Gods of Egypt win?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:starring ?x . ?x prop:awards ?uri . }",julipc-p(huggingface) Where can I find people whose hometown is Ann Arbour in Michigan?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:homeTown . ?x onto:residence ?uri . ?x rdf:type onto:Person}",julipc-p(huggingface) What is the former team of the Athens borned basketball players ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:birthPlace . ?x onto:formerTeam ?uri . ?x rdf:type onto:BasketballPlayer}",julipc-p(huggingface) In which city is the hub airport of Club One Air?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Club_One_Air onto:hubAirport ?x . ?x prop:cityServed ?uri . }",julipc-p(huggingface) Where did the relatives of Gustavo Rojas Pinilla study?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:relation res:Gustavo_Rojas_Pinilla . ?x prop:almaMater ?uri . }",julipc-p(huggingface) For how many things are americans famous for?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:placeOfBirth . ?x onto:knownFor ?uri . }",julipc-p(huggingface) Who is the successor of McDonnell Douglas ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:McDonnell_Douglas prop:successor ?uri }",julipc-p(huggingface) What is the publisher of Lucifer's Hammer ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:publisher ?uri }",julipc-p(huggingface) List the origin of the weapons which were used in the American Revolutionary War.,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:usedInWar . ?x prop:origin ?uri . ?x rdf:type onto:Weapon}",julipc-p(huggingface) Purnima Banerjee and Rishang Keishing are politicians of what party ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Rishang_Keishing prop:party ?uri. res:Purnima_Banerjee onto:party ?uri}",julipc-p(huggingface) Which show's theme music composer's label is MapleMusic Recordings?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:recordLabel . ?uri prop:themeMusicComposer ?x . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) List the former team of the american football players born in Pennsylvania ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:birthPlace . ?x onto:formerTeam ?uri . ?x rdf:type onto:AmericanFootballPlayer}",julipc-p(huggingface) Which company founded by Fusajiro Yamauchi gives service as Nintendo Network?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:foundedBy . ?uri prop:services . ?uri rdf:type onto:Company}",julipc-p(huggingface) Richard Gant did a guest appearance on which series?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:guests res:Richard_Gant . ?x onto:series ?uri . }",julipc-p(huggingface) How many things belong to a division of plant kingdom?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:kingdom . ?uri onto:division ?x . }",julipc-p(huggingface) What is that show whose theme was composed by Joel Goodman?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:themeMusicComposer . ?x prop:showName ?uri . ?x rdf:type onto:TelevisionShow}",julipc-p(huggingface) What is the field of the Jon Speelman and occupation of the Karen Grigorian?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Jon_Speelman onto:field ?uri. res:Karen_Grigorian onto:occupation ?uri}",julipc-p(huggingface) What are the countries for which History of Trier principal to?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:capital . ?uri rdf:type onto:Country}",julipc-p(huggingface) List the uni. having affiliation with Graham Holding Company and have a campus in Iowa ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:affiliations . ?uri onto:campus . ?uri rdf:type onto:University}",julipc-p(huggingface) Where was Antonio Giannini born?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Antonio_Giannini onto:birthPlace ?uri }",julipc-p(huggingface) What movies have been produced by the production house owned by Larry J. Franco?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:producer res:Larry_J._Franco }",julipc-p(huggingface) What is the death location of the scientist who is the known authority of Hallopus ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:binomialAuthority ?x . ?x onto:deathPlace ?uri . ?x rdf:type onto:Scientist}",julipc-p(huggingface) What are some non fiction subjects dealt with in fantasy novels?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:literaryGenre . ?x onto:nonFictionSubject ?uri . ?x rdf:type onto:Book}",julipc-p(huggingface) Which companies have launched a rocket from Cape Canaveral Air Force station?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:launchSite . ?x onto:manufacturer ?uri . ?x rdf:type onto:Rocket}",julipc-p(huggingface) Name everyone working for a company owned by Roman Abramovich.,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:owningCompany res:Roman_Abramovich . ?uri onto:occupation ?x . }",julipc-p(huggingface) Who astronaut from NASA was on the mission of Apollo 11?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:mission . ?uri prop:type . ?uri rdf:type onto:Astronaut}",julipc-p(huggingface) Name the profession of Oamr D Conger for which Jack Ryan was also nominated ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:nominee ?uri. prop:order ?uri}",julipc-p(huggingface) Where were Micheal Santos and Wendy Jaquet born?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Michael_G._Santos onto:birthPlace ?uri. res:Wendy_Jaquet prop:placeOfBirth ?uri}",julipc-p(huggingface) Name the show formed by J. Michael Stroczynski and had network as TNT ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:developer . ?uri prop:network . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) Which office holder's resting place is Alta Mesa Memorial park and has adrian A. Basora as successor ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:successor . ?uri prop:restingPlace . ?uri rdf:type onto:OfficeHolder}",julipc-p(huggingface) Name the movie written by Monty Python and has music composer as Geoffrey Burgon ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:writer . ?uri onto:musicComposer . ?uri rdf:type onto:Film}",julipc-p(huggingface) Which politicians died in cities built by the Roman emperor Charles 5?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:builder . ?uri onto:deathPlace ?x . ?uri rdf:type onto:OfficeHolder}",julipc-p(huggingface) In how many different places can I find companies which were founded in toronto?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:foundationPlace . ?x prop:locations ?uri . ?uri rdf:type onto:Place}",julipc-p(huggingface) What are some relatives of the spouse of Uncle henry from Oz?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:spouse . ?uri onto:relative ?x . }",julipc-p(huggingface) List the outflows of the lake which has Benu river as one of it ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:outflow res:Benué_River . ?x prop:outflow ?uri . }",julipc-p(huggingface) List the people who were the first one to climb a mountain in California?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:locatedInArea . ?x onto:firstAscentPerson ?uri . ?x rdf:type onto:Mountain}",julipc-p(huggingface) Name the sitcom with theme music composer as Julian Gingell and channel as Fox Broadcasting Company?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:themeMusicComposer . ?uri onto:channel . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) Give a list of all the labels that have jazz fusion artists signed up with them?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:genre . ?x onto:recordLabel ?uri . ?x rdf:type onto:MusicalArtist}",julipc-p(huggingface) What is the mascot of Blytheville High School ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Blytheville_High_School prop:mascot ?uri }",julipc-p(huggingface) Which composer of Girl from the North Country is the subsequent work of the Moondog Matinee?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Girl_from_the_North_Country onto:composer ?uri. res:Moondog_Matinee onto:subsequentWork ?uri}",julipc-p(huggingface) What is the subject of the book which preceded Sagan's Cosmos?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:previousWork ?x . ?x prop:subject ?uri . }",julipc-p(huggingface) In which television shows has Eliza Schneider given her voice?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:voices . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) Who wrote Catch My soul ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:author ?uri }",julipc-p(huggingface) What are some islands in the bahamas?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:archipelago . ?uri rdf:type onto:Island}",julipc-p(huggingface) In which state does the ambassador who is in related with J Bennett Johnston live?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:J._Bennett_Johnston onto:relation ?x . ?x prop:state ?uri . }",julipc-p(huggingface) "Where were the sportsmen born, who started their careers with Homestead Grays?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:debutteam . ?x prop:birthDate ?uri . ?x rdf:type onto:Athlete}",julipc-p(huggingface) Which hometown of pavel Moroz is also the palace of birthplace of Helena of Moscow ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Pavel_Moroz prop:hometown ?uri. res:Helena_of_Moscow onto:birthPlace ?uri}",julipc-p(huggingface) Who are the cast members of The Simpsons Ride?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:The_Simpsons_Ride prop:starring ?uri }",julipc-p(huggingface) How many awards have the french people received?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:stateOfOrigin . ?x prop:awards ?uri . }",julipc-p(huggingface) How many bacterias have taxonomy as Bacillales and domain as Bacteria? ,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:order . ?uri prop:domain }",julipc-p(huggingface) Which state's largest city is Omaha?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:largestCity . ?uri rdf:type onto:AdministrativeRegion}",julipc-p(huggingface) Where is the constituency of John Smith Griffin ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:John_Smith_Griffin prop:constituency ?x . ?x onto:location ?uri . }",julipc-p(huggingface) Who is the animator of Tommy Tucker's Tooth ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:animator ?uri }",julipc-p(huggingface) Who is the film director of Alice's Wonderland ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:director ?uri }",julipc-p(huggingface) List few authors whose education took place in Saint Petersburg ? ,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:education . ?uri rdf:type onto:Writer}",julipc-p(huggingface) Who are the people who influenced the writers of Evenor ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:author ?x . ?x onto:influenced ?uri . }",julipc-p(huggingface) Which cities of the American Mediterranean Sea has Nickname Entronque de Herradura?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:American_Mediterranean_Sea prop:cities ?uri. res:Entronque_de_Herradura prop:nickname ?uri}",julipc-p(huggingface) On how many subjects has Random house publishers published books?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:publisher . ?x prop:subject ?uri . }",julipc-p(huggingface) List the associated musical artist of the current members of Al Bano and Romina Power?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Al_Bano_and_Romina_Power prop:currentMembers ?x . ?x onto:associatedMusicalArtist ?uri . }",julipc-p(huggingface) Which settlement's neighboring municipalities are Cologny and Pregny-Chambsy?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:neighboringMunicipalities . ?uri onto:neighboringMunicipality . ?uri rdf:type onto:Settlement}",julipc-p(huggingface) Who is the writer of The Sandman (Vertigo) ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:writers ?uri }",julipc-p(huggingface) "Who has a child named Lori Black and is resting place as Palo Alto, California?","PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:children . ?uri prop:restingPlace . }",julipc-p(huggingface) Which military unit's garrison is Pentagon and command structure is United States Department of Defense?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:garrison . ?uri onto:commandStructure . ?uri rdf:type onto:MilitaryUnit}",julipc-p(huggingface) List the primary subjects of A Christian Turn'd Turk?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:subject ?uri }",julipc-p(huggingface) What awards have been given to the writers of Wallace and Gromit?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:notableworks . ?x onto:award ?uri . ?x rdf:type onto:Writer}",julipc-p(huggingface) "Over which rivers, does a cable stayed bridge exists?","PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:design . ?x prop:crosses ?uri . }",julipc-p(huggingface) Name some Texas based companies ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:locationCity . ?uri rdf:type onto:Company}",julipc-p(huggingface) Name the president served by a lieutenant who succeeded Bob C Riley.,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:predecessor . ?uri onto:lieutenant ?x . ?uri rdf:type onto:President}",julipc-p(huggingface) Who were some governmental heads in Nazi Germany?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:jurisdiction res:Nazi_Germany . ?x onto:leader ?uri . }",julipc-p(huggingface) Name the tiemzone of Banlung ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Banlung onto:timeZone ?uri }",julipc-p(huggingface) Name all the doctoral student of the scientist who also supervised Mary Ainsworth ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:doctoralStudents . ?x prop:doctoralStudents ?uri . ?x rdf:type onto:Scientist}",julipc-p(huggingface) "Where did the wrestler die who was billed in Norman, Oklahoma?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:billed . ?x onto:deathPlace ?uri . ?x rdf:type onto:Wrestler}",julipc-p(huggingface) Which football teams is Shahid Khan proprietor to?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:owner res:Shahid_Khan }",julipc-p(huggingface) What sports are there at the universities affiliated to the National Capital Region Athletic Association?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:affiliation . ?x prop:athletics ?uri . ?x rdf:type onto:University}",julipc-p(huggingface) Who all have rented the stadium whose architect is Populous?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:architect . ?x onto:tenant ?uri . ?x rdf:type onto:Stadium}",julipc-p(huggingface) How many dishes are made with an ingredient belonging to the flowering plant species?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:division . ?uri onto:ingredient ?x . ?uri rdf:type onto:Food}",julipc-p(huggingface) Who are the managers of clubs participating in the 2014-2015 Football League Championship?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:season res:2014–15_Football_League_Championship . ?uri onto:managerClub ?x . }",julipc-p(huggingface) Bridges over which rivers are made of Wrought Iron?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:material . ?x onto:river ?uri . ?x rdf:type onto:Bridge}",julipc-p(huggingface) What is the allegiance of Albert Kwesi Ocran ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Albert_Kwesi_Ocran prop:allegiance ?uri }",julipc-p(huggingface) How many people have headed organizations headquartered at Niederkirchnerstrae?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:headquarter . ?x onto:leader ?uri . }",julipc-p(huggingface) What are some seas inside europe ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:location . ?uri rdf:type onto:Sea}",julipc-p(huggingface) What are the notable works of the person who produced Queer as Folk?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:producer ?x . ?x prop:notableworks ?uri . ?x rdf:type onto:Person}",julipc-p(huggingface) Who was the bronze medalist of Swimming at the 2008 Summer Olympics Men's 400 metre individual medley ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:bronzeMedalist ?uri }",julipc-p(huggingface) What academic discipline of the Journal of Cerebral Blood Flow & Metabolism is also the record label of the Double Diamond (album)?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:academicDiscipline ?uri. onto:recordLabel ?uri}",julipc-p(huggingface) How many states does the Pioneer corporation operate in?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { prop:country ?uri . }",julipc-p(huggingface) Name the debut team of Butch Metzger ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Butch_Metzger onto:debutTeam ?uri }",julipc-p(huggingface) Whose doctoral student is etienne bieler\xc9tienne_Bi\xe9ler,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:doctoralStudent res:Étienne_Biéler }",julipc-p(huggingface) What countries used Solidus as currency?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:currency . ?uri rdf:type onto:Country}",julipc-p(huggingface) Which parent company of Edsel was the first team of the 1967 Mexican Grand Prix ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Edsel prop:parent ?uri. res:1967_Mexican_Grand_Prix prop:firstTeam ?uri}",julipc-p(huggingface) Name some cars similar to the ones which are assembled at the Jefferson North Assembly?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:assembly . ?x prop:related ?uri . ?x rdf:type onto:Automobile}",julipc-p(huggingface) Which licensee of the WRVU is also the alma mater of the Todd J. Campbell ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:WRVU prop:licensee ?uri. res:Todd_J._Campbell onto:almaMater ?uri}",julipc-p(huggingface) Which borough of the Corringham railway station is also the local authority of Buckhurst Hill County High School ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Corringham_railway_station prop:borough ?uri. res:Buckhurst_Hill_County_High_School onto:localAuthority ?uri}",julipc-p(huggingface) "Which band had the members of The Conglomerate, and has made 'Before I let you go'?","PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:pastMembers ?uri. onto:musicalArtist ?uri}",julipc-p(huggingface) Name the fictional character whose species is American Pekin duck and has relatives named Ludwig Von Drake?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:species . ?uri prop:relatives . ?uri rdf:type onto:FictionalCharacter}",julipc-p(huggingface) Who is the governor of Carl McCall ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Carl_McCall onto:governor ?uri }",julipc-p(huggingface) Where can I find things run by the maritime museum of San Diego?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:governingBody res:Maritime_Museum_of_San_Diego . ?x prop:location ?uri . }",julipc-p(huggingface) Which engine's successor's predecessor is BMW M10?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:predecessor . ?uri onto:successor ?x . ?uri rdf:type onto:Engine}",julipc-p(huggingface) List the movies directed by Stanley Kubrick?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:director . ?uri rdf:type onto:Film}",julipc-p(huggingface) "What team were the people drafted to, which are in the National Hockey League?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:league . ?x prop:draftTeam ?uri . ?x rdf:type onto:Person}",julipc-p(huggingface) Which key person of maryland jockey club is the appointer of Joseph Clay ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:appointer ?uri. prop:keyPeople ?uri}",julipc-p(huggingface) Who developed the software for the operating system of Macintosh Quadra 660AV ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:operatingSystem ?x . ?x onto:developer ?uri . ?x rdf:type onto:Software}",julipc-p(huggingface) From what american football teams did Carlos Emmons play?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:formerTeam ?uri }",julipc-p(huggingface) Who are the employer of Don R. Berlin?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Don_R._Berlin onto:employer ?uri }",julipc-p(huggingface) Is Peter Crouch currently in the Stoke City FC?,"PREFIX prop: ASK WHERE { prop:currentclub }",julipc-p(huggingface) Whose provides the service of Outlook and also products such as Visual Studio?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:services res:Outlook.com . ?uri prop:products res:Microsoft_Visual_Studio . }",julipc-p(huggingface) Which source of broad creek is the Audenried tunnel located ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:source ?uri. onto:location ?uri}",julipc-p(huggingface) How many other Guests are there of the television episodes whose Guests is Brian d'Arcy James ?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:guests . ?x prop:guests ?uri }",julipc-p(huggingface) Who is the writer of He's a Pirate ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:writer ?uri }",julipc-p(huggingface) Which movies have their music composed by someone that signed up with RCA Records?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:recordLabel . ?uri onto:musicComposer ?x . ?uri rdf:type onto:Film}",julipc-p(huggingface) What games are played at institutions affiliated with the international association of universities?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:affiliations . ?x onto:sport ?uri . ?x rdf:type onto:EducationalInstitution}",julipc-p(huggingface) What is the ideology of Palang Dharma Party ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Palang_Dharma_Party onto:ideology ?uri }",julipc-p(huggingface) Which philosophy journal has compiler as Stephen Law ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:editor . ?uri prop:discipline . ?uri rdf:type onto:AcademicJournal}",julipc-p(huggingface) Which military conflict took place in Israel and had commander as Jaber Al-Ahmad Al-Sabah?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:place . ?uri onto:commander . ?uri rdf:type onto:MilitaryConflict}",julipc-p(huggingface) Who served a vice president buried in United First Parish Church?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:restingplace res:United_First_Parish_Church . ?uri onto:vicePresident ?x . }",julipc-p(huggingface) "Where is the fictional character from, whose last appearance was in the Avengers, 1998?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:last . ?x prop:nationality ?uri . ?x rdf:type onto:FictionalCharacter}",julipc-p(huggingface) Which idelogy of the Palang Dharma Party is also the faith of Miao people ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Palang_Dharma_Party onto:ideology ?uri. res:Miao_people onto:religion ?uri}",julipc-p(huggingface) List the movies produced by Michael Deeley ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:producer . ?uri rdf:type onto:Film}",julipc-p(huggingface) Where did Louis chevrolet die ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Louis_Chevrolet prop:deathPlace ?uri }",julipc-p(huggingface) What is the affiliation of Lumbini Bauddha University ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Lumbini_Bauddha_University prop:affiliation ?uri }",julipc-p(huggingface) What is the name of the characters created by Frank Miller?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:creators . ?x prop:characterName ?uri . ?x rdf:type onto:FictionalCharacter}",julipc-p(huggingface) Count the total number of software whose programming language is C++ and operating system is Microsoft Windows?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:programmingLanguage . ?uri onto:operatingSystem }",julipc-p(huggingface) What is the total number of politicians whose predecessor's deputy is Jenny Macklin?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:deputy . ?uri prop:predecessor ?x . ?uri rdf:type onto:OfficeHolder}",julipc-p(huggingface) How many managers have managed Middlesbrough FC?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:managerClub . }",julipc-p(huggingface) Among which basket ball team having arena as The Palace of Auburn hills has president as Stan Van Gundy ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:arena . ?uri prop:president . ?uri rdf:type onto:BasketballTeam}",julipc-p(huggingface) Give me a count of bridges located in California ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:locatedInArea . ?uri rdf:type onto:Bridge}",julipc-p(huggingface) What are the sports played by the universities who also plays taekwondo ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:athletics res:Taekwondo . ?x prop:athletics ?uri . }",julipc-p(huggingface) Who all are buried in Arlington national cementary?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:placeofburial res:Arlington_National_Cemetery }",julipc-p(huggingface) Name the office holder whose spouse is Dolley Madison and belongs to Militia branch ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:spouse . ?uri prop:branch . ?uri rdf:type onto:OfficeHolder}",julipc-p(huggingface) To which country do the players of Waitakere United belong?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:team . ?x onto:country ?uri . ?x rdf:type onto:Athlete}",julipc-p(huggingface) How many different genres led to other genres where drums are important?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:instruments . ?x onto:stylisticOrigin ?uri . ?uri rdf:type onto:MusicGenre}",julipc-p(huggingface) List all the bands which have members of the band Guy in them?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:bandMember ?x . ?x onto:associatedBand ?uri . }",julipc-p(huggingface) List the opponents of the relatives of Thomas Helwys?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:relation . ?x onto:opponent ?uri . ?x rdf:type onto:Person}",julipc-p(huggingface) Who are the predecessors of John Randolph of Roanoke?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:predecessor res:John_Randolph_of_Roanoke . }",julipc-p(huggingface) How many companies were founded in Dallas?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:foundation . ?uri rdf:type onto:Company}",julipc-p(huggingface) Name the ones who debuted in the San Francisco 49ers.,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:debutTeam res:San_Francisco_49ers . }",julipc-p(huggingface) "Which county seat of the King County, Washington and PLACE OF DEATH of the Phil Lumpkin ?","PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:countySeat ?uri. prop:placeOfDeath ?uri}",julipc-p(huggingface) Who all have appointed governess born in Magnolia Plantation gardens?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:birthPlace . ?x prop:appointer ?uri . }",julipc-p(huggingface) Humes High School is alma mater to which person?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:education . ?uri rdf:type onto:Person}",julipc-p(huggingface) Which range of mountains are there in canton of Fribourg?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:locatedInArea res:Canton_of_Fribourg . ?x onto:mountainRange ?uri . }",julipc-p(huggingface) Which species' members are there in the animal kingdom?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:kingdom res:Animal . ?x onto:species ?uri . }",julipc-p(huggingface) Which HBO's television series was produced by Erik Bork?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:distributor . ?uri onto:producer . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) List all the record label distributed by the distributor of Zune ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:distributor . ?x prop:distributor ?uri . ?x rdf:type onto:RecordLabel}",julipc-p(huggingface) What made Jon Speelman and Eric Schiller famous?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Jon_Speelman onto:field ?uri. res:Eric_Schiller onto:knownFor ?uri}",julipc-p(huggingface) Which stadium is owned by the team whose manager is Dimitris Terezopoulos?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:manager res:Dimitris_Terezopoulos . ?x prop:stadium ?uri . }",julipc-p(huggingface) Name the television show which was developed by Brian Graden and distributed by Comedy Central?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:developer . ?uri prop:distributor . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) From how many countries did the aeroplanes designed by Alexander Lippisch originate?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:designer . ?x prop:nationalOrigin ?uri . ?uri rdf:type onto:Country}",julipc-p(huggingface) "Fairfield, Connecticut is hometown to which persons?","PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:hometown . ?uri rdf:type onto:Person}",julipc-p(huggingface) Which fictional character portrayed by Roger barton has Padm Amidala as family ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:portrayer . ?uri prop:family . ?uri rdf:type onto:FictionalCharacter}",julipc-p(huggingface) Name presidents of the schools which have queen noor of Jordan as one of them ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:president . ?x prop:president ?uri . ?x rdf:type onto:School}",julipc-p(huggingface) How many bands are signed up with Kobalt Label Services?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:recordLabel . ?uri rdf:type onto:Band}",julipc-p(huggingface) Name the office holder who has a child named Lori Black and resting place is Alta Mesa Memorial Park?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:child . ?uri prop:restingPlace . ?uri rdf:type onto:OfficeHolder}",julipc-p(huggingface) What is the area of Tar Heel Sports Network ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Tar_Heel_Sports_Network prop:area ?uri }",julipc-p(huggingface) Which office holder's military branch is Continental Army and vice president is John Adams?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:militaryBranch . ?uri onto:vicePresident . ?uri rdf:type onto:OfficeHolder}",julipc-p(huggingface) What are some games availible on nintendo's virtual console?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:computingPlatform . ?uri rdf:type onto:VideoGame}",julipc-p(huggingface) Name the television program voiced by Isaac Hayes and aired on Comedy Central?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:voices . ?uri prop:network . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) Chestnut colored horses have won which races?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:colour . ?x onto:honours ?uri . ?x rdf:type onto:Horse}",julipc-p(huggingface) Where did the film director of Kala Pani die?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:director ?x . ?x onto:deathPlace ?uri . }",julipc-p(huggingface) What show had NTSC format and theme music composed by Ron Grainer?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:format . ?uri prop:themeMusicComposer . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) Who has fought in the conflicts around the Mississippi river?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:place . ?x prop:combatant ?uri . ?x rdf:type onto:MilitaryConflict}",julipc-p(huggingface) Which leader of united states house representatives election was married to Dolley Madison ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:leader ?uri. onto:spouse ?uri}",julipc-p(huggingface) To which county of New York city does the Tremount Avenue street belong?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Tremont_Avenue prop:counties ?uri }",julipc-p(huggingface) What are the death place of the models whose hair color was Red?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:hairColor . ?x prop:deathPlace ?uri . ?x rdf:type onto:Model}",julipc-p(huggingface) To which region does the Miluk language belong?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Miluk_language prop:region ?uri }",julipc-p(huggingface) What is the Ceremonial County of Port of Tilbury ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Port_of_Tilbury onto:ceremonialCounty ?uri }",julipc-p(huggingface) Name the part of Liverpool city region >,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Liverpool_City_Region onto:part ?uri }",julipc-p(huggingface) What is the television show whose sculptor is C. E. Webber and composed by Murray Gold?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:creator . ?uri onto:composer . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) Who created the world series of Poker?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:World_Series_of_Poker prop:founded ?uri }",julipc-p(huggingface) "What are the source of the streams whose one of the source is Calera, Oklahoma?","PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:source . ?x onto:source ?uri . ?x rdf:type onto:Stream}",julipc-p(huggingface) What is the game platform of Google Cloud Connect ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Google_Cloud_Connect onto:computingPlatform ?uri }",julipc-p(huggingface) Which fictional character's relatives were made by Ted Osborne?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:creator . ?uri prop:relatives ?x . ?uri rdf:type onto:FictionalCharacter}",julipc-p(huggingface) Who are the stars of the movies which are distributed by Artisan Entertainment ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:distributor . ?x onto:starring ?uri . ?x rdf:type onto:Film}",julipc-p(huggingface) Count the different religions followed by Second Lieutenants in military.,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:militaryRank . ?x onto:religion ?uri . }",julipc-p(huggingface) List softwares written in C++ and runs on Mac OS ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:operatingSystem . ?uri onto:programmingLanguage . ?uri rdf:type onto:Software}",julipc-p(huggingface) Name the river mouth of Moordener Kill ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Moordener_Kill onto:riverMouth ?uri }",julipc-p(huggingface) Which partner of the Tim Mathieson is also the primeminister of the Mike Kelly (Australian politician) ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:partner ?uri. prop:primeminister ?uri}",julipc-p(huggingface) List the producer of the TV shows whose company is HBO.,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:company . ?x onto:producer ?uri . ?x rdf:type onto:TelevisionShow}",julipc-p(huggingface) What is the television show whose company is Playtone and written by Erik Jendresen?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:company . ?uri prop:writer . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) In which races did the horses of Mon Capitaine take part?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:sire . ?x prop:race ?uri . ?x rdf:type onto:Horse}",julipc-p(huggingface) Which TV show's writer is Erik Jendresen and distributor is HBO?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:writer . ?uri prop:distributor . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) What railway lines go through the stations maintained by Western Australian Public Transport Authority?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:owningOrganisation . ?x onto:servingRailwayLine ?uri . ?x rdf:type onto:Station}",julipc-p(huggingface) How many publisher have been founded by american citizens?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:stateOfOrigin . ?uri onto:founder ?x . ?uri rdf:type onto:Publisher}",julipc-p(huggingface) How many other region served are there of the companies which serves Pacific Ocean ?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:regionServed . ?x onto:regionServed ?uri }",julipc-p(huggingface) Name the sitcoms whose network's owning company is Chris-Craft Industries?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:owningCompany . ?uri onto:network ?x . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) How many countries surround the sea into which the Upper Neratva flow?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { onto:riverMouth ?x . ?x onto:country ?uri . ?x rdf:type onto:Sea}",julipc-p(huggingface) How many rivers end in the Indian Ocean?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:riverMouth . ?uri rdf:type onto:River}",julipc-p(huggingface) Name the home town of Rolando Gomez ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Rolando_Gomez prop:homeTown ?uri }",julipc-p(huggingface) Who is owner of the soccer club which owns the Cobham Training Centre?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Cobham_Training_Centre prop:owner ?x . ?x prop:owner ?uri . }",julipc-p(huggingface) What is the common genere of Abhijit Kunte and Kasparov ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Abhijit_Kunte prop:knownFor ?uri. res:Virtual_Kasparov onto:genre ?uri}",julipc-p(huggingface) List some things that Swedish people have become famous for?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:stateOfOrigin res:Sweden . ?x onto:knownFor ?uri . }",julipc-p(huggingface) Which shows have voices from people signed up with ABC Records?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:label . ?uri prop:voices ?x . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) Cleopatra V of Egypt is father to which royalty?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:mother res:Cleopatra_V_of_Egypt }",julipc-p(huggingface) "Which sucessor of George Madison is the sucessor of levi Lincoln, Sr. ?","PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:relation ?uri. prop:successor ?uri}",julipc-p(huggingface) Give me some TV stations whose network's main language is American English?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:language . ?uri prop:network ?x . ?uri rdf:type onto:TelevisionStation}",julipc-p(huggingface) How many artists' works are in Muse d'Orsay?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:museum . ?x prop:artist ?uri . ?uri rdf:type onto:Artist}",julipc-p(huggingface) Whose wife is a presenter at WWE?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:presenter res:WWE . ?uri onto:spouse ?x . }",julipc-p(huggingface) What are some cars which came before the ones on a GM B base?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:automobilePlatform . ?x onto:predecessor ?uri . ?x rdf:type onto:Automobile}",julipc-p(huggingface) Give me a count of everything owned by the network whose sister name is The CW?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:sisterNames . ?uri prop:network ?x . }",julipc-p(huggingface) "Whichd officer's final resting place is North Bend, ohio and belongs to Indiana Territory branch ","PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:restingplace . ?uri prop:branch . }",julipc-p(huggingface) What sporting goods companies are located in Herzogenaurach?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:location res:Herzogenaurach }",julipc-p(huggingface) Name the commander of Battle of the Thames ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Battle_of_the_Thames onto:commander ?uri }",julipc-p(huggingface) Name the sports played by Fr. Agnel Multipurpose School and Junior College?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Fr._Agnel_Multipurpose_School_and_Junior_College onto:sport ?uri }",julipc-p(huggingface) What program is presented by Brian Dunkleman and has artist as Simon Fuller?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:presenter . ?uri prop:creator . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) What are some districts in the Tendring borough?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:borough res:Tendring . ?x onto:district ?uri . }",julipc-p(huggingface) What is the alma mater of Julian Leow Beng Kim?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Julian_Leow_Beng_Kim prop:almaMater ?uri }",julipc-p(huggingface) How many awards have been given to the participants of the Lawrence Realization Stakes?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:race . ?x onto:honours ?uri . }",julipc-p(huggingface) What religion is followed by the commander of Defense Security Command?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Defense_Security_Command onto:notableCommander ?x . ?x onto:religion ?uri . }",julipc-p(huggingface) List the work edited by Mark Stevens and directed by Joel Schumacher?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:editing . ?uri onto:director . ?uri rdf:type onto:Work}",julipc-p(huggingface) Name some local authorities of schools which have a mixed gender education system?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:gender . ?x onto:localAuthority ?uri . ?x rdf:type onto:School}",julipc-p(huggingface) Which president of William Eustus also married to Dolley Madison ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Dolley_Madison onto:spouse ?uri. res:William_Eustis prop:president ?uri}",julipc-p(huggingface) Count the different types of Flatbread ?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:type . }",julipc-p(huggingface) Count the birthplaces of recepients of the National Museum of Racing and Hall of Fame.,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:honours . ?x onto:birthPlace ?uri . ?uri rdf:type onto:Place}",julipc-p(huggingface) Name the serving line of Daund Junction railway station?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Daund_Junction_railway_station onto:servingRailwayLine ?uri }",julipc-p(huggingface) What is the county seat of the district through which the Beckler River flows?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:district ?x . ?x onto:countySeat ?uri . ?x rdf:type onto:AdministrativeRegion}",julipc-p(huggingface) What is the television show whose judges is Randy Jackson?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:judges . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) How many companies serve the Australian region?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:regionServed . ?uri rdf:type onto:Company}",julipc-p(huggingface) "How many teams was Garry Unger in, previously?","PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { onto:formerTeam ?uri . ?uri rdf:type onto:SportsTeam}",julipc-p(huggingface) What is the name of the television show whose company is Paramount Television and theme music composer is Gary Portnoy?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:company . ?uri prop:themeMusicComposer . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) How many writers worked on the album Main Course?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:album . ?x prop:writer ?uri . }",julipc-p(huggingface) List the popular works of the author of Luther: The Calling ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Luther:_The_Calling prop:author ?x . ?x onto:notableWork ?uri . }",julipc-p(huggingface) Which were the philosophers whose primary interest was Natural philosophy?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:mainInterests . ?uri rdf:type onto:Philosopher}",julipc-p(huggingface) Which wine region of Bogdanua is the Croatian Inline hockey team part of ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Bogdanuša onto:wineRegion ?uri. res:Croatian_Inline_Hockey_League onto:country ?uri}",julipc-p(huggingface) What is the place of death of the royalties one of whose parents was Adam Ludwik Czartoryski?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:parent . ?x prop:deathPlace ?uri . ?x rdf:type onto:Royalty}",julipc-p(huggingface) In which country is the Chapelle Saint-Louis de Carthage located ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:location ?x . ?x onto:country ?uri . }",julipc-p(huggingface) where did the office holder died who is successor to Elmer Burkett ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:successor . ?x prop:deathPlace ?uri . ?x rdf:type onto:OfficeHolder}",julipc-p(huggingface) What things canonized John of Damascus and and also venerated the Edwin of Northumbria ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:John_of_Damascus onto:canonizedBy ?uri. res:Edwin_of_Northumbria prop:veneratedIn ?uri}",julipc-p(huggingface) What is the common award won by geoffrey Rush and Laemmle Theatres ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Geoffrey_Rush prop:awards ?uri. res:Laemmle_Theatres onto:service ?uri}",julipc-p(huggingface) What is the total number of other restingplace of the politicians whose one of the restingplace is East Norwalk Historical Cemetery?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:restingplace . ?x prop:restingplace ?uri }",julipc-p(huggingface) Who were the pole drivers in GP when Damon hill was a first driver?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:firstDriver . ?x onto:poleDriver ?uri . ?x rdf:type onto:GrandPrix}",julipc-p(huggingface) How many albums were released under the Victor Entertainment label?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:label . ?uri rdf:type onto:Album}",julipc-p(huggingface) To which company is Michael Dell a father company? ,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:owningCompany . ?uri rdf:type onto:Company}",julipc-p(huggingface) What is the source location of Thornton Creek ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Thornton_Creek prop:sourceLocation ?uri }",julipc-p(huggingface) To which company does Raymond Conner is critical to?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:keyPeople . ?uri rdf:type onto:Company}",julipc-p(huggingface) "From where does the river start, which flows into the Conowingo dam?","PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:riverMouth . ?x onto:source ?uri . ?x rdf:type onto:River}",julipc-p(huggingface) Who appointed the successor of Charles Pinckney ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:successor ?x . ?x prop:appointer ?uri . }",julipc-p(huggingface) What is the associated band of the musical artist who is the producer of The Trumpet Kings Meet Joe Turner ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:producer ?x . ?x onto:associatedBand ?uri . ?x rdf:type onto:MusicalArtist}",julipc-p(huggingface) Name the home town of Cline Buckens ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Céline_Buckens onto:hometown ?uri }",julipc-p(huggingface) List the music played in television episode which came after The Colonel (The Americans) ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:subsequentWork ?x . ?x prop:music ?uri . }",julipc-p(huggingface) Which university provides license for WRVU ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:WRVU prop:licensee ?uri }",julipc-p(huggingface) Name the basketball player who played for Phoenix Suns and Los Angeles Clippers was his draft team?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:team . ?uri prop:draftTeam . ?uri rdf:type onto:BasketballPlayer}",julipc-p(huggingface) Who are the spouse of the parents of Kimberly Stewart?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Kimberly_Stewart onto:parent ?x . ?x onto:spouse ?uri . }",julipc-p(huggingface) What have some famous Christians died of?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:religion res:Christianity . ?x onto:deathCause ?uri . }",julipc-p(huggingface) Who is the mayor of the city under which is the constituency of Zora Singh Maan?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Zora_Singh_Maan prop:constituency ?x . ?x onto:leaderName ?uri . }",julipc-p(huggingface) Name a scientist whose official residence is Cape Town and also won a gold medal at the Royal Astronomical Society ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:prizes . ?uri prop:residence . ?uri rdf:type onto:Scientist}",julipc-p(huggingface) In how many places can I find tombs of people who fought in the Norwalk Trainband?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:militaryUnit . ?x prop:restingplace ?uri . }",julipc-p(huggingface) What is the location of Dad's Root Beer on Google maps?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:locationCity ?uri }",julipc-p(huggingface) What is the district of Fort Heath radar station ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Fort_Heath_radar_station prop:district ?uri }",julipc-p(huggingface) How many saints have been venerated in Judaism?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:veneratedIn . ?uri rdf:type onto:Saint}",julipc-p(huggingface) List down all the bands to which the writers of 03 Bonnie & Clyde are associated?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:writer ?x . ?x onto:associatedBand ?uri . }",julipc-p(huggingface) How many people are famous for the Gibson Les Paul?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:notableInstruments . }",julipc-p(huggingface) What municipalities are adjacent to Chne-Bougeries?,"PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:neighboringMunicipalities . }",julipc-p(huggingface) Who is the founder of Oprah Winfrey Network (U.S. TV channel) ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:founder ?uri }",julipc-p(huggingface) List all the wine regions of the grapes whose one of the wine region is Mississippi ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:wineRegion . ?x onto:wineRegion ?uri . ?x rdf:type onto:Grape}",julipc-p(huggingface) Name the office holder whose theatre is Siege of Fort Recovery and belongs to Indian territory branch ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:battle . ?uri prop:branch . ?uri rdf:type onto:OfficeHolder}",julipc-p(huggingface) For which clubs do the players of Azam F.C. play for?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:name ?x . ?x onto:team ?uri . ?x rdf:type onto:SoccerPlayer}",julipc-p(huggingface) What are the mammals whose phylum is Chordate?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:phylum . ?uri rdf:type onto:Mammal}",julipc-p(huggingface) Give me an estimate of the number of manufacturers whose products are managed by MTR?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:operator . ?x onto:manufacturer ?uri . }",julipc-p(huggingface) How many artists play as Rickenbacker?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:instrument . ?uri rdf:type onto:Artist}",julipc-p(huggingface) Who are the associated musical artist of Carolyn Dennis?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Carolyn_Dennis onto:associatedMusicalArtist ?uri }",julipc-p(huggingface) Which citys mayor is anne hidalgo?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:mayor res:Anne_Hidalgo . }",julipc-p(huggingface) In which states are there bridges over the Pequea Creek?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:river . ?x onto:state ?uri . ?x rdf:type onto:Bridge}",julipc-p(huggingface) How many ingedients are required to make the Ragout Fin?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { onto:ingredient ?uri . }",julipc-p(huggingface) List the people whose are in the board of an organization kickstarted in New York.,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:foundation . ?uri onto:board ?x . ?uri rdf:type onto:Person}",julipc-p(huggingface) Tell me the number of writers whose works have been recorded in Criteria Studios?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:recordedIn . ?x prop:writer ?uri . ?uri rdf:type onto:Artist}",julipc-p(huggingface) Under which archipelago does Canary Islands fall?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:archipelago res:Canary_Islands }",julipc-p(huggingface) name the home stadium of FC Spartak Moscow season 2011-12,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:2011–12_FC_Spartak_Moscow_season onto:homeStadium ?uri }",julipc-p(huggingface) Name a company with one of the key person as Edwin Catmull and produces RenderMan?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:keyPerson . ?uri prop:products . ?uri rdf:type onto:Company}",julipc-p(huggingface) How many owners are there of lines starting at the South Station?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:routeStart . ?x prop:owner ?uri . }",julipc-p(huggingface) What are some musicians who have worked with Dean Ambrose?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:associatedMusicalArtist . ?uri rdf:type onto:MusicalArtist}",julipc-p(huggingface) "Count all those who've played for the youth club which owns the Rosario, Santa Fe stadium.","PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:ground . ?uri prop:youthclubs ?x . }",julipc-p(huggingface) What are the television shows whose company is Playtone?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:company . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) In which city are the schools whose district is Mumbai Suburban?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:district . ?x onto:city ?uri . ?x rdf:type onto:School}",julipc-p(huggingface) How many people currently play for Stoke City F.C.?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:currentclub . }",julipc-p(huggingface) Among the countries using Aureus as currency which had Nicomedia as an important place ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:capital . ?uri onto:currency . ?uri rdf:type onto:Country}",julipc-p(huggingface) What are the outflow of the lakes which also has one of the outflow as Congo River ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:outflow res:Congo_River . ?x onto:outflow ?uri . }",julipc-p(huggingface) Whose tomb is in cities under Dane County of Wisconsin?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:territory . ?uri onto:restingPlace ?x . }",julipc-p(huggingface) How many cars succeeded the cars which were similar to Cadillac Fleetwood?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { prop:related ?x . ?x onto:predecessor ?uri . ?x rdf:type onto:Automobile}",julipc-p(huggingface) In how many languages did Marika Gombitova sing?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:artist . ?x prop:language ?uri . }",julipc-p(huggingface) How many railway lines go through the station maintained by Public transport authority of western australia?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:owningOrganisation . ?x onto:servingRailwayLine ?uri . ?uri rdf:type onto:RailwayLine}",julipc-p(huggingface) Count the different number of academic areas covered by publications of SAGE?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:publisher . ?x onto:academicDiscipline ?uri . }",julipc-p(huggingface) What are the political parties whose leaders have lived in the Prime Minister's House?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:residence . ?uri onto:leader ?x . ?uri rdf:type onto:PoliticalParty}",julipc-p(huggingface) "Who currently operates the railway lines one of whose stockholder is Chicago, St Paul, Minneapolis and Omaha railway?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:owner . ?x onto:operatedBy ?uri . ?x rdf:type onto:RailwayLine}",julipc-p(huggingface) In which city is the distributor of Jeevan Mrityu located ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Jeevan_Mrityu prop:distributor ?x . ?x onto:locationCity ?uri . }",julipc-p(huggingface) How many services does the company who made Onedrive provide?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:service . ?x prop:services ?uri . }",julipc-p(huggingface) Count the different religions practiced by people who are in the Malaysian and Chinese association.,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:party . ?x onto:religion ?uri . }",julipc-p(huggingface) List all those whose relatives' nationality is United States.,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:nationality res:United_States . ?uri onto:relative ?x . }",julipc-p(huggingface) What is the genre of Battle Chess?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Battle_Chess prop:genre ?uri }",julipc-p(huggingface) President of Ghana is the leader title of which country?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:leaderTitle . ?uri rdf:type onto:Country}",julipc-p(huggingface) Whose associate is Publius Servilius Vatia Isauricus and has predecessor as Lucius Cornelius Lentulus Crus?,"PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:associate . ?uri onto:predecessor . }",julipc-p(huggingface) What is the style of architecture of Pontiac Building ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Pontiac_Building onto:architecturalStyle ?uri }",julipc-p(huggingface) Which basketball players have played in the league of National Basketball Association?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:league . ?uri rdf:type onto:BasketballPlayer}",julipc-p(huggingface) Eric roth wrote how many screenplays?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:screenplay . }",julipc-p(huggingface) Whihc alma mater of angela Trusty is also the training center of David Scherman ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:David_Scherman onto:training ?uri. res:Angela_Trusty onto:almaMater ?uri}",julipc-p(huggingface) Who were the opponents of the people buried in the tower of London?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:restingPlace . ?x onto:opponent ?uri . ?x rdf:type onto:Person}",julipc-p(huggingface) What is the record label of the Next Thing and also the label of the The Producers (2005 film)?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:recordLabel ?uri. prop:label ?uri}",julipc-p(huggingface) Which country were the associates of Hilda Duhalde from?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Hilda_de_Duhalde onto:associate ?x . ?x onto:nationality ?uri . }",julipc-p(huggingface) Name the line of the Vadodara Junction railway station which is also the hub airport of the Pawan Hans?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Vadodara_Junction_railway_station prop:line ?uri. res:Pawan_Hans onto:hubAirport ?uri}",julipc-p(huggingface) Name the scientist who become the part of Royal Society and had academic advisor as Karl Ewald Hasse?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:prizes . ?uri onto:academicAdvisor . ?uri rdf:type onto:Scientist}",julipc-p(huggingface) Where is the tombstone of the successor of Edward Wolcott?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Edward_O._Wolcott prop:successor ?x . ?x onto:restingPlace ?uri . }",julipc-p(huggingface) In how many places did the Schutzstaffels die?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:militaryRank . ?x prop:placeOfDeath ?uri . ?uri rdf:type onto:Place}",julipc-p(huggingface) How many members are there of the organization headquartered at Amstelveen?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:headquarters . ?x prop:membership ?uri . }",julipc-p(huggingface) Name the scientist who was the winner of Royal Society award and had Georg Meissner as his doctoral advisor ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:prizes . ?uri prop:doctoralAdvisor . ?uri rdf:type onto:Scientist}",julipc-p(huggingface) What are the nearest city to the historic places whose one of the nearest city is Wisconsin?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:nearestCity . ?x prop:nearestCity ?uri . ?x rdf:type onto:HistoricPlace}",julipc-p(huggingface) Who is the producer of Captain EO ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Captain_EO prop:producer ?uri }",julipc-p(huggingface) List the subjects of the books whose one of the topics is Pau Broca ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:subject . ?x prop:subject ?uri . ?x rdf:type onto:Book}",julipc-p(huggingface) Where did the conflict take place in which Henri Putz fought?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Henri_Putz onto:battle ?x . ?x onto:territory ?uri . }",julipc-p(huggingface) Where did the aristocrats die whose mother was Maria Ludwika Krasiska?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:mother . ?x prop:deathPlace ?uri . ?x rdf:type onto:Royalty}",julipc-p(huggingface) Which company manufactures cars like the Opel Karl ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:related . ?x prop:parentCompany ?uri . ?x rdf:type onto:Automobile}",julipc-p(huggingface) Who are the major stockholders of the bank which is the company of Bloomberg Markets ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:company ?x . ?x prop:owner ?uri . ?x rdf:type onto:Bank}",julipc-p(huggingface) List all crafts of the people whose one of the profession is Kingdom of Naples ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:occupation . ?x onto:occupation ?uri . ?x rdf:type onto:Person}",julipc-p(huggingface) Name a colonel whose resting place is Montpelier ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:rank . ?uri prop:restingplace . }",julipc-p(huggingface) What are some developers which use Emacs Lisp in their projects?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:programmingLanguage res:Emacs_Lisp . ?x onto:developer ?uri . }",julipc-p(huggingface) Whose deputy was Franz von Papen?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:deputy res:Franz_von_Papen }",julipc-p(huggingface) Current players of Colorado Avalanche have previously played for how many different teams?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:team . ?x onto:formerTeam ?uri . ?uri rdf:type onto:SportsTeam}",julipc-p(huggingface) List the books whose authors are in Alcal de Henares.,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:birthPlace . ?uri onto:author ?x . ?uri rdf:type onto:Book}",julipc-p(huggingface) Who is the stockholder of Paphos International Airport ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Paphos_International_Airport prop:owner ?uri }",julipc-p(huggingface) Give me the total number of architect of the buildings whose one of the architect was Louis D. Astorino?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:architect . ?x prop:architect ?uri }",julipc-p(huggingface) Which basketball team's president studied in the Brockport Golden Eagles?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:college . ?uri prop:president ?x . ?uri rdf:type onto:BasketballTeam}",julipc-p(huggingface) In which races does Coneygree compete?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Coneygree prop:race ?uri }",julipc-p(huggingface) What awards have been given to some screenwriters?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:occupation res:Screenwriter . ?x onto:award ?uri . }",julipc-p(huggingface) List the saints venerated in Islam having major shrine as Tomb of Joshua ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:majorShrine . ?uri onto:veneratedIn . ?uri rdf:type onto:Saint}",julipc-p(huggingface) Which tema did Dough Acomb played for which is also the drafty team of Dale Mitchell ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:draftTeam ?uri. prop:playedFor ?uri}",julipc-p(huggingface) List the total number of executive producer of TV show which have one of the executiive producer as Steven Moffat ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:executiveProducer . ?x prop:executiveProducer ?uri }",julipc-p(huggingface) Name all those whose spouses have performed with Tony Bennett?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:associatedMusicalArtist res:Tony_Bennett . ?uri onto:spouse ?x . }",julipc-p(huggingface) Name the company who owns HBO division?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:divisions . ?uri rdf:type onto:Company}",julipc-p(huggingface) How many religions have the relatives of waxiangs followed?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { prop:related ?x . ?x onto:religion ?uri . }",julipc-p(huggingface) For which team does Ramiro Pea play ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Ramiro_Peña onto:team ?uri }",julipc-p(huggingface) What are the books written by the the person who made the Novelas ejemplares?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:notableWork . ?uri onto:author ?x . ?uri rdf:type onto:Book}",julipc-p(huggingface) Count the total number of battles fought by the military people which fought in Levant ?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:battles . ?x prop:battles ?uri }",julipc-p(huggingface) How many subjects have been covered in fantasy novels?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:literaryGenre . ?x onto:nonFictionSubject ?uri . }",julipc-p(huggingface) What is the television show whose theme music is by Primus?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:themeMusicComposer . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) which person created the women in the garden?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Women_in_the_Garden prop:artist ?uri }",julipc-p(huggingface) Who is the composer of Girl from the North Country ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Girl_from_the_North_Country onto:composer ?uri }",julipc-p(huggingface) What is the county seat of the county which has an Evergreen High School?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:county ?x . ?x onto:countySeat ?uri . }",julipc-p(huggingface) Which wars were fought by the commander whose deputy was Robert T. Herres?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:deputy . ?uri onto:commander ?x . ?uri rdf:type onto:MilitaryConflict}",julipc-p(huggingface) "Through which states does the road go, which has a junction on Keningston Maryland?","PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:routeJunction . ?x onto:state ?uri . ?x rdf:type onto:Road}",julipc-p(huggingface) What did the people buried in Toronto die of?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:restingPlace res:Toronto . ?x onto:deathCause ?uri . }",julipc-p(huggingface) List the main ingredient of Pizza-ghetti ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:mainIngredient ?uri }",julipc-p(huggingface) List the work institute of the medicians who has also worked at University of Miami ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:workInstitutions . ?x prop:workInstitutions ?uri . ?x rdf:type onto:Medician}",julipc-p(huggingface) How many people have trained the wrestlers who were billed in Wisconsin?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:billed . ?x onto:trainer ?uri . ?uri rdf:type onto:Person}",julipc-p(huggingface) Which country did the prime minister belong to who was served by Thanong Bidaya ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Thanong_Bidaya prop:primeminister ?x . ?x onto:nationality ?uri . }",julipc-p(huggingface) Which shareholder of Dagenham wind turbines is also the parent company of the Ford Falcon Cobra?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Ford_Falcon_Cobra onto:parentCompany ?uri. res:Dagenham_wind_turbines prop:owner ?uri}",julipc-p(huggingface) List the awards won by the cinematographer of Mickey's Mellerdrammer?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:cinematography ?x . ?x onto:award ?uri . }",julipc-p(huggingface) tell me the school to which Cyril Hume went?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Cyril_Hume prop:education ?uri }",julipc-p(huggingface) where did Boga originate?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:origin ?uri }",julipc-p(huggingface) Who is the singer of the album which has a song Me and My arrow ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:album ?x . ?x prop:narrated ?uri . ?x rdf:type onto:Album}",julipc-p(huggingface) In how many different places can I fnd Modern Architectural buildings?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:architecturalStyle . ?x prop:address ?uri . }",julipc-p(huggingface) Which sports are played in the alma mater of Habib Boromand Dashghapu?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Habib_Boromand_Dashghapu prop:almaMater ?x . ?x onto:sport ?uri . }",julipc-p(huggingface) What are the houses of Parliament Security Services ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Parliament_Security_Services prop:houses ?uri }",julipc-p(huggingface) Count the origin of the beverages which have been originated in england /,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:origin . ?x prop:origin ?uri }",julipc-p(huggingface) Count the number of people became famous for when Andrew Jackson was a commander ?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:commander . ?uri onto:knownFor ?x . }",julipc-p(huggingface) Who is the incumbent of Al Gore presidential campaign of 2000 ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:incumbent ?uri }",julipc-p(huggingface) "Of the places where Kurt Vonnegut Memorial Library exists, where did Louis LeCocq die?","PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Kurt_Vonnegut_Memorial_Library onto:location ?uri. res:Louis_LeCocq prop:placeOfDeath ?uri}",julipc-p(huggingface) What is the college of the basketball player who lives in Ashton Historic district?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:birthPlace . ?x prop:college ?uri . ?x rdf:type onto:BaseballPlayer}",julipc-p(huggingface) During the reigns of which monarchs was the name to the Israelite kingdom as United Monarch?,"PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:title }",julipc-p(huggingface) What is the person known for who is the movie director of Sleepy-Time Squirrel ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:director ?x . ?x onto:knownFor ?uri . ?x rdf:type onto:Person}",julipc-p(huggingface) What is the title of the successor of Kaulahea I ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Kaulahea_I prop:successor ?x . ?x prop:title ?uri . }",julipc-p(huggingface) Name the river passing through Reading Berkshire and has mouth place at Essex ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:city . ?uri onto:mouthPlace . ?uri rdf:type onto:River}",julipc-p(huggingface) Which nation is the origin of Dornier Aerodyne ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Dornier_Aerodyne prop:nationalOrigin ?uri }",julipc-p(huggingface) Name some politicians buried in a place near Orange Virginia?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:nearestCity . ?uri prop:restingplace ?x . ?uri rdf:type onto:OfficeHolder}",julipc-p(huggingface) Which writer of Tales of Suspense is also the writer of karakuri Dji Ultimo ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Tales_of_Suspense prop:writers ?uri. res:Karakuri_Dôji_Ultimo prop:author ?uri}",julipc-p(huggingface) Which type of building is Qun Thnh Temple ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Quán_Thánh_Temple prop:buildingType ?uri }",julipc-p(huggingface) Who is the artist of the album which has the song I Can't Change the World ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:album ?x . ?x prop:artist ?uri . }",julipc-p(huggingface) Which city is the route start of the Moscow-Kazan high-speed railway and birth place of the Ilya Savelev ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:routeStart ?uri. onto:birthPlace ?uri}",julipc-p(huggingface) List TV shows with producer as Erik Bork and company is DreamWorks Television ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:company . ?uri onto:producer . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) In which cities do some railways operated by Russian railways start?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:operatedBy res:Russian_Railways . ?x onto:routeStart ?uri . }",julipc-p(huggingface) Collaborators of Demis Roussos have composed music for which movies?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:associatedActs . ?uri onto:musicComposer ?x . ?uri rdf:type onto:Film}",julipc-p(huggingface) In how many places are the tombs of everyone who died in England?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:placeOfDeath . ?x prop:placeOfBurial ?uri . ?uri rdf:type onto:Place}",julipc-p(huggingface) Where did the people beatified by Pope Pius X die?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:beatifiedBy . ?x prop:deathPlace ?uri . ?x rdf:type onto:Person}",julipc-p(huggingface) Name all the venues of the convention which has also been hosted in San Diego Convention ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:venue res:San_Diego_Convention_Center . ?x prop:venue ?uri . }",julipc-p(huggingface) Brian Dunkleman is the presenter of what TV show?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:presenter . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) What are the movies whose distributor's headquarters is New York?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:headquarters . ?uri prop:distributor ?x . ?uri rdf:type onto:Film}",julipc-p(huggingface) Count the different genres of music made by Argentinian bands?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:hometown . ?x onto:genre ?uri . ?uri rdf:type onto:MusicGenre}",julipc-p(huggingface) What beverage was launched by Ferrero SpA?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:creator . ?uri rdf:type onto:Food}",julipc-p(huggingface) How many famous people are from the Filipinos?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:stateOfOrigin . }",julipc-p(huggingface) How many people have managed a club which owns the Riverside Stadium?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:ground . ?uri onto:managerClub ?x . ?uri rdf:type onto:Person}",julipc-p(huggingface) Who was the parent of person whose child is William C P breckinridge?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:children . ?x onto:parent ?uri . ?x rdf:type onto:Person}",julipc-p(huggingface) Through which states does the stream ending at Saunders county go?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:mouthLocation . ?x onto:state ?uri . ?x rdf:type onto:Stream}",julipc-p(huggingface) What are the school mascots in Blytheville school district?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:district . ?x prop:mascot ?uri . ?x rdf:type onto:School}",julipc-p(huggingface) Name the TV show broadcasted by Fox and presented by Ryan Seacrest ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:presenter . ?uri onto:channel . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) Count the religions followed by people living in British Columbia.,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:residence . ?x prop:religion ?uri . }",julipc-p(huggingface) List some teammates of Ndonga Mianga?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:currentMember res:Ndonga_Mianga . ?x prop:name ?uri . }",julipc-p(huggingface) List the characters of Lysistrata ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Lysistrata prop:characters ?uri }",julipc-p(huggingface) Which TV shows distributor is Broadcast syndication and developed by Brian Graden ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:developer . ?uri onto:distributor . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) In how many districts is there a borough called tendring?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:borough . ?x onto:district ?uri . }",julipc-p(huggingface) What games are played at universities in Lanao Del Sur?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:state . ?x onto:athletics ?uri . ?x rdf:type onto:University}",julipc-p(huggingface) What is the award won of the scientists known for Cubic Hermite spline?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:knownFor . ?x onto:award ?uri . ?x rdf:type onto:Scientist}",julipc-p(huggingface) What is the meaning of Heydar ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Heydar prop:meaning ?uri }",julipc-p(huggingface) Which composer subsequent work of Moondog Matinee and also composed The TImes They are A changin ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:musicBy ?uri. onto:subsequentWork ?uri}",julipc-p(huggingface) On how many different grounds were seasons chaired by Ronaldo held?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:chairman . ?x onto:ground ?uri . }",julipc-p(huggingface) Sentinel High School team is known as ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Sentinel_High_School prop:teamName ?uri }",julipc-p(huggingface) Where does the publisher of Kathimerini live?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Kathimerini onto:publisher ?x . ?x prop:residence ?uri . }",julipc-p(huggingface) Name the basketball team which is coached by Louis Dunbar and has president as Jeff Munn ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:coach . ?uri prop:president . ?uri rdf:type onto:BasketballTeam}",julipc-p(huggingface) Give me a count of all ice hockey players whose teams are headcoached by John Tortorella?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:headCoach . ?uri onto:team ?x . ?uri rdf:type onto:IceHockeyPlayer}",julipc-p(huggingface) Which draft team of bob Macmillan is also the prospect team of Mikhail Pashnin ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Mikhail_Pashnin prop:prospectTeam ?uri. res:Bob_MacMillan prop:draftTeam ?uri}",julipc-p(huggingface) How many leagues have used the O.co Coliseum?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { onto:tenant ?uri . }",julipc-p(huggingface) What is the common palce of study for jack McGregor and Philip W. Pillsbury ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Jack_McGregor onto:education ?uri. res:Philip_W._Pillsbury prop:education ?uri}",julipc-p(huggingface) "What team did the players start their careers with, who right now play for Fleisher Yarn?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:team . ?x prop:debutteam ?uri . ?x rdf:type onto:Athlete}",julipc-p(huggingface) What sports are played at institutes affiliated by the Association of Southeast Asian Institutes of Higher Learning?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:affiliation . ?x onto:sport ?uri . ?x rdf:type onto:EducationalInstitution}",julipc-p(huggingface) Where did the people die who were known for Young Life?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:knownFor . ?x onto:deathPlace ?uri . ?x rdf:type onto:Person}",julipc-p(huggingface) Who are the chancellors of universities which is affiliated with Plymouth University?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:affiliations . ?x prop:chancellor ?uri . ?x rdf:type onto:University}",julipc-p(huggingface) Which awards did the narrator of Oscar and Lucinda win?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:narrator ?x . ?x prop:awards ?uri . }",julipc-p(huggingface) "What is the musical whose music is by Jose Luis Narom, based upon?","PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:musicBy . ?x onto:basedOn ?uri . ?x rdf:type onto:Musical}",julipc-p(huggingface) Which workplace of the Michael M. Sears is also the governing body of the Burro Flats Painted Cave?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Michael_M._Sears onto:employer ?uri. res:Burro_Flats_Painted_Cave onto:governingBody ?uri}",julipc-p(huggingface) Who are the people which ITV(TV network) has employed?,"PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:employer . }",julipc-p(huggingface) What is the broadcast area of WBCQ (SW) ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:area ?uri }",julipc-p(huggingface) What religion did the president follow which was served by Kang Young-hoon?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:president ?x . ?x onto:religion ?uri . }",julipc-p(huggingface) Which kind of buildings are found in England?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:locationCountry . ?x onto:type ?uri . ?x rdf:type onto:Building}",julipc-p(huggingface) "In which state is the team, which has John Roeslein?","PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:John_Roeslein onto:team ?x . ?x prop:state ?uri . }",julipc-p(huggingface) Give me the count of all people who ascented a peak in California?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:locatedInArea . ?x onto:firstAscentPerson ?uri . ?uri rdf:type onto:Person}",julipc-p(huggingface) List the total number of regions of the building whose are located in\Grand Forks Air Force Base?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:region . ?x onto:region ?uri }",julipc-p(huggingface) Rickenbacker is a musical instrument played by which artists?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:instrument . ?uri rdf:type onto:MusicalArtist}",julipc-p(huggingface) List down all the associcated musical artist of the artist of In a Word or 2 ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:In_a_Word_or_2 prop:artist ?x . ?x onto:associatedMusicalArtist ?uri . }",julipc-p(huggingface) List the home town of the people who have Ontario as one of it ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:homeTown . ?x prop:homeTown ?uri . ?x rdf:type onto:Person}",julipc-p(huggingface) Joe Shuster has created how many comics character ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:creators . ?uri rdf:type onto:ComicsCharacter}",julipc-p(huggingface) Which currency is primarily used by the company which is the distributing label of VDE-Gallo Records?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:distributingLabel ?x . ?x prop:currency ?uri . ?x rdf:type onto:Organisation}",julipc-p(huggingface) Name whose youth club was FC Barcelona ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:youthclubs res:FC_Barcelona . }",julipc-p(huggingface) Which awards did the writer of Persona win ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:writer ?x . ?x prop:awards ?uri . }",julipc-p(huggingface) What is the highschool of the american football player who joined the Robert Morris Colonials program?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:school . ?x prop:highschool ?uri . ?x rdf:type onto:AmericanFootballPlayer}",julipc-p(huggingface) How many awards have graduates from the University of Queensland earned?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:almaMater . ?x prop:awards ?uri . }",julipc-p(huggingface) Which artist was taught by Jos Ruiz y Blasco?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:training . ?uri rdf:type onto:Artist}",julipc-p(huggingface) What is the location of Sam Sen Railway Station ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Sam_Sen_Railway_Station prop:other ?uri }",julipc-p(huggingface) Which ground of 2016 Fort Lauderdale Strikers season is the palce of birth of Kaitlyn Ashley ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:2016_Fort_Lauderdale_Strikers_season onto:ground ?uri. res:Kaitlyn_Ashley prop:placeOfBirth ?uri}",julipc-p(huggingface) Which minister was responsible for Kriminalpolizie?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Kriminalpolizei onto:leader ?uri }",julipc-p(huggingface) Which TV show produced by Paramount Television and is located in Massachusetts ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:company . ?uri onto:location . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) Name the sea located near Europe and has a nearby city as Rostock ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:cities . ?uri onto:location . ?uri rdf:type onto:Sea}",julipc-p(huggingface) What ingredients are used in preparing the dish of Ragout fin?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Ragout_fin onto:ingredient ?uri }",julipc-p(huggingface) What is the former partner of the figure skaters whose current partner is Alexa Scimeca?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:currentPartner . ?x onto:formerPartner ?uri . ?x rdf:type onto:FigureSkater}",julipc-p(huggingface) In how many nations does Rhaetian Railways own train stations?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:owningOrganisation . ?x onto:country ?uri . ?uri rdf:type onto:Country}",julipc-p(huggingface) Which company released the software RenderMan?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:products . ?uri rdf:type onto:Company}",julipc-p(huggingface) In which cities are there american football teams where Matt Snorton played?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:pastteams ?x . ?x onto:locationCity ?uri . ?x rdf:type onto:AmericanFootballTeam}",julipc-p(huggingface) "Which country's national motto is ""Truth prevails""?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:nationalMotto . ?uri rdf:type onto:Country}",julipc-p(huggingface) What is the homeport of INS Viraat (R22) ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:homeport ?uri }",julipc-p(huggingface) What is the largest city of the country where P. Sathyanarayanan was born?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:birthplace ?x . ?x onto:largestCity ?uri . ?x rdf:type onto:Country}",julipc-p(huggingface) Which county of Tremont Avenue is also the birht place of Ron Galotti ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Tremont_Avenue prop:counties ?uri. res:Ron_Galotti onto:birthPlace ?uri}",julipc-p(huggingface) Where was William anthony trained ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:training ?uri }",julipc-p(huggingface) Which parent organization of Get TV also owns the Galleria ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:GetTV onto:parentOrganisation ?uri. res:The_Galleria onto:owner ?uri}",julipc-p(huggingface) Name the wine regions of Bogdanua ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Bogdanuša onto:wineRegion ?uri }",julipc-p(huggingface) What is the resting place of the child of Linda Lee Cadwell?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Linda_Lee_Cadwell prop:children ?x . ?x onto:restingPlace ?uri . }",julipc-p(huggingface) "Where are the philosophers from, whose main work is on the matter of feminism in Canada?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:mainInterest . ?x prop:region ?uri . ?x rdf:type onto:Philosopher}",julipc-p(huggingface) What are the things built by Eristoff ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Eristoff prop:manufacturer ?uri }",julipc-p(huggingface) What is the official residence of Sarah Kazemy ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Sarah_Kazemy prop:residence ?uri }",julipc-p(huggingface) What are shows whose theme music composer's home town is New York?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:hometown . ?uri prop:themeMusicComposer ?x . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) "Name the university whose affiliations's foundation is in Washington, D.C.?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:foundation . ?uri prop:affiliations ?x . ?uri rdf:type onto:University}",julipc-p(huggingface) Who was the coach of 1972 Oakland Raiders season ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:1972_Oakland_Raiders_season onto:coach ?uri }",julipc-p(huggingface) Whcih land of Citi Trends is also the constituency of Malik Al-Hassan Yakubu ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:constituency ?uri. onto:country ?uri}",julipc-p(huggingface) Which TV show's composer is Judy Hart Angelo and executive producer as Glen and Les Charles?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:composer . ?uri onto:executiveProducer . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) "Where did they debut their careers , those who have played for US men's national soccer team?","PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:nationalteam . ?x prop:debutteam ?uri . }",julipc-p(huggingface) What are on the borders of Shimsa Plateau?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Shimōsa_Plateau onto:border ?uri }",julipc-p(huggingface) What is the former team of the american football players whose position is Running back?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:position . ?x onto:formerTeam ?uri . ?x rdf:type onto:AmericanFootballPlayer}",julipc-p(huggingface) Which creator of Theme Time Radio Hour has also given the musical score of the The Times They Are a-Changin' (musical)?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:creator ?uri. onto:musicBy ?uri}",julipc-p(huggingface) How many different kinds of games are published by Interplay Entertainment?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:publisher . ?x prop:genre ?uri . }",julipc-p(huggingface) What other awards have been given to Goya Award Winners?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:award res:Goya_Awards . ?x prop:awards ?uri . }",julipc-p(huggingface) How many other important work has been done by the writers of Sarah Jane Adventures?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:notableworks . ?x onto:notableWork ?uri . }",julipc-p(huggingface) Race horses whose grandsire is Wild Risk have taken part in which races?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:grandsire . ?x prop:race ?uri . ?x rdf:type onto:RaceHorse}",julipc-p(huggingface) Who are the tenants of the stadium which is a venue of WCW Mayhem ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:venue ?x . ?x onto:tenant ?uri . ?x rdf:type onto:Stadium}",julipc-p(huggingface) Which coach of Marquette Golden Eagles men's basketball team is also the head coach of Virginia Tech Hokies men's basketball team ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:headcoach ?uri. onto:coach ?uri}",julipc-p(huggingface) Which are the races in which Martin Molony participated?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Martin_Molony onto:race ?uri }",julipc-p(huggingface) With what company is the service OneDrive associated?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:services . ?uri rdf:type onto:Company}",julipc-p(huggingface) What awards have been given to citizens of the Ottoman Empire?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:citizenship res:Ottoman_Empire . ?x onto:award ?uri . }",julipc-p(huggingface) List the science fiction shows broadcasted on BBC HD ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:genre . ?uri onto:network . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) List the products of Playboy Enterprises?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Playboy_Enterprises prop:products ?uri }",julipc-p(huggingface) Name the former broadcast network of the television station which is the sister stations of WGBC?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:WGBC prop:sisterStations ?x . ?x onto:formerBroadcastNetwork ?uri . }",julipc-p(huggingface) What is the Nickname of Daniel O'Regan ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:nickname ?uri }",julipc-p(huggingface) Who owns the websites for which Jimmy wales writes?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:author res:Jimmy_Wales . ?x onto:owner ?uri . }",julipc-p(huggingface) What are the bridges whose located in California?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:locatedInArea . ?uri rdf:type onto:Bridge}",julipc-p(huggingface) Who were the head of government agencies working in the German occupied Europe?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:jurisdiction . ?x onto:leader ?uri . ?x rdf:type onto:GovernmentAgency}",julipc-p(huggingface) Name the companies which are in cities under Denzil Minnan Wong?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:leaderName . ?uri onto:locationCity ?x . ?uri rdf:type onto:Company}",julipc-p(huggingface) What is the largest city of the birthplace of Pat Kirkwood?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:birthplace ?x . ?x onto:largestCity ?uri . }",julipc-p(huggingface) Which source of Water resources management in El Salvador is also the nation of the Sierra del Merendn?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Water_resources_management_in_El_Salvador prop:sourceCountry ?uri. res:Sierra_del_Merendón onto:country ?uri}",julipc-p(huggingface) What is the academic journal whose editor is Stephen Law?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:editor . ?uri rdf:type onto:AcademicJournal}",julipc-p(huggingface) What awards have the alumni of Academy of Fine Arts in Lodz achieved?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:training res:Academy_of_Fine_Arts_In_Łódź . ?x onto:award ?uri . }",julipc-p(huggingface) Name the members of youth clubs which have Camp Nou as their homeground.,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:ground res:Camp_Nou . ?uri prop:youthclubs ?x . }",julipc-p(huggingface) Which musical artist associated with Tony Allen has label with Celluloid Records ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:associatedMusicalArtist . ?uri prop:label . ?uri rdf:type onto:MusicalArtist}",julipc-p(huggingface) Who are some basketball players who played for Phoenix Suns?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:team . ?uri rdf:type onto:BasketballPlayer}",julipc-p(huggingface) "Which relative of George Madison was the leader of United States House of Representatives elections, 1788 and 1789 ?","PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:relation ?uri. prop:leader ?uri}",julipc-p(huggingface) "From how many works is the musical derived, whose lyrics are written by Sheldon Harnick?","PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:lyrics . ?x onto:basedOn ?uri . }",julipc-p(huggingface) Which office holder allegiance is Colony of Virginia and was has a wife named Dolley Madison ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:spouse . ?uri prop:allegiance . ?uri rdf:type onto:OfficeHolder}",julipc-p(huggingface) Employees of Ottawa Citizen have come from which towns?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:employer res:Ottawa_Citizen . ?x prop:homeTown ?uri . }",julipc-p(huggingface) How many non-fiction subject are there of the books whose one of the non-fiction subject is Ankh-Morpork City Watch ?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:nonFictionSubject . ?x onto:nonFictionSubject ?uri }",julipc-p(huggingface) Who is the licensee of EXXV-TV ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:licensee ?uri }",julipc-p(huggingface) Who are in the board of Jimmy Wales ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Jimmy_Wales onto:board ?uri }",julipc-p(huggingface) Where were some people associated with Steve Winwood employed at?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:associatedMusicalArtist . ?x onto:occupation ?uri . ?x rdf:type onto:Person}",julipc-p(huggingface) What is the origin of the musical artist whose associated band is Ziggi Recado ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:associatedBand . ?x prop:origin ?uri . ?x rdf:type onto:MusicalArtist}",julipc-p(huggingface) Who is the nominee of Jack Ryan ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:nominee ?uri }",julipc-p(huggingface) Which division of Serbia national team is also the region of Dobinsk Ice Cave ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Serbia_national_American_football_team onto:division ?uri. res:Dobšinská_Ice_Cave onto:region ?uri}",julipc-p(huggingface) Name the royalty whose spouse was Cleopatra V of Egypt and one of his parent was Ptolemy XII Auletes?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:mother . ?uri onto:parent . ?uri rdf:type onto:Royalty}",julipc-p(huggingface) List the major shrines of Jovan Vladimir?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Jovan_Vladimir prop:majorShrine ?uri }",julipc-p(huggingface) Name some shows whose company is owned by the CBS Corporation?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:owner . ?uri prop:company ?x . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) "Which famous person is born in Marlboro Township, New Jersey?","PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:homeTown . }",julipc-p(huggingface) In which countries have the Start + Flug aircrafts originated?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:manufacturer . ?x prop:nationalOrigin ?uri . ?x rdf:type onto:Aircraft}",julipc-p(huggingface) How many other family of the mammals exists whose family is also Hominidae ?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:family . ?x onto:family ?uri }",julipc-p(huggingface) What is the former team of the football player who is the coach of 2006 Oakland Raiders season ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:coach ?x . ?x onto:formerTeam ?uri . ?x rdf:type onto:AmericanFootballPlayer}",julipc-p(huggingface) How many TV shows were made by someone who was associated with Lewis Hamilton?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:associatedBand . ?uri prop:creator ?x . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) For how many other teams have the former players of Boston Bruins played?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:formerTeam . ?x prop:playedFor ?uri . ?uri rdf:type onto:SportsTeam}",julipc-p(huggingface) Which things have been made by artists who died in Midhurst?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:deathPlace res:Midhurst . ?uri onto:creator ?x . }",julipc-p(huggingface) What are the TV shows whose network is also known as the CW?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:sisterNames . ?uri prop:network ?x . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) How many other important things has the painter of Sarah Jane Adventures done?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { prop:creator ?x . ?x onto:notableWork ?uri . }",julipc-p(huggingface) Which founder of sea Gayle Music is also the judge of Rising Star ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:founder ?uri. prop:judges ?uri}",julipc-p(huggingface) Who owns the ford kansas assembly plant?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Ford_Kansas_City_Assembly_Plant onto:owningOrganisation ?uri }",julipc-p(huggingface) What is the label of I Pray on Christmas ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:I_Pray_on_Christmas prop:label ?uri }",julipc-p(huggingface) List the destination of Novair International Airways ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Novair_International_Airways onto:destination ?uri }",julipc-p(huggingface) Who is the spouse of Willian Menalaus?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:William_Menelaus onto:spouse ?uri }",julipc-p(huggingface) Count the number of actors in Lucy Sullivan Is Getting Married.,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { prop:starring ?uri . }",julipc-p(huggingface) What mammals are classified into Diprotodontia ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:order . ?uri rdf:type onto:Mammal}",julipc-p(huggingface) The Other Side has hosted how many guests?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { prop:guests ?uri . }",julipc-p(huggingface) Name the river with source as Columbia Lake and river mouth is located in Clatsop Country ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:riverMouth . ?uri onto:source . ?uri rdf:type onto:River}",julipc-p(huggingface) What are the airlines whose hub airport is Los Angeles International Airport?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:hubAirport . ?uri rdf:type onto:Airline}",julipc-p(huggingface) what are some famous people out of the Filipinos?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:stateOfOrigin res:Filipinos }",julipc-p(huggingface) What awards were presented to the person who produced Paradise place?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:producer ?x . ?x prop:awards ?uri . ?x rdf:type onto:Person}",julipc-p(huggingface) What is the location town of Seattle Great Wheel ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Seattle_Great_Wheel prop:locationTown ?uri }",julipc-p(huggingface) List all the line of Vadodara Junction railway station?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Vadodara_Junction_railway_station prop:line ?uri }",julipc-p(huggingface) Name the college of Jon Curran ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Jon_Curran prop:college ?uri }",julipc-p(huggingface) Which Tim Birton's movie has a screenplay by Daniel Waters ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:screenplay . ?uri prop:director . }",julipc-p(huggingface) Who produces the tv series which made Scott Haran famous?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Scott_Haran onto:knownFor ?x . ?x onto:producer ?uri . }",julipc-p(huggingface) What is the place of birth of the jockey who breeded De La Rose ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:breeder ?x . ?x prop:birthPlace ?uri . ?x rdf:type onto:Jockey}",julipc-p(huggingface) Name the Artist of Madagascar: Operation Penguin ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Madagascar:_Operation_Penguin prop:artist ?uri }",julipc-p(huggingface) What are some devices made by Taiwanese companies?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:locationCity . ?uri onto:manufacturer ?x . ?uri rdf:type onto:Device}",julipc-p(huggingface) What is the layout of Subaru Legacy (second generation) ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:layout ?uri }",julipc-p(huggingface) How many other wine region are there of the grapes whose one of the wine region is Michigan ?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:wineRegion . ?x onto:wineRegion ?uri }",julipc-p(huggingface) Estimate the number of sports divisions at the universities under international association of universities.,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:affiliation . ?x onto:sport ?uri . }",julipc-p(huggingface) What is the leader of the government agency which is the military unit of Erich Kempka ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Erich_Kempka onto:militaryUnit ?x . ?x onto:leader ?uri . }",julipc-p(huggingface) What is the alma mater of the senator who is the successor of Warren Magnuson ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:successor ?x . ?x prop:almaMater ?uri . ?x rdf:type onto:Senator}",julipc-p(huggingface) List the battles in which alumni of US Army Command and General Staff College fought?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:almaMater res:United_States_Army_Command_and_General_Staff_College . ?x prop:battles ?uri . }",julipc-p(huggingface) Which writer of Alan Freeman Days is also the writer of Come On over ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:writer ?uri. prop:writer ?uri}",julipc-p(huggingface) Name the subsidary of Tandem Computers which was founded by Jim Harris ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:subsidiary . ?uri onto:foundedBy . ?uri rdf:type onto:Company}",julipc-p(huggingface) Count all the books written by an author buried in the Convent of Barefoot Trinitarians?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:restingPlace . ?uri onto:author ?x . ?uri rdf:type onto:Book}",julipc-p(huggingface) Name the city with leader as Esther Alder and neighboring municipality as Pregny-Chambsy?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:mayor . ?uri onto:neighboringMunicipality . ?uri rdf:type onto:Location}",julipc-p(huggingface) Name the street address of Rhodes-Haverty Building ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:address ?uri }",julipc-p(huggingface) "Who were the commanders during the events which took place in Sandusky County, Ohio?","PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:place . ?x onto:commander ?uri . ?x rdf:type onto:Event}",julipc-p(huggingface) Who founded the city where Pat Vincent die?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Pat_Vincent onto:deathPlace ?x . ?x onto:founder ?uri . }",julipc-p(huggingface) Name the kingdom with currency Solidus (coin) and administrative headquarters in Nicomedia?,"PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:currency . ?uri onto:capital . }",julipc-p(huggingface) Which company has a product named Visual Studio and One Drive as service ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:services . ?uri prop:products . ?uri rdf:type onto:Company}",julipc-p(huggingface) "Name the river whose mouth place is Old Lyme, Connecticut?","PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:mouthPlace . ?uri rdf:type onto:River}",julipc-p(huggingface) Which division of the Runewaker Entertainment is also the destinations of the Airtours International Airways?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Runewaker_Entertainment onto:division ?uri. res:Airtours_International_Airways prop:destinations ?uri}",julipc-p(huggingface) Which show's network is Prime time Entertainment and has Douglas Netter as executive producer ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:network . ?uri onto:executiveProducer . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) Who was the president under which a tennis player held office before John W. Weeks?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:predecessor . ?x prop:president ?uri . ?x rdf:type onto:TennisPlayer}",julipc-p(huggingface) What are the things whose leader was a monarch of Willem-Alexander of the Netherlands?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:monarch . ?uri onto:leader ?x . }",julipc-p(huggingface) acer nigrum is used in making what?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:ingredient res:Acer_nigrum }",julipc-p(huggingface) Name the prospect team of Mikhail Pashnin ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Mikhail_Pashnin prop:prospectTeam ?uri }",julipc-p(huggingface) What is the predecessor of BMW M40 ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:BMW_M40 prop:predecessor ?uri }",julipc-p(huggingface) Which cities are located around the sea into which the ionian flows?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Ionian_Sea onto:outflow ?x . ?x prop:cities ?uri . }",julipc-p(huggingface) Where do the railroads owned by the Chicago and Northwestern Transportation company begin?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:system . ?x onto:routeStart ?uri . ?x rdf:type onto:RailwayLine}",julipc-p(huggingface) Give me a count of mammals which have their order as Primate?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:order . ?uri rdf:type onto:Mammal}",julipc-p(huggingface) What television show are distributed by Broadcast syndication?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:distributor . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) Who was the president under which people won the United States House of Representatives elections in 1790 ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:leader ?x . ?x prop:president ?uri . ?x rdf:type onto:Person}",julipc-p(huggingface) Which TV show's producer is Stephen E. Ambrose and company is DreamWorks Television?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:producer . ?uri onto:company . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) Which river originate from limerick?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:mouthLocation . ?uri rdf:type onto:River}",julipc-p(huggingface) "Who is the opponent of United States House of Representatives elections in Ohio, 2010 ?","PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:opponent ?uri }",julipc-p(huggingface) Laozi authored which book?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:author res:Laozi }",julipc-p(huggingface) What are some other children of the father of Marvin Bush?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:child res:Marvin_Bush . ?x prop:children ?uri . }",julipc-p(huggingface) Rivers from which countries flow into the Caspian?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:riverMouth . ?x onto:sourceCountry ?uri . ?x rdf:type onto:River}",julipc-p(huggingface) Which is the nearest city to Elliott Bay ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Elliott_Bay onto:nearestCity ?uri }",julipc-p(huggingface) "In which sects were the aristocrats included, who were buried in Westminister abbey?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:majorShrine . ?x prop:veneratedIn ?uri . ?x rdf:type onto:Royalty}",julipc-p(huggingface) Name the saint whose major shrine is in Canada and was canonized by Pope Benedict XVI?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:majorShrine . ?uri prop:canonizedBy . ?uri rdf:type onto:Saint}",julipc-p(huggingface) who was the australian flagbearer of 2008 Summer Olympics?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Australia_at_the_2008_Summer_Olympics prop:flagbearer ?uri }",julipc-p(huggingface) Which vice president of Warren G. Harsing is also the president of Evans Hughes ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Warren_G._Harding onto:vicePresident ?uri. res:Charles_Evans_Hughes onto:president ?uri}",julipc-p(huggingface) Who is the manager of the club whose homeground is the riverside stadium?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:ground . ?uri onto:managerClub ?x . ?uri rdf:type onto:SportsManager}",julipc-p(huggingface) Which recognized title of Frank Thorne is also the product of Playboy Enterprise ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Playboy_Enterprises prop:products ?uri. res:Frank_Thorne onto:award ?uri}",julipc-p(huggingface) Whose constituency is Duboce Triangle ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:constituency . }",julipc-p(huggingface) What is the name of Mary's divine child?,"PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:parent . }",julipc-p(huggingface) Joe Hahn is the member of what band?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:currentMembers . ?uri rdf:type onto:Band}",julipc-p(huggingface) Which team did wolfred McDonald is also the prospect team of Milkhail Pashnin ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Mikhail_Pashnin prop:prospectTeam ?uri. res:Wilfred_McDonald prop:playedFor ?uri}",julipc-p(huggingface) Which companies have launched from the Vandenberg Air Force Air base?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:launchSite res:Vandenberg_Air_Force_Base . ?x onto:manufacturer ?uri . }",julipc-p(huggingface) How many home stadiums are there of the seasons whose chairman in Merritt Paulson?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:chairman . ?x onto:homeStadium ?uri . }",julipc-p(huggingface) What are some primates?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:order res:Primate . }",julipc-p(huggingface) What is the rank of Julius C. Burrows politically?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Julius_C._Burrows prop:order ?uri }",julipc-p(huggingface) Name a few whose live in a place where Indian English is an official language,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:officialLanguage res:Indian_English . ?uri onto:residence ?x . }",julipc-p(huggingface) Count the number of first drivers in all the GPs where Mika Hakkinen was a first driver?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:poleDriver . ?x onto:firstDriver ?uri . ?uri rdf:type onto:RacingDriver}",julipc-p(huggingface) What sports are played at Vishwajyot High School?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Vishwajyot_High_School onto:sport ?uri }",julipc-p(huggingface) BBC Two is the sister channel of networks having which shows?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:sisterNames . ?uri onto:network ?x . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) Who owns a bridge in Boston?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:locatedInArea . ?x prop:owner ?uri . ?x rdf:type onto:Bridge}",julipc-p(huggingface) "How many tenats have been there, of the constructions of PCL constructures?","PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:builder . ?x onto:tenant ?uri . }",julipc-p(huggingface) Which non fiction of the Thud is also the field of the Jon Speelman ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:nonFictionSubject ?uri. onto:field ?uri}",julipc-p(huggingface) "Who was the prime minister of Victor Hope, 2nd Marquess of Linlithgow and also the editor of British Gazette ?","PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:primeminister ?uri. prop:editor ?uri}",julipc-p(huggingface) Name the hockey team whose head coach is Alain Vigneault?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:headCoach . ?uri rdf:type onto:HockeyTeam}",julipc-p(huggingface) What is the municipality of Patterson Houses ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Patterson_Houses onto:municipality ?uri }",julipc-p(huggingface) "Give me a count of everything under the archipelago, where Papeete is the biggest town.","PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:largestCity . ?uri prop:archipelago ?x . }",julipc-p(huggingface) Where does the rivers ending in lake washington begin?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:riverMouth . ?x prop:sourceLocation ?uri . ?x rdf:type onto:River}",julipc-p(huggingface) Who all have developed a cross platform software?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:operatingSystem . ?x onto:developer ?uri . ?x rdf:type onto:Software}",julipc-p(huggingface) where did soccer bowl take place in 76?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:city ?uri }",julipc-p(huggingface) What political ideology of the Palang Dharma Party is relegion of Inthakin?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Palang_Dharma_Party onto:ideology ?uri. res:Inthakin onto:type ?uri}",julipc-p(huggingface) List the cities which share the same water body as that of Florida ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:cities . ?x prop:cities ?uri . ?x rdf:type onto:BodyOfWater}",julipc-p(huggingface) What is common between genre of battle chess and purpose of New Zealand Chess ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Battle_Chess prop:genre ?uri. res:New_Zealand_Chess_Federation prop:purpose ?uri}",julipc-p(huggingface) Who is relative of the people died in Bergen-Belsen concentration camp ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:deathPlace . ?x onto:relative ?uri . }",julipc-p(huggingface) In which state can I find Burr Truss styled bridges?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:style . ?x onto:state ?uri . ?x rdf:type onto:Bridge}",julipc-p(huggingface) Which info. appliance is manufactured by Asus and is the predecessor of PS 2?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:predecessor . ?uri onto:manufacturer . ?uri rdf:type onto:InformationAppliance}",julipc-p(huggingface) Which cover artist of the The Adventures of Tom Sawyer also the source of inspiration of The Appple Tree ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:The_Adventures_of_Tom_Sawyer onto:coverArtist ?uri. res:The_Apple_Tree onto:basedOn ?uri}",julipc-p(huggingface) Which university of Alexandre Tichonov is the place of death of Valentin Muratov /,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Alexandre_Tichonov prop:university ?uri. res:Valentin_Muratov prop:placeOfDeath ?uri}",julipc-p(huggingface) What kind of music is produced at the record label founded by Andre Bourgeois?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:founder . ?x onto:genre ?uri . ?x rdf:type onto:RecordLabel}",julipc-p(huggingface) What is the place of death of the lieutenant of Frank Steunenberg?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Frank_Steunenberg prop:lieutenant ?x . ?x prop:placeOfDeath ?uri . }",julipc-p(huggingface) How many titles have been won by the beauty queens which had brown hair?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:hairColor . ?x prop:title ?uri . }",julipc-p(huggingface) What are the border of High Desert (Oregon)?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:border ?uri }",julipc-p(huggingface) What is the location city of Burnside Distribution Corporation ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Burnside_Distribution_Corporation onto:locationCity ?uri }",julipc-p(huggingface) Which country's people work in the Birdman enterprises?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:institution . ?x prop:nationality ?uri . ?x rdf:type onto:Engineer}",julipc-p(huggingface) Where is Oskar Blues located ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Oskar_Blues_Brewery prop:location ?uri }",julipc-p(huggingface) Paul Leonard's work can be divided into how many series?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:author . ?x onto:series ?uri . }",julipc-p(huggingface) "List the sports associated with Mariveles, Bataan?","PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:city . ?x onto:sport ?uri . }",julipc-p(huggingface) Which holy places did consider Pope Gregory I as a saint?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Pope_Gregory_I prop:veneratedIn ?uri }",julipc-p(huggingface) Which incumbent of Al Gore presidential campaign wass also the president of Mike McCurry ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:president ?uri. onto:incumbent ?uri}",julipc-p(huggingface) What software is developed by GNOWSYS and is licensed by Frontaccounting?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Frontaccounting onto:license ?uri. res:GNOWSYS onto:developer ?uri}",julipc-p(huggingface) Which admin center of pulau Ujong is also the largest city of Pulau Ubin ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Pulau_Ubin onto:largestCity ?uri. res:Pulau_Ujong onto:capital ?uri}",julipc-p(huggingface) What is the parent company of PrivateCore?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:subsidiary res:PrivateCore }",julipc-p(huggingface) Name the scientist whose supervisor was John Robert Woodyard and has won Norbert Wiener Award for Social and Professional Responsibility?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:doctoralAdvisor . ?uri prop:prizes . ?uri rdf:type onto:Scientist}",julipc-p(huggingface) Name the river with mouth palce Essex and source place as Gloucestershire ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:mouthPlace . ?uri onto:sourcePlace . ?uri rdf:type onto:River}",julipc-p(huggingface) In which province was Dick Redding born?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Dick_Redding prop:birthDate ?uri }",julipc-p(huggingface) What awards have been awarded both to Ingmar bergman and James O'Brien?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:awards ?uri. onto:award ?uri}",julipc-p(huggingface) Count the number of characters of the play whose one of the character is Catwoman ?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:characters . ?x prop:characters ?uri }",julipc-p(huggingface) Where else did the graduates of the university of west indies study?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:institution res:University_of_the_West_Indies . ?x prop:almaMater ?uri . }",julipc-p(huggingface) List down the schools whose mascot is an animal from the order of Even toed Ungulates?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:designer . ?uri prop:programmingLanguage ?x . ?uri rdf:type onto:School}",julipc-p(huggingface) Count the number of cities on the Mediterranean Sea?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { prop:cities ?uri . }",julipc-p(huggingface) What non fiction subjects are covered in books by Doubleday publishers?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:publisher . ?x onto:nonFictionSubject ?uri . ?x rdf:type onto:Book}",julipc-p(huggingface) Name the death location of Judson Huss ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Judson_Huss prop:deathPlace ?uri }",julipc-p(huggingface) What are the movies whose musicians's home town is Volos?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:hometown . ?uri prop:music ?x . ?uri rdf:type onto:Film}",julipc-p(huggingface) What is the affiliation of tani University ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Ōtani_University prop:affiliation ?uri }",julipc-p(huggingface) What is the base currency of Benelux ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Benelux prop:currency ?uri }",julipc-p(huggingface) What foundation palce of Temenos Group is the death palce of jerzy Jzef Poocki ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Temenos_Group prop:foundation ?uri. res:Jerzy_Józef_Potocki prop:placeOfDeath ?uri}",julipc-p(huggingface) Give me a count of the services by the company which provides Data center as the services ?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:services . ?x prop:services ?uri }",julipc-p(huggingface) Who discovered Europa and Callisto?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:discoverer ?uri. onto:discoverer ?uri}",julipc-p(huggingface) Scientists at the University of Queensland have won which awards?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:almaMater . ?x prop:awards ?uri . ?x rdf:type onto:Scientist}",julipc-p(huggingface) Which body governs over the place made by the chumash people?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:architect . ?x onto:governingBody ?uri . ?x rdf:type onto:Place}",julipc-p(huggingface) What is the religion of the ethnic group to which the relatives of Waxiang people belong?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:related ?x . ?x onto:religion ?uri . ?x rdf:type onto:EthnicGroup}",julipc-p(huggingface) "Name the office holder whose constituency is Noe Valley, San Francisco and belongs to military unit USS Kittiwake (ASR-13)?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:constituency . ?uri onto:militaryUnit . ?uri rdf:type onto:OfficeHolder}",julipc-p(huggingface) Where is the south shore plaza located?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:South_Shore_Plaza prop:address ?uri }",julipc-p(huggingface) "What are the resting places of the associates of John Betts a, Connecticut politician?","PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:associate ?x . ?x onto:restingPlace ?uri . }",julipc-p(huggingface) Waddy wachtel did the music for what movies?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:music . ?uri rdf:type onto:Film}",julipc-p(huggingface) Whose military unit is 39th infantry regiment in 1812?,"PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:militaryUnit . }",julipc-p(huggingface) Which boarder country of Korean Peninsula was the state of Sodagreen ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Korean_Peninsula onto:border ?uri. res:Sodagreen onto:country ?uri}",julipc-p(huggingface) Spanish harlem incident was composed by whom ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Spanish_Harlem_Incident onto:composer ?uri }",julipc-p(huggingface) What sports are played at universities affiliated by States Colleges and Universities athletic association?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:affiliation . ?x onto:sport ?uri . ?x rdf:type onto:University}",julipc-p(huggingface) EU Broadcasting Union is the owner of the distributor of what?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:owner res:European_Broadcasting_Union . ?uri onto:distributor ?x . }",julipc-p(huggingface) How many people were drafted in the LA Clippers?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:draftTeam . ?uri rdf:type onto:Person}",julipc-p(huggingface) Which founding cities of Young Americans Bank is also the location of Denver Broncos ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Young_Americans_Bank prop:foundation ?uri. res:Denver_Broncos onto:locationCity ?uri}",julipc-p(huggingface) Which famous physicist was academically advised by Benjamin Pulleyn?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:academicAdvisor . ?uri rdf:type onto:Scientist}",julipc-p(huggingface) Which prospect team of Robin Kovacs is the draft team of Bob MacMillan ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Bob_MacMillan prop:draftTeam ?uri. res:Robin_Kovacs prop:prospectTeam ?uri}",julipc-p(huggingface) Terry Pratchett has written about how many topics?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:author . ?x onto:nonFictionSubject ?uri . }",julipc-p(huggingface) Which shows theme music is composed by a band which has Larry Lalonde in it?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:bandMember . ?uri prop:themeMusicComposer ?x . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) Who are the former partners of the figure skaters whose performance have been choreographed by Catarina Lindgren in the past?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:formerChoreographer . ?x onto:formerPartner ?uri . ?x rdf:type onto:FigureSkater}",julipc-p(huggingface) In how many regions is English American spoken?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { prop:region ?uri . }",julipc-p(huggingface) Which baseball team is owned by Robert Nutting?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:owner . ?uri rdf:type onto:BaseballTeam}",julipc-p(huggingface) What religion did Gamini Seneviratne follow?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Gamini_Seneviratne onto:religion ?uri }",julipc-p(huggingface) Which fictional character is portrayed by Roger Barton (film editor)?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:portrayer . ?uri rdf:type onto:FictionalCharacter}",julipc-p(huggingface) who are all the people who have managed the England's under 20 soccer team?,"PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:managerClub }",julipc-p(huggingface) "Give the name of the river with source place as Australian Alps and has mouth place as Goolwa , a place in Siyuth Australia ?","PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:sourcePlace . ?uri onto:mouthPlace . ?uri rdf:type onto:River}",julipc-p(huggingface) Where were the doctoral students of James Langer born?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:James_S._Langer onto:doctoralStudent ?x . ?x prop:placeOfBirth ?uri . }",julipc-p(huggingface) Whose shrine is in aachen cathedral?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:majorShrine res:Aachen_Cathedral . }",julipc-p(huggingface) What religions do politicians in the Korean Minjoo Party follow?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:party . ?x onto:religion ?uri . ?x rdf:type onto:OfficeHolder}",julipc-p(huggingface) What are the other band members of the band one of whose current member is Robert De Niro?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:currentMembers . ?x onto:bandMember ?uri . ?x rdf:type onto:Band}",julipc-p(huggingface) Which peak was first scaled by Krzysztof Wielicki?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:firstAscentPerson res:Krzysztof_Wielicki }",julipc-p(huggingface) Give me the total number of Guests of the television episodes whose one of the Guests is Michael Cristofer?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:guests . ?x prop:guests ?uri }",julipc-p(huggingface) How many factions were fighting in the wars where Blue Jacket was a commander?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:commander . ?x prop:combatant ?uri . }",julipc-p(huggingface) who was the president under which Joe Purcell is a lieutenant?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:lieutenant res:Joe_Purcell }",julipc-p(huggingface) "Which headcoach of Marquette Golden Eagles men's basketball team, 2008-09 was also the coach of Marquette Golden Eagles team ?","PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:coach ?uri. prop:headcoach ?uri}",julipc-p(huggingface) List the state of the universities whose nation is United States ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:country . ?x onto:state ?uri . ?x rdf:type onto:University}",julipc-p(huggingface) What city is the place of birth of Alexander Morozevich which is also the official residence of Dmitri Nossov ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Alexander_Morozevich onto:birthPlace ?uri. res:Dmitri_Nossov prop:residence ?uri}",julipc-p(huggingface) What is the television show whose executive producer is Steven Peterman?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:executiveProducer . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) Which military battles are associated with Israel?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:place . ?uri rdf:type onto:MilitaryConflict}",julipc-p(huggingface) What are some magazines whose publishers are themselves Rock and Roll Hall of Fame members?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:award . ?uri onto:publisher ?x . ?uri rdf:type onto:Magazine}",julipc-p(huggingface) What are the veneration of the one for which there's a major shrine in Hebron?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:majorShrine res:Hebron . ?x prop:veneratedIn ?uri . }",julipc-p(huggingface) What is the home town of the band which is the artist of Your Ice Cream's Dirty ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:artist ?x . ?x onto:hometown ?uri . ?x rdf:type onto:Band}",julipc-p(huggingface) Who is the chancellor of the university which affiliates the Dartington College of Arts?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:affiliations . ?x prop:chancellor ?uri . ?x rdf:type onto:University}",julipc-p(huggingface) What is the nationality of Sune Agerschou ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Sune_Agerschou onto:nationality ?uri }",julipc-p(huggingface) What is the PLACE OF DEATH of Charles Gordon (artist) ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:placeOfDeath ?uri }",julipc-p(huggingface) Namt the fields of Paul Demiville ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Paul_Demiéville prop:fields ?uri }",julipc-p(huggingface) Which battle is Jim Jones associated with to which Allen Boyd is also associated ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:battle ?uri. prop:battles ?uri}",julipc-p(huggingface) Who all have been canonized by Pope Paul VI,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:canonizedBy res:Pope_Paul_VI }",julipc-p(huggingface) Where is the tombstone of the congressman who died in the McLean hospital?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:deathPlace . ?x prop:restingplace ?uri . ?x rdf:type onto:Congressman}",julipc-p(huggingface) What is written in a programming language developed by GNOME Project?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:developer res:The_GNOME_Project . ?uri prop:programmingLanguage ?x . }",julipc-p(huggingface) Which race is the Best Mate is also the race of the Martin Molony?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Best_Mate prop:race ?uri. res:Martin_Molony onto:race ?uri}",julipc-p(huggingface) Where is the building located whose architect was Francis Palmer Smith?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:architect . ?x prop:address ?uri . ?x rdf:type onto:Building}",julipc-p(huggingface) Who operates the bridges designed by Malaysian PWD?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:designer . ?x onto:maintainedBy ?uri . ?x rdf:type onto:Bridge}",julipc-p(huggingface) Where was the person born whose successor was Le Hong Phong?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:successor res:Lê_Hồng_Phong . ?x prop:birthPlace ?uri . }",julipc-p(huggingface) List all important people of the non profit organization which has Hilary Clinton as a key person ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:keyPeople . ?x prop:keyPeople ?uri . ?x rdf:type onto:Non-ProfitOrganisation}",julipc-p(huggingface) List the school of Bobby Skinstad?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Bobby_Skinstad prop:school ?uri }",julipc-p(huggingface) Count all the universities who participated in the tournament won by Alabama Crimson Tides in 2015 ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:champion . ?uri prop:athletics ?x . ?uri rdf:type onto:University}",julipc-p(huggingface) "List the base currency of the country whose anthem is Oj, svijetla majska zoro.","PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:anthem . ?x prop:currency ?uri . }",julipc-p(huggingface) What magazine is Marritt Cabal known for which has Lucifer Hammer as publisher ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:knownFor ?uri. onto:publisher ?uri}",julipc-p(huggingface) Name the parent company of Ford Falcon Cobra ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Ford_Falcon_Cobra onto:parentCompany ?uri }",julipc-p(huggingface) How many players are in the San Francisco Giants?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:team . ?uri rdf:type onto:Athlete}",julipc-p(huggingface) Which place of Geography Club is the location of Seattle Great Wheel ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:locationTown ?uri. prop:place ?uri}",julipc-p(huggingface) How many races has Best Mate won?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { prop:race ?uri . }",julipc-p(huggingface) Which governor of Charles Willing had a child named John Scott ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:governor res:Charles_Willing_Byrd . ?uri onto:child res:John_Scott_Harrison . }",julipc-p(huggingface) List the relatives of Lyubov Dostoyevskaya ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Lyubov_Dostoyevskaya prop:relatives ?uri }",julipc-p(huggingface) What is the military rank of the important commander of Peruvian Army?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Peruvian_Army onto:notableCommander ?x . ?x onto:militaryRank ?uri . }",julipc-p(huggingface) "Which units are garrisoned at Arlington County, Virginia?","PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:garrison }",julipc-p(huggingface) In how many different places have ehtics philosophers died?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:mainInterests . ?x prop:placeOfDeath ?uri . ?uri rdf:type onto:Place}",julipc-p(huggingface) Who is the fictional character who starred in The Dognapper?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:voice . ?uri rdf:type onto:FictionalCharacter}",julipc-p(huggingface) Who is the developer of Dart (programming language) ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:developer ?uri }",julipc-p(huggingface) Which house has published books about Jazz?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:nonFictionSubject . ?x onto:publisher ?uri . ?x rdf:type onto:Book}",julipc-p(huggingface) Which person naratted The Incredible Hulk and also the writer of Tales of Suspense ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:narrated ?uri. prop:writers ?uri}",julipc-p(huggingface) Who are the parents of writers born and bred in Buckinghamshire?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:homeTown . ?x onto:parent ?uri . ?x rdf:type onto:Writer}",julipc-p(huggingface) List down the common sports played by PATTS College of Aeronautics and lytechnic University of the Philippines Taguig ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:PATTS_College_of_Aeronautics prop:athletics ?uri. res:Polytechnic_University_of_the_Philippines_Taguig onto:sport ?uri}",julipc-p(huggingface) How many companies have built concrete bridges?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:material . ?x onto:builder ?uri . }",julipc-p(huggingface) How many movies have been directed by almunies of Parsons School of Design?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:education . ?uri onto:director ?x . ?uri rdf:type onto:Film}",julipc-p(huggingface) Count the number of sport played by the school which also plays Association football ?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:sport . ?x onto:sport ?uri }",julipc-p(huggingface) Which countries militaries fought the SFOR battle?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:battles . ?x onto:battle ?uri . ?x rdf:type onto:MilitaryPerson}",julipc-p(huggingface) List the people died in Hyderabad and are a member of political party ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:deathPlace res:Hyderabad . ?x onto:party ?uri . }",julipc-p(huggingface) "What is the american football league whose champion is from Kansas City, Missouri?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:city . ?uri prop:champion ?x . ?uri rdf:type onto:AmericanFootballLeague}",julipc-p(huggingface) How many thesis were supervised by Ernest Rutherford?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:doctoralAdvisor . }",julipc-p(huggingface) "Who is the publisher of the comic, one of whose authors is Kentaro Takekuma ?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:writers . ?x prop:publisher ?uri . ?x rdf:type onto:Comic}",julipc-p(huggingface) List the scientists whose doctoral advisor is Ernest Rutherford and are known for Manhattan Project?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:doctoralAdvisor . ?uri prop:knownFor . ?uri rdf:type onto:Scientist}",julipc-p(huggingface) Where is the garrison of Western Naval Command ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Western_Naval_Command prop:garrison ?uri }",julipc-p(huggingface) What is the political party of the of Bengalis ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:ethnicity res:Bengalis . ?x onto:party ?uri . }",julipc-p(huggingface) Which city's mayor is married to Jean Marc Germain?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:spouse . ?uri prop:mayor ?x . }",julipc-p(huggingface) Which person's successor is Samsu-iluna?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:successor . ?uri rdf:type onto:Person}",julipc-p(huggingface) Where do the sister stations of Al Khaleejiya 100.9 play?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:sisterStations res:Al_Khaleejiya_100.9 . ?x prop:location ?uri . }",julipc-p(huggingface) Name the sports played by Jamiatu Muslim Mindanao?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Jamiatu_Muslim_Mindanao onto:athletics ?uri }",julipc-p(huggingface) List the party of the office holder which also has the affiliation with Congress Socialist party ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:otherParty . ?x onto:otherParty ?uri . ?x rdf:type onto:OfficeHolder}",julipc-p(huggingface) What is the nickname of the city where Tuba Dei lives?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Tuba_Dei prop:city ?x . ?x prop:nickname ?uri . }",julipc-p(huggingface) From how many different places did the weapons used in the American Indian wars originate?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:usedInWar . ?x prop:origin ?uri . ?uri rdf:type onto:Place}",julipc-p(huggingface) Name the office holder whose alma mater is Harvard-Westlake School and resting place is Alta Mesa Memorial Park?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:almaMater . ?uri prop:restingPlace . ?uri rdf:type onto:OfficeHolder}",julipc-p(huggingface) Name the rive whose mouth is located in Limerick and location is Dowra?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:mouthLocation . ?uri prop:sourceLocation . ?uri rdf:type onto:River}",julipc-p(huggingface) How many sports are played in maharashtran schools?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:state . ?x onto:sport ?uri . ?uri rdf:type onto:Sport}",julipc-p(huggingface) What is the citizenship of Ren Romano ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:René_Romano prop:citizenship ?uri }",julipc-p(huggingface) Which magazine's publisher is Jann Wenner and founded by Ralph J. Gleason?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:publisher . ?uri onto:founder . ?uri rdf:type onto:Magazine}",julipc-p(huggingface) Where did chancellor served by Rudolf Kirchschlger die?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Rudolf_Kirchschläger prop:chancellor ?x . ?x onto:deathPlace ?uri . }",julipc-p(huggingface) How many owners owned the clubs participating in the Premier leagues of '14?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:season . ?x prop:owner ?uri . }",julipc-p(huggingface) "How many people live in the Beverly Hills, California?","PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:residence . ?uri rdf:type onto:Person}",julipc-p(huggingface) Name some islands in a pacific archipelago?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:location . ?uri prop:archipelago ?x . ?uri rdf:type onto:Island}",julipc-p(huggingface) "For how many movies have the music composer composed music, who have collaborated with Yes ?","PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:associatedMusicalArtist . ?uri onto:musicComposer ?x . ?uri rdf:type onto:Film}",julipc-p(huggingface) Name the driver who had a pole finish in 1989 Portuguese Grand Prix ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:1989_Portuguese_Grand_Prix onto:poleDriver ?uri }",julipc-p(huggingface) Jeff Munn is the president of which basketball team ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:president . ?uri rdf:type onto:BasketballTeam}",julipc-p(huggingface) "In how many areas do the networks broadcast, which also broadcasts in North Carolina?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:broadcastArea . ?x prop:area ?uri . ?uri rdf:type onto:Place}",julipc-p(huggingface) Name the sovereign state of Wallington railway station ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Wallington_railway_station onto:country ?uri }",julipc-p(huggingface) Which terrotory of Tonkin campaign also the death bed of Thophane Vnard ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Tonkin_Campaign onto:territory ?uri. res:Théophane_Vénard onto:deathPlace ?uri}",julipc-p(huggingface) Where does the Giannis Alafouzos originate?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Giannis_Alafouzos onto:stateOfOrigin ?uri }",julipc-p(huggingface) What is the death place of the Elbieta Czartoryska which is also place of birth of the Charles Journet,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:deathPlace ?uri. onto:birthPlace ?uri}",julipc-p(huggingface) What mammals fall into the biological family Canidae?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:family . ?uri rdf:type onto:Mammal}",julipc-p(huggingface) what region is governed by Mario Olivero?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:leader res:Mario_Oliverio }",julipc-p(huggingface) Whihc party of the Mizoram Legislative Assembly is the government type of kumta ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Kumta onto:governmentType ?uri. res:Mizoram_Legislative_Assembly prop:party ?uri}",julipc-p(huggingface) What sports can be played in institutions in Bataan?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:province res:Bataan . ?x onto:sport ?uri . }",julipc-p(huggingface) What is the total number of regions served by the companies which also serves Australia?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:regionServed . ?x onto:regionServed ?uri }",julipc-p(huggingface) Which route junction of the Rhode Island Route 15 is the place of birth of the Michael Poulin?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Rhode_Island_Route_15 onto:routeJunction ?uri. res:Michael_Poulin prop:placeOfBirth ?uri}",julipc-p(huggingface) What is the birth city of the Salford City F.C players ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:team . ?x onto:birthPlace ?uri . ?x rdf:type onto:SoccerPlayer}",julipc-p(huggingface) Who are the maintainers of the bridges which cross the pandaruan river?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:crosses . ?x onto:maintainedBy ?uri . ?x rdf:type onto:Bridge}",julipc-p(huggingface) List the area of radio stations whose sister station is WBCQ-FM?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:sisterStations ?x . ?x prop:area ?uri . }",julipc-p(huggingface) Which school did Robbie Diack attend?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Robbie_Diack prop:school ?uri }",julipc-p(huggingface) "List the alma mater of the congressmen who attended Nashville, Tennessee ?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:almaMater . ?x onto:almaMater ?uri . ?x rdf:type onto:Congressman}",julipc-p(huggingface) What is the broadcast area of CFRX ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:CFRX onto:broadcastArea ?uri }",julipc-p(huggingface) Who developed games based on the Cars series?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:series . ?x onto:developer ?uri . ?x rdf:type onto:VideoGame}",julipc-p(huggingface) What are the american football players whose former team's coach is Jason Maas?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:coach . ?uri onto:formerTeam ?x . ?uri rdf:type onto:AmericanFootballPlayer}",julipc-p(huggingface) Which hub of Cascade Airways is also the resting place of Brandon Lee ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Cascade_Airways prop:hubs ?uri. res:Brandon_Lee onto:restingPlace ?uri}",julipc-p(huggingface) How many companies have manufactured the rockets launched from the Cape Canaveral Air Force Station?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:launchSite . ?x onto:manufacturer ?uri . }",julipc-p(huggingface) Name the agency of Election Commission of Thailand ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Election_Commission_of_Thailand prop:agencyName ?uri }",julipc-p(huggingface) In which country did the planes designed by Ursula Hanle originate?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:designer . ?x prop:nationalOrigin ?uri . ?x rdf:type onto:Aircraft}",julipc-p(huggingface) what are some units udner the US department of navy?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:commandStructure res:United_States_Department_of_the_Navy }",julipc-p(huggingface) Which destination of the Novair International Airways is also the predecessor of the Chevrolet Caprice?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Novair_International_Airways onto:destination ?uri. res:Chevrolet_Caprice onto:predecessor ?uri}",julipc-p(huggingface) What did other artists associated with the Shirelles make?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:associatedBand . ?x onto:occupation ?uri . ?x rdf:type onto:Artist}",julipc-p(huggingface) Which sitcoms are made by a company headquartered in NYC?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:headquarter . ?uri onto:company ?x . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) Name the city of Duwamish River ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Duwamish_River onto:city ?uri }",julipc-p(huggingface) List the children of the parent of Marvin Bush.,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Marvin_Bush onto:parent ?x . ?x prop:children ?uri . }",julipc-p(huggingface) List the awards received of the person whose child is Daine Disney Miller?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:children . ?x onto:award ?uri . ?x rdf:type onto:Person}",julipc-p(huggingface) In which country is the Baku puppet Theater located which is also the birth palce of Anar Salmanov ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Baku_Puppet_Theatre onto:locationCountry ?uri. res:Anar_Salmanov prop:placeOfBirth ?uri}",julipc-p(huggingface) List down all the cast members of Tony n' Tina's Wedding ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:starring ?uri }",julipc-p(huggingface) What is the airline company has its headquarters in Dublin Airport?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:headquarters res:Dublin_Airport }",julipc-p(huggingface) What was the result of Operation Autumn Clouds ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Operation_Autumn_Clouds prop:result ?uri }",julipc-p(huggingface) Where was the Temptation Waits recorded?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Temptation_Waits onto:recordedIn ?uri }",julipc-p(huggingface) Some movies whose screenplay is done by american born people?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:birthPlace res:United_States . ?uri prop:screenplay ?x . }",julipc-p(huggingface) List the relatives of clay Aiken ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:relatives res:Clay_Aiken . }",julipc-p(huggingface) List the relatives of the children of Jon Voight ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Jon_Voight prop:children ?x . ?x onto:relative ?uri . }",julipc-p(huggingface) What is the resting place of the children of Bruce Lee ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Bruce_Lee prop:children ?x . ?x onto:restingPlace ?uri . }",julipc-p(huggingface) List the colonel with branch as Militia ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:branch . ?uri prop:rank . }",julipc-p(huggingface) List all areas served by the radio station serving South carolina ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:area . ?x prop:area ?uri . ?x rdf:type onto:RadioStation}",julipc-p(huggingface) Which TV show's theme was composed by a band in which Todd Huth used to perform?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:formerBandMember . ?uri prop:themeMusicComposer ?x . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) What is the state of origin of Abbas Jafri ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Abbas_Jafri onto:stateOfOrigin ?uri }",julipc-p(huggingface) which award has been won by Claudia Moro?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Claudia_Moro prop:title ?uri }",julipc-p(huggingface) What religion did the spouse of Richie Aprile follow?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Richie_Aprile prop:spouse ?x . ?x onto:religion ?uri . }",julipc-p(huggingface) Which river has its roots in Baikal Mountains?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:sourceMountain res:Baikal_Mountains }",julipc-p(huggingface) What is the country whose leader was once Valentina Matviyenko?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:leader res:Valentina_Matviyenko . }",julipc-p(huggingface) Whose units are responsible for close air support?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:role res:Close_air_support . ?uri onto:militaryUnit ?x . }",julipc-p(huggingface) Which university has chancellor as Nicholas S. Zeppos?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:chancellor . ?uri rdf:type onto:University}",julipc-p(huggingface) Name the key people of the non-profit organisations whose one of the key person is Lesley-Anne knight ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:keyPeople . ?x prop:keyPeople ?uri . }",julipc-p(huggingface) What is the address of Federal Reserve Bank Building?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:address ?uri }",julipc-p(huggingface) What are the kind of games one can play on windows?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:computingPlatform . ?x onto:genre ?uri . ?x rdf:type onto:VideoGame}",julipc-p(huggingface) What is the location country of the bank whose successor is Mauritius Bank ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:successor . ?x prop:locationCountry ?uri . ?x rdf:type onto:Bank}",julipc-p(huggingface) Which artists have co-starred with Kris Kristofferson?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:associatedActs . ?uri rdf:type onto:Artist}",julipc-p(huggingface) List the software using C++ as programming language and licence is Software as a service?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:programmingLanguage . ?uri onto:license . ?uri rdf:type onto:Software}",julipc-p(huggingface) Which are the major hubs of airline which operates the Menora Tunnel?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:operator ?x . ?x prop:hubs ?uri . ?x rdf:type onto:Airline}",julipc-p(huggingface) Who are the writer of the singles whose music genre is Rhythm and blues ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:genre . ?x onto:writer ?uri . ?x rdf:type onto:Single}",julipc-p(huggingface) Which country does the current team of Darren McNamara belong to?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Darren_McNamara prop:currentTeam ?x . ?x onto:locationCountry ?uri . }",julipc-p(huggingface) Name the mountain which belongs to Sierra Nevada range and is located in Inyo National Forest?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:mountainRange . ?uri onto:locatedInArea . ?uri rdf:type onto:Mountain}",julipc-p(huggingface) What are the awards won by the film editor of The Search?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:editing ?x . ?x prop:awards ?uri . }",julipc-p(huggingface) Which serving railway line of the Rostov-Glavny is also the place of birth of Nina Vislova?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:servingRailwayLine ?uri. prop:placeOfBirth ?uri}",julipc-p(huggingface) Give me some series related to the one which had Yasmin Paige in them.,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:starring . ?uri onto:related ?x . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) Which associate musical artist of Carolyn Dennis is also the composer of Motorpsycho Nitemare ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Carolyn_Dennis onto:associatedMusicalArtist ?uri. res:Motorpsycho_Nitemare prop:composer ?uri}",julipc-p(huggingface) Count the number of shows whose creators are Jerry Seinfeld and Larry David?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?uri onto:creator . ?uri onto:creator }",julipc-p(huggingface) "What is the state of the settlement, which is the sub assembly of Mohamedia, Tunisia ?","PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:isPartOf ?x . ?x onto:country ?uri . }",julipc-p(huggingface) Name the rivers in the hudson highlands state parts?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Hudson_Highlands_State_Park prop:river ?uri }",julipc-p(huggingface) How many TV shows have executive producer as Steven Moffat ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:executiveProducer . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) "Which office holder's military unit is USS Kittiwake and constituency is Castro District, San Francisco ?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:militaryUnit . ?uri prop:constituency . ?uri rdf:type onto:OfficeHolder}",julipc-p(huggingface) Which writer of the Snaman is also the writer of Neverwher ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:writers ?uri. onto:writer ?uri}",julipc-p(huggingface) How many relatives are there of veterans of operation Barbarossa?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:battle . ?x onto:relation ?uri . }",julipc-p(huggingface) Which famous political figures are relatives to George Madison?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:George_Madison onto:relation ?uri }",julipc-p(huggingface) Which organisation has superintendent as Lieutenant general (United States)?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:superintendent . ?uri rdf:type onto:Organisation}",julipc-p(huggingface) Who all have been in bands which have recorded their work in the Electric Lady Studios?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:recordedIn . ?uri prop:associatedActs ?x . ?uri rdf:type onto:Person}",julipc-p(huggingface) Who did the associated act which is a Peter Frampton production ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:producer res:Peter_Frampton . ?uri prop:associatedActs ?x . }",julipc-p(huggingface) List the shows whose company's successor is Amblin Television.,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:successor . ?uri onto:company ?x . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) How many shows are made by the channel whose predecessor was the Comedy Channel?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:predecessor . ?uri prop:network ?x . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) List of people who were the first one to ascend a mountain in the Cathedral range?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:mountainRange . ?x onto:firstAscentPerson ?uri . ?x rdf:type onto:Mountain}",julipc-p(huggingface) Give me the mascot of the military unit in which Stewart Bovell served?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:militaryBranch ?x . ?x prop:mascot ?uri . ?x rdf:type onto:MilitaryUnit}",julipc-p(huggingface) In which wars did commanders born in Indochina fight?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:birthPlace . ?uri onto:commander ?x . ?uri rdf:type onto:MilitaryConflict}",julipc-p(huggingface) Who has written the mary poppins musical?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:author ?uri }",julipc-p(huggingface) Which newspaper is owned by people living in Oslo?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:location res:Oslo . ?uri prop:owners ?x . }",julipc-p(huggingface) Who made the engine whose predecessor is the SHO V6?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:predecessor . ?x onto:manufacturer ?uri . ?x rdf:type onto:Engine}",julipc-p(huggingface) For how many different teams have Ontarians been drafted ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:placeOfBirth . ?x onto:draftTeam ?uri . }",julipc-p(huggingface) Name the university of Alexandre Tichonov ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Alexandre_Tichonov prop:university ?uri }",julipc-p(huggingface) In which countries can i find broadcasted TV in southeast asia?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:broadcastArea . ?x prop:country ?uri . ?x rdf:type onto:TelevisionStation}",julipc-p(huggingface) "Over how many cities did the Bellaton MMA, Season 11 take place?","PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { prop:city ?uri . }",julipc-p(huggingface) Whose academic advisor works at the St George's Hospital?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:workInstitutions . ?uri onto:academicAdvisor ?x . }",julipc-p(huggingface) Count the number of people who graduated from universities affiliated with the NCAA.,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:athletics . ?uri prop:education ?x . ?uri rdf:type onto:Person}",julipc-p(huggingface) Which governor of Charles Willing byrd fought the battle of Siege of Fort Recovery ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:battle res:Siege_of_Fort_Recovery . ?uri prop:governor res:Charles_Willing_Byrd . }",julipc-p(huggingface) How many characters were made by Paul Dini?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:creators . }",julipc-p(huggingface) What are the name of the casualties affected by shooting rampage of Eric Harris and Dylan Klebold?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:deathCause . ?uri rdf:type onto:Person}",julipc-p(huggingface) How many molluscas are there whose families are Buccinidae and Buccinoidea?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?uri onto:family . ?uri onto:family }",julipc-p(huggingface) List the newspapers which has headquarters in Stockholm?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:headquarters . ?uri rdf:type onto:Newspaper}",julipc-p(huggingface) List the relegion of tani University which is also the life stance of udit Raj ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Ōtani_University prop:affiliation ?uri. res:Udit_Raj onto:religion ?uri}",julipc-p(huggingface) what are some players of England national football team?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:nationalteam res:England_national_football_team }",julipc-p(huggingface) Which genre of books does the writer of The Many Hands write?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:The_Many_Hands prop:author ?x . ?x onto:genre ?uri . }",julipc-p(huggingface) Where did Aghasalim Childagh die?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Aghasalim_Childagh prop:deathDate ?uri }",julipc-p(huggingface) Give me a count of airlines whose hub airport is Los Angeles International Airport?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:hubAirport . ?uri rdf:type onto:Airline}",julipc-p(huggingface) Where is the football team located in which Josh Bell did his debut?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:debutTeam ?x . ?x onto:locationCity ?uri . }",julipc-p(huggingface) Where is the successor of john waldo from?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:successor res:John_B._Waldo . ?x prop:state ?uri . }",julipc-p(huggingface) How many awards have screenwriters won?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:occupation . ?x onto:award ?uri . }",julipc-p(huggingface) How many owners are there of things located in Alabama?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:city . ?x onto:owner ?uri . }",julipc-p(huggingface) Which writer of A literary Nightmare also extended the work of The Apple tree ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:The_Apple_Tree onto:basedOn ?uri. res:A_Literary_Nightmare onto:author ?uri}",julipc-p(huggingface) What is the television show whose opening theme is Where Everybody Knows Your Name?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:openingTheme . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) "How many companies were founded in Denton, texas?","PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:part . ?uri onto:foundationPlace ?x . ?uri rdf:type onto:Company}",julipc-p(huggingface) Of which countries does Viveka Babajee have citizenship?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Viveka_Babajee prop:citizenship ?uri }",julipc-p(huggingface) Which club of perianne Lones is also the home town of the Kady O'Malley ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:homeTown ?uri. prop:club ?uri}",julipc-p(huggingface) Where are the shrines of the saints who were beatified by Pope Pius XI?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:beatifiedBy . ?x onto:majorShrine ?uri . ?x rdf:type onto:Saint}",julipc-p(huggingface) What is the ethicity of Ted Falon?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Ted_Failon onto:ethnicity ?uri }",julipc-p(huggingface) By what person of which political party is Balangir district led?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Balangir_district onto:leaderName ?uri }",julipc-p(huggingface) Who is the political figure whose military branch is Colonial troops?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:militaryBranch res:Colonial_troops }",julipc-p(huggingface) Foxy Brown was associated with which band?,"PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:associatedBand }",julipc-p(huggingface) Which creation of Josh Friedman was portrayed in Terminator 2 ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:portrayer res:Terminator_2:_Judgment_Day . ?uri prop:creator res:Josh_Friedman . }",julipc-p(huggingface) Of how many battles is Chickasaw Campaign of 1736 consisted?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Chickasaw_Campaign_of_1736 prop:combatant ?uri }",julipc-p(huggingface) In which country is there a political party whose leader is Jose Cha Cha Jimenez?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:leader . ?x prop:international ?uri . ?x rdf:type onto:PoliticalParty}",julipc-p(huggingface) Which movies' composers have won a BAFTA for film music?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:award . ?uri onto:musicComposer ?x . ?uri rdf:type onto:Film}",julipc-p(huggingface) What kind of things are on the radio stations affiliated with the Baltimore Ravens?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:affiliations . ?x onto:programmeFormat ?uri . ?x rdf:type onto:RadioStation}",julipc-p(huggingface) Which work institue of andrew Schally belongs to WTUL ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Andrew_Schally prop:workInstitutions ?uri. res:WTUL prop:owner ?uri}",julipc-p(huggingface) Who is the author of Heroman is also the author of Karakuri Dji Ultimo ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Heroman prop:author ?uri. res:Karakuri_Dôji_Ultimo onto:author ?uri}",julipc-p(huggingface) What organization is the parent of Greenpeace Nordic?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Greenpeace_Nordic onto:parentOrganisation ?uri }",julipc-p(huggingface) Of what all has David Ian Salter been an editor of?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:editing res:David_Ian_Salter }",julipc-p(huggingface) Name the river whose mouth mountain is Essex and river mouth is North Sea?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:mouthMountain . ?uri onto:riverMouth . ?uri rdf:type onto:River}",julipc-p(huggingface) What is the products of the BBC Multimedia and series of the The Last Resort (Doctor Who),"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:products ?uri. onto:series ?uri}",julipc-p(huggingface) Which mascot of Celal Bayer university is also the nickname of kore Presbyterian Theological Seminar ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Korea_Presbyterian_Theological_Seminary prop:nickname ?uri. res:Celal_Bayar_University prop:mascot ?uri}",julipc-p(huggingface) In how many countries do the rivers start which end at the Caspian Sea?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:riverMouth . ?x onto:sourceCountry ?uri . ?uri rdf:type onto:Country}",julipc-p(huggingface) "Give the total number of places to which airlines go, who also go to Glasgow?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:targetAirport . ?x prop:destinations ?uri . ?uri rdf:type onto:Place}",julipc-p(huggingface) Who was the PM under which William Deane served?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:William_Deane onto:primeMinister ?uri . }",julipc-p(huggingface) In which states can I find Truss bridges?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:style . ?x onto:state ?uri . ?x rdf:type onto:Bridge}",julipc-p(huggingface) Which awards have Puerto Ricons won?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:ethnicity res:Puerto_Rico . ?x prop:awards ?uri . }",julipc-p(huggingface) Where is the rival school of Somerset Berkeley Regional High school?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:rival . ?x onto:region ?uri . ?x rdf:type onto:School}",julipc-p(huggingface) What products are made by Tehran based companies?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:location . ?x onto:product ?uri . ?x rdf:type onto:Company}",julipc-p(huggingface) Count number of people who follow a religion which has an important office in Gold Base ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:headquarters . ?uri onto:religion ?x . ?uri rdf:type onto:Person}",julipc-p(huggingface) In which areas can we find the networks owned by the govt of Mauritius?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:owningCompany . ?x prop:broadcastArea ?uri . ?x rdf:type onto:BroadcastNetwork}",julipc-p(huggingface) What is the profession of the William Luther Hill and also the office of the Richard Coke ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:William_Luther_Hill onto:profession ?uri. res:Richard_Coke prop:office ?uri}",julipc-p(huggingface) What's the religion of the winner of china election of 2008?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:leader ?x . ?x onto:religion ?uri . }",julipc-p(huggingface) What is the city nearest to the historic place whose architect is Joseph Dion?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:architect . ?x onto:nearestCity ?uri . ?x rdf:type onto:HistoricPlace}",julipc-p(huggingface) Who is the father of Edith Vonnegut and is also a writer?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:child . ?uri rdf:type onto:Writer}",julipc-p(huggingface) How many basketball players studied in the Midland College?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:college . ?uri rdf:type onto:BasketballPlayer}",julipc-p(huggingface) List all the collaborators of the artist which has collaborated with sanremo Music Festival ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:associatedMusicalArtist . ?x onto:associatedMusicalArtist ?uri . ?x rdf:type onto:Artist}",julipc-p(huggingface) "Who was the president under whom, a governor participated in Shay's rebellion?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:battle . ?x prop:president ?uri . ?x rdf:type onto:Governor}",julipc-p(huggingface) Which actors have performed in plays performed in New York?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:place . ?x prop:starring ?uri . ?x rdf:type onto:Play}",julipc-p(huggingface) Who is the editor of Hearth and Home ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Hearth_and_Home onto:editor ?uri }",julipc-p(huggingface) List the books by the authors buried in the Convent of the Barefoot Trinitarians?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:restingPlace . ?uri onto:author ?x . ?uri rdf:type onto:Book}",julipc-p(huggingface) How many game series exist for iOS?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:computingPlatform . ?x onto:series ?uri . }",julipc-p(huggingface) Where does Manu cornet work?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Manu_Cornet prop:employer ?uri . }",julipc-p(huggingface) "Which awards did the creator of A Barrel of Laughs, a Vale of Tears won ?","PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:author ?x . ?x onto:award ?uri . ?x rdf:type onto:ComicsCreator}",julipc-p(huggingface) In how many different places were the people born who are members of National Museum of Racing and Hall of Fame?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:honours . ?x prop:birthPlace ?uri . ?uri rdf:type onto:Place}",julipc-p(huggingface) What is the source country of reg Lake ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Üüreg_Lake onto:sourceCountry ?uri }",julipc-p(huggingface) Which hockey teams have had people playing as Defenceman?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:position . ?x prop:playedFor ?uri . ?x rdf:type onto:IceHockeyPlayer}",julipc-p(huggingface) which president was served by Joseph Stiglitz?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Joseph_Stiglitz prop:president ?uri }",julipc-p(huggingface) Name the tenant of Ever bank field which has also has player named Dan Shamash ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Dan_Shamash onto:team ?uri. res:EverBank_Field onto:tenant ?uri}",julipc-p(huggingface) Who is the mfr. of the engine used in Ford Transit ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:engine ?x . ?x onto:manufacturer ?uri . ?x rdf:type onto:Engine}",julipc-p(huggingface) Where did the employees of American College of Surgeons study?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:workInstitutions res:American_College_of_Surgeons . ?x onto:education ?uri . }",julipc-p(huggingface) "Name the people whose residence is Beverly Hills, California?","PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:residence . ?uri rdf:type onto:Person}",julipc-p(huggingface) The authors of Zhorstoke nebo was influenced by whom ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Zhorstoke_nebo onto:author ?x . ?x onto:influencedBy ?uri . }",julipc-p(huggingface) Which city has radio stations which are Religious ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:format . ?x prop:city ?uri . ?x rdf:type onto:RadioStation}",julipc-p(huggingface) From which state do the White Plum Asangas come?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:religion res:White_Plum_Asanga . ?x onto:stateOfOrigin ?uri . }",julipc-p(huggingface) Who operates the Ganz UV?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Ganz_UV onto:operator ?uri }",julipc-p(huggingface) What is the state of Umatilla language which is also the state of James K. Kelly ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:James_K._Kelly prop:state ?uri. res:Umatilla_language prop:region ?uri}",julipc-p(huggingface) Where has GARAGE recorded its singles?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:producer . ?x onto:recordedIn ?uri . ?x rdf:type onto:Single}",julipc-p(huggingface) How many players participated in the 2004-05 FC Barcelona season?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { prop:name ?uri . ?uri rdf:type onto:SoccerPlayer}",julipc-p(huggingface) Whose mam is Bertrada of Laon?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:mother res:Bertrada_of_Laon }",julipc-p(huggingface) Give me a list of all the people driving at pole positions in the Grand Prixes where Renault was a first team?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:firstTeam . ?x onto:poleDriver ?uri . ?x rdf:type onto:GrandPrix}",julipc-p(huggingface) Who is the developer of the software which distributes Batman: Arkham City Lockdown ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:distributor ?x . ?x prop:developer ?uri . ?x rdf:type onto:Software}",julipc-p(huggingface) What are the non-fiction topics in the books whose authors is Terry Pratchett?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:author . ?x onto:nonFictionSubject ?uri . ?x rdf:type onto:Book}",julipc-p(huggingface) Name a movie with actor as Momoko Kchi and music by Akira Ifukube?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:starring . ?uri prop:music . ?uri rdf:type onto:Film}",julipc-p(huggingface) Which railway line goes through the stations which are a part of the North Caucasus railway?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:type . ?x onto:servingRailwayLine ?uri . ?x rdf:type onto:Station}",julipc-p(huggingface) Name the source Island of Bayou ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:source ?uri }",julipc-p(huggingface) What location country of AH141 is also the nation of malaysia Junior hockey league ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:AH141 onto:county ?uri. res:Malaysia_Junior_Hockey_League onto:country ?uri}",julipc-p(huggingface) Which college of the Luke List (golfer) is the alma mater of the Park Trammell ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:college ?uri. onto:almaMater ?uri}",julipc-p(huggingface) "Of the sports commonly played at Islamic Azad Uni, tehran, which one does Jon Speelman play?","PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Jon_Speelman onto:field ?uri. res:Islamic_Azad_University_Central_Tehran_Branch onto:sport ?uri}",julipc-p(huggingface) How many artists are signed up with Celluloid Records?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:label . }",julipc-p(huggingface) Henry McDaniel's trained horses have won which awards?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:trainer . ?x onto:honours ?uri . ?x rdf:type onto:Horse}",julipc-p(huggingface) What were the occupations of Marcus Floyd?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Marcus_Floyd onto:occupation ?uri }",julipc-p(huggingface) With whom is the institution of David Charles affiliated?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:workInstitutions ?x . ?x prop:affiliation ?uri . }",julipc-p(huggingface) "From how many coutries do companies come, which are headquartered in the Klang Valley?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:headquarters . ?x prop:country ?uri . ?uri rdf:type onto:Country}",julipc-p(huggingface) Who is the builder of the bridge owned by Tabriz ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:owner . ?x onto:builder ?uri . ?x rdf:type onto:Bridge}",julipc-p(huggingface) Who are the golf players whose college is Arizona State Sun Devils?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:college . ?uri rdf:type onto:GolfPlayer}",julipc-p(huggingface) How many local authorities manage mixed gender schools?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:gender . ?x onto:localAuthority ?uri . }",julipc-p(huggingface) "What is the almamater of the successor of F. A. Little, Jr.? ","PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:successor ?x . ?x onto:almaMater ?uri . }",julipc-p(huggingface) List everything in which saxophone players have been casted.,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:instrument res:Saxophone . ?uri prop:starring ?x . }",julipc-p(huggingface) In which city is Corringham railway station located?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Corringham_railway_station prop:borough ?uri }",julipc-p(huggingface) What monument was unveiled in 1984 of fine arts of the Soviet Union ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:1984_in_fine_arts_of_the_Soviet_Union prop:title ?uri }",julipc-p(huggingface) Where did the wrestler trained by Ring of Honour get billed?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:trainer . ?x prop:billed ?uri . ?x rdf:type onto:Athlete}",julipc-p(huggingface) Name the console whose successor is PlayStation 4 and predecessor is PlayStation 2?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:successor . ?uri prop:predecessor . ?uri rdf:type onto:InformationAppliance}",julipc-p(huggingface) List the name of those who became famous for something garrisoned at Tennessee?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:garrison res:Tennessee . ?uri prop:knownFor ?x . }",julipc-p(huggingface) "Which school teams are there in schools of Arlington Heights, Illinois?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:city . ?x prop:teamName ?uri . ?x rdf:type onto:School}",julipc-p(huggingface) Who is the person whose opponent's father is Newman Haynes Clanton?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:parent res:Newman_Haynes_Clanton . ?uri onto:opponent ?x . }",julipc-p(huggingface) What games are played in Protestant schools?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:schooltype . ?x onto:sport ?uri . ?x rdf:type onto:School}",julipc-p(huggingface) What company is the distributor of Bombay Sapphire?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Bombay_Sapphire prop:distributor ?uri }",julipc-p(huggingface) Which stockholder of yale Repertory Theatre was training center of William Anthony ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:training ?uri. prop:owner ?uri}",julipc-p(huggingface) "Name the team for which Hensley Meulens played, whihc was also the debut team od Steve Ontiveros ?","PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:debutteam ?uri. onto:team ?uri}",julipc-p(huggingface) Name a office holder whose predecessor is Edward Douglass White and has son named Charles Phelps Taft II?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:predecessor . ?uri onto:child . ?uri rdf:type onto:OfficeHolder}",julipc-p(huggingface) List the ingredients of Kaszanka?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Kaszanka onto:ingredient ?uri }",julipc-p(huggingface) List the language of Kunsten Museum of moder art Aalborg ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:KUNSTEN_Museum_of_Modern_Art_Aalborg onto:language ?uri }",julipc-p(huggingface) What is the venerated in of the Abraham and religion of the Saima Chowdhury,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Abraham prop:veneratedIn ?uri. res:Saima_Chowdhury prop:religion ?uri}",julipc-p(huggingface) Name the city whose province is Metropolitan City of Venice and has leader as Luigi Brugnaro ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:province res:Metropolitan_City_of_Venice . ?uri onto:leaderName res:Luigi_Brugnaro . }",julipc-p(huggingface) Who is the leader of Panki block ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Panki_block onto:leaderName ?uri }",julipc-p(huggingface) To which persons is Ron Cyrus a relative?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:relatives . ?uri rdf:type onto:Person}",julipc-p(huggingface) How many services are there of the companies whose services is Web hosting service ?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:services . ?x prop:services ?uri }",julipc-p(huggingface) Name the mascot of the military branch of William Harper.,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:militaryBranch ?x . ?x prop:mascot ?uri . }",julipc-p(huggingface) Which location country of Ennejma Ezzahra is also the origin of Boga ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:origin ?uri. prop:locationCountry ?uri}",julipc-p(huggingface) What is the state whose largest city is Denver?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:largestCity res:Denver . }",julipc-p(huggingface) Who have been the manager of national team of Spain?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:nationalteam . ?uri rdf:type onto:SoccerManager}",julipc-p(huggingface) Who is a successor of Kingship whose parents were Julius Caesar?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:parent . ?x onto:successor ?uri . ?x rdf:type onto:Royalty}",julipc-p(huggingface) How many organizations work for Environmentalism?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:purpose . }",julipc-p(huggingface) Who is the predecessor of Voere ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Voere onto:predecessor ?uri }",julipc-p(huggingface) Which city is Black Grape Global located ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Black_Grape_Global onto:locationCity ?uri }",julipc-p(huggingface) Which movies did Mark Steven edit?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:editing . ?uri rdf:type onto:Film}",julipc-p(huggingface) Who is the common distributer of Bombay Sapphire and Rev ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:distributor ?uri. onto:distributor ?uri}",julipc-p(huggingface) Which sports are played in the school which runs the Fr. Agnel Stadium?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Fr._Agnel_Stadium prop:operator ?x . ?x onto:sport ?uri . }",julipc-p(huggingface) Who is the parent of FD Roosevelt JR?,"PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:children . }",julipc-p(huggingface) NAme the emplyer for whihc Manu cornet has worked and also written in Google Web Toolkit ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Manu_Cornet prop:employer ?uri. res:Google_Web_Toolkit onto:author ?uri}",julipc-p(huggingface) How many more teams have rented the stadium used by Raptors 905?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { prop:arena ?x . ?x onto:tenant ?uri . ?x rdf:type onto:Stadium}",julipc-p(huggingface) Count the wars in which people awarded with the Croix de guerre fought.,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:awards . ?x prop:battles ?uri . ?uri rdf:type onto:MilitaryConflict}",julipc-p(huggingface) "Name the river whose source is located in Itasca State Park and mouth is located in Pilottown, Louisiana?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:sourceLocation . ?uri prop:mouthLocation . ?uri rdf:type onto:River}",julipc-p(huggingface) How many have been awarded by the Royal Society?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:awards . }",julipc-p(huggingface) From how many different cities have people gone to the Illinois Fighting Illini men's basketball?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:college . ?x prop:placeOfBirth ?uri . ?uri rdf:type onto:Place}",julipc-p(huggingface) who manufactures the SHO V8?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Ford_SHO_V8_engine onto:manufacturer ?uri }",julipc-p(huggingface) What is the television show whose opening theme's album is Cheers?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:album . ?uri onto:openingTheme ?x . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) What sports are played in schools in Vashi?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:city . ?x onto:sport ?uri . ?x rdf:type onto:School}",julipc-p(huggingface) Name the television show developed by J. Michael Straczynski and distributed by Warner Bros. Television?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:developer . ?uri prop:distributor . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) "Where are the agencies headquartered at, which are under the Colorado Dept of Natural Resources?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:parentOrganisation . ?x prop:headquarters ?uri . ?x rdf:type onto:GovernmentAgency}",julipc-p(huggingface) What is the genre for the developer of Interplay Entertainment?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:developer res:Interplay_Entertainment . ?x onto:genre ?uri . }",julipc-p(huggingface) Give me some nominees of politicians in the US?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:residence . ?x onto:nominee ?uri . ?x rdf:type onto:OfficeHolder}",julipc-p(huggingface) What is the TV Show whose theme is composed by someone signed up with Prawn Song Records?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:recordLabel . ?uri prop:themeMusicComposer ?x . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) Name the team of Michael springer ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Michael_Springer prop:team ?uri }",julipc-p(huggingface) In which television shows have Steven Moffat served as an executive producer?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:executiveProducer . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) Paris Sisters singles are of which language?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:musicalBand . ?x prop:language ?uri . ?x rdf:type onto:Single}",julipc-p(huggingface) Who were the first drivers in the grand prix which took place at Autodromo Enzo e Dino Ferrari?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:location res:Autodromo_Enzo_e_Dino_Ferrari . ?x onto:firstDriver ?uri . }",julipc-p(huggingface) What are the broadcast areas of Mauritius Broadcasting Corporation?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Mauritius_Broadcasting_Corporation prop:broadcastArea ?uri }",julipc-p(huggingface) "Where was Henri, Duke of Rohan laid to rest?","PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:placeOfBurial ?uri }",julipc-p(huggingface) What are the movies whose cinematographer is Gregg Toland?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:cinematography . ?uri rdf:type onto:Film}",julipc-p(huggingface) In how many different highschools have people schooled in Penn State Nittany Lions football studied?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:school . ?x prop:highschool ?uri . ?uri rdf:type onto:EducationalInstitution}",julipc-p(huggingface) Name the founders of the record labels whose one of the founders is Frank Rogers ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:founder . ?x prop:founder ?uri . ?x rdf:type onto:RecordLabel}",julipc-p(huggingface) How many different people hold authority over the members of Balanidae family?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:family . ?x onto:binomialAuthority ?uri . }",julipc-p(huggingface) Which offices were held by the politicians who held their allegiance to the union of american civil war?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:allegiance . ?x prop:office ?uri . ?x rdf:type onto:OfficeHolder}",julipc-p(huggingface) Who is the american football player whose highschool is Ringgold High School (Pennsylvania)?,"PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:highschool }",julipc-p(huggingface) Count the total number of conflicts people who were part of conflict in afghanisthan ?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:battle . ?x onto:battle ?uri }",julipc-p(huggingface) Kendall Jenner has how many relatives?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { prop:relatives ?uri . }",julipc-p(huggingface) Where is Tahual located which is also the country of Ren Romano ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:René_Romano prop:citizenship ?uri. res:Tahual prop:location ?uri}",julipc-p(huggingface) What is the current team of John McGuinness (motorcycle racer) ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:currentTeam ?uri }",julipc-p(huggingface) Where do the CNN employees typically graduate from?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:employer res:CNN . ?x onto:almaMater ?uri . }",julipc-p(huggingface) "What other destinations do airlines go to, whose flights also come to Glasgow?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:targetAirport . ?x prop:destinations ?uri . ?x rdf:type onto:Airline}",julipc-p(huggingface) "What is the location town of First Church of Christ, Scientist (Pittsburgh) ?","PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:locationTown ?uri }",julipc-p(huggingface) Bridges over what can carry vehicles?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:carries . ?x prop:crosses ?uri . ?x rdf:type onto:Bridge}",julipc-p(huggingface) Where is the spouse of Henry Bourchier of Essex buried?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:spouse . ?x prop:placeOfBurial ?uri . }",julipc-p(huggingface) What shows are on the networks which are from the United States?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:locationCountry . ?uri prop:network ?x . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) Name the scientist whose doctoral supervisor's doctoral student is John Bowlby?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:doctoralStudent . ?uri prop:doctoralAdvisor ?x . ?uri rdf:type onto:Scientist}",julipc-p(huggingface) "Name the office holder whose Governor is Charles Willing Byrd and has resting place as North Bend, Ohio?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:governor . ?uri prop:restingplace . ?uri rdf:type onto:OfficeHolder}",julipc-p(huggingface) Over what do Concor holdings have a bridge?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:builder . ?x prop:crosses ?uri . ?x rdf:type onto:Bridge}",julipc-p(huggingface) Name the movies distributed by Cinema International Corporation and edited by Hulian Doyle ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:distributor . ?uri prop:editing . ?uri rdf:type onto:Film}",julipc-p(huggingface) Who narrated the albums in which Harry Nilsson performed?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:artist . ?x prop:narrated ?uri . ?x rdf:type onto:Album}",julipc-p(huggingface) What is the province of Rouen Business School ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Rouen_Business_School prop:province ?uri }",julipc-p(huggingface) List some songwriters whose work has been recorded in Miami?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:recordedIn . ?x prop:writer ?uri . ?x rdf:type onto:Work}",julipc-p(huggingface) What is the denomination of S. H. Kapadia ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:S._H._Kapadia prop:religion ?uri }",julipc-p(huggingface) who are the managers of england national under 20 football team?,"PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:managerclubs }",julipc-p(huggingface) What is the total number of relgions followed by people born in Bangkok?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:birthPlace . ?x onto:religion ?uri . }",julipc-p(huggingface) Which movies have someone on their cast from Shelby County in Tennessee?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:hometown . ?uri prop:starring ?x . ?uri rdf:type onto:Film}",julipc-p(huggingface) Who appointed the governor under whom Richard Winn served?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Richard_Winn onto:governor ?x . ?x prop:appointer ?uri . }",julipc-p(huggingface) What is the city whose mayor is Anne Hidalgo?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:mayor . ?uri rdf:type onto:Settlement}",julipc-p(huggingface) "In which ice hockey league, did the team coached by Joel Quenneville win?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:headCoach . ?uri prop:champion ?x . ?uri rdf:type onto:IceHockeyLeague}",julipc-p(huggingface) Which musical artist collaborated with Tony Allen (musician) and label is Victor Entertainment?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:associatedMusicalArtist . ?uri prop:label . ?uri rdf:type onto:MusicalArtist}",julipc-p(huggingface) Which american football players currently plays for Michigan Wolverines?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:currentteam . ?uri rdf:type onto:AmericanFootballPlayer}",julipc-p(huggingface) In how many different places have US people died?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:placeOfBirth . ?x onto:deathPlace ?uri . ?uri rdf:type onto:Location}",julipc-p(huggingface) Count the number of software which runs on Microsoft Windows and mac OS ?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?uri onto:operatingSystem . ?uri onto:operatingSystem }",julipc-p(huggingface) What is the common race of the Martin Molony and race of the Coneygree ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Martin_Molony onto:race ?uri. res:Coneygree prop:race ?uri}",julipc-p(huggingface) Which countries led by Elizabeth II?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:leaderName . ?uri rdf:type onto:Country}",julipc-p(huggingface) Who is the tenant of the home stadium of Toronto Phantoms?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:arena ?x . ?x onto:tenant ?uri . ?x rdf:type onto:Stadium}",julipc-p(huggingface) What is the purpose of Maharashtra Chess Association ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Maharashtra_Chess_Association prop:purpose ?uri }",julipc-p(huggingface) What is the draft team of the ice hockey players whose position is Centre ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:position . ?x onto:draftTeam ?uri . ?x rdf:type onto:IceHockeyPlayer}",julipc-p(huggingface) What is the total number of religions that politicians have followed?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:profession . ?x onto:religion ?uri . }",julipc-p(huggingface) What sports team's arena is The Palace of Auburn Hills,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:arena . ?uri rdf:type onto:SportsTeam}",julipc-p(huggingface) Name the religious affiliation of Vagif Aliyev ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Vagif_Aliyev onto:religion ?uri }",julipc-p(huggingface) Who composed songs in the Mr Tambourine Man album?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:album . ?x onto:composer ?uri . ?x rdf:type onto:Song}",julipc-p(huggingface) To what companies is Dennis Muilenburg important?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:keyPeople . ?uri rdf:type onto:Company}",julipc-p(huggingface) Name the TV show whose company is Playtone and written by Graham Yost?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:company . ?uri prop:writer . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) Where are the politicians buried who succeeded George Whitefield Davis?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:predecessor . ?x prop:restingplace ?uri . ?x rdf:type onto:OfficeHolder}",julipc-p(huggingface) Count the number of other services of the companies which provides the Microsoft Azure as service ?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:services . ?x prop:services ?uri }",julipc-p(huggingface) Which animator of the The Skeleton Dance is also the director of The Haunted House (1929 film) ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:animator ?uri. onto:director ?uri}",julipc-p(huggingface) How many first drivers have participated when Scuderia Ferrari was a first team?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:firstTeam . ?x onto:firstDriver ?uri . }",julipc-p(huggingface) In how many countries are people born who play cricket?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:occupation . ?x onto:stateOfOrigin ?uri . ?uri rdf:type onto:Country}",julipc-p(huggingface) What are the towns who have Thesaban system?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:settlementType . ?uri rdf:type onto:Town}",julipc-p(huggingface) In how many different wars have people graduated from the Army Command and General staff college fought?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:almaMater . ?x prop:battles ?uri . }",julipc-p(huggingface) Which non fictional subject of Thud is the athletics of PATTS College of Aeronautics ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:nonFictionSubject ?uri. prop:athletics ?uri}",julipc-p(huggingface) List the current members of Metro Station (band) ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:currentMembers ?uri }",julipc-p(huggingface) Which major shrine of Tekle haymanot is the palce of death of Haile Selassie Gugsa ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Tekle_Haymanot onto:majorShrine ?uri. res:Haile_Selassie_Gugsa prop:placeOfDeath ?uri}",julipc-p(huggingface) Which video game's artist is Hiroji Kiyotake and computing platform is Virtual Console?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:artist . ?uri onto:computingPlatform . ?uri rdf:type onto:VideoGame}",julipc-p(huggingface) Name a basketball player with teams as Chicago Bulls and Phoenix Suns?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:team . ?uri onto:team . ?uri rdf:type onto:BasketballPlayer}",julipc-p(huggingface) What is the home stadium of Kenya's women national football team ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:homeStadium ?uri }",julipc-p(huggingface) Where does the jurisdiction of European Border and Coast Guard fall?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:European_Border_and_Coast_Guard prop:jurisdiction ?uri }",julipc-p(huggingface) What is the award which is presented by Swedish Academy?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:presenter . ?uri rdf:type onto:Award}",julipc-p(huggingface) Where was the company who is the operator of Harihar Airport founded ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:operator ?x . ?x prop:foundation ?uri . ?x rdf:type onto:Company}",julipc-p(huggingface) What are some important people in NGOs headed by Donna Shalala?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:keyPerson . ?x prop:keyPeople ?uri . ?x rdf:type onto:Non-ProfitOrganisation}",julipc-p(huggingface) What are the other key people of the non-profit organisations whose one of the key person is Joe Green ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:keyPeople . ?x prop:keyPeople ?uri . ?x rdf:type onto:Non-ProfitOrganisation}",julipc-p(huggingface) Who are the people whose phD advisor was Harry Harlow?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:doctoralAdvisor . ?uri rdf:type onto:Person}",julipc-p(huggingface) What is the county seat of Moscow Governorate ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Moscow_Governorate onto:capital ?uri }",julipc-p(huggingface) What are some books whose cover illustration is designed by Marshall Arisman?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:coverArtist . ?uri rdf:type onto:Book}",julipc-p(huggingface) Momoko Kchi has acted in which movie ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:starring . ?uri rdf:type onto:Film}",julipc-p(huggingface) What is the name of the television show whose developer is J. Michael Straczynski and actor is Jason Carter (actor)?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:developer . ?uri onto:starring . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) What are some cars similar to the ones assembled at Toluca?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:assembly . ?x prop:related ?uri . ?x rdf:type onto:Automobile}",julipc-p(huggingface) Who is associated to the predecessor of Dan Mica?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:predecessor res:Dan_Mica . ?uri onto:associate ?x . }",julipc-p(huggingface) Michael Deeley produce how many movies?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:producer . }",julipc-p(huggingface) List borders of the admin region bordering Arctic ocean ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:border res:Arctic_Ocean . ?x onto:border ?uri . }",julipc-p(huggingface) What is the nationality of the J. T. Krogh which is also the sovereign state of the Camilla Martin,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:J._T._Krogh onto:nationality ?uri. res:Camilla_Martin onto:country ?uri}",julipc-p(huggingface) How many food items have an ingredient from the Sapindales family?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:order . ?uri onto:ingredient ?x . ?uri rdf:type onto:Food}",julipc-p(huggingface) Which district of Thorington railway station is the location of death of David Lewis (poet) ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:district ?uri. onto:deathPlace ?uri}",julipc-p(huggingface) Who was the head coach of Middlesbrough F.C. season 2006-7 also the coach of England national under 21 footbal team ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:manager ?uri. prop:coach ?uri}",julipc-p(huggingface) Who designed the bridge over the Valaichchenai lagoon?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:crosses . ?x prop:designer ?uri . ?x rdf:type onto:Bridge}",julipc-p(huggingface) Where did anton ausserer die?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Anton_Ausserer prop:deathPlace ?uri }",julipc-p(huggingface) How many teams have used the stadium which hosted the WCW mayhem?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { prop:venue ?x . ?x onto:tenant ?uri . ?x rdf:type onto:Stadium}",julipc-p(huggingface) List bacterias whose orde is Bacillales and division is Firmicutes?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:order . ?uri onto:division . ?uri rdf:type onto:Bacteria}",julipc-p(huggingface) Who are in the liang chow club?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:club res:Liang_Chow }",julipc-p(huggingface) To which family does korean fox belongs to ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Korean_fox onto:family ?uri }",julipc-p(huggingface) "What is the alma mater of the person, whose child is Samuel Moreno Rojas?","PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:children res:Samuel_Moreno_Rojas . ?x prop:almaMater ?uri . }",julipc-p(huggingface) Name the river whose source place is Gloucestershire and mouth place is Southend-on-Sea ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:sourcePlace . ?uri onto:mouthPlace . ?uri rdf:type onto:River}",julipc-p(huggingface) In how many countries does the Zurich Affoltern am Albis Zug line go?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:line . ?x onto:country ?uri . ?uri rdf:type onto:Country}",julipc-p(huggingface) How many movies did Joel Schumacher direct?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:director . ?uri rdf:type onto:Film}",julipc-p(huggingface) In how many places did Julian Leow Beng Kim study?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { prop:almaMater ?uri . ?uri rdf:type onto:University}",julipc-p(huggingface) Which cities have the river one of whose Tributary is the Missouri's big spring?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:rightTributary . ?x onto:city ?uri . ?x rdf:type onto:River}",julipc-p(huggingface) Which Stanley Kubrick's movie has music by Laurie Johnson?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:director . ?uri prop:music . ?uri rdf:type onto:Film}",julipc-p(huggingface) How many movies were directed by the graduate of Burbank High School ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:education . ?uri prop:director ?x . ?uri rdf:type onto:Film}",julipc-p(huggingface) What is the type of Vesak ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Vesak onto:type ?uri }",julipc-p(huggingface) Who have become famous by movies produced by Laurence Mark?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:producer res:Laurence_Mark . ?uri onto:knownFor ?x . }",julipc-p(huggingface) Count all the scientologists.,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:religion . }",julipc-p(huggingface) Laozi has authored which books ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:author . ?uri rdf:type onto:Book}",julipc-p(huggingface) Name the river whose source location is Nevado Mismi and region is Arequipa Region?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:sourceLocation . ?uri prop:sourceRegion . ?uri rdf:type onto:River}",julipc-p(huggingface) List the awards won by the fashion designer which have been recognized by Tennessee State Museum ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:award . ?x onto:award ?uri . ?x rdf:type onto:FashionDesigner}",julipc-p(huggingface) Where can I find companies which originated in Canada?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:foundationPlace . ?x prop:locations ?uri . ?x rdf:type onto:Company}",julipc-p(huggingface) Name the species of Panthera leo fossilis ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Panthera_leo_fossilis onto:species ?uri }",julipc-p(huggingface) What is the nationality of Newin Chidchob ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Newin_Chidchob prop:nationality ?uri }",julipc-p(huggingface) List the affiliations of Wikipedia Zero ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Wikipedia_Zero prop:affiliations ?uri }",julipc-p(huggingface) What is the route start of Capitol 400 ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Capitol_400 onto:routeStart ?uri }",julipc-p(huggingface) Which awards did the parents of Anna Bergman win ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Anna_Bergman onto:parent ?x . ?x prop:awards ?uri . }",julipc-p(huggingface) How many schools have a bison as their mascot?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:mascot . ?uri rdf:type onto:School}",julipc-p(huggingface) What river originates in the Connecticut Lakes?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:source . ?uri rdf:type onto:River}",julipc-p(huggingface) List the bacterias whose division is Firmicutes and domain is bacteria?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:division . ?uri prop:domain . ?uri rdf:type onto:Bacteria}",julipc-p(huggingface) Who is the head coach of 2009-10 Middlesbrough F.C. season ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:manager ?uri }",julipc-p(huggingface) Name the battle fought by the people which also fought in Levant ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:battles . ?x prop:battles ?uri . ?x rdf:type onto:Person}",julipc-p(huggingface) Which work institutions of the Andrew Schally is the alma mater of the Mara Eugenia Rojas Correa ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Andrew_Schally prop:workInstitutions ?uri. res:María_Eugenia_Rojas_Correa prop:almaMater ?uri}",julipc-p(huggingface) Which politician's constituency is led by the SF Board of Supervisors?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:leaderTitle . ?uri prop:constituency ?x . ?uri rdf:type onto:OfficeHolder}",julipc-p(huggingface) How many factions have fought in wars where Francois Marie Le Marchand de Lignery was involved?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { onto:battle ?x . ?x prop:combatant ?uri . ?x rdf:type onto:MilitaryConflict}",julipc-p(huggingface) What are some people who are on the board of companies founded in NY?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:foundation . ?uri onto:board ?x . ?uri rdf:type onto:Person}",julipc-p(huggingface) Who was the architect of the stadium currently run by the Pittsburgh Pirates?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:operator . ?x prop:architect ?uri . ?x rdf:type onto:Stadium}",julipc-p(huggingface) Give me a count of musicians who play an instrument developed by George Beauchamp ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:keyPeople . ?uri onto:instrument ?x . ?uri rdf:type onto:MusicalArtist}",julipc-p(huggingface) What sport activities are available at Polytechnic University of the Philippines Bataan?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Polytechnic_University_of_the_Philippines_–_Bataan onto:sport ?uri }",julipc-p(huggingface) In how many places have the companies started in Newcastle worked?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:foundationPlace . ?x onto:regionServed ?uri . ?uri rdf:type onto:Place}",julipc-p(huggingface) What are the musicals of the people died in California?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:deathPlace . ?uri prop:music ?x . ?uri rdf:type onto:Musical}",julipc-p(huggingface) "What sport has made Eric Schiller famous, and has employed Craig Van Tibury?","PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Craig_Van_Tilbury onto:occupation ?uri. res:Eric_Schiller onto:knownFor ?uri}",julipc-p(huggingface) Which pole driver of 1989 Portuguese Grand Prix was also the first driver of 1993 European Grand Prix ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:1993_European_Grand_Prix prop:firstDriver ?uri. res:1989_Portuguese_Grand_Prix onto:poleDriver ?uri}",julipc-p(huggingface) What is the debut team of the gridiron football player who coached the 1931 Staten Island Stapletons season ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:coach ?x . ?x prop:debutteam ?uri . ?x rdf:type onto:GridironFootballPlayer}",julipc-p(huggingface) Name the alma mater of the scientist famous for Email filtering ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:knownFor . ?x prop:almaMater ?uri . ?x rdf:type onto:Scientist}",julipc-p(huggingface) Where is the T.I. Ahmadiyya Girls Senior High School?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:denomination ?uri }",julipc-p(huggingface) "To what region is Sukhumbhand Paribatra, a leader?","PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:leaderName . ?uri rdf:type onto:Region}",julipc-p(huggingface) What are the birth place of the people who are the star of Dhoondte Reh Jaaoge?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:starring ?x . ?x onto:birthPlace ?uri . ?x rdf:type onto:Person}",julipc-p(huggingface) Which software uses windows as it's operating system and is written in C++ ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:operatingSystem . ?uri onto:programmingLanguage . ?uri rdf:type onto:Software}",julipc-p(huggingface) Which domain's journals did Willard Fiske edit?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:editor . ?x prop:discipline ?uri . ?x rdf:type onto:AcademicJournal}",julipc-p(huggingface) What is the religion of the person who is in the cast of Master's Sun> ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:starring ?x . ?x prop:religion ?uri . ?x rdf:type onto:Person}",julipc-p(huggingface) "What is the television show whose theme music composer's home town is El Sobrante, California?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:hometown . ?uri prop:themeMusicComposer ?x . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) How many maintainers are there of the bridges that can carry motor vehicles over them?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:carries . ?x onto:maintainedBy ?uri . }",julipc-p(huggingface) What currencies are circulated in the countries where people speak French?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:officialLanguage . ?x onto:currency ?uri . ?x rdf:type onto:Location}",julipc-p(huggingface) Give the distinct number of other party of the people which have one of the party as Janata Party ?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:otherParty . ?x onto:otherParty ?uri }",julipc-p(huggingface) List the former partner of the figure skaters whose former choreographer was Igor Shpillband.,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:formerChoreographer . ?x onto:formerPartner ?uri . ?x rdf:type onto:FigureSkater}",julipc-p(huggingface) Give me a list of all the buildings which are located in districts governed by John Tory.,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:leaderName . ?uri onto:location ?x . ?uri rdf:type onto:Building}",julipc-p(huggingface) Which BBC's TV show is related with the Sarah Jane Adventures?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:network . ?uri onto:related . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) Which associate of Thomas bryan Martin is also the president of Carmichael ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:associate ?uri. prop:president ?uri}",julipc-p(huggingface) Which political party got elected in First Legislative Assembly of Uttar Pradesh ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:First_Legislative_Assembly_of_Uttar_Pradesh prop:party ?uri }",julipc-p(huggingface) How many organizations own the website to which Jimmy Wales contributes?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:author . ?x onto:owner ?uri . ?uri rdf:type onto:Organisation}",julipc-p(huggingface) Name the notable commanders of Army Group Oberrhein ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:notableCommanders ?uri }",julipc-p(huggingface) Which high school of the Jerry Tagge also was the palce hwer Temptation Waits was recorded ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Jerry_Tagge prop:highSchool ?uri. res:Temptation_Waits onto:recordedIn ?uri}",julipc-p(huggingface) Name the place of Qaqun ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Qaqun prop:place ?uri }",julipc-p(huggingface) What is the deathplace of people who have worked in Ethics?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:mainInterests . ?x prop:placeOfDeath ?uri . ?x rdf:type onto:Person}",julipc-p(huggingface) List all the nicknames of the city which has Toru gingerbread as one of it ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:nickname res:Toruń_gingerbread . ?x prop:nickname ?uri . }",julipc-p(huggingface) What are the awards won by the film editor of World of Tomorrow ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:editing ?x . ?x onto:award ?uri . }",julipc-p(huggingface) Which mountains are contained in Inyo National Forest?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:locatedInArea . ?uri rdf:type onto:Mountain}",julipc-p(huggingface) Whose children are married to Fredric Joliot-Curie?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:spouse . ?uri prop:children ?x . }",julipc-p(huggingface) "Where did the president study, whose VP was Emilio Nez?","PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:vicePresident res:Emilio_Núñez . ?x onto:almaMater ?uri . }",julipc-p(huggingface) Where are the homestadiums of the seasons chaired by Merritt Paulson?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:chairman . ?x onto:homeStadium ?uri . ?x rdf:type onto:SoccerClubSeason}",julipc-p(huggingface) "What is the architecture of First National Bank and Trust Building (Lima, Ohio) ?","PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:architecturalStyle ?uri }",julipc-p(huggingface) What are some languages in the italic family of languages?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:languageFamily res:Italic_languages }",julipc-p(huggingface) Count all the awards which were presented by something located in California.,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:headquarter . ?uri onto:presenter ?x . ?uri rdf:type onto:Award}",julipc-p(huggingface) What is the region of the Kim Sawchuk which is also served by the Airtours International Airways ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Kim_Sawchuk prop:region ?uri. res:Airtours_International_Airways prop:destinations ?uri}",julipc-p(huggingface) Who all held a position when Gough Whitlam was the prime minister?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:primeMinister res:Gough_Whitlam }",julipc-p(huggingface) What are the mascots of the teams participating in the Turkish Handball Super League?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:league . ?x prop:mascot ?uri . ?x rdf:type onto:SportsTeam}",julipc-p(huggingface) Which tenants of the Master Card center is also th draft team of Sam Carrrick ,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:MasterCard_Centre prop:tenants ?uri. res:Sam_Carrick prop:draftTeam ?uri}",julipc-p(huggingface) Who originally wrote the manga which was later illustrated by Tamon Ohta?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:illustrator . ?x prop:author ?uri . ?x rdf:type onto:Manga}",julipc-p(huggingface) How many other race are there of the adult (pornographic) actors whose ethnicity is Cherokee ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:ethnicity . ?x prop:ethnicity ?uri }",julipc-p(huggingface) Who maintains the stuff designed by the Brunei government?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:designer res:Politics_of_Brunei . ?x onto:maintainedBy ?uri . }",julipc-p(huggingface) Stockholm is the HQ of how many things?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:headquarters . }",julipc-p(huggingface) What is a salthill?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Salthill onto:type ?uri }",julipc-p(huggingface) List all the parents of writers coming from the Great Missenden ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:homeTown . ?x onto:parent ?uri . ?x rdf:type onto:Writer}",julipc-p(huggingface) In how many regions is the Baco Noir made?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { onto:wineRegion ?uri . }",julipc-p(huggingface) What is the source country of Water resources managemnt in EL Salvador is also the land of Jos MAra Orellana ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Water_resources_management_in_El_Salvador prop:sourceCountry ?uri. res:José_María_Orellana onto:country ?uri}",julipc-p(huggingface) Where does the Jerusalem Institute of Justice render their services?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Jerusalem_Institute_of_Justice onto:service ?uri }",julipc-p(huggingface) What borders siberia?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Siberia onto:border ?uri }",julipc-p(huggingface) To which party do the politicians who died in Delhi belong?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:placeOfDeath . ?x prop:party ?uri . ?x rdf:type onto:OfficeHolder}",julipc-p(huggingface) Who created the stadiums who have been rented by the Boston Red Sox?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:tenant . ?x prop:architect ?uri . ?x rdf:type onto:Stadium}",julipc-p(huggingface) What is the region of the successor of Mr. Jerome B. Chaffee ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Jerome_B._Chaffee onto:successor ?x . ?x onto:region ?uri . }",julipc-p(huggingface) What is the profession of the Chris Myers (New Jersey) which is the governing body of Oahu Railway and Land Company ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:profession ?uri. prop:governingBody ?uri}",julipc-p(huggingface) In which countries were the Russian volleyball team players born?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:nationalteam . ?x prop:placeOfBirth ?uri . ?x rdf:type onto:Athlete}",julipc-p(huggingface) Which religion's people are member of BJP?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:party . ?x onto:religion ?uri . ?x rdf:type onto:Person}",julipc-p(huggingface) List down the commanders of Battle of Fort stephenson ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Battle_of_Fort_Stephenson onto:commander ?uri }",julipc-p(huggingface) What is the subject of The Prodigal son ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:subject ?uri }",julipc-p(huggingface) ARM Architecture acts as a game platform for how many things?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:computingPlatform . }",julipc-p(huggingface) Name the work institutions of Andrew Schally?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Andrew_Schally prop:workInstitutions ?uri }",julipc-p(huggingface) How many games have a composer who worked for the Creatures?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:occupation . ?uri prop:composer ?x . ?uri rdf:type onto:VideoGame}",julipc-p(huggingface) Which state is the birth location of Ann Monroe Gilchrist Strong? ,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Ann_Monroe_Gilchrist_Strong onto:birthPlace ?x . ?x onto:country ?uri . }",julipc-p(huggingface) Which university's graduates have worked in the Quartermaster corps?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:militaryUnit . ?x onto:almaMater ?uri . }",julipc-p(huggingface) How many people have voiced characters sculpted by Clamp?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:creator . ?x onto:voice ?uri . }",julipc-p(huggingface) Trainees at the national film school of Lodz have received what awards?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:training res:National_Film_School_in_Łódź . ?x onto:award ?uri . }",julipc-p(huggingface) Which animator of the The Skeleton Dance is also the cinematographer of the Mickey's Mellerdrammer?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:animator ?uri. prop:cinematography ?uri}",julipc-p(huggingface) Who is the scientist whose academic advisor is Franz Brentano?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:academicAdvisor . ?uri rdf:type onto:Scientist}",julipc-p(huggingface) Who was the animator of both Tommy Tucker's Tooth and Skeleton Dance?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:animator ?uri. onto:animator ?uri}",julipc-p(huggingface) In how many different people are alumini of the University of Oxford working?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:almaMater . ?x onto:field ?uri . }",julipc-p(huggingface) Who is the developer of Montecito Inn ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Montecito_Inn prop:developer ?uri }",julipc-p(huggingface) Where did Paul Jones do his highschool?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:highschool ?uri }",julipc-p(huggingface) What are the shows whose creator has worked as a screenwriter?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:occupation . ?uri onto:creator ?x . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) To which students did Ernest Rutherford advised to?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:doctoralAdvisor res:Ernest_Rutherford . }",julipc-p(huggingface) Which institution of the Alton Ochsner is the alma mater of the Michael Hahn ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Alton_Ochsner onto:institution ?uri. res:Michael_Hahn onto:almaMater ?uri}",julipc-p(huggingface) In how many places was the album of King Crimson recorded?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:artist . ?x onto:recordedIn ?uri . }",julipc-p(huggingface) Which television show's company is Paramount Television and is located in Boston?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:company . ?uri onto:location . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) Who is the starring of the movies such that music is by Raamlaxman?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:music . ?x onto:starring ?uri . ?x rdf:type onto:Film}",julipc-p(huggingface) Which nickname of Lyons Township JHigh school is also the mascot of Galatasaray Handball Team ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Galatasaray_Handball_Team prop:mascot ?uri. res:Lyons_Township_High_School prop:nickname ?uri}",julipc-p(huggingface) What are the movies whose cast members are signed up with Point Blank Records?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:label . ?uri prop:starring ?x . ?uri rdf:type onto:Film}",julipc-p(huggingface) What is the Team Name of the Cristo Rey Jesuit High School (Chicago) and is also the nickname of the Lyons Township High School ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:teamName ?uri. prop:nickname ?uri}",julipc-p(huggingface) Where is Dofinivka Estuary located ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Dofinivka_Estuary prop:location ?uri }",julipc-p(huggingface) What is the city nearest to the islands in the Northwestern Hawaiian Islands?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:archipelago . ?x prop:nearestCity ?uri . ?x rdf:type onto:Island}",julipc-p(huggingface) Name the televesion show which has artist named Christopher Franke ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:artist . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) name the races where bobby beasley took part ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Bobby_Beasley onto:race ?uri }",julipc-p(huggingface) Which institution of the Alton Ochsner is also the alma mater of John Michael Seabright ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Alton_Ochsner onto:institution ?uri. res:John_Michael_Seabright onto:almaMater ?uri}",julipc-p(huggingface) what mountains are in sierra nevada?,"PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:mountainRange . }",julipc-p(huggingface) Who acted in the movies whose music is composed by Walter Scharf?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:musicComposer . ?x prop:artist ?uri . ?x rdf:type onto:Film}",julipc-p(huggingface) What softwares were created by Apple Productivity Experience Group ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Apple_Productivity_Experience_Group onto:product ?uri }",julipc-p(huggingface) "Who is the producer of the album, after which A Nice pair was released ?","PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:A_Nice_Pair onto:previousWork ?x . ?x prop:producer ?uri . }",julipc-p(huggingface) Where can i find teams whose coach has been Rodney Eade.,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:coach . ?x prop:location ?uri . ?x rdf:type onto:SportsTeam}",julipc-p(huggingface) List all that flows into the north sea?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:North_Sea prop:inflow ?uri }",julipc-p(huggingface) How many head of agencies were there in Nazi Germany?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:jurisdiction . ?x onto:leader ?uri . }",julipc-p(huggingface) List all the notable work of the screen writer who produced Frasier ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:notableWork . ?x onto:notableWork ?uri . ?x rdf:type onto:ScreenWriter}",julipc-p(huggingface) Who employed the person famous for the Boeing fa18ef Super Hornet?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:knownFor . ?x prop:employer ?uri . ?x rdf:type onto:Person}",julipc-p(huggingface) In which monarch did Li Si succeed someone?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:successor res:Li_Si . ?x onto:monarch ?uri . }",julipc-p(huggingface) List the awards given to the relatives of Gregorios Bernardakis.,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Gregorios_Bernardakis onto:relative ?x . ?x onto:award ?uri . }",julipc-p(huggingface) What politician's partner is Diana Taylor ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:partner . ?uri rdf:type onto:Politician}",julipc-p(huggingface) Which fields are covered by academic journals in the US?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:country . ?x prop:discipline ?uri . ?x rdf:type onto:AcademicJournal}",julipc-p(huggingface) What is the draft team of Bob MacMillan ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Bob_MacMillan prop:draftTeam ?uri }",julipc-p(huggingface) Which football players have Newell's Old Boys as youthclub?,"PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:youthclubs }",julipc-p(huggingface) What are the teams for which Wilfred McDonald played for?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Wilfred_McDonald prop:playedFor ?uri }",julipc-p(huggingface) Who is the Artist of the singles whose film genre is Country music ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:genre . ?x prop:artist ?uri . ?x rdf:type onto:Single}",julipc-p(huggingface) Count all those whose youthclub performed at the 14-15 La Liga?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:season . ?uri prop:youthclubs ?x . ?uri rdf:type onto:Athlete}",julipc-p(huggingface) How many cities are around the sea which flows into the Atlantic?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:inflow . ?x prop:cities ?uri . ?uri rdf:type onto:City}",julipc-p(huggingface) Who all are starring in the movies where director of photography is John Derek ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:cinematography . ?x prop:starring ?uri . ?x rdf:type onto:Film}",julipc-p(huggingface) List the import people of Maryland Jockey Club ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Maryland_Jockey_Club prop:keyPeople ?uri }",julipc-p(huggingface) What is the total number of companies who use a language designed by Bjarne Stroustrup?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:designer . ?uri prop:programmingLanguage ?x . ?uri rdf:type onto:Company}",julipc-p(huggingface) Who does Cam PLante plays for ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Cam_Plante prop:playedFor ?uri }",julipc-p(huggingface) What famous work is derived from the one whose lyrics are written by Inma Gonzales?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:lyrics res:Inma_González . ?x onto:basedOn ?uri . }",julipc-p(huggingface) How many awards have been given to the ones who died of lung cancer?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:deathCause . ?x onto:award ?uri . ?uri rdf:type onto:Award}",julipc-p(huggingface) Where the children of Ashot Grashi employed at?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:parent res:Ashot_Grashi . ?x onto:occupation ?uri . }",julipc-p(huggingface) Who holds shares in something famous for the Seven Spring Mountain Resort?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:knownFor res:Seven_Springs_Mountain_Resort . ?uri prop:owner ?x . }",julipc-p(huggingface) Which executive producer of Into the Dalek also produced Wizards vs Aliens ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Into_the_Dalek prop:executiveProducer ?uri. res:Wizards_vs_Aliens onto:producer ?uri}",julipc-p(huggingface) Who is the office holder whose deputy was Andrew Peacock and predecessor was Alexander Downer?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:deputy . ?uri onto:predecessor . ?uri rdf:type onto:OfficeHolder}",julipc-p(huggingface) Which famous philosopher died on island Euboea?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:deathDate . ?uri rdf:type onto:Philosopher}",julipc-p(huggingface) What is the religion of the political party which is an international party of Hamas?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:international ?x . ?x onto:religion ?uri . ?x rdf:type onto:PoliticalParty}",julipc-p(huggingface) How many honorary title are there of the scientists who has Australian of the Year award ?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:award . ?x onto:award ?uri }",julipc-p(huggingface) Name some TV shows whose theme is made by a band associated with Buckethead?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:associatedBand . ?uri prop:themeMusicComposer ?x . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) What is the alma mater of K. Terry Dornbush ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:K._Terry_Dornbush prop:almaMater ?uri }",julipc-p(huggingface) What is the birthplace of the office holder who is the predecessor of Brian Peddle ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:predecessor ?x . ?x prop:birthPlace ?uri . ?x rdf:type onto:OfficeHolder}",julipc-p(huggingface) What is the river which comes from Southend-on-Sea mountain?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:mouthMountain . ?uri rdf:type onto:River}",julipc-p(huggingface) What is the birth location of the advisor of Richard Hofstadter ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Richard_Hofstadter prop:doctoralAdvisor ?x . ?x onto:birthPlace ?uri . }",julipc-p(huggingface) Name the college of the Allama Matthews which also has affiliation with Monroe Carell Jr. Children's Hospital at Vanderbilt,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:college ?uri. prop:affiliation ?uri}",julipc-p(huggingface) "What is the successor of the governors whose child is Levi Lincoln, Jr.?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:children . ?x prop:successor ?uri . ?x rdf:type onto:Governor}",julipc-p(huggingface) Who is the prime minister that Michael Jeffery served?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Michael_Jeffery prop:primeminister ?uri }",julipc-p(huggingface) How many people are known for Dragons' Den?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:knownFor . }",julipc-p(huggingface) What is pitro Gruszka hometown ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Piotr_Gruszka prop:hometown ?uri }",julipc-p(huggingface) Whihc place of birth of the Union State is also the largest city of Union Staete ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Union_State prop:largestCity ?uri. res:Nina_Vislova prop:placeOfBirth ?uri}",julipc-p(huggingface) How many different writers have written for Jump Square?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:magazine . ?x prop:author ?uri . }",julipc-p(huggingface) Who is the employer of Ralph flanders ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Ralph_Flanders prop:occupation ?uri }",julipc-p(huggingface) List the awards given to the important people of Aardman Animations?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Aardman_Animations onto:keyPerson ?x . ?x onto:award ?uri . }",julipc-p(huggingface) Which TV show developed by J. Michael Stracznski has artist as Christopher Franke ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:artist . ?uri onto:developer . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) Name the members of European Go Federation?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:European_Go_Federation prop:membership ?uri }",julipc-p(huggingface) In which sitcom did Jeff Conaway acted and had TNT as its network ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:network . ?uri onto:starring . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) Where are the tombs of alumni of ational academy museum and school?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:training res:National_Academy_Museum_and_School . ?x onto:restingPlace ?uri . }",julipc-p(huggingface) What is the order of George Frisbie Hoar?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:George_Frisbie_Hoar prop:order ?uri }",julipc-p(huggingface) Among the universities having Gyrfalcon as mascot which have Michelle D. Johnson as superintendent ? ,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:superintendent . ?uri prop:mascot . ?uri rdf:type onto:University}",julipc-p(huggingface) Name the show whose theme composing band previously also had Bryan Mantia?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:formerBandMember . ?uri prop:themeMusicComposer ?x . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) List the television shows whose Composers are associated with Strontium 90 ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:associatedBand . ?uri prop:composer ?x . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) Name the band atleast one of whose members is famous for playing the Fender Stratocaster?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:notableInstruments . ?uri prop:currentMembers ?x . ?uri rdf:type onto:Band}",julipc-p(huggingface) Count the participants of the NBA.,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:league . }",julipc-p(huggingface) Who has stock in the railway lines managed by Norfolk Southern Railway?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:system . ?x prop:owner ?uri . ?x rdf:type onto:RailwayLine}",julipc-p(huggingface) How many writers speak a language belonging to the Germanic kind of languages?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:languageFamily . ?uri prop:language ?x . ?uri rdf:type onto:Writer}",julipc-p(huggingface) Enumerate the cars related to the ones assembled in Toluca?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:assembly . ?x prop:related ?uri . }",julipc-p(huggingface) Where is the grave of Ivan III of Russia ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Ivan_III_of_Russia prop:placeOfBurial ?uri }",julipc-p(huggingface) Name the capital of Barony of Caux ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Barony_of_Caux onto:capital ?uri }",julipc-p(huggingface) Name the basketball players drafted by Los Angeles Clippers ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:draftTeam . ?uri rdf:type onto:BasketballPlayer}",julipc-p(huggingface) Count the number of other product of the banks whose one of the product is Wealth management ?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:product . ?x onto:product ?uri }",julipc-p(huggingface) Which scientist is known for writing Philosophi Naturalis Principia Mathematica?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:knownFor res:Philosophiæ_Naturalis_Principia_Mathematica }",julipc-p(huggingface) Which planet was first discovered by Johann Gottfried Galle?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:discoverer . ?uri rdf:type onto:Planet}",julipc-p(huggingface) What are some organizations in Auckland created to do?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:location . ?x prop:purpose ?uri . ?x rdf:type onto:Organisation}",julipc-p(huggingface) Under which president was timothy l. woodruff a lieutenant?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:lieutenant res:Timothy_L._Woodruff }",julipc-p(huggingface) How many have been venerateds in Islam and Judaism?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?uri onto:veneratedIn . ?uri onto:veneratedIn }",julipc-p(huggingface) Which training center of William Anthony has also alumni named Philip W Pillsbury ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:training ?uri. prop:education ?uri}",julipc-p(huggingface) "What is the largest city of the country to whom, the battle honours of 65th Regiment of Foot were given?","PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:battleHonours ?x . ?x onto:largestCity ?uri . }",julipc-p(huggingface) What awards have been given to people schooled in the Everton park state high?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:education . ?x prop:awards ?uri . ?x rdf:type onto:Person}",julipc-p(huggingface) List the authors of the musicals whose songwriter is Richard M. Sherman.,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:musicBy . ?x onto:author ?uri . ?x rdf:type onto:Musical}",julipc-p(huggingface) Who founded the sister stations of Discovery Communications?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:sisterNames res:Discovery_Communications . ?x prop:founder ?uri . }",julipc-p(huggingface) Rivers which end in Arkansas go through which cities?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:mouthMountain . ?x onto:city ?uri . ?x rdf:type onto:River}",julipc-p(huggingface) Give me some organizations working for Environmentalism,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:purpose . ?uri rdf:type onto:Organisation}",julipc-p(huggingface) Who has starred in the amusement park attractions where Jim Dooley was performing?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:music . ?x prop:starring ?uri . ?x rdf:type onto:AmusementParkAttraction}",julipc-p(huggingface) "Who has his resting place at Plymouth, Vermont and office at Massachusetts House of Representatives?","PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:restingPlace . ?uri prop:office . }",julipc-p(huggingface) Name the person whose parent is Pattie Mallette?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:parent . ?uri rdf:type onto:Person}",julipc-p(huggingface) What faith of Buddhist Tai Hung College is also the acadmeic interest of Paul Demiville ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Paul_Demiéville prop:fields ?uri. res:Buddhist_Tai_Hung_College prop:religion ?uri}",julipc-p(huggingface) Count the number of offices held by people who have their allegiances with the american civil war union?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:allegiance . ?x prop:office ?uri . }",julipc-p(huggingface) What are all the TV shows which are related to the ones produced by Julie Gardner?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:executiveProducer . ?uri onto:related ?x . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) For how many different presidents have people in the Continental Army served?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:branch . ?x prop:president ?uri . }",julipc-p(huggingface) How many movies have been cinematographed by Jordan Cronenweth?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:cinematography . ?uri rdf:type onto:Film}",julipc-p(huggingface) What is the country of origin of the president of Skai group?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Skai_Group onto:keyPerson ?x . ?x onto:stateOfOrigin ?uri . }",julipc-p(huggingface) Which company produced the car which was a new version of Daewoo's Tico?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:predecessor . ?x prop:parentCompany ?uri . ?x rdf:type onto:Automobile}",julipc-p(huggingface) What are all the prizes won by the writer of A Grand Day Out?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:A_Grand_Day_Out onto:writer ?x . ?x onto:award ?uri . }",julipc-p(huggingface) What tv show is created by Brian Graden?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:developer . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) What is the television show whose previous work is The Spirit of Christmas (short film)?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:previousWork . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) In which country is there a dam on the Awash river?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:river . ?x prop:country ?uri . ?x rdf:type onto:Dam}",julipc-p(huggingface) Count the total religions followed by the ones living in England.,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:residence . ?x prop:religion ?uri . }",julipc-p(huggingface) Who wrote the play in which a character called Stella Kowalski exists?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:characters . ?x prop:writer ?uri . ?x rdf:type onto:Play}",julipc-p(huggingface) Name the broadcast area of ITV (Thailand) ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:broadcastArea ?uri }",julipc-p(huggingface) "What is the country where Sergei Ovchinnikov the volleyball player die, and Gumus was first aired ?","PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:firstAired ?uri. prop:placeOfDeath ?uri}",julipc-p(huggingface) What is the region of Kim Sawchuk ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Kim_Sawchuk prop:region ?uri }",julipc-p(huggingface) Where was Liliya Lobanova born?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Liliya_Lobanova prop:birthplace ?uri }",julipc-p(huggingface) What are some cars related to the ones with a V8?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:engine . ?x prop:related ?uri . ?x rdf:type onto:Automobile}",julipc-p(huggingface) "People of which religion have been the members of parliament, and are from the Kalutara Electoral district?","PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:region . ?x onto:religion ?uri . ?x rdf:type onto:MemberOfParliament}",julipc-p(huggingface) What are the important buildings of the architect whose one of the significant building is Krasnye Vorota?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:significantBuilding . ?x onto:significantBuilding ?uri . ?x rdf:type onto:Architect}",julipc-p(huggingface) Name the cause of death of Martino Martini ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Martino_Martini onto:deathCause ?uri }",julipc-p(huggingface) In how many places have Irishmen died?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:birthPlace . ?x onto:deathPlace ?uri . ?uri rdf:type onto:Location}",julipc-p(huggingface) Count the number of fields of the scientists whose one of the fields is Sanskrit?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:fields . ?x prop:fields ?uri }",julipc-p(huggingface) What is the debut team of ngel Escobar ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Ángel_Escobar prop:debutteam ?uri }",julipc-p(huggingface) What currencies are used in the countries which have been governed by Francois Hollande?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:leader . ?x onto:currency ?uri . ?x rdf:type onto:Country}",julipc-p(huggingface) Where is Semnani and Assyrian Neo-Aramaic spoken ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:languages . ?uri onto:language . }",julipc-p(huggingface) Give me a list of everyone who married the musicians signed up with Pablo Records?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:label res:Pablo_Records . ?uri onto:spouse ?x . }",julipc-p(huggingface) Name the TV show whose cast member is Companion (Doctor Who) and is related to The Sarah Jane Adventures?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:starring . ?uri onto:related . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) Which shows' opening themes was used to make If We Were a Movie?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:subsequentWork . ?uri onto:openingTheme ?x . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) What is the predecessor of the car engine which was succeeded by BMW M43 ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:successor . ?x prop:predecessor ?uri . ?x rdf:type onto:Engine}",julipc-p(huggingface) Which country's leader is David Johnston?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:leader . ?uri rdf:type onto:Country}",julipc-p(huggingface) Give me a count of musical artists collaborating with Waylon Jennings?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:associatedMusicalArtist . ?uri rdf:type onto:MusicalArtist}",julipc-p(huggingface) Count everyone who was in the military unit which is structured like the Marine Aircraft Group 13 ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:commandStructure . ?uri onto:militaryUnit ?x . }",julipc-p(huggingface) By which member of parliament was Provisional Government of Saskatchewan led?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:order . ?uri rdf:type onto:MemberOfParliament}",julipc-p(huggingface) List the houses of Parliament of India ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Parliament_of_India prop:houses ?uri }",julipc-p(huggingface) Count the number of movies whose distributor is RKO Pictures and director of photography is Gregg Toland?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:distributor . ?uri onto:cinematography }",julipc-p(huggingface) In how many places can I find wine made of Vitis vinifera grapes?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:species . ?x onto:wineRegion ?uri . }",julipc-p(huggingface) Which gadgets are made by companies of New Taipei City?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:locationCity res:New_Taipei_City . ?uri onto:manufacturer ?x . }",julipc-p(huggingface) Name the hockey team which has head coach as Mike babcock and is based in Toronto ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:locationCity . ?uri prop:headCoach . ?uri rdf:type onto:HockeyTeam}",julipc-p(huggingface) What is the hub of Wan Air ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Wan_Air prop:hubs ?uri }",julipc-p(huggingface) Who are the members of organizations headquartered at Amstelveen?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:headquarters . ?x prop:membership ?uri . ?x rdf:type onto:Organisation}",julipc-p(huggingface) Whcih creator of Theme Time Radio Hour also created subsequent work of Moondoc Matinee ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Moondog_Matinee onto:subsequentWork ?uri. res:Theme_Time_Radio_Hour prop:creator ?uri}",julipc-p(huggingface) Who owns the tunnels operated by the Massachusetts Department of Transportation?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:operatedBy . ?x prop:owner ?uri . ?x rdf:type onto:RoadTunnel}",julipc-p(huggingface) Which comic characters are painted by Bill Finger?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:creator . ?uri rdf:type onto:ComicsCharacter}",julipc-p(huggingface) Name few television shows's anchored by Ryan Seacrest?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:presenter . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) List education institute of the engineers whose alma mater is ChristChurch ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:education . ?x onto:education ?uri . ?x rdf:type onto:Engineer}",julipc-p(huggingface) What do the banks owned by Norwegian ministry of finance produce?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:parentCompany . ?x prop:products ?uri . ?x rdf:type onto:Bank}",julipc-p(huggingface) Which televison shows have location as Massachusetts ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:location . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) Which clubs play in the La Liga?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:league . ?x prop:name ?uri . ?x rdf:type onto:SoccerClub}",julipc-p(huggingface) The successor of Ellsworth Bunker belongs to which religion?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Ellsworth_Bunker onto:successor ?x . ?x onto:region ?uri . }",julipc-p(huggingface) What medals have been given to people who died of lung cancer?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:deathCause . ?x onto:award ?uri . ?x rdf:type onto:Person}",julipc-p(huggingface) Which rivers start in Wyoming?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:sourceRegion res:Wyoming }",julipc-p(huggingface) Which band had members who are now in The Bleeding Heart Band?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:associatedBand . ?uri onto:formerBandMember ?x . ?uri rdf:type onto:Band}",julipc-p(huggingface) What is the common military branch of the Thomas Darden and that of Edwin F. Hunter,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Thomas_Darden onto:militaryBranch ?uri. res:Edwin_F._Hunter prop:branch ?uri}",julipc-p(huggingface) In which countries are there banks which came after the National Commercial Bank of Mauritius?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:successor ?x . ?x prop:locationCountry ?uri . ?x rdf:type onto:Bank}",julipc-p(huggingface) How many people have coached the players of Middlesbrough FC?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:team . ?x onto:manager ?uri . ?uri rdf:type onto:Person}",julipc-p(huggingface) What are the Languages of Zabbaleen ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Zabbaleen prop:languages ?uri }",julipc-p(huggingface) What is the region served by Toll Global Express and also borders Siberia ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Toll_Global_Express onto:regionServed ?uri. res:Siberia onto:border ?uri}",julipc-p(huggingface) In which mountain range does the Rochers De Naye lie?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:parentMountainPeak res:Rochers_de_Naye . ?x onto:mountainRange ?uri . }",julipc-p(huggingface) Who has rented the stadiums owned by Toronto?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:owner . ?x prop:tenants ?uri . ?x rdf:type onto:Stadium}",julipc-p(huggingface) What is the mascot of alma mater of John O Moseley?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:John_O._Moseley prop:almaMater ?x . ?x prop:mascot ?uri . }",julipc-p(huggingface) Which newspapers are owned by Oslo citizens?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:location . ?uri prop:owners ?x . ?uri rdf:type onto:Newspaper}",julipc-p(huggingface) King crimson has been recorded in which places?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:artist res:King_Crimson . ?x onto:recordedIn ?uri . }",julipc-p(huggingface) "Who is the architect of Red House, London ?","PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:architect ?uri }",julipc-p(huggingface) Which is the common prospect team of Mikhail Pashnin and Robin kovacs ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Mikhail_Pashnin prop:prospectTeam ?uri. res:Robin_Kovacs onto:prospectTeam ?uri}",julipc-p(huggingface) How many mountain ranges are located in the Canton of Fribourg?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:locatedInArea . ?x onto:mountainRange ?uri . }",julipc-p(huggingface) Give me a count on associates of Johnny Cash?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:associatedActs . }",julipc-p(huggingface) Which companies are founded in the city of which Collin County Texas is a part?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:part . ?uri onto:foundationPlace ?x . ?uri rdf:type onto:Company}",julipc-p(huggingface) What is the place of birth of the badminton player who is the bronze medalist of Badminton at the 2012 Summer Olympics Women's doubles ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:bronzeMedalist ?x . ?x prop:placeOfBirth ?uri . ?x rdf:type onto:BadmintonPlayer}",julipc-p(huggingface) what are some neighboring cities of Pregny Chambsy?,"PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:neighboringMunicipality }",julipc-p(huggingface) Through which counties does the road go which starts at the Port Klang?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:routeStart . ?x onto:county ?uri . ?x rdf:type onto:Road}",julipc-p(huggingface) Which city's teams have been coached by Gary Kubaik?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:coach . ?x onto:locationCity ?uri . ?x rdf:type onto:SportsTeam}",julipc-p(huggingface) How many developers make softwares for Unix like operating systems?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:operatingSystem . ?x onto:developer ?uri . }",julipc-p(huggingface) What is the second track list of Dschinghis Khan (song) ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:subsequentWork ?uri }",julipc-p(huggingface) Which president was served by someone whose lieutenant is Lewis Stuyvesant Chanler?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:lieutenant res:Lewis_Stuyvesant_Chanler . ?x onto:president ?uri . }",julipc-p(huggingface) List the graves of the royalities which have been buried at Beeleigh Abbey ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:placeOfBurial . ?x prop:placeOfBurial ?uri . ?x rdf:type onto:Royalty}",julipc-p(huggingface) For which party's PM did Chidambaram Subramaniam serve?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Chidambaram_Subramaniam prop:primeminister ?x . ?x onto:party ?uri . }",julipc-p(huggingface) What is the capital of the region which maintains the South Park Bridge ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:maintainedBy ?x . ?x onto:countySeat ?uri . ?x rdf:type onto:Region}",julipc-p(huggingface) AH141 highway is a part of which country?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:AH141 onto:county ?uri }",julipc-p(huggingface) "What is the local authority of the Trinity School, Brentwood and place of birth of the Sarah Walker (badminton) ?","PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:localAuthority ?uri. prop:placeOfBirth ?uri}",julipc-p(huggingface) Which school of jack mcGregor attend which was also the training center of William Anthony ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:education ?uri. onto:training ?uri}",julipc-p(huggingface) Count the number of schools which are in a city governed by the West Berkshire Council?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:leaderName . ?uri prop:city ?x . ?uri rdf:type onto:School}",julipc-p(huggingface) Which ceremonial County of the East Tilbury is also the local authority of the Buckhurst Hill County High School ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:East_Tilbury onto:ceremonialCounty ?uri. res:Buckhurst_Hill_County_High_School onto:localAuthority ?uri}",julipc-p(huggingface) What is the common profession of DeWitt Clinton and Claiborne Pell ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:DeWitt_Clinton prop:office ?uri. res:Claiborne_Pell onto:profession ?uri}",julipc-p(huggingface) List the launch site of the rockets whose one of the launch site has been Cape Canaveral Air Force Station Launch Complex 26 ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:launchSite . ?x onto:launchSite ?uri . ?x rdf:type onto:Rocket}",julipc-p(huggingface) How many wars took place in Israel?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:place . ?uri rdf:type onto:MilitaryConflict}",julipc-p(huggingface) What is the total number of guests on the show whose theme music is Let me be your star?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:music . ?x prop:guests ?uri . }",julipc-p(huggingface) What is the operating system of the LG Optimus Vu and also the developer of the Dart (programming language),"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:operatingSystem ?uri. prop:developer ?uri}",julipc-p(huggingface) Who follow religions led by David Miscavige?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:leaderName res:David_Miscavige . ?uri onto:religion ?x . }",julipc-p(huggingface) How many people have written for Gangan Comics?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:magazine . ?x prop:author ?uri . }",julipc-p(huggingface) Who wrote The Times They Are a-Changin?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:musicBy ?uri }",julipc-p(huggingface) Which education institute of Duncan U. Fletcher is also the university of Vanderbilt Commodores ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Duncan_U._Fletcher onto:almaMater ?uri. res:Vanderbilt_Commodores onto:university ?uri}",julipc-p(huggingface) How many total religions are followed by people whose hometown is somewhere in India?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:hometown . ?x prop:religion ?uri . }",julipc-p(huggingface) What were the awards won by the founder of Walt Disney Records ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Walt_Disney_Records onto:foundedBy ?x . ?x onto:award ?uri . }",julipc-p(huggingface) England is the origin of how many things?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:origin . }",julipc-p(huggingface) What is the television show with presentator as Ryan Seacrest and theme music composer as Julian Gingell?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:presenter . ?uri prop:themeMusicComposer . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) Where did ed podolak go to high school,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Ed_Podolak onto:highschool ?uri }",julipc-p(huggingface) "Where is the county seat of King County, Washington?","PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:countySeat ?uri }",julipc-p(huggingface) What are the houses of legislature in the political leader's seat of Medininagar?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:leaderTitle ?x . ?x prop:houses ?uri . ?x rdf:type onto:Legislature}",julipc-p(huggingface) Which producer of Boeing F/A-18E/F Super Hornet has a key person Dennis Muilenburg ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:keyPeople . ?uri prop:products . }",julipc-p(huggingface) How many people work at the FBI?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:occupation . }",julipc-p(huggingface) How many people have been trained in an institute located in California?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:city . ?uri prop:training ?x . ?uri rdf:type onto:Person}",julipc-p(huggingface) Where is the tomb of son of Bruce Lee?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:parent res:Bruce_Lee . ?x onto:restingPlace ?uri . }",julipc-p(huggingface) What are some famous companies founded in the US?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:foundationPlace . ?uri rdf:type onto:Company}",julipc-p(huggingface) Name the common former team of Marv mcFadden and Carlos Emmons ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:pastteams ?uri. onto:formerTeam ?uri}",julipc-p(huggingface) Who were fighting the war where the QF Hotchkiss was used?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { onto:usedInWar ?x . ?x onto:territory ?uri . ?x rdf:type onto:MilitaryConflict}",julipc-p(huggingface) Give me a count of movies whose film editor is Anthony Harvey?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:editing . ?uri rdf:type onto:Film}",julipc-p(huggingface) How many people are buried in Arlington National Cemetery?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:placeofburial . }",julipc-p(huggingface) What are some people working for the New York Post?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:employer . ?uri rdf:type onto:Person}",julipc-p(huggingface) Which country were the people from who became famous for the Ramon Mangsaysay Award?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:knownFor . ?x onto:stateOfOrigin ?uri . ?x rdf:type onto:Person}",julipc-p(huggingface) Name the office holder with predecessor as Samuel W. McCall and office in Massachusetts House of Representatives?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:predecessor . ?uri prop:office . ?uri rdf:type onto:OfficeHolder}",julipc-p(huggingface) In which city is the sister station of WCSE-LP located ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:sisterStations ?x . ?x prop:city ?uri . }",julipc-p(huggingface) What are some devices whose manufacturers are in taiwan?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:locationCountry . ?uri onto:manufacturer ?x . ?uri rdf:type onto:Device}",julipc-p(huggingface) Which military commander fought his battle at Fort Gadsen?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:battle . ?uri rdf:type onto:OfficeHolder}",julipc-p(huggingface) Which spanish novel was published by Francisco de Robles?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:publisher res:Francisco_de_Robles }",julipc-p(huggingface) What are some bands originating in London?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:hometown . ?uri rdf:type onto:Band}",julipc-p(huggingface) "Which educational institution has Kaplan, Inc as it's affiliation?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:affiliations . ?uri rdf:type onto:EducationalInstitution}",julipc-p(huggingface) Where did john o conner study?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:almaMater ?uri }",julipc-p(huggingface) List the producers who produced movies starring Michael Jackson.,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:starring . ?x prop:producer ?uri . ?x rdf:type onto:Film}",julipc-p(huggingface) List the name of the soccer clubs whose chairman is Joan Laporta.,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:chairman . ?x prop:name ?uri . ?x rdf:type onto:SoccerClub}",julipc-p(huggingface) Name the major shrine of Bogumilus?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Bogumilus onto:majorShrine ?uri }",julipc-p(huggingface) What are the other launch site of the rockets which also have been launched from Cape Canaveral Air Force Station Launch Complex 5 ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:launchSite . ?x onto:launchSite ?uri . ?x rdf:type onto:Rocket}",julipc-p(huggingface) Name the TV shows related to Babylon 5: The Lost Tales and is aired on Prime TIme Entertainment Networks ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:related . ?uri onto:network . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) Who is the person whose alma mater is Harvard-Westlake School?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:almaMater . ?uri rdf:type onto:Person}",julipc-p(huggingface) How many different religions have economists followed?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:profession . ?x onto:religion ?uri . }",julipc-p(huggingface) Which royalty's spouse is Ptolemy XIV of Egypt?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:spouse . ?uri rdf:type onto:Royalty}",julipc-p(huggingface) What artists are associated with the members of the Catalin Maruta?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:associatedBand res:Cătălin_Măruță . ?x onto:associatedMusicalArtist ?uri . }",julipc-p(huggingface) In which city are buildings by Solon Spencer Beman found?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:architect . ?x prop:locationTown ?uri . ?x rdf:type onto:Building}",julipc-p(huggingface) "Danny Felice, the Gibraltarian guitarist is from which city?","PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Danny_Felice onto:hometown ?uri }",julipc-p(huggingface) Name the tenants of O.co Coliseum ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:O.co_Coliseum onto:tenant ?uri }",julipc-p(huggingface) Name the rivers originating from an English speaking nation?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:officialLanguage . ?uri onto:sourceCountry ?x . ?uri rdf:type onto:River}",julipc-p(huggingface) Count the total awards won by the writer who has won Goethe Prize ?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:awards . ?x prop:awards ?uri }",julipc-p(huggingface) In how many nations can I find people related to the feminist movement?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:movement . ?x onto:nationality ?uri . }",julipc-p(huggingface) What team had the debut of Marv Throneberry and Curt Coleman?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Marv_Throneberry prop:debutteam ?uri. res:Curt_Coleman onto:debutTeam ?uri}",julipc-p(huggingface) Name the sports played by PATTS College of Aeronautics?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:PATTS_College_of_Aeronautics prop:athletics ?uri }",julipc-p(huggingface) Which home town of Cline Buckens is the place of Death of Richard heron ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Céline_Buckens onto:hometown ?uri. res:Richard_Heron prop:placeOfDeath ?uri}",julipc-p(huggingface) Who wrote the musical based on Mary Poppins?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:basedOn . ?x onto:author ?uri . ?x rdf:type onto:Musical}",julipc-p(huggingface) With whom is Heinz Kokott a relative to who also served Nazi Army?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Heinz_Kokott onto:relation ?uri }",julipc-p(huggingface) Who is the former partner of the figure skater which was the former partner of Brynn Carman ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:formerPartner ?x . ?x onto:formerPartner ?uri . ?x rdf:type onto:FigureSkater}",julipc-p(huggingface) Name the company which produces Marionette and has key person as Edwin catmull ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:products . ?uri prop:keyPeople . ?uri rdf:type onto:Company}",julipc-p(huggingface) Paul Morphy compiled journals of which field?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:editor res:Paul_Morphy . ?x prop:discipline ?uri . }",julipc-p(huggingface) Name the person whose relation is Dee Dee Warwick?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:relation . ?uri rdf:type onto:Person}",julipc-p(huggingface) Give me some series whose network's owning company is Warner Bros. Television?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:owningCompany . ?uri onto:network ?x . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) In which region was political figure Wayne Allard elected?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Wayne_Allard onto:region ?uri }",julipc-p(huggingface) What awards have the narrator of the Cries and Whispers won?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Cries_and_Whispers onto:narrator ?x . ?x prop:awards ?uri . }",julipc-p(huggingface) How many ships belong to states which has Unitary as government type ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:governmentType . ?uri onto:country ?x . ?uri rdf:type onto:Ship}",julipc-p(huggingface) Who designed Oddamavadi Bridge?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Oddamavadi_Bridge prop:designer ?uri }",julipc-p(huggingface) Count all the band members who are in Bands which have signed up with Entertainment One Music?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:label . ?x onto:bandMember ?uri . }",julipc-p(huggingface) What are the television shows whose company is European Broadcasting Union?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:company . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) Who are the founders of Iskra ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Iskra onto:foundedBy ?uri }",julipc-p(huggingface) To which families does the Koolakamba belong ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Koolakamba onto:family ?uri }",julipc-p(huggingface) Graduates of Somerville College have been in how many political parties?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:almaMater . ?x onto:party ?uri . }",julipc-p(huggingface) List all the developers of the Oddworld series?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:series res:Oddworld . ?x onto:developer ?uri . }",julipc-p(huggingface) Which county seats are in the district where I can find the Hylebos Creek?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Hylebos_Creek onto:district ?x . ?x onto:countySeat ?uri . }",julipc-p(huggingface) Which american football player's current team is Michigan Wolverines and former team was Baltimore Ravens ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:currentteam . ?uri onto:formerTeam . ?uri rdf:type onto:AmericanFootballPlayer}",julipc-p(huggingface) Which TV show distributed by Warner Bros. has Christopher Franke as one of the artist ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:distributor . ?uri prop:artist . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) Give me a count of all the producers of all the movies whose music was done by James Horner?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:music . ?x prop:producer ?uri . }",julipc-p(huggingface) List the notable work of David Isaacs (writer)?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:notableWork ?uri }",julipc-p(huggingface) What is the province of Egypt Nanotechnology Center ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Egypt_Nanotechnology_Center prop:province ?uri }",julipc-p(huggingface) Give me the number of home stadiums of teams managed by John Spencer.,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:manager . ?x onto:homeStadium ?uri . }",julipc-p(huggingface) How many people are buried in the Winchester Cathedral?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:restingPlace . }",julipc-p(huggingface) Name the origins of the river with Quich Department as one of the origin ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:origin res:Quiché_Department . ?x onto:origin ?uri . }",julipc-p(huggingface) Who wrote a rose for emily?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:notableWork . ?uri rdf:type onto:Writer}",julipc-p(huggingface) What ethnicity do people in British Columbia belong to?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:residence . ?x onto:ethnicity ?uri . ?x rdf:type onto:Person}",julipc-p(huggingface) Which motion picture stories were edited by Ishir Honda?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:writer . ?uri rdf:type onto:Film}",julipc-p(huggingface) Which tv series have a score composed by judy hard angelo?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:composer . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) For which other teams have the past Boston Bruins members played?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:formerTeam res:Boston_Bruins . ?x prop:playedFor ?uri . }",julipc-p(huggingface) List the Swedish newspaper headquarted in Stockholm ? ,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:language . ?uri prop:headquarters . ?uri rdf:type onto:Newspaper}",julipc-p(huggingface) Those seasons which have been played in Fort Lauderdale Florida now host their games where?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:stadium . ?x onto:ground ?uri . ?x rdf:type onto:SoccerClubSeason}",julipc-p(huggingface) Where is the origin of Filbert's Old Time Root Beer ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:origin ?uri }",julipc-p(huggingface) Give me all the alma mater of the relatives of Samuek Moreno Rojas ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Samuel_Moreno_Rojas onto:relation ?x . ?x prop:almaMater ?uri . }",julipc-p(huggingface) Which magazine's editor's official residence is Playboy Mansion?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:residence . ?uri prop:editor ?x . ?uri rdf:type onto:Magazine}",julipc-p(huggingface) To which destinations does Air 2000 fly?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Air_2000 prop:destinations ?uri }",julipc-p(huggingface) What is the political party to which Purnima Banerjee is a member of?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Robert_Nutting onto:knownFor ?uri }",julipc-p(huggingface) To which political party does the successor of Radhabinod Koijam belong?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Radhabinod_Koijam prop:successor ?x . ?x prop:party ?uri . }",julipc-p(huggingface) What is the ethnicity of Linda Hogan ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Linda_Hogan prop:ethnicity ?uri }",julipc-p(huggingface) Name the mammals which are primate and belongs to family of ape ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:order . ?uri onto:family . ?uri rdf:type onto:Mammal}",julipc-p(huggingface) "Who did the person whose predecessor is Arthur Slaght, play for?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:predecessor . ?x prop:playedFor ?uri . ?x rdf:type onto:Person}",julipc-p(huggingface) "To what did the parliament member swore her oath to, whose has sons is Lohan Ratwatte?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:child . ?x prop:allegiance ?uri . ?x rdf:type onto:MemberOfParliament}",julipc-p(huggingface) What are the awards won by the producer of Elizabeth: The Golden Age?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:producer ?x . ?x prop:awards ?uri . }",julipc-p(huggingface) What is the hometown of the volleyball player whose club is VC Lokomotiv Novosibirsk ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:club . ?x prop:hometown ?uri . ?x rdf:type onto:VolleyballPlayer}",julipc-p(huggingface) Who owns the bridge which crosses the Orange Line of MBTA?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:crosses . ?x prop:owner ?uri . ?x rdf:type onto:Bridge}",julipc-p(huggingface) Through which label did Mel Brooks produce his movie?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:producer . ?x prop:label ?uri . ?x rdf:type onto:Film}",julipc-p(huggingface) Count the number of judges who've come on CTV network shows.,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:network . ?x prop:judges ?uri . }",julipc-p(huggingface) Name the musical artists whose label is given by Kobalt Label Services?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:label . ?uri rdf:type onto:MusicalArtist}",julipc-p(huggingface) "Enumerate all the first teams of the GPs which were held in Watkins Glen, NY?","PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:location . ?x prop:firstTeam ?uri . }",julipc-p(huggingface) Which operator of ganz UV is also the nationality of the Gza Horvth ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Ganz_UV onto:operator ?uri. res:Géza_Horváth onto:nationality ?uri}",julipc-p(huggingface) What is the death place of the Abiye Abebe and is the birthplace of the Amsale Aberra?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Abiye_Abebe prop:placeOfDeath ?uri. res:Amsale_Aberra onto:birthPlace ?uri}",julipc-p(huggingface) Which official residence of Nikos Pateras is also the stadium of anionios G.S.S. season 2014-15 ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:2014–15_Panionios_G.S.S._season prop:stadium ?uri. res:Nikos_Pateras onto:residence ?uri}",julipc-p(huggingface) Give me a count of movies whose producer is Larry J. Franco?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:producer . ?uri rdf:type onto:Film}",julipc-p(huggingface) Which city near Nihoa is the place of death of jim Brady ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:nearestCity ?uri. onto:deathPlace ?uri}",julipc-p(huggingface) Journals of how many fields can be found in US?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:country . ?x prop:discipline ?uri . }",julipc-p(huggingface) How many different genres of games can I find which are compatible with the Commodore 64?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:computingPlatform . ?x prop:genre ?uri . }",julipc-p(huggingface) In which wars has Steven Palazzo fought?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Steven_Palazzo prop:battles ?uri }",julipc-p(huggingface) Which fields' academic journals are found in the US?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:country res:United_States . ?x prop:discipline ?uri . }",julipc-p(huggingface) Mike Shinoda is in which band?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:bandMember res:Mike_Shinoda }",julipc-p(huggingface) What are the television shows whose voices is given by Mona Marshall?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:voices . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) Name the movie whose director of photography is Gregg Toland and Bernard Herrmann was the music composer?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:cinematography . ?uri onto:musicComposer . ?uri rdf:type onto:Film}",julipc-p(huggingface) Name the company with product lines like Visual studio and Surface ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:products . ?uri onto:product . ?uri rdf:type onto:Company}",julipc-p(huggingface) How many contries surround the seas on the banks of which is the city of Cancun?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:cities . ?x onto:country ?uri . }",julipc-p(huggingface) Name the other wine region of the grapes whose one of the wine region is Michigan?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:wineRegion . ?x onto:wineRegion ?uri . ?x rdf:type onto:Grape}",julipc-p(huggingface) Which administrative region leader is Sukhumbhand Paribatra and was founded by Rama I?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:leaderName . ?uri onto:founder . ?uri rdf:type onto:AdministrativeRegion}",julipc-p(huggingface) Name the largest city of the country where the body of Amit Saigal was discovered?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:bodyDiscovered ?x . ?x onto:largestCity ?uri . ?x rdf:type onto:Country}",julipc-p(huggingface) "Who founded the city where First Church of Christ, Scientist is located?","PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:locationTown ?x . ?x onto:founder ?uri . }",julipc-p(huggingface) Los Angeles Lakers is the team of which basketball players?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:team . ?uri rdf:type onto:BasketballPlayer}",julipc-p(huggingface) What are the movies produced by Michael Deeley?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:producer . ?uri rdf:type onto:Film}",julipc-p(huggingface) Where is the headquarter of Regional Transit Authority of Southeast Michigan ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Regional_Transit_Authority_of_Southeast_Michigan prop:headquarters ?uri }",julipc-p(huggingface) What are the awards won by the parent of Daniel Bergmans?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Daniel_Bergman onto:parent ?x . ?x prop:awards ?uri . }",julipc-p(huggingface) Collect and return a list of things in the area where Spanish language is used?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:language res:Spanish_language . ?uri onto:location ?x . }",julipc-p(huggingface) Where is Hafthor Julius Bjornsson from?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Hafthór_Júlíus_Björnsson onto:stateOfOrigin ?uri }",julipc-p(huggingface) What writers have nationality as Statelessness? ,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:nationality . ?uri rdf:type onto:Writer}",julipc-p(huggingface) Music for what was made by someone who died of a cardiovascular disease?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:deathCause res:Cardiovascular_disease . ?uri prop:music ?x . }",julipc-p(huggingface) What famous musicians play the remo?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:instrument . ?uri rdf:type onto:MusicalArtist}",julipc-p(huggingface) Name the music artist which collaborated with the spouse of Jessi Colter?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:spouse . ?uri onto:associatedMusicalArtist ?x . ?uri rdf:type onto:MusicalArtist}",julipc-p(huggingface) Does Lousana lie at the end of Alberta Highway 42?,"PREFIX res: PREFIX onto: ASK WHERE { res:Alberta_Highway_42 onto:routeEnd res:Lousana . }",julipc-p(huggingface) Count the number of sports played by the universities whose one of the sports is baketball ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:athletics . ?x prop:athletics ?uri }",julipc-p(huggingface) "Amongst the winner of Lovelace medal, who has John Robert as doctoral supervisor ?","PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:doctoralAdvisor res:John_Robert_Woodyard . ?uri prop:prizes res:Lovelace_Medal . }",julipc-p(huggingface) Which television shows has sound format as 5.1 surround?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:format . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) Who is the producer of the single which was the subsequent work of He's a Liar?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:subsequentWork ?x . ?x onto:producer ?uri . }",julipc-p(huggingface) List the people who influenced the comedian who acted in Good Hair ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:starring ?x . ?x onto:influencedBy ?uri . ?x rdf:type onto:Comedian}",julipc-p(huggingface) "To what other locations does the airlines have flights, who also fly to Birmingham?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:targetAirport . ?x prop:destinations ?uri . ?x rdf:type onto:Airline}",julipc-p(huggingface) Name the television show whose creator is Simon Fuller and presented by Ryan Seacrest?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:creator . ?uri onto:presenter . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) In how many places has Garbage recorded their songs?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:producer . ?x onto:recordedIn ?uri . }",julipc-p(huggingface) How many cars can I find related to the cars which have a V8 engine?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:engine . ?x prop:related ?uri . }",julipc-p(huggingface) What products do US companies make?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:location . ?x onto:product ?uri . ?x rdf:type onto:Company}",julipc-p(huggingface) How many characters are there in The Office?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:series . ?uri rdf:type onto:FictionalCharacter}",julipc-p(huggingface) Who first ascented a mountain of Mount Hoffmann ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Mount_Hoffmann onto:firstAscentPerson ?uri }",julipc-p(huggingface) Which science fiction show has Steven Moffat as executive producer ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:executiveProducer . ?uri prop:genre . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) Who all play for the teams performing in the united center?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:arena res:United_Center . ?uri prop:team ?x . }",julipc-p(huggingface) How many parties have come in power in elections where Y. S. Rajasekhara Reddy won?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:leader . ?x onto:affiliation ?uri . }",julipc-p(huggingface) Where did Wallace Dollase die?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Wallace_Dollase onto:deathPlace ?uri . }",julipc-p(huggingface) In which state is Red Willow Creek?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Red_Willow_Creek onto:state ?uri }",julipc-p(huggingface) Who is the founder of the trade union with whom Amalgamated Clothing Workers of America is affiliated?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Amalgamated_Clothing_Workers_of_America onto:affiliation ?x . ?x prop:founded ?uri . }",julipc-p(huggingface) Who operates the railway line which begins in Minneapolis?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:routeStart . ?x onto:operatedBy ?uri . ?x rdf:type onto:RailwayLine}",julipc-p(huggingface) What is the nation of the speedway league where Ikaros Smederna played?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:league ?x . ?x onto:country ?uri . ?x rdf:type onto:SpeedwayLeague}",julipc-p(huggingface) How many non fiction topics does Thud! deals with?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { onto:nonFictionSubject ?uri . }",julipc-p(huggingface) Which route start of Moscow-Kazan high-speed railway is the home stadium of 2011-12 FC Spartak Moscow ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:routeStart ?uri. onto:homeStadium ?uri}",julipc-p(huggingface) Which party of Rishang Keishing is the leader at Manendragarh ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Manendragarh onto:leaderName ?uri. res:Rishang_Keishing prop:party ?uri}",julipc-p(huggingface) How many people were in a youthclub which played in the Argentine Primera Division?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:league . ?uri prop:youthclubs ?x . }",julipc-p(huggingface) What is the home town of the musician of Jack your Body ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Jack_Your_Body onto:musicalArtist ?x . ?x onto:hometown ?uri . }",julipc-p(huggingface) In which branch of the government does James L. McConaughy belong?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:James_L._McConaughy onto:governor ?x . ?x prop:branch ?uri . }",julipc-p(huggingface) in which country does the river end which originates in Lebrsnik?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:sourcePlace res:Lebršnik . ?x onto:mouthCountry ?uri . }",julipc-p(huggingface) Where did Andy Wyant die and Robert Rodi was born in?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Robert_Rodi onto:birthPlace ?uri. res:Andy_Wyant prop:placeOfDeath ?uri}",julipc-p(huggingface) "Which person constituency is Duboce Triangle, San Francisco and military unit is USS Kittiwake (ASR-13)?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:constituency . ?uri onto:militaryUnit . ?uri rdf:type onto:Person}",julipc-p(huggingface) What is the occupation of the band members of The Shirelles?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:associatedMusicalArtist res:The_Shirelles . ?x onto:occupation ?uri . }",julipc-p(huggingface) Which American football player is a former team player of Indianapolis Colts and current team is Michigan Wolverines?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:formerTeam . ?uri prop:currentteam . ?uri rdf:type onto:AmericanFootballPlayer}",julipc-p(huggingface) List the mountains of the range Sierra Nevada (U.S.) located in California?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:mountainRange . ?uri onto:locatedInArea . ?uri rdf:type onto:Mountain}",julipc-p(huggingface) "List the television shows whose distributors are located at Burbank, California.","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:locationCity . ?uri prop:distributor ?x . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) What is the common relegion of Miao people and the country where Guru Purnima is celebrated ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Miao_people onto:religion ?uri. res:Guru_Purnima onto:country ?uri}",julipc-p(huggingface) What kind of buildings were designed by Pyusawhti?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:architect . ?x onto:type ?uri . ?x rdf:type onto:Building}",julipc-p(huggingface) What is the owning company of the bank whose parent is Sony Financial ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:parent . ?x onto:owningCompany ?uri . ?x rdf:type onto:Company}",julipc-p(huggingface) What are some gymnasts coached by Amanda Reddin?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:headcoach . ?uri rdf:type onto:Gymnast}",julipc-p(huggingface) Katharevousa writers have been given which awards?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:movement . ?x onto:award ?uri . ?x rdf:type onto:Writer}",julipc-p(huggingface) What are some mammals whose phylum is Chordate?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:phylum . ?uri rdf:type onto:Mammal}",julipc-p(huggingface) How many developers have worked on games of the Oddworld series?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:series . ?x onto:developer ?uri . }",julipc-p(huggingface) Name the home ground of 2015 Fort Lauderdale Strikers season ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:2015_Fort_Lauderdale_Strikers_season onto:ground ?uri }",julipc-p(huggingface) Which video game composed by Hirokazu Tanaka can be played on virtual Console ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:computingPlatform . ?uri prop:composer . ?uri rdf:type onto:VideoGame}",julipc-p(huggingface) What is the resting place of the engineer who was the architect of Plaza on DeWitt?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Plaza_on_DeWitt onto:architect ?x . ?x onto:restingPlace ?uri . }",julipc-p(huggingface) How many tenants are there in the Mercedes Benz Superdome?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { onto:tenant ?uri . }",julipc-p(huggingface) What is the affiliation of the hospital where Alfred Blalock works?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Alfred_Blalock prop:workInstitutions ?x . ?x prop:affiliation ?uri . }",julipc-p(huggingface) How many genres gave birth to other genres which emphasize Bass Guitars?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:instruments . ?x onto:stylisticOrigin ?uri . ?uri rdf:type onto:MusicGenre}",julipc-p(huggingface) How many bands began in Birmingham?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:origin . ?uri rdf:type onto:Band}",julipc-p(huggingface) Where does the river end which starts in Richmond Park?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:sourcePlace . ?x prop:mouthLocation ?uri . ?x rdf:type onto:Stream}",julipc-p(huggingface) How many causes of death have been associated with American citizens?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:citizenship . ?x onto:deathCause ?uri . }",julipc-p(huggingface) Louis Dunbar is the coach of which basketball team ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:coach . ?uri rdf:type onto:BasketballTeam}",julipc-p(huggingface) Charles Willing Byrd was the governor under which politician?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:governor res:Charles_Willing_Byrd }",julipc-p(huggingface) "For how many teams have the league players of Czech Extraliga, previously played?","PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:league . ?x onto:formerTeam ?uri . }",julipc-p(huggingface) Which television show is the subsequent work of Frasier and the opening theme is Gary Portnoy?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:subsequentWork . ?uri onto:openingTheme . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) Count the number of sports played by university which also plays Taekwondo ?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:athletics . ?x prop:athletics ?uri }",julipc-p(huggingface) What is the service of the Laemmle Theatres and is also the award of the Jos Rivera (playwright)?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:service ?uri. prop:awards ?uri}",julipc-p(huggingface) Which football players currently have their contracts with Stoke City F.C.?,"PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:currentclub }",julipc-p(huggingface) What are the cities around the sea which flows into the Atlantic?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:inflow . ?x prop:cities ?uri . ?x rdf:type onto:Sea}",julipc-p(huggingface) Artists trained at art students league NY are buried where?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:training . ?x onto:restingPlace ?uri . ?x rdf:type onto:Artist}",julipc-p(huggingface) What is the municipality of Liberty Bell ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Liberty_Bell onto:municipality ?uri }",julipc-p(huggingface) Who is the owner of Bloomberg L.P. ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:owner ?uri }",julipc-p(huggingface) What is the location of death of the skier who was the bronze medalist of Alpine skiing at the 1964 Winter Olympics Men's slalom ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:bronzeMedalist ?x . ?x prop:deathPlace ?uri . ?x rdf:type onto:Skier}",julipc-p(huggingface) What is the debut team of the american football player who studied in North Fort Myers High School?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:highschool . ?x prop:debutteam ?uri . ?x rdf:type onto:AmericanFootballPlayer}",julipc-p(huggingface) In which races did Mouse Morris take part?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Mouse_Morris prop:race ?uri }",julipc-p(huggingface) Who are the writers of South Park: The Stick of Truth?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:South_Park:_The_Stick_of_Truth prop:writer ?uri }",julipc-p(huggingface) What is the leading party in Baraily which Chandra Shekhar too is associated with?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Baraily onto:leaderName ?uri. res:Chandra_Shekhar onto:otherParty ?uri}",julipc-p(huggingface) Name the fictional character who was in Terminator and portrayer is Terminator 2: Judgment Day?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:series . ?uri onto:portrayer . ?uri rdf:type onto:FictionalCharacter}",julipc-p(huggingface) List the trainers of Shinya Aoki ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Shinya_Aoki onto:trainer ?uri }",julipc-p(huggingface) What do typically NGOs work for?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:type . ?x prop:purpose ?uri . }",julipc-p(huggingface) What does the river end on whose border we find in Bjelasnica?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:border res:Bjelašnica . ?x onto:mouthCountry ?uri . }",julipc-p(huggingface) "List few schools situated in Reading, Berkshire ?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:city . ?uri rdf:type onto:School}",julipc-p(huggingface) Who preceded Lucius Crus as an office holder?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:predecessor . ?uri rdf:type onto:OfficeHolder}",julipc-p(huggingface) How many universities participate in the NCAA Division I Football Bowl Subdivision?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:athletics . ?uri rdf:type onto:University}",julipc-p(huggingface) Where is the senator from whose successor was James belford?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:successor . ?x onto:region ?uri . ?x rdf:type onto:Senator}",julipc-p(huggingface) What is the state of origin of Thomas Pfyl ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Thomas_Pfyl onto:stateOfOrigin ?uri }",julipc-p(huggingface) What is the nationality of the successor of Nii Okaidja Adamafio ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Nii_Okaija_Adamafio prop:successor ?x . ?x onto:nationality ?uri . }",julipc-p(huggingface) By which university is the literary magazine named Stone Canoe published?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Stone_Canoe onto:publisher ?uri }",julipc-p(huggingface) Give me a count of companies located in Texas ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:locationCity . ?uri rdf:type onto:Company}",julipc-p(huggingface) Name the company whose one of the product is Pixar Image Computer and has one of the key person as Edwin Catmull?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:product . ?uri onto:keyPerson . ?uri rdf:type onto:Company}",julipc-p(huggingface) Who is the cover artist of Doctor Mirabilis (novel) ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:coverArtist ?uri }",julipc-p(huggingface) list some shawnee people?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:nationality res:Shawnee }",julipc-p(huggingface) "Name the office holder whose predecessor is Henry E. Catto, Jr. and successor is Adrian A. Basora?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:predecessor . ?uri prop:successor . ?uri rdf:type onto:OfficeHolder}",julipc-p(huggingface) Who is the common prime minster of William Deaner and mark Latham ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:William_Deane onto:primeMinister ?uri. res:Mark_Latham prop:primeminister ?uri}",julipc-p(huggingface) What is the parent company of company which owns Sony Bank?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:parent ?x . ?x onto:parentCompany ?uri . ?x rdf:type onto:Company}",julipc-p(huggingface) How many games are played at universities in Metro Manilla?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:state . ?x prop:athletics ?uri . }",julipc-p(huggingface) Name all sitcoms whose theme music is made by Miley Cyrus?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:musicalBand . ?uri onto:openingTheme ?x . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) Who is the former partner of the pupil of Dalilah Sappenfield?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:coach res:Dalilah_Sappenfield . ?x onto:formerPartner ?uri . }",julipc-p(huggingface) Who is the Pole driver of 1992 Canadian Grand Prix ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:1992_Canadian_Grand_Prix prop:poleDriver ?uri }",julipc-p(huggingface) Which city's neighboring municipalities are Lancy and Pregny-Chambsy?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:neighboringMunicipalities . ?uri onto:neighboringMunicipality . ?uri rdf:type onto:Location}",julipc-p(huggingface) Which home town of PAvel Moroz is the death location of the Yakov Estrin ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Pavel_Moroz prop:hometown ?uri. res:Yakov_Estrin onto:deathPlace ?uri}",julipc-p(huggingface) What is the country whose speaker of the Dewan Rakyat is Pandikar Amin Mulia?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:leaderName . ?uri rdf:type onto:Country}",julipc-p(huggingface) "Which mainter of Cheasty Boulevard South is also the county seat of the King County, Washingtonsu ?","PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:maintainedBy ?uri. onto:countySeat ?uri}",julipc-p(huggingface) From what countries have people participated in the Excelsior Stakes?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:race . ?x onto:birthPlace ?uri . }",julipc-p(huggingface) What are the largest cities in each of the destinations of TranStar Airlines?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:TranStar_Airlines onto:destination ?x . ?x onto:largestCity ?uri . }",julipc-p(huggingface) Which writer is famous for works written by Neil Gaiman?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:writers res:Neil_Gaiman . ?uri onto:notableWork ?x . }",julipc-p(huggingface) Who all have been a president of educational institutes in Paud?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:location . ?x prop:president ?uri . ?x rdf:type onto:EducationalInstitution}",julipc-p(huggingface) Who is the developer of the software which serves the platform for King's Quest VI?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:computingPlatform ?x . ?x prop:developer ?uri . ?x rdf:type onto:Software}",julipc-p(huggingface) For which country did Alexander Lippisch design airplanes?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:designer . ?x prop:nationalOrigin ?uri . ?x rdf:type onto:Aircraft}",julipc-p(huggingface) What do the relatives of James Hartness do?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:relation res:James_Hartness . ?x prop:occupation ?uri . }",julipc-p(huggingface) Who is the appointer of William Cushing ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:William_Cushing onto:appointer ?uri }",julipc-p(huggingface) Who is the former partner of Chris Knierim ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Chris_Knierim onto:formerPartner ?uri }",julipc-p(huggingface) What is the university attended by the baseball player who's known for Olin Corporation?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:knownFor . ?x prop:education ?uri . ?x rdf:type onto:BaseballPlayer}",julipc-p(huggingface) How many different kinds of softwares have been released under the GPL license?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:license . ?x onto:genre ?uri . }",julipc-p(huggingface) What is the religion of the relatives of Carmela Soprano ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Carmela_Soprano onto:relative ?x . ?x onto:religion ?uri . }",julipc-p(huggingface) "In all the grand prixes where the first team was Scuderia Ferrari, who all were the pole drivers?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:firstTeam . ?x prop:poleDriver ?uri . ?x rdf:type onto:GrandPrix}",julipc-p(huggingface) What is the citizenship of Erastus Wiman ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Erastus_Wiman onto:citizenship ?uri }",julipc-p(huggingface) What are some awards given to the french people?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:stateOfOrigin res:French_people . ?x prop:awards ?uri . }",julipc-p(huggingface) where are the sister stations of CFRB broadcasted?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:sisterStations res:CFRB . ?x onto:broadcastArea ?uri . }",julipc-p(huggingface) "What awards have been once awarded to Ingmar Bergman, and have employed the service of Laemmle Theatres?","PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Ingmar_Bergman prop:awards ?uri. res:Laemmle_Theatres onto:service ?uri}",julipc-p(huggingface) Name the district of Robert William Wilcox ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Robert_William_Wilcox prop:district ?uri }",julipc-p(huggingface) What are the video games composed by Hirokazu Tanaka?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:composer . ?uri rdf:type onto:VideoGame}",julipc-p(huggingface) What are the academic interest of Philip Novak?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Philip_Novak prop:mainInterests ?uri }",julipc-p(huggingface) Tandem Computers is the subsidiary of which company?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:subsidiary res:Tandem_Computers }",julipc-p(huggingface) Name the mountain range in which the mountain peak of Malatraix belongs?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Malatraix onto:parentMountainPeak ?x . ?x onto:mountainRange ?uri . }",julipc-p(huggingface) What is the location of the Walter Evans Edge office which is also the place of birth of henry Miller ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Walter_Evans_Edge prop:office ?uri. res:Henry_Miller_Shreve onto:birthPlace ?uri}",julipc-p(huggingface) List down the prime ministers of Peter Thorneycroft ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Peter_Thorneycroft onto:primeMinister ?uri }",julipc-p(huggingface) What is the division of the companies who make Runes of Magic?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:products . ?x onto:division ?uri . ?x rdf:type onto:Company}",julipc-p(huggingface) List the birthplace of the medicians who studied in Harvard.,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:institution . ?x onto:birthPlace ?uri . ?x rdf:type onto:Medician}",julipc-p(huggingface) What are the movies whose director of photography is Jordan Cronenweth?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:cinematography . ?uri rdf:type onto:Film}",julipc-p(huggingface) What is the university whose affiliations is Graham Holdings Company?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:affiliations . ?uri rdf:type onto:University}",julipc-p(huggingface) What is the division of Serbia national American football team ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Serbia_national_American_football_team onto:division ?uri }",julipc-p(huggingface) How many companies are located in Toronto ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:locationCity . ?uri rdf:type onto:Company}",julipc-p(huggingface) From where is Quinn Ojinnaka billed?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Quinn_Ojinnaka prop:billed ?uri }",julipc-p(huggingface) "What are the movies whose editor died in Westwood, Los Angeles?","PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:deathPlace . ?uri onto:editing ?x . }",julipc-p(huggingface) What are the software which uses platforms as ARM architecture?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:computingPlatform . ?uri rdf:type onto:Software}",julipc-p(huggingface) Which are the comics characters painted by Bruce Timm and created by Paul Dini?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:creator . ?uri prop:creators . ?uri rdf:type onto:ComicsCharacter}",julipc-p(huggingface) Where did Jerry Tagge do his elementary schooling?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Jerry_Tagge prop:highSchool ?uri }",julipc-p(huggingface) Wo which countries have the members of Ukrainian ministry of internal affairs swore their oath?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:branch . ?x prop:allegiance ?uri . }",julipc-p(huggingface) Which rivers start at the Brower's Spring?,"PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:sourceMountain }",julipc-p(huggingface) In which movies directed by Orson Welles has Bernard Herrmann as music composer ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:musicComposer . ?uri prop:director . ?uri rdf:type onto:Film}",julipc-p(huggingface) Who is the builder of Presidio Santa Cruz de Terrenate ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Presidio_Santa_Cruz_de_Terrenate onto:builder ?uri }",julipc-p(huggingface) List all the home stadium of the soccer clubs which has one of the home stadium as Nairobi ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:homeStadium . ?x prop:homeStadium ?uri . ?x rdf:type onto:SoccerClub}",julipc-p(huggingface) What is the largest city in the country where the San Marcos River originates?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:sourceMountain ?x . ?x onto:largestCity ?uri . ?x rdf:type onto:Country}",julipc-p(huggingface) "Which musician was born in Harriman, NY?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:placeOfBirth . ?uri rdf:type onto:MusicalArtist}",julipc-p(huggingface) In which areas is the radio station broadcasted which is a sister station of WXME ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:sisterStations ?x . ?x prop:area ?uri . ?x rdf:type onto:RadioStation}",julipc-p(huggingface) How many shows are aired on Comedy Central?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:network . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) "List all the settlements which has a part named Seguin,Texas ?","PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:part . ?x onto:part ?uri . ?x rdf:type onto:Settlement}",julipc-p(huggingface) Which awards have Ingmar Bergman won?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Ingmar_Bergman prop:awards ?uri }",julipc-p(huggingface) What are the products of the company who published Robot Wars: Metal Mayhem ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:publisher ?x . ?x onto:product ?uri . ?x rdf:type onto:Company}",julipc-p(huggingface) In which state is Colemanville Covered Bridge located ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Colemanville_Covered_Bridge onto:state ?uri }",julipc-p(huggingface) Where did the partner of Teriitaria II die?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Teriitaria_II prop:spouse ?x . ?x onto:deathPlace ?uri . }",julipc-p(huggingface) Name the licensee of the TV station whose one of the licensee is Incorporation ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:licensee . ?x prop:licensee ?uri . ?x rdf:type onto:TelevisionStation}",julipc-p(huggingface) What is the company of Ford Theatre ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Ford_Theatre prop:company ?uri }",julipc-p(huggingface) "For all the senators who once studied in Sturm College of Law, give their burial place?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:almaMater . ?x prop:restingplace ?uri . ?x rdf:type onto:Senator}",julipc-p(huggingface) "Name the writer whose one of the notable work is Adventures of Huckleberry Finn and died in Redding, Connecticut?","PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:notableWork . ?uri onto:deathPlace . ?uri rdf:type onto:Writer}",julipc-p(huggingface) Which official residence of hugh Scott is also the origin of Long Rifle ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Long_rifle prop:origin ?uri. res:Hugh_Scott onto:residence ?uri}",julipc-p(huggingface) How many politicians are in the US Senate?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:order . ?uri rdf:type onto:OfficeHolder}",julipc-p(huggingface) "What is the job of the George Arceneaux, Jr. which is also the office of the Blanche Bruce","PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:occupation ?uri. prop:office ?uri}",julipc-p(huggingface) Which moto of american Classical League is also the academic discipline of Probus ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:motto ?uri. onto:academicDiscipline ?uri}",julipc-p(huggingface) List all the major shrines of the saints which has one of the shrines as Debre Libanos ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:majorShrine . ?x onto:majorShrine ?uri . ?x rdf:type onto:Saint}",julipc-p(huggingface) "Name the fictional character whose relatives are Huey, Dewey, and Louie and belongs to Duck family ?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:relatives . ?uri onto:relative . ?uri rdf:type onto:FictionalCharacter}",julipc-p(huggingface) How many bands are signed up with labels which were founded in Japan?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:foundation . ?uri prop:label ?x . ?uri rdf:type onto:Band}",julipc-p(huggingface) How many kings and queens have died in the Arabian Peninsula?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:deathPlace . }",julipc-p(huggingface) What is the bloomington viaduct built to cross?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Bloomington_Viaduct prop:crosses ?uri }",julipc-p(huggingface) How many politicians reside in Cape Town?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:residence . ?uri rdf:type onto:OfficeHolder}",julipc-p(huggingface) How many games are released for virtual consoles?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:computingPlatform . ?uri rdf:type onto:VideoGame}",julipc-p(huggingface) Saores de costa built a bridge over which river?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:builder . ?x onto:crosses ?uri . ?x rdf:type onto:Bridge}",julipc-p(huggingface) In what movies did Akira Ifukube compose the music?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:music . ?uri rdf:type onto:Film}",julipc-p(huggingface) Who is the operator of Rainbow Warrior (1955) ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:operator ?uri }",julipc-p(huggingface) List the guest of the show The Other Side (The Outer Limits)?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:guests ?uri }",julipc-p(huggingface) To which state eorge M. Chilcott belong ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:George_M._Chilcott prop:state ?uri }",julipc-p(huggingface) What are some products of the company whose parent is BBC?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:parent . ?x prop:products ?uri . ?x rdf:type onto:Company}",julipc-p(huggingface) Which producer of the Eristoff is also the distributor of Bombay Sapphire?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Eristoff prop:manufacturer ?uri. res:Bombay_Sapphire prop:distributor ?uri}",julipc-p(huggingface) How many islands belong to archipelagos located in the pacific?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:location . ?uri prop:archipelago ?x . ?uri rdf:type onto:Island}",julipc-p(huggingface) What are some video games whose music is composed by an employ of the company Creatures?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:occupation . ?uri prop:composer ?x . ?uri rdf:type onto:VideoGame}",julipc-p(huggingface) Who were in the youth clubs that were in season of 2015 Argentine Primera Division?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:season res:2015_Argentine_Primera_División . ?uri prop:youthclubs ?x . }",julipc-p(huggingface) How many units follow the US Navy Department's command structure?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:commandStructure . ?uri rdf:type onto:MilitaryUnit}",julipc-p(huggingface) Name the home Stadium of Kenya national under-20 football team ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:homeStadium ?uri }",julipc-p(huggingface) Which city do both Arthur Ross and Edward Niesen come from?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Arthur_A._Ross prop:placeOfBirth ?uri. res:Edward_Niesen onto:birthPlace ?uri}",julipc-p(huggingface) Which associat of Martin Pugh is also married to Alana Stewert ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Martin_Pugh prop:associatedActs ?uri. res:Alana_Stewart onto:spouse ?uri}",julipc-p(huggingface) How many people played for Newell's Old Boys?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:youthclubs . }",julipc-p(huggingface) Where do the stockholders of Pathaninaikos F.C. live?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:owner ?x . ?x prop:residence ?uri . }",julipc-p(huggingface) What is the common school of Chris Marve and Neria Douglass?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Chris_Marve onto:school ?uri. res:Neria_Douglass onto:almaMater ?uri}",julipc-p(huggingface) Give me the count of artist in the company whose Artist is Jean- François Coté ?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:artist . ?x prop:artist ?uri }",julipc-p(huggingface) How many bands have members currently playing the Fender Stratocaster?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:notableInstruments . ?uri prop:currentMembers ?x . ?uri rdf:type onto:Band}",julipc-p(huggingface) Who has built the stadiums which were rented by the Central american games of 2013?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:tenant . ?x onto:builder ?uri . ?x rdf:type onto:Stadium}",julipc-p(huggingface) "What has been founded in the state that Denton county, Texas is a part of? ","PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:part . ?uri onto:foundationPlace ?x . }",julipc-p(huggingface) Which politicians son is buried in Metairie Cementery?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:placeofburial . ?uri onto:child ?x . ?uri rdf:type onto:OfficeHolder}",julipc-p(huggingface) Titus software publishes which genre of games?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:publisher . ?x onto:genre ?uri . ?x rdf:type onto:VideoGame}",julipc-p(huggingface) Which fictional character's relative is Clan McDuck and belongs to American Pekin duck ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:relatives . ?uri onto:species . ?uri rdf:type onto:FictionalCharacter}",julipc-p(huggingface) Which military people served their allegiance to Union (American Civil War)?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:allegiance . ?uri rdf:type onto:MilitaryPerson}",julipc-p(huggingface) "Which border country of the Korean Peninsula is also the country of Krusty, a musical group ?","PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:border ?uri. onto:country ?uri}",julipc-p(huggingface) Mac OS is the operating system of how many things?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:operatingSystem . }",julipc-p(huggingface) What are the television shows whose Composer is Stewart Copeland?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:composer . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) List the border of the admin region which shares border with North Korea ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:border . ?x onto:border ?uri . ?x rdf:type onto:AdministrativeRegion}",julipc-p(huggingface) What is the draft team of the Antoine Bibeau and also has player named Nathan Dempsey ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Antoine_Bibeau prop:draftTeam ?uri. res:Nathan_Dempsey prop:playedFor ?uri}",julipc-p(huggingface) "Through which important cities the does the river originating from the Duwamish, flow?","PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:source . ?x onto:city ?uri . ?x rdf:type onto:River}",julipc-p(huggingface) Name the TV show whose producer is Stephen E. Ambrose and company is HBO ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:producer . ?uri onto:company . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) List the broadcast area of the TV stations which also serves in Agalga ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:broadcastArea res:Agaléga . ?x prop:broadcastArea ?uri . }",julipc-p(huggingface) Into what military organizations is the United States Department of Defense divided?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:commandStructure res:United_States_Department_of_Defense }",julipc-p(huggingface) Whose deputy is Neil Brown?,"PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:deputy . }",julipc-p(huggingface) In which broadcast area does the sister station of KFFG air ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:KFFG onto:sisterStation ?x . ?x onto:broadcastNetwork ?uri . }",julipc-p(huggingface) which astronaut's mission was Apollo 11?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:mission res:Apollo_11 }",julipc-p(huggingface) What is debut team of the baseball players who died in Los Angeles?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:deathPlace . ?x prop:debutteam ?uri . ?x rdf:type onto:BaseballPlayer}",julipc-p(huggingface) Which company owns instagram?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:subsidiary res:Instagram }",julipc-p(huggingface) List all the former partners of the figure skater whose one of the former partner was Andrea poapst ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:formerPartner . ?x onto:formerPartner ?uri . ?x rdf:type onto:FigureSkater}",julipc-p(huggingface) List all the operators of the train who operates in Budapest ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:operator . ?x onto:operator ?uri . ?x rdf:type onto:Train}",julipc-p(huggingface) What are the awards won by the producer of Puss in Boots (film)?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:producer ?x . ?x onto:award ?uri . }",julipc-p(huggingface) Which president had lieutenants whose governor was Bill Clinton?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:governor . ?uri onto:lieutenant ?x . ?uri rdf:type onto:President}",julipc-p(huggingface) Name the species of Liger ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Liger onto:species ?uri }",julipc-p(huggingface) In which state is the alma matter of Jan Paulsen located ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Jan_Paulsen onto:almaMater ?x . ?x prop:state ?uri . }",julipc-p(huggingface) How many politicians are in the militia?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:branch . }",julipc-p(huggingface) In which wars were people from the Saudi Arabian ministry of defense involved?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:office . ?x prop:battles ?uri . ?x rdf:type onto:Person}",julipc-p(huggingface) Who were the first drivers in Grand Prixes where the first team was Scuderia Ferrari?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:firstTeam . ?x onto:firstDriver ?uri . ?x rdf:type onto:GrandPrix}",julipc-p(huggingface) How many things do bridges designed by the UEM group go over?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:designer . ?x prop:crosses ?uri . }",julipc-p(huggingface) Under which US president was a politician in opposition of John G Schmitz?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:opponent . ?x onto:incumbent ?uri . ?x rdf:type onto:Politician}",julipc-p(huggingface) Whose theme music is composed by the band one of whose member is Les Claypool?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:bandMember res:Les_Claypool . ?uri prop:themeMusicComposer ?x . }",julipc-p(huggingface) Who has recorded their singles in London?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:recordedIn . ?x onto:writer ?uri . ?x rdf:type onto:Single}",julipc-p(huggingface) Who are the associated musical artist of the artists of band Shorty Rogers?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:associatedBand res:Shorty_Rogers . ?x onto:associatedMusicalArtist ?uri . }",julipc-p(huggingface) Who were the american football players who played for Dallas Cowboys?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:team . ?uri rdf:type onto:AmericanFootballPlayer}",julipc-p(huggingface) Politicians born in Bangalore are now in which parties?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:homeTown res:Bangalore . ?x onto:party ?uri . }",julipc-p(huggingface) "What is the debut team of the baseball player who was born in Williamsburg, Kansas ?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:birthPlace . ?x prop:debutteam ?uri . ?x rdf:type onto:BaseballPlayer}",julipc-p(huggingface) Name the composer of motorpsycho Nitemare ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Motorpsycho_Nitemare prop:composer ?uri }",julipc-p(huggingface) Is James Hetfield a band member of Metallica?,"PREFIX res: PREFIX onto: ASK WHERE { res:Metallica onto:bandMember res:James_Hetfield . }",julipc-p(huggingface) Stan Van Gundy serves as a head coach and president for which basketball team?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:president res:Stan_Van_Gundy }",julipc-p(huggingface) Which appliance's CPU is Cell (microprocessor) and predecessor is PlayStation 2?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:cpu . ?uri onto:predecessor . ?uri rdf:type onto:InformationAppliance}",julipc-p(huggingface) People who debuted from Houston Astros have played in which clubs?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:debutTeam . ?x onto:team ?uri . ?x rdf:type onto:Person}",julipc-p(huggingface) Radios on what topics can be tuned in to in Washington DC?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:broadcastArea . ?x onto:programmeFormat ?uri . ?x rdf:type onto:RadioStation}",julipc-p(huggingface) Give me some shows related to the ones created by Russell Davies,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:creator . ?uri onto:related ?x . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) What is the territory of the conflict whose commander is Feng Zicai?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:commander . ?x onto:territory ?uri . ?x rdf:type onto:MilitaryConflict}",julipc-p(huggingface) Name the person who was educated at Harvard-Westlake and won the Screen Actor Guild Life Achievement Award ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:almaMater . ?uri onto:award . ?uri rdf:type onto:Person}",julipc-p(huggingface) Which club of Michael Springer is also the parent organization of Syracuse University press ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Michael_Springer prop:team ?uri. res:Syracuse_University_Press prop:parent ?uri}",julipc-p(huggingface) Hugh Hefner is editor of which magazine?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:editor . ?uri rdf:type onto:Magazine}",julipc-p(huggingface) Whihc successor of McDonnell Douglas was built bu Delta 3 ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Delta_III onto:manufacturer ?uri. res:McDonnell_Douglas prop:successor ?uri}",julipc-p(huggingface) Which countries share a similar sociocultural and ethnic heritage of that of Native Indonesians?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Native_Indonesians prop:region ?uri }",julipc-p(huggingface) "What is the residence of the person, who starred in Men Will Be Men ?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:starring ?x . ?x prop:residence ?uri . ?x rdf:type onto:Person}",julipc-p(huggingface) What people are known to work for Johnny Cash?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:associatedActs . ?uri rdf:type onto:Person}",julipc-p(huggingface) "In which state is Goose Lake Valle, which is also part of Lava River Cave ?","PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Goose_Lake_Valley onto:state ?uri. res:Lava_River_Cave onto:location ?uri}",julipc-p(huggingface) Where did some of the matches take place where Columbus Crew SC played?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:team . ?x onto:location ?uri . ?x rdf:type onto:FootballMatch}",julipc-p(huggingface) How many awards have been given to Italians?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:birthPlace . ?x prop:awards ?uri . }",julipc-p(huggingface) Count the number of cities around the American Mediterranean Sea?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { prop:cities ?uri . ?uri rdf:type onto:City}",julipc-p(huggingface) List the first drivers of Grand Prixes where Mika Hakkinen was a pole driver.,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:poleDriver . ?x onto:firstDriver ?uri . ?x rdf:type onto:GrandPrix}",julipc-p(huggingface) How many movies have their music signed up with Sony Music Entertainment.,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:recordLabel . ?uri onto:musicComposer ?x . ?uri rdf:type onto:Film}",julipc-p(huggingface) What are the television shows whose network is BBC HD?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:network . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) "To which party does the politician belong, who was born in Nandurbar?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:placeOfBirth . ?x onto:party ?uri . ?x rdf:type onto:Politician}",julipc-p(huggingface) Name the people who were in a youth club managed by Luis Enrique ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:manager . ?uri prop:youthclubs ?x . }",julipc-p(huggingface) What is the local authority of Liverpool Institute High School for Boys ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Liverpool_Institute_High_School_for_Boys onto:localAuthority ?uri }",julipc-p(huggingface) What is the destinations of the airline whose headquarters is in Manchester?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:headquarters . ?x prop:destinations ?uri . ?x rdf:type onto:Airline}",julipc-p(huggingface) who married crystal harris?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:spouse res:Crystal_Harris . }",julipc-p(huggingface) Which job of Irving Chernev is the non-fiction subject of the Thud ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:occupation ?uri. onto:nonFictionSubject ?uri}",julipc-p(huggingface) Who gave the voice to the characters sculpted by Clamp?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:creator . ?x onto:voice ?uri . ?x rdf:type onto:FictionalCharacter}",julipc-p(huggingface) Where are the tombs of kings and queens who have died in England?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:placeOfDeath . ?x prop:placeOfBurial ?uri . ?x rdf:type onto:Royalty}",julipc-p(huggingface) Who are the people whose alumna is a part of the National Collegiate Athletic Association?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:athletics res:National_Collegiate_Athletic_Association . ?uri prop:education ?x . }",julipc-p(huggingface) On what subject does WTJC-LP air?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:format ?uri }",julipc-p(huggingface) Name the television show whose voice is given by April Stewart and it's distributor is Broadcast syndication?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:voices . ?uri onto:distributor . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) "In which city is the building, whose part is the Martin AN/FSG1 anti aircraft system?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:part . ?x prop:district ?uri . ?x rdf:type onto:Building}",julipc-p(huggingface) Who wrote A house not meant to stand and Akale?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:A_House_Not_Meant_to_Stand prop:writer ?uri. res:Akale onto:writer ?uri}",julipc-p(huggingface) Who managed England national under-20 football team and Middlesbrough F.C.?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:managerclubs . ?uri onto:managerClub . }",julipc-p(huggingface) Who developed the software which is used as operating system of Magic Trackpad ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:operatingSystem ?x . ?x prop:developer ?uri . ?x rdf:type onto:Software}",julipc-p(huggingface) Who produced the TV shows for Fremantle Media?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:company . ?x onto:producer ?uri . ?x rdf:type onto:TelevisionShow}",julipc-p(huggingface) What is the home stadium of the soccer club seasons whose chairman is Merritt Paulson?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:chairman . ?x onto:homeStadium ?uri . ?x rdf:type onto:SoccerClubSeason}",julipc-p(huggingface) In which state is Dorchester Bay (Boston Harbor) ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:state ?uri }",julipc-p(huggingface) Name the veneration of the monarch who is the predecessor of Solomon?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:predecessor ?x . ?x prop:veneratedIn ?uri . ?x rdf:type onto:Monarch}",julipc-p(huggingface) Who was the director of photography of Mickey's Mellerdrammer and the animator of Tommy Tucker's Tooth?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:cinematography ?uri. prop:animator ?uri}",julipc-p(huggingface) Who is the builder of Estadio Nacional de Costa Rica and also location of Xianren Cave ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:builder ?uri. onto:country ?uri}",julipc-p(huggingface) Which distributer of Glover (video game) is also the publisher of the Super Mario Adventures ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:distributor ?uri. prop:publisher ?uri}",julipc-p(huggingface) How many movies did Michael Deeley produce?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:producer . ?uri rdf:type onto:Film}",julipc-p(huggingface) Who is a famous relative of Aaround Van Heemstra?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:relative . ?uri rdf:type onto:Person}",julipc-p(huggingface) What awards have been given to the anyone who raced in the Lawrence Realization Stakes?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:race res:Lawrence_Realization_Stakes . ?x onto:honours ?uri . }",julipc-p(huggingface) How many battles have involved commanders of 1st Free French Division?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { prop:notableCommanders ?x . ?x prop:battles ?uri . }",julipc-p(huggingface) How many areas are led by Willem Alexander?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:leader . }",julipc-p(huggingface) Name the movie in which Vangelis gave the music and Jordan was the cinematographer ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:music . ?uri onto:cinematography . ?uri rdf:type onto:Film}",julipc-p(huggingface) In how many places are the companies founded in Canada operating?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:foundationPlace . ?x prop:locations ?uri . }",julipc-p(huggingface) Count the number of movies whose editors were born in UK?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:birthPlace . ?uri prop:editing ?x . ?uri rdf:type onto:Film}",julipc-p(huggingface) Which countries were led by Pietro Parolin?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:leader . ?uri rdf:type onto:Country}",julipc-p(huggingface) List the sports played in private universities.,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:type res:Private_university . ?x onto:sport ?uri . }",julipc-p(huggingface) "Who is the performer of album which has the song ""To Where You Are"" ?","PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:To_Where_You_Are onto:album ?x . ?x onto:artist ?uri . }",julipc-p(huggingface) How many companies were founded in places where Dallas is the governing body ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:governingBody . ?uri onto:foundationPlace ?x . ?uri rdf:type onto:Company}",julipc-p(huggingface) What Orson Welles directed movie has photography director as Gregg Toland ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:cinematography . ?uri prop:director . ?uri rdf:type onto:Film}",julipc-p(huggingface) Who founded the city at the end of the Pittsburgh Line route?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Pittsburgh_Line onto:routeEnd ?x . ?x onto:founder ?uri . }",julipc-p(huggingface) Name the hubs of the airlines whose headquarters is in the Subang Interchange?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:headquarters . ?x prop:hubs ?uri . ?x rdf:type onto:Airline}",julipc-p(huggingface) Name the television show whose network is TNT (TV channel) and Prime Time Entertainment Network?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:network . ?uri onto:network . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) List the honorary title given to the spouse of Lillian Disney ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Lillian_Disney prop:spouse ?x . ?x onto:award ?uri . }",julipc-p(huggingface) How many games have a publisher based in US?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:location . ?uri onto:publisher ?x . ?uri rdf:type onto:VideoGame}",julipc-p(huggingface) "Where does the rail route, which ends at the Moskovsky station, begins?","PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:routeEnd . ?x onto:routeStart ?uri . }",julipc-p(huggingface) How many people have played for the NBA?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:league . }",julipc-p(huggingface) Name the musician who gave the music in Tonight's the night and is also wedded to Alana Stewart ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:music ?uri. onto:spouse ?uri}",julipc-p(huggingface) What is the nationality of the golf player who won the 2002 Players Championship ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:champion ?x . ?x onto:nationality ?uri . ?x rdf:type onto:GolfPlayer}",julipc-p(huggingface) Which builder of Edwin Andrews Air Base isalso place of birth of the Akinoumi Setsuo ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Edwin_Andrews_Air_Base onto:builder ?uri. res:Akinoumi_Setsuo prop:placeOfBirth ?uri}",julipc-p(huggingface) How many labels sign up progressive rock artists?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:genre . ?x onto:recordLabel ?uri . }",julipc-p(huggingface) Which continents can be reached by flight companies available on Gatwick Airport?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:targetAirport . ?x prop:destinations ?uri . ?x rdf:type onto:Airline}",julipc-p(huggingface) "Where is Benjamin Franklin Terry buried, and US Route 59 has a junction?","PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Benjamin_Franklin_Terry prop:placeofburial ?uri. res:U.S._Route_59_in_Texas prop:junction ?uri}",julipc-p(huggingface) Who are some authoritative persons on the matter of Megabalanus concinnus?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Megabalanus_concinnus onto:binomialAuthority ?uri }",julipc-p(huggingface) Where the club of Kiki Cutter located?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Kiki_Cutter prop:club ?x . ?x onto:location ?uri . }",julipc-p(huggingface) List the awards won by the wife of Ingrid von Rosen.,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Ingrid_von_Rosen prop:spouse ?x . ?x prop:awards ?uri . }",julipc-p(huggingface) Which current Michigan Wolverines team member debuted in Chicago Bears ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:debutteam res:Chicago_Bears . ?uri prop:currentteam res:Michigan_Wolverines . }",julipc-p(huggingface) List the movie whose music was given by Geoffrey Burgon and distributed by Cinema International Corporation?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:musicComposer . ?uri onto:distributor . ?uri rdf:type onto:Film}",julipc-p(huggingface) Which musical artists have collaborated with Waylon Jennings?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:associatedMusicalArtist . ?uri rdf:type onto:MusicalArtist}",julipc-p(huggingface) What is the Nickname of the school where Jeff Hornacek studied ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:highschool ?x . ?x prop:nickname ?uri . ?x rdf:type onto:School}",julipc-p(huggingface) Where did the people canonized by John Paul II die?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:canonizedBy res:Pope_John_Paul_II . ?x prop:deathPlace ?uri . }",julipc-p(huggingface) Who is the owner of Ford Motor Credit comapny which is also the builder of FORD SHO V8 engine ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Ford_Motor_Credit_Company prop:owner ?uri. res:Ford_SHO_V8_engine onto:manufacturer ?uri}",julipc-p(huggingface) Count the different genres of games published by Titus Software,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:publisher . ?x onto:genre ?uri . }",julipc-p(huggingface) Who has produced movies that have a James Horner score?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:music . ?x prop:producer ?uri . ?x rdf:type onto:Film}",julipc-p(huggingface) Which movie produced by Michael Deeley was distributed by Warner Bros ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:distributor . ?uri prop:producer . ?uri rdf:type onto:Film}",julipc-p(huggingface) Name the person whose daughter is Rohan Marley and also another children named Sharon Marley ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:child . ?uri prop:children . ?uri rdf:type onto:Person}",julipc-p(huggingface) Which shows are voiced be US citizens?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:stateOfOrigin . ?uri prop:voices ?x . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) "Count the different places where the people died, who were born in England?","PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:placeOfBirth . ?x prop:placeOfDeath ?uri . }",julipc-p(huggingface) What are some relatives of Battle of the Bulge veterans?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:battles . ?x onto:relation ?uri . ?x rdf:type onto:MilitaryPerson}",julipc-p(huggingface) How many different genres of games are produced by Blizzard?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:developer . ?x prop:genre ?uri . }",julipc-p(huggingface) "Which tennis players live in Kenthurst, new south wales?","PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:residence . ?uri rdf:type onto:TennisPlayer}",julipc-p(huggingface) "How many things are located in Ridgewood, New Jersey?","PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:birthPlace . }",julipc-p(huggingface) Name the sea whose inflow is Kemijoki and outflow is Danish straits?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:inflow . ?uri prop:outflow . ?uri rdf:type onto:Sea}",julipc-p(huggingface) What award was won by executive producer of Shaun the Sheep?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Shaun_the_Sheep onto:executiveProducer ?x . ?x onto:award ?uri . }",julipc-p(huggingface) What is the operator of SR class 3Sub ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:SR_class_3Sub onto:operator ?uri }",julipc-p(huggingface) Which key person of the Clinton Foundation is also the president of Edward J. Perkins ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Edward_J._Perkins onto:president ?uri. res:Clinton_Foundation prop:keyPeople ?uri}",julipc-p(huggingface) Name the royalty whose daughter was Cleopatra V and was married to Ptolemy XIV of Egypt?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:mother . ?uri onto:spouse . ?uri rdf:type onto:Royalty}",julipc-p(huggingface) How many times has Jeff Conaway been casted?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:starring . }",julipc-p(huggingface) who are some miss michigan usa?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:title res:Miss_Michigan_USA . }",julipc-p(huggingface) "What nicknames do the universities in Norton, Massachusetts have?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:city . ?x prop:nickname ?uri . ?x rdf:type onto:University}",julipc-p(huggingface) Which license of the Microsoft Office Picture Manager is also the product of the Apple Productivity Experience Group ,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Microsoft_Office_Picture_Manager onto:license ?uri. res:Apple_Productivity_Experience_Group onto:product ?uri}",julipc-p(huggingface) What is the regional radio sports network associated with?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Regional_Radio_Sports_Network prop:affiliations ?uri }",julipc-p(huggingface) List the destinations of the airlines which also serves Mediterranean Sea ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:destinations . ?x prop:destinations ?uri . ?x rdf:type onto:Airline}",julipc-p(huggingface) Which fictional character's portrayer was edited by Roger Barton?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:editing . ?uri onto:portrayer ?x . ?uri rdf:type onto:FictionalCharacter}",julipc-p(huggingface) What can be cooked out of things belonging to the order Sapindales?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:order res:Sapindales . ?uri onto:ingredient ?x . }",julipc-p(huggingface) What is the birth place of the children of Miguel Garca Granados ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Miguel_García_Granados prop:children ?x . ?x onto:birthPlace ?uri . }",julipc-p(huggingface) List the fields of Sylvain Lvi ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Sylvain_Lévi prop:fields ?uri }",julipc-p(huggingface) "List the primeministers of Victor Hope, 2nd Marquess of Linlithgow ?","PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:primeminister ?uri }",julipc-p(huggingface) Where do the airlines garrisoned at Manchester airport fly to?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:headquarter . ?x prop:destinations ?uri . ?x rdf:type onto:Airline}",julipc-p(huggingface) What all is owned by a company one of whose division is Paramount Domestic Television?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:division res:Paramount_Domestic_Television . ?uri prop:company ?x . }",julipc-p(huggingface) Name the language of I Love How You Love Me ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:I_Love_How_You_Love_Me prop:language ?uri }",julipc-p(huggingface) Count the number of places where alumini of Edinburgh university have died?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:education . ?x onto:deathPlace ?uri . }",julipc-p(huggingface) Which label released the movie written by Thomas Meehan?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:writer . ?x prop:label ?uri . ?x rdf:type onto:Film}",julipc-p(huggingface) What is the venue of Indy PopCon ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Indy_PopCon prop:venue ?uri }",julipc-p(huggingface) Who are the associate musical artists of Dalma Kovcs ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Dalma_Kovács onto:associatedMusicalArtist ?uri }",julipc-p(huggingface) What is the common religious affiliation of the Wickramabahu Central College (National School) and that of Vesak?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:religiousAffiliation ?uri. onto:type ?uri}",julipc-p(huggingface) Name a person whose sucessor was Adrian A. basora and was educated at Harvard-Westlake School?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:almaMater . ?uri prop:successor . ?uri rdf:type onto:Person}",julipc-p(huggingface) Name the other party of Chandra Shekhar ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Chandra_Shekhar onto:otherParty ?uri }",julipc-p(huggingface) How many movies have had a cinematographer who died in US?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:deathPlace . ?uri prop:cinematography ?x . ?uri rdf:type onto:Film}",julipc-p(huggingface) Which cities were in the TV Show which came after The Ultimate Fighter: Brazil 2?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:subsequentWork ?x . ?x prop:city ?uri . ?x rdf:type onto:TelevisionShow}",julipc-p(huggingface) What actor of Le Cirque is a relative of Maryanne Trump barry?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Le_Cirque:_A_Table_in_Heaven prop:starring ?uri. res:Maryanne_Trump_Barry onto:relation ?uri}",julipc-p(huggingface) Who is the label of The Producers (2005 film) ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:label ?uri }",julipc-p(huggingface) Which nearest city of LoDaisKa Site is also the location of Oskar Blues Brewery ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:LoDaisKa_Site onto:nearestCity ?uri. res:Oskar_Blues_Brewery prop:location ?uri}",julipc-p(huggingface) Count the number of different religions that field marshals have followed?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:militaryRank . ?x onto:religion ?uri . }",julipc-p(huggingface) Count the awards given to the recepients of the Becket fund for religious liberty.,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:award . ?x prop:awards ?uri . }",julipc-p(huggingface) Which river flows through Central Washington?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Central_Washington onto:river ?uri }",julipc-p(huggingface) List all the narrator of the albums which had Alan Barzman as one of the narrator ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:narrated . ?x prop:narrated ?uri . ?x rdf:type onto:Album}",julipc-p(huggingface) People born in Saint-Amand-en-Puisaye are famous for what things ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:birthPlace . ?x prop:knownFor ?uri . }",julipc-p(huggingface) "Which founder of European School, karlsruhe is also the jursdiction of Eurpoean Border of Coast guard ?","PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:jurisdiction ?uri. prop:founder ?uri}",julipc-p(huggingface) What cars were built upon the cars which were assembled in Canada?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:assembly . ?x onto:predecessor ?uri . ?x rdf:type onto:Automobile}",julipc-p(huggingface) How many religions are followed by the people in the Royal Thai Army?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:militaryBranch . ?x onto:religion ?uri . }",julipc-p(huggingface) Which politicians live in a city led by T.S. Thakur?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:leader res:T._S._Thakur . ?uri onto:residence ?x . }",julipc-p(huggingface) How many guests have been there on broadway?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { prop:guests ?uri . }",julipc-p(huggingface) "List the significant buildings of the arch. whose one of the important work is Government Building, Kiev ?","PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:significantBuilding . ?x onto:significantBuilding ?uri . ?x rdf:type onto:Architect}",julipc-p(huggingface) Count everything garrisoned at the pentagon?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:garrison . }",julipc-p(huggingface) What common relegion affiliation exists for udit Raj and Wickramabahu Central College ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:religion ?uri. prop:religiousAffiliation ?uri}",julipc-p(huggingface) What is the city of the 2015 MLS All-Star Game and birthplace of the The Okee Dokee Brothers,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:city ?uri. onto:birthPlace ?uri}",julipc-p(huggingface) How many people were opponents of the ones buried in the tower of London?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:restingPlace . ?x onto:opponent ?uri . ?uri rdf:type onto:Person}",julipc-p(huggingface) Count all the places where companies located in Ontario operate.,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:locationCity . ?x prop:locations ?uri . }",julipc-p(huggingface) "What is the river whose origin is North-Western Province, Zambia?","PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:sourceRegion }",julipc-p(huggingface) How many factions have fought when Egushawa was a commander?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:commander . ?x prop:combatant ?uri . }",julipc-p(huggingface) What is the honorary title of the narrator of Everything Will Be OK?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Everything_Will_Be_OK onto:narrator ?x . ?x onto:award ?uri . }",julipc-p(huggingface) What is the layout of the automobiles designed by Olivier Boulay?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:designer . ?x onto:layout ?uri . ?x rdf:type onto:Automobile}",julipc-p(huggingface) "What people were born in Ridgewood, New Jersey?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:birthPlace . ?uri rdf:type onto:Person}",julipc-p(huggingface) Which content license of the MSX BASIC is also the profession of the Laura K. Ipsen ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:MSX_BASIC prop:license ?uri. res:Laura_K._Ipsen onto:occupation ?uri}",julipc-p(huggingface) Which predecessor of the PlayStation 4 is also the developer of Oddworld: Munch's Oddysee?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:predecessor ?uri. onto:developer ?uri}",julipc-p(huggingface) Who is the appointer of Charles Goodell ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Charles_Goodell onto:appointer ?uri }",julipc-p(huggingface) Which distributer of Glover is also the stockholde of Seattle Mariners ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:distributor ?uri. onto:owner ?uri}",julipc-p(huggingface) Name the person whose mother name is Cedella Booker and has a son named Sharon Marley?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:parent . ?uri prop:children . ?uri rdf:type onto:Person}",julipc-p(huggingface) Name the Chris Marve's school ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Chris_Marve onto:school ?uri }",julipc-p(huggingface) List the websites which the authors of Tornado own ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:author ?x . ?x onto:owner ?uri . }",julipc-p(huggingface) What are the movies whose music composer is Akira Ifukube?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:musicComposer . ?uri rdf:type onto:Film}",julipc-p(huggingface) Which military personnel belong to the branch of Continental Army?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:militaryBranch res:Continental_Army }",julipc-p(huggingface) Who have rented the stadium operated by Maple Leaf S&E?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:operator . ?x onto:tenant ?uri . ?x rdf:type onto:Stadium}",julipc-p(huggingface) Which holy things canonized John of Damascus?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:John_of_Damascus onto:canonizedBy ?uri }",julipc-p(huggingface) Solon Spencer Beman has architected in how many cities?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:architect . ?x prop:locationTown ?uri . ?uri rdf:type onto:City}",julipc-p(huggingface) What are the main interests of Timothy Morton?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Timothy_Morton prop:mainInterests ?uri }",julipc-p(huggingface) Name someone known for a project involved in the Occupation of Japan?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:battle res:Occupation_of_Japan . ?uri prop:knownFor ?x . }",julipc-p(huggingface) Count all those who previously played for a team which ownes Varsity Stadium ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:field . ?uri onto:formerTeam ?x . }",julipc-p(huggingface) Name the sea with Helsinki as one of the shore city and is also an outflow for Danish straits?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:cities . ?uri prop:outflow . ?uri rdf:type onto:Sea}",julipc-p(huggingface) Count the awards won by the people who graduated from the National and Kapodistrian University of Athens.,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:almaMater . ?x onto:award ?uri . }",julipc-p(huggingface) What awards have been given to the dude who made Shaun the Sheep?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:notableworks . ?x onto:award ?uri . ?x rdf:type onto:Person}",julipc-p(huggingface) "Name the office holders whose successor died in Morristown, New Jersey?","PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:deathPlace . ?uri onto:successor ?x . ?uri rdf:type onto:OfficeHolder}",julipc-p(huggingface) What are the movies with Daniel Waters as screenwriter?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:screenplay . ?uri rdf:type onto:Film}",julipc-p(huggingface) Which awards are presented by the committee located in Stockholm?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:headquarters res:Stockholm . ?uri onto:presenter ?x . }",julipc-p(huggingface) What is the common product of the Apple Productivity Experience Group and services of the 21Vianet ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Apple_Productivity_Experience_Group onto:product ?uri. res:21Vianet prop:services ?uri}",julipc-p(huggingface) Who are the tenants of MasterCard Centre?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:MasterCard_Centre prop:tenants ?uri }",julipc-p(huggingface) Count the area of the radio stations whose serves in South Carolina ?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:area . ?x prop:area ?uri }",julipc-p(huggingface) How many games are played at universities affiliated with the Association of Southeast Asian Institutions of Higher Learning?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:affiliation . ?x onto:sport ?uri . }",julipc-p(huggingface) Which adminstrative region of Lawrence F. Cafero is also the resting place of Samuel Keeler ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Lawrence_F._Cafero onto:region ?uri. res:Samuel_Keeler onto:restingPlace ?uri}",julipc-p(huggingface) Who studied in universities located in suburbs?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:campus res:Suburb . ?uri prop:education ?x . }",julipc-p(huggingface) List down the cinematographers of Mickey's Mellerdrammer?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:cinematography ?uri }",julipc-p(huggingface) List the relative of Tim Nanai-Williams ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:relative ?uri }",julipc-p(huggingface) Who are the judges of the television show whose anchor is Josh Groban?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:presenter . ?x prop:judges ?uri . ?x rdf:type onto:TelevisionShow}",julipc-p(huggingface) What all are written in the C programming language?,"PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:programmingLanguage }",julipc-p(huggingface) What are the artists that have been in the band Framptons camel?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:associatedActs . ?uri rdf:type onto:Artist}",julipc-p(huggingface) Count the number of artists in the Cirque du Soleil discography?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { prop:artist ?uri . }",julipc-p(huggingface) By which companies is RENFE Class 333 designed?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:RENFE_Class_333 onto:designer ?uri }",julipc-p(huggingface) Which are the previous broadcast networks of sister channels of WGBC?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:sisterStations ?x . ?x onto:formerBroadcastNetwork ?uri . }",julipc-p(huggingface) What are the movies whose director is Orson Welles?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:director . ?uri rdf:type onto:Film}",julipc-p(huggingface) What is the religion of character of Janice Soprano from The Soprano television show?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Janice_Soprano onto:religion ?uri }",julipc-p(huggingface) which planet was discovered by Urbain Le Verrier?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:discoverer res:Urbain_Le_Verrier }",julipc-p(huggingface) ?What are the airline hubs of Cascade Airways,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Cascade_Airways prop:hubs ?uri }",julipc-p(huggingface) Where did the editor of Charlie Mensuel die ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Charlie_Mensuel prop:editor ?x . ?x prop:placeOfDeath ?uri . }",julipc-p(huggingface) Name the chairman of the soccer club for which Mike Salmon currently plays?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:currentclub ?x . ?x prop:chairman ?uri . ?x rdf:type onto:SoccerClub}",julipc-p(huggingface) Which Harris County based company is a subsidiary of Tandem Computers?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:locationCity . ?uri onto:subsidiary . ?uri rdf:type onto:Company}",julipc-p(huggingface) "What sport is Eric Schiller known for, and employes Craig Van Tibury?","PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Eric_Schiller onto:knownFor ?uri. res:Craig_Van_Tilbury onto:occupation ?uri}",julipc-p(huggingface) How many rivers are crossed by different Box Girder bridges?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:design . ?x prop:crosses ?uri . ?uri rdf:type onto:River}",julipc-p(huggingface) Which Monty Python's movie is distributed by Cinema International Corporation ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:writer . ?uri prop:distributor . ?uri rdf:type onto:Film}",julipc-p(huggingface) Count the number of members of the organization which have Austria as one of the member ?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:membership . ?x prop:membership ?uri }",julipc-p(huggingface) List the other members of the team where Jason Hayne currently plays?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:currentMember . ?x prop:name ?uri . ?x rdf:type onto:OrganisationMember}",julipc-p(huggingface) Who is married to Susan Weber Soros?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:spouse res:Susan_Weber_Soros . }",julipc-p(huggingface) list the producer of the movies in which Rosemarie DeWitt in the star cast?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:starring . ?x prop:producer ?uri . ?x rdf:type onto:Film}",julipc-p(huggingface) "Which political party of Arunachal Pradesh Legislative Assembly election, 2014 was the leader of Rishikesh ?","PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:party ?uri. onto:leaderName ?uri}",julipc-p(huggingface) How many groups have fought in wars where Richard Taylor fought too?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { prop:battles ?x . ?x prop:combatant ?uri . ?x rdf:type onto:MilitaryConflict}",julipc-p(huggingface) To which settlement does Elliot Bay belong to?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Elliott_Bay prop:cities ?uri }",julipc-p(huggingface) What are the albums whose artists have performed with the Tangerine Dream?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:associatedBand . ?uri prop:artist ?x . ?uri rdf:type onto:Album}",julipc-p(huggingface) Name the river on Batoka Gorge Hydroelectric Power Station ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Batoka_Gorge_Hydroelectric_Power_Station onto:river ?uri }",julipc-p(huggingface) Which people are known for appearing on the television show Dragon's Den?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:knownFor . ?uri rdf:type onto:Person}",julipc-p(huggingface) What university campuses are situated in Indiana?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:campus . ?uri rdf:type onto:University}",julipc-p(huggingface) Who is the authority of Maine School of Science and Mathematics ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Maine_School_of_Science_and_Mathematics onto:authority ?uri }",julipc-p(huggingface) List some writers which speak one of the Germanic languages.,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:languageFamily . ?uri prop:language ?x . ?uri rdf:type onto:Writer}",julipc-p(huggingface) What are some awards given to people who were born in sweden?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:birthPlace . ?x prop:awards ?uri . ?x rdf:type onto:Person}",julipc-p(huggingface) ITV employes how many people?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:employer . }",julipc-p(huggingface) Name some schools with a bison as their mascot?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:mascot . ?uri rdf:type onto:School}",julipc-p(huggingface) What has Carl Sagan written his books about?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:author . ?x prop:subject ?uri . ?x rdf:type onto:Book}",julipc-p(huggingface) In which state does the university which is the alma mater of Mateusz Morawiecki lie?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:almaMater ?x . ?x prop:state ?uri . ?x rdf:type onto:University}",julipc-p(huggingface) Who is the owner of the bank where Thomas Secunda works ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:occupation ?x . ?x prop:owner ?uri . ?x rdf:type onto:Bank}",julipc-p(huggingface) What are some US citizens famous for?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:nationality res:United_States . ?x onto:knownFor ?uri . }",julipc-p(huggingface) Who founded a company which served Mid Wales ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:regionServed res:Mid_Wales . ?x onto:foundedBy ?uri . }",julipc-p(huggingface) British people have edited which movies?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:birthPlace . ?uri prop:editing ?x . ?uri rdf:type onto:Film}",julipc-p(huggingface) Who is the leader of the town where the Myntdu river originates?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:origin ?x . ?x onto:leaderName ?uri . ?x rdf:type onto:Town}",julipc-p(huggingface) List the home town of the bands whose label is Alive Naturalsound Records ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:label . ?x onto:hometown ?uri . ?x rdf:type onto:Band}",julipc-p(huggingface) Which broad cast area od CFRX is the country of North America Poker Tour ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:CFRX onto:broadcastArea ?uri. res:North_American_Poker_Tour onto:country ?uri}",julipc-p(huggingface) List the subsequent work of the albums whose one of the subsequent work is Planet Waves?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:subsequentWork . ?x onto:subsequentWork ?uri . ?x rdf:type onto:Album}",julipc-p(huggingface) Name some basketball players whose team is coached by Fred Hoiberg?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:coach . ?uri prop:team ?x . ?uri rdf:type onto:BasketballPlayer}",julipc-p(huggingface) Give me some administrators of bridges over which cars can go?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:carries . ?x onto:maintainedBy ?uri . ?x rdf:type onto:Bridge}",julipc-p(huggingface) Who are some US colonels?,"PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:rank . }",julipc-p(huggingface) Where did Meg McGuffin graduated ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Meg_McGuffin onto:education ?uri }",julipc-p(huggingface) Count the different alma maters of people employed by the CNN,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:employer . ?x onto:almaMater ?uri . }",julipc-p(huggingface) What are the awards won by the person who is an authority of Latania verschaffeltii ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:binomialAuthority ?x . ?x prop:awards ?uri . ?x rdf:type onto:Person}",julipc-p(huggingface) Where did Steve Romeo dies ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Steve_Romeo onto:deathPlace ?uri }",julipc-p(huggingface) How many universities are in the National Collegiate Athletic Association?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:athletics . }",julipc-p(huggingface) Which company developed the language designed by Lars Bak?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:designer . ?x prop:developer ?uri . ?x rdf:type onto:Language}",julipc-p(huggingface) What is the mascot of the army unit whose commander is Peter Cosgrove ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:commander . ?x prop:mascot ?uri . ?x rdf:type onto:MilitaryUnit}",julipc-p(huggingface) What is the common citizenship between JSM Hopoer and Robert Valentine ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:citizenship ?uri. onto:country ?uri}",julipc-p(huggingface) Which religion followers are the members of Janata Dal?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:party res:Janata_Dal . ?x onto:religion ?uri . }",julipc-p(huggingface) Where are INKAS located which is also the state of origin for Jojo Chintoh ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Jojo_Chintoh onto:stateOfOrigin ?uri. res:INKAS prop:locations ?uri}",julipc-p(huggingface) What is the workplace of Christopher S. Stewart ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Christopher_S._Stewart prop:employer ?uri }",julipc-p(huggingface) What are some things people born in Louisiana are famous for?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:placeOfBirth . ?x prop:knownFor ?uri . }",julipc-p(huggingface) Where did Fort Lauderdale Strikers season of 16 take place?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:2016_Fort_Lauderdale_Strikers_season onto:ground ?uri }",julipc-p(huggingface) "Who is the founder of Hohenau, Paraguay?","PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:founder ?uri }",julipc-p(huggingface) Who gave the musical score of 9 to 5 (musical) ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:musicBy ?uri }",julipc-p(huggingface) Who are the spouse of the actors of Wrongfully Accused?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Wrongfully_Accused onto:starring ?x . ?x onto:spouse ?uri . }",julipc-p(huggingface) Count all that was built by a company whose leader is Kazuo Hirai?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:keyPeople . ?uri onto:manufacturer ?x . }",julipc-p(huggingface) Which producer of Wizards and the aliens is also the notable work of russell T Davies ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Wizards_vs_Aliens onto:producer ?uri. res:Russell_T_Davies onto:notableWork ?uri}",julipc-p(huggingface) Which coach of England national under 21 footbal team is also the coach of Aston Villa F.C season ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:coach ?uri. prop:name ?uri}",julipc-p(huggingface) For which band did Dave Hollister perform in the past?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:pastMembers res:Dave_Hollister }",julipc-p(huggingface) Name the scientist who is known for inventing Anthrax and was a member of Royal Society?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:knownFor . ?uri prop:prizes . ?uri rdf:type onto:Scientist}",julipc-p(huggingface) Which show developed by Brain Graden has theme music composed by Primus ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:developer . ?uri prop:themeMusicComposer . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) Which builder has made concrete bridges?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:material . ?x onto:builder ?uri . ?x rdf:type onto:Bridge}",julipc-p(huggingface) What is the serving railway line of Rostov-Glavny ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:servingRailwayLine ?uri }",julipc-p(huggingface) How many different products are there of the companies located in the US?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:location . ?x onto:product ?uri . }",julipc-p(huggingface) What is that river whose source gets water from the Shannon cave?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:inflow . ?uri onto:source ?x . ?uri rdf:type onto:River}",julipc-p(huggingface) "How many licensee are there, of the radio stations whose area is Nashville, Tennessee ?","PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:area . ?x prop:licensee ?uri . }",julipc-p(huggingface) What is the allegiance of the Albert Kwesi Ocran and state of origin of the Jojo Chintoh ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Albert_Kwesi_Ocran prop:allegiance ?uri. res:Jojo_Chintoh onto:stateOfOrigin ?uri}",julipc-p(huggingface) Who is the headcoach of 2008-09 Marquette Golden Eagles men's basketball team ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:headcoach ?uri }",julipc-p(huggingface) Who is the vice president of Jared Bernstein ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Jared_Bernstein onto:vicePresident ?uri }",julipc-p(huggingface) What is the name of the information appliance by sony whose predecessor is PlayStation 2?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:manufacturer . ?uri prop:predecessor . ?uri rdf:type onto:InformationAppliance}",julipc-p(huggingface) Who is the monarch of Bertalan Szemere ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Bertalan_Szemere onto:monarch ?uri }",julipc-p(huggingface) What is the place of birth of Lauren Briggs ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Lauren_Briggs prop:placeOfBirth ?uri }",julipc-p(huggingface) Players from how many teams have participated in the National Hockey League?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:league . ?x onto:team ?uri . ?uri rdf:type onto:SportsTeam}",julipc-p(huggingface) What are some causes of death of European Americans?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:ethnicity res:European_Americans . ?x onto:deathCause ?uri . }",julipc-p(huggingface) What is the order of the Omar D. Conger where Robert Sarvis was also the nominee ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Omar_D._Conger prop:order ?uri. res:Robert_Sarvis onto:nominee ?uri}",julipc-p(huggingface) Which hockey team is coached by mike babcock?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:headCoach . ?uri rdf:type onto:HockeyTeam}",julipc-p(huggingface) Which battle of Khalid bin Sultan was also the conflict of Steve Buyer ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Khalid_bin_Sultan prop:battles ?uri. res:Steve_Buyer onto:battle ?uri}",julipc-p(huggingface) What are the movies whose editor is Robert Wise?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:editing . ?uri rdf:type onto:Film}",julipc-p(huggingface) List the music of Open House (American Horror Story)?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:music ?uri }",julipc-p(huggingface) What are the television shows whose network's sister station is BBC Two?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:sisterStation . ?uri onto:network ?x . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) Where did the narrators of the Championship snooker die?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Championship_Snooker prop:narrated ?x . ?x onto:deathPlace ?uri . }",julipc-p(huggingface) What are the relatives of the rugby player one of whose relatives is Nick Williams?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:relatives . ?x onto:relative ?uri . ?x rdf:type onto:RugbyPlayer}",julipc-p(huggingface) Who is the performer of Bengali in Platforms ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Bengali_in_Platforms onto:artist ?uri }",julipc-p(huggingface) What are some families of mammals in the animal kingdom?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:kingdom . ?x onto:family ?uri . ?x rdf:type onto:Mammal}",julipc-p(huggingface) Where is the headquarters of the public transit system which owns the American Boulevard (Metro Transit station) located ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:owningOrganisation ?x . ?x prop:headquarters ?uri . ?x rdf:type onto:PublicTransitSystem}",julipc-p(huggingface) How many things are people who died in St. Petersburg known for?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:deathPlace . ?x onto:knownFor ?uri . }",julipc-p(huggingface) List down the important people of The Elders ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:keyPeople ?uri }",julipc-p(huggingface) Which TV show's executive producer is Douglas Netter and composed by Stewart Copeland ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:executiveProducer . ?uri prop:composer . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) Name the rivers which originate from within Pittsburg?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:cities . ?uri onto:source ?x . ?uri rdf:type onto:River}",julipc-p(huggingface) In how many nations is Coconut a common food ingredient?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:ingredient . ?x prop:country ?uri . ?uri rdf:type onto:Country}",julipc-p(huggingface) Where do the rivers from greater London flow into?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:sourceRegion . ?x prop:mouthLocation ?uri . ?x rdf:type onto:River}",julipc-p(huggingface) Which football teams are in a city where Oakland Athletics were the tenants?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:tenant . ?uri onto:locationCity ?x . ?uri rdf:type onto:AmericanFootballTeam}",julipc-p(huggingface) Who all have created new kinds of cookies?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:type res:Cookie . ?x prop:creator ?uri . }",julipc-p(huggingface) List the television shows whose network's owning company is Turner Broadcasting System?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:owningCompany . ?uri prop:network ?x . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) List the schools of the athlete with Balgowan as one of the school ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:school . ?x prop:school ?uri . ?x rdf:type onto:Athlete}",julipc-p(huggingface) "For how many things are people famous, who were born in Nebraska?","PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:birthPlace . ?x onto:knownFor ?uri . }",julipc-p(huggingface) List the maintainers of Pandaruan Bridge?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Pandaruan_Bridge onto:maintainedBy ?uri }",julipc-p(huggingface) List the starring of the movies whose label is T-Series ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:label . ?x prop:starring ?uri . ?x rdf:type onto:Film}",julipc-p(huggingface) What is the home town of the musical artist who is the current members of Slapstick?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:currentMembers ?x . ?x onto:hometown ?uri . ?x rdf:type onto:MusicalArtist}",julipc-p(huggingface) What are some rivers in Zambia which have a dam on them?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:country . ?x onto:river ?uri . ?x rdf:type onto:Dam}",julipc-p(huggingface) What is the religion of the successor of Chatumongol Sonakul?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Chatumongol_Sonakul onto:successor ?x . ?x onto:religion ?uri . }",julipc-p(huggingface) What is the label of the singles whose group is Outlawz ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:musicalArtist . ?x prop:label ?uri . ?x rdf:type onto:Single}",julipc-p(huggingface) What are the television shows whose network's successor is BBC Two?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:successor . ?uri onto:network ?x . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) what does the cahora bassa flow into?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Cahora_Bassa prop:inflow ?uri }",julipc-p(huggingface) where did Alfred Tarnowski die?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Alfred_Tarnowski prop:placeOfDeath ?uri }",julipc-p(huggingface) In which city is Arsenal Cider House ? located ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Arsenal_Cider_House prop:locationCity ?uri }",julipc-p(huggingface) Name the television show distributed by Broadcast syndication and voiced by Eliza Schneider?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:distributor . ?uri prop:voices . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) Which operating system provider of LG Optimus Vu is also the employer of Manu Cornet ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:LG_Optimus_Vu onto:operatingSystem ?uri. res:Manu_Cornet prop:employer ?uri}",julipc-p(huggingface) List the American MEditerranean Sea city is also the place of death of Laszlo Bellak ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:American_Mediterranean_Sea prop:cities ?uri. res:Laszlo_Bellak onto:deathPlace ?uri}",julipc-p(huggingface) Name the common record label of I pray on Christmas and Next Thing ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:I_Pray_on_Christmas prop:label ?uri. res:Next_Thing onto:recordLabel ?uri}",julipc-p(huggingface) List down the TV shows whose producer is Stephen E. Ambros and writer is John Orloff ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:producer . ?uri prop:writer . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) What is the alma mater of Fikret Orman?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Fikret_Orman prop:almaMater ?uri }",julipc-p(huggingface) Where are the National Academy Museum and School awardwinners buried?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:award res:National_Academy_Museum_and_School . ?x onto:restingPlace ?uri . }",julipc-p(huggingface) Where is the person from whose military rank is Airman first class?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:militaryRank . ?x prop:state ?uri . ?x rdf:type onto:Person}",julipc-p(huggingface) Who wrote the US steel hour?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:The_United_States_Steel_Hour onto:writer ?uri }",julipc-p(huggingface) Where is Snake Island located ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:locationCountry ?uri }",julipc-p(huggingface) List all the co-founders of the non for profit which have founding member as David pressman ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:foundedBy . ?x onto:foundedBy ?uri . ?x rdf:type onto:Non-ProfitOrganisation}",julipc-p(huggingface) What is the home town of the Rolando Gomez is the DOD of the Clyde McNeal ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Rolando_Gomez prop:homeTown ?uri. res:Clyde_McNeal prop:deathDate ?uri}",julipc-p(huggingface) Which soccer players are currently playing for NYC FC?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:currentclub . ?uri rdf:type onto:SoccerPlayer}",julipc-p(huggingface) Name a writer who was educated in Saint Petersburg and had a son named Lyubov Dostoyevskaya ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:education . ?uri onto:child . ?uri rdf:type onto:Writer}",julipc-p(huggingface) "What shows used to air on the channel which was earlier known as ""The Comedy Central""?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:predecessor . ?uri prop:distributor ?x . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) Which company owns Evraz ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Evraz onto:owningCompany ?uri }",julipc-p(huggingface) How many party leaders are there whose parties are headquartered in Berlin?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:headquarter . ?x onto:leader ?uri . ?uri rdf:type onto:Politician}",julipc-p(huggingface) Where was the trainer of Java Gold born?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Java_Gold prop:trainer ?x . ?x prop:birthPlace ?uri . }",julipc-p(huggingface) Where can I find some buildings of modern architecture?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:architecturalStyle . ?x prop:address ?uri . ?x rdf:type onto:Building}",julipc-p(huggingface) Who are the people who played for San Francisco 49ers?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:team res:San_Francisco_49ers . }",julipc-p(huggingface) Name a famous relative of barry voight,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:relative res:Barry_Voight . }",julipc-p(huggingface) With which artist did the musical artist of Groove Thang collaborated ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Groove_Thang onto:musicalArtist ?x . ?x prop:associatedActs ?uri . }",julipc-p(huggingface) Where is the office of P Elmo Futrell Jr?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:office ?uri . }",julipc-p(huggingface) Name the scientist who was awarded a position in Royal Society and has academic advisor as Franz Brentano?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:awards . ?uri onto:academicAdvisor . ?uri rdf:type onto:Scientist}",julipc-p(huggingface) What are the last two studio albums of Moondog Matinee ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Moondog_Matinee onto:subsequentWork ?uri }",julipc-p(huggingface) Where can i find salad based food?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:mainIngredient res:Salad . ?x prop:country ?uri . }",julipc-p(huggingface) List places that are associated to cities in the state of Mecklenburg-Vorpommern.,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:federalState . ?uri prop:cities ?x . }",julipc-p(huggingface) "Which awards did the writer, who is the creator of Creature Comforts, won ?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:creator ?x . ?x prop:awards ?uri . ?x rdf:type onto:Writer}",julipc-p(huggingface) Who all have written songs that were then recorded in the Criteria Studios?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:recordedIn . ?x prop:writer ?uri . ?x rdf:type onto:MusicalWork}",julipc-p(huggingface) Count the number of sports played by the universities whihc also plays Volleyball ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:athletics . ?x prop:athletics ?uri }",julipc-p(huggingface) "In which areas are the radio stations of Monticello, Maine available too?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:city . ?x prop:area ?uri . ?x rdf:type onto:RadioStation}",julipc-p(huggingface) Through how many labels has Katy B released her singles?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:writer . ?x onto:recordLabel ?uri . }",julipc-p(huggingface) Who appointed William L. Dayton ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:William_L._Dayton onto:appointer ?uri }",julipc-p(huggingface) Trevor Peacock has narrated in which movie?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:narrator . ?uri rdf:type onto:Film}",julipc-p(huggingface) To which educational institutions did Lesli Sanchez go for her studies?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Leslie_Sanchez onto:education ?uri }",julipc-p(huggingface) What are some famous artists who rocked a Les Paul?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:notableInstruments . ?uri rdf:type onto:MusicalArtist}",julipc-p(huggingface) Name the sstadium of 2015 Pro Duta FC season ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:2015_Pro_Duta_FC_season prop:stadium ?uri }",julipc-p(huggingface) Name some people who are buried in a place governed by the US Department of the Interior?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:governingBody . ?uri prop:restingplace ?x . ?uri rdf:type onto:Person}",julipc-p(huggingface) Pointe d'Aveneyre belongs to which mountain range?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:mountainRange ?uri }",julipc-p(huggingface) Jerry Bock's musicals has been adapted from how many things?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:music . ?x onto:basedOn ?uri . }",julipc-p(huggingface) Count the movies edited by Mark Stevens (film editor) and were directed by Joel Schumacher?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:editing . ?uri onto:director }",julipc-p(huggingface) "In which city was the company founded , which owns Grasim Bhiwani Textiles?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:parent ?x . ?x prop:foundation ?uri . ?x rdf:type onto:Company}",julipc-p(huggingface) What television shows's distributor is Eurovision?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:distributor . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) List the judge of the TV show whose one of the judge is Ludacris ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:judges . ?x prop:judges ?uri . ?x rdf:type onto:TelevisionShow}",julipc-p(huggingface) Whose youth clubs used to participate in Argentine Primera Division?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:league res:Argentine_Primera_División . ?uri prop:youthclubs ?x . }",julipc-p(huggingface) List some people who were opponents of someone who was died by hanging? ,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:deathCause . ?x onto:opponent ?uri . ?x rdf:type onto:Person}",julipc-p(huggingface) Who owns the railway line which goes through the Newark Station?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:line ?x . ?x prop:owner ?uri . }",julipc-p(huggingface) Which magazine's editor is married to Crystal Harris?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:spouse . ?uri prop:editor ?x . ?uri rdf:type onto:Magazine}",julipc-p(huggingface) What is the currency of the country of Kerguelen Islands?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Kerguelen_Islands onto:governmentType ?x . ?x onto:currency ?uri . }",julipc-p(huggingface) Which sitcom is broadcasted by FOX and presented by Brian Dunkleman?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:channel . ?uri prop:presenter . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) Which sports are played in the alma mater of Amitava Datta?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Amitava_Datta prop:almaMater ?x . ?x onto:sport ?uri . }",julipc-p(huggingface) What is the parent company of Edsel?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Edsel prop:parent ?uri }",julipc-p(huggingface) "What are some TV shows whose voice actors are from Truckee, California, US?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:birthPlace . ?uri prop:voices ?x . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) "Which person won Screen actors Guild Life Time Achievement award and has resting palce in Palo Alto, California ?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:restingPlace . ?uri onto:award . ?uri rdf:type onto:Person}",julipc-p(huggingface) How many shows are made by Playtone?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:company . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) List the mascot of the universities which are a part of National Collegiate Athletic Association.,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:athletics . ?x prop:mascot ?uri . ?x rdf:type onto:University}",julipc-p(huggingface) What is the route junction of Rhode Island Route 15 ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Rhode_Island_Route_15 onto:routeJunction ?uri }",julipc-p(huggingface) What is the famous relative of Mrunalini Kunte known for?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:relatives res:Mrunalini_Kunte . ?x prop:knownFor ?uri . }",julipc-p(huggingface) From which country is Lawrence Okoye's nationality ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Lawrence_Okoye prop:nationality ?uri }",julipc-p(huggingface) From which party is the politician who was selected in Barasat constituency?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:constituency . ?x onto:party ?uri . ?x rdf:type onto:OfficeHolder}",julipc-p(huggingface) Name the associate acts of Martin Pugh?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Martin_Pugh prop:associatedActs ?uri }",julipc-p(huggingface) Who authored the work illustrated by Hiroyuki Takei?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:illustrator res:Hiroyuki_Takei . ?x prop:author ?uri . }",julipc-p(huggingface) List all the presidents of the school which had atleast one of the president as Queen Noor of Jordan ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:president . ?x onto:president ?uri . ?x rdf:type onto:School}",julipc-p(huggingface) Which TV show's opening theme is The Best of Both Worlds (song) and executive producer is Steven Peterman?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:openingTheme . ?uri prop:executiveProducer . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) What are the tenants of Mercedes-Benz Superdome?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:tenant ?uri }",julipc-p(huggingface) What is the birth city of trainer of Leallah?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Leallah prop:trainer ?x . ?x prop:birthPlace ?uri . }",julipc-p(huggingface) What are some TV shows similar to the one produced by Susie Liggat?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:producer . ?uri onto:related ?x . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) "Which television show is based in Massachusetts and has opening theme as ""Where Everybody Knows Your Name"" ?","PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:openingTheme . ?uri onto:location . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) Name the software which has been developed by John Fanning ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:developer . ?uri rdf:type onto:Software}",julipc-p(huggingface) What is the mouth mountain of Current River (Missouri) ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:mouthMountain ?uri }",julipc-p(huggingface) Who has canonized someone who's a doctor of the church?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:titles res:Doctor_of_the_Church . ?x onto:canonizedBy ?uri . }",julipc-p(huggingface) "Where is the tombstone of the parliament members who served with James Roberts as the Vice President, US?","PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:vicePresident . ?x onto:restingPlace ?uri . ?x rdf:type onto:MemberOfParliament}",julipc-p(huggingface) What is the nationality of the entomologist who is a renowned authority of Smerinthus saliceti ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:binomialAuthority ?x . ?x onto:citizenship ?uri . ?x rdf:type onto:Entomologist}",julipc-p(huggingface) "Where is the ground of the soccer club, which has Alan Kusov as a team member ?","PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:team ?x . ?x onto:ground ?uri . ?x rdf:type onto:SoccerClub}",julipc-p(huggingface) From where did the son of Gustavo Rojas Pinilla graduate?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Gustavo_Rojas_Pinilla onto:child ?x . ?x prop:almaMater ?uri . }",julipc-p(huggingface) What currencies are prevalent in the countries governed by the President of France?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:leaderTitle . ?x onto:currency ?uri . ?x rdf:type onto:Country}",julipc-p(huggingface) Which company manufactured Delta III?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Delta_III onto:manufacturer ?uri }",julipc-p(huggingface) In which fields are pupils of Edouard Chavannes working?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:academicAdvisor res:Édouard_Chavannes . ?x prop:fields ?uri . }",julipc-p(huggingface) Who is the artist of Time Radio hour ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Theme_Time_Radio_Hour prop:creator ?uri }",julipc-p(huggingface) List the prospect team of Robin Kovacs ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Robin_Kovacs prop:prospectTeam ?uri }",julipc-p(huggingface) "Where did the genres originate, which were in the Harry and the Potters album?","PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { onto:genre ?x . ?x onto:stylisticOrigin ?uri . }",julipc-p(huggingface) How many sitcoms are there whose theme music is composed by a New Yorker?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:hometown . ?uri prop:themeMusicComposer ?x . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) "Which band made the song Take me There, and has collaborated with Blayse in the past?","PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:musicalBand ?uri. onto:associatedBand ?uri}",julipc-p(huggingface) Who was succeeded by Arthur Gegei as the office ho0lder ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:successor res:Artúr_Görgei . }",julipc-p(huggingface) Give me a count of movies whose editor is Mark Stevens?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:editing . ?uri rdf:type onto:Film}",julipc-p(huggingface) How many other awards have been given to people who have won the Golden Globe?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:award . ?x prop:awards ?uri . ?uri rdf:type onto:Award}",julipc-p(huggingface) Name the mountain located in California and has parent peak as Nevado de Toluca ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:locatedInArea . ?uri onto:parentMountainPeak . ?uri rdf:type onto:Mountain}",julipc-p(huggingface) Which person works at the American Magazine?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:employer . ?uri rdf:type onto:Person}",julipc-p(huggingface) What was developed by someone working in Cockroach Labs?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:employer res:Cockroach_Labs . ?uri prop:author ?x . }",julipc-p(huggingface) "The people who did their high school in Palm City, Florida did their college where?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:highschool . ?x onto:college ?uri . ?x rdf:type onto:Person}",julipc-p(huggingface) "Where is the radio broadcasted in, whose sister station is CKFM-FM?","PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:sisterStation . ?x onto:broadcastArea ?uri . ?x rdf:type onto:RadioStation}",julipc-p(huggingface) List the spanish football player in the NYC FC ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:currentclub res:New_York_City_FC . ?uri prop:nationalteam res:Spain_national_football_team . }",julipc-p(huggingface) Which stadium's operator works in the Pepsi Center?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:occupation res:Pepsi_Center . ?uri onto:operator ?x . }",julipc-p(huggingface) What is the academic discipline of the Journal of Cerebral Blood Flow & Metabolism and also an ingredient of the Ragout fin ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:academicDiscipline ?uri. onto:ingredient ?uri}",julipc-p(huggingface) In what tv shows did Jason Carter act?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:starring . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) Where is the mouth of the river whose tributary is Bjelimićka Rijeka ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:rightTributary res:Bjelimićka_Rijeka . ?x onto:mouthCountry ?uri . }",julipc-p(huggingface) "Which companies make cars with a front engine, rear wheel drive layout?","PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:automobilePlatform . ?x onto:parentCompany ?uri . ?x rdf:type onto:Automobile}",julipc-p(huggingface) What is the mascot of the military unit in which Ronald Wilson served?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Ronald_Wilson prop:branch ?x . ?x prop:mascot ?uri . }",julipc-p(huggingface) "Where does Truman McGill Hobbs, United States District Judge live?","PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Truman_McGill_Hobbs prop:residence ?uri }",julipc-p(huggingface) Pennsylvania has how many american football teams?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:city . ?uri rdf:type onto:AmericanFootballTeam}",julipc-p(huggingface) To which sports team is Aubie the mascot?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:mascot . ?uri rdf:type onto:SportsTeam}",julipc-p(huggingface) What is the religious affiliation of Hong Kong Taoist Association Tang Hin Memorial Secondary School ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Hong_Kong_Taoist_Association_Tang_Hin_Memorial_Secondary_School prop:religiousAffiliation ?uri }",julipc-p(huggingface) "What were the major actions taken by the politicians living in Gales Ferry, Connecticut?","PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:residence . ?x onto:battle ?uri . ?x rdf:type onto:Politician}",julipc-p(huggingface) Which royal people are buried in Rome?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:placeOfBurial . ?uri rdf:type onto:Royalty}",julipc-p(huggingface) What artist was associated closely with the bare necessities and rock a doodle?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:artist ?uri. onto:starring ?uri}",julipc-p(huggingface) Which parent company of the Cornell University Press is also the alma mater of the Mario Garca Menocal?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Cornell_University_Press onto:parentCompany ?uri. res:Mario_García_Menocal onto:almaMater ?uri}",julipc-p(huggingface) Which religions are followed by people in England?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:residence . ?x prop:religion ?uri . ?x rdf:type onto:Person}",julipc-p(huggingface) Where was MacKenzie Miller born?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:MacKenzie_Miller prop:birthPlace ?uri }",julipc-p(huggingface) What company involved in the development of Sherlock did Arthur Levinson work for?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:occupation ?uri. onto:developer ?uri}",julipc-p(huggingface) Who was the president during the time the opponent of John Hospers was in the office?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:opponent res:John_Hospers . ?x onto:incumbent ?uri . }",julipc-p(huggingface) What is the birthplace of the netball player who is the relative of Rachel Rasmussen ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:relatives ?x . ?x onto:birthPlace ?uri . ?x rdf:type onto:NetballPlayer}",julipc-p(huggingface) What is the religion of the academic authority on Ceratosoma tenue?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Ceratosoma_tenue onto:binomialAuthority ?x . ?x prop:veneratedIn ?uri . }",julipc-p(huggingface) What is the birth location of the pope who was canonized by Agatha of Sicily?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:canonizedBy ?x . ?x prop:birthPlace ?uri . ?x rdf:type onto:Pope}",julipc-p(huggingface) In which cities are there stations of SCOLA?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:broadcastNetwork . ?x prop:city ?uri . ?x rdf:type onto:TelevisionStation}",julipc-p(huggingface) Which set of researchers won the Gold Medal of the Royal Astronomical Society award?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:prizes . ?uri rdf:type onto:Scientist}",julipc-p(huggingface) List the members of Skull Gang?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Skull_Gang onto:bandMember ?uri }",julipc-p(huggingface) How did Letitia MacTavish Hargrave died ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Letitia_MacTavish_Hargrave onto:deathCause ?uri }",julipc-p(huggingface) Which destination of the Novair International Airway is the source origin of Spaghetti squash ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Novair_International_Airways onto:destination ?uri. res:Spaghetti_squash onto:origin ?uri}",julipc-p(huggingface) Which animator of Tommy Tucker's Tooth is also the film director of Alice's Wonderland ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:director ?uri. prop:animator ?uri}",julipc-p(huggingface) The president served by Haqqi al-Azm died where?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:president ?x . ?x prop:placeOfDeath ?uri . }",julipc-p(huggingface) Name the mouth country of Upper Neretva ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Upper_Neretva onto:mouthCountry ?uri }",julipc-p(huggingface) Name the movies in which music is give by Laurie Johnson and edited by Anthony Harvey ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:music . ?uri onto:editing . ?uri rdf:type onto:Film}",julipc-p(huggingface) Which NASA astronaut was on mission Gemini 8?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:type . ?uri prop:mission . ?uri rdf:type onto:Astronaut}",julipc-p(huggingface) Give me the places where people who worked in Church of England died in ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:occupation res:Church_of_England . ?x onto:deathPlace ?uri . }",julipc-p(huggingface) Which assembly of the Plymouth Savoy is the route end of the NorthSouth Transport Corridor?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Plymouth_Savoy onto:assembly ?uri. res:North–South_Transport_Corridor onto:routeEnd ?uri}",julipc-p(huggingface) Who is the producer of the song which is the previous work of He's a Liar ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:previousWork ?x . ?x onto:producer ?uri . ?x rdf:type onto:Song}",julipc-p(huggingface) Which river's source mountain is Baikal Mountains and it's mouth is Lena Delta Wildlife Reserve?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:sourceMountain . ?uri onto:riverMouth . ?uri rdf:type onto:River}",julipc-p(huggingface) How many universities are located in a country led by Olemic Thommessen?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:leaderName . ?uri onto:country ?x . ?uri rdf:type onto:University}",julipc-p(huggingface) where are renaissance centers located?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Renaissance_Center prop:address ?uri }",julipc-p(huggingface) Which publisher of Stone Canoe is also the university for which Michael Powell plays for ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:publisher ?uri. onto:team ?uri}",julipc-p(huggingface) What mascot of the Galatasaray Handball Team is also the team name of Cristo Rey Jesuit high School ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:teamName ?uri. prop:mascot ?uri}",julipc-p(huggingface) What is the alma mater of the author of Letter to a Christian Nation ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Letter_to_a_Christian_Nation onto:author ?x . ?x prop:almaMater ?uri . }",julipc-p(huggingface) Which television shows have been produced by Erik Bork?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:producer . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) What are the gadgets whose manufacturing company is founded by Terry Gou?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:founder . ?uri onto:manufacturer ?x . ?uri rdf:type onto:Device}",julipc-p(huggingface) How many books are there whose author's tomb is in Madrid?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:restingPlace . ?uri onto:author ?x . ?uri rdf:type onto:Book}",julipc-p(huggingface) What are the television shows whose writers did notable work for Band of Brothers ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:notableWork . ?uri prop:writer ?x . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) To which political party does the writer of In the Bazaars of Hyderabad belong?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:In_the_Bazaars_of_Hyderabad prop:writer ?x . ?x onto:party ?uri . }",julipc-p(huggingface) To how many different species does the members of the Animal Kingdom belong?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:kingdom . ?x onto:species ?uri . ?uri rdf:type onto:Species}",julipc-p(huggingface) Where do networks affiliated with ETC broadcast?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:affiliation . ?x prop:area ?uri . ?x rdf:type onto:BroadcastNetwork}",julipc-p(huggingface) What water bodies are nearest to Helsinki city?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:nearestCity . ?uri rdf:type onto:BodyOfWater}",julipc-p(huggingface) Which relative of ralf schumacher is a famous formula one racer?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:relatives . ?uri rdf:type onto:FormulaOneRacer}",julipc-p(huggingface) What country did the successor of William Ofori Atta swear his oath to?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:predecessor res:William_Ofori_Atta . ?x prop:allegiance ?uri . }",julipc-p(huggingface) What is the prize awarded to Bruce Beutler ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Bruce_Beutler onto:award ?uri }",julipc-p(huggingface) "To which books Thomas Egerton, an editor?","PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:publisher . ?uri rdf:type onto:Book}",julipc-p(huggingface) Where did Marvo originate?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Mavro onto:origin ?uri }",julipc-p(huggingface) What is the burial place of Iyoas I ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Iyoas_I prop:placeOfBurial ?uri }",julipc-p(huggingface) What sport played in Polytechnic uni of San Juan has also made advocate nasiruddin famous?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Advocate_Nasiruddin onto:knownFor ?uri. res:Polytechnic_University_of_the_Philippines_San_Juan onto:sport ?uri}",julipc-p(huggingface) What river ends in Indian Ocean and also starts somewhere in Zambia?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:riverMouth . ?uri onto:sourceCountry . ?uri rdf:type onto:River}",julipc-p(huggingface) Who all have been a commander during the battles of Ohio?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:place . ?x onto:commander ?uri . ?x rdf:type onto:MilitaryConflict}",julipc-p(huggingface) How many groups speak the English Language?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:languages . ?uri rdf:type onto:EthnicGroup}",julipc-p(huggingface) Which source of river Raa is the sovereign state of Adriatic sea ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:source ?uri. onto:country ?uri}",julipc-p(huggingface) What was founded by Congress of Industrial Organizations ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Congress_of_Industrial_Organizations prop:founded ?uri }",julipc-p(huggingface) Which current players once played for Toronto argonauts?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:formerTeam . ?uri rdf:type onto:AmericanFootballPlayer}",julipc-p(huggingface) What is the religious affiliation of the Neungin High School which is also the academic interest of Sylvain Lvi ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Neungin_High_School prop:religiousAffiliation ?uri. res:Sylvain_Lévi prop:fields ?uri}",julipc-p(huggingface) Give me a count of movies distributed by Warner Bros?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:distributor . }",julipc-p(huggingface) Which magazines were founded by ann Wenner ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:founder . ?uri rdf:type onto:Magazine}",julipc-p(huggingface) Where is the venue of the History of Penny Arcade Expo located?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:History_of_Penny_Arcade_Expo prop:venue ?x . ?x prop:address ?uri . }",julipc-p(huggingface) Which company is the parent company of Chevrolet Spark ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Chevrolet_Spark prop:parentCompany ?uri }",julipc-p(huggingface) Name the TV show distributed by Broadcast Syndication and is broadcasted by comedy central ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:distributor . ?uri prop:network . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) Who was the president at the time when the opponent of Benjamin Spock held office?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:opponent res:Benjamin_Spock . ?x prop:incumbent ?uri . }",julipc-p(huggingface) List the shrines of the saint whose one of the shrine is Ponza ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:majorShrine . ?x onto:majorShrine ?uri . ?x rdf:type onto:Saint}",julipc-p(huggingface) Where is the headquarters of the company which runs the Metro Blue Line in minnesota?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:operator ?x . ?x prop:headquarters ?uri . ?x rdf:type onto:Organisation}",julipc-p(huggingface) How many people are in the continental army?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:militaryBranch . }",julipc-p(huggingface) Which religion followers are in the Royal Thai Army?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:militaryBranch res:Royal_Thai_Army . ?x onto:religion ?uri . }",julipc-p(huggingface) To which senator did military unit VMF-155 belong?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:militaryUnit . ?uri rdf:type onto:Senator}",julipc-p(huggingface) What are the movies whose music is composed by Vangelis?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:musicComposer . ?uri rdf:type onto:Film}",julipc-p(huggingface) In which areas can I find wine made of Vitis vinifera grapes?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:species . ?x onto:wineRegion ?uri . ?x rdf:type onto:Grape}",julipc-p(huggingface) Which expertise of the Menetries's warbler is the nationality of the Jeyhun Abiyev ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:binomialAuthority ?uri. onto:nationality ?uri}",julipc-p(huggingface) Who is the publisher of The Rolling Stone Album Guide ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:The_Rolling_Stone_Album_Guide onto:publisher ?uri }",julipc-p(huggingface) Which soccer clubs are in the Liga Divisi Utama?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:season . ?x prop:name ?uri . ?x rdf:type onto:SoccerClub}",julipc-p(huggingface) How many services does 21Vianet provide?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { prop:services ?uri . }",julipc-p(huggingface) What is the Location of the Dofinivka Estuary which is also the birthplace of the Liliya Lobanova ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Dofinivka_Estuary prop:location ?uri. res:Liliya_Lobanova prop:birthplace ?uri}",julipc-p(huggingface) What are the former team of the american football players who played at gridiron football position ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:position . ?x onto:formerTeam ?uri . ?x rdf:type onto:AmericanFootballPlayer}",julipc-p(huggingface) What subjects does the subsequent work of The Dragons of Eden deals with ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:The_Dragons_of_Eden onto:subsequentWork ?x . ?x prop:subject ?uri . }",julipc-p(huggingface) Name the TV show which has judge as harry Connick and is broadcasted on Fox Broadcasting Company ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:channel . ?uri prop:judges . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) What are some rivers over which there is a box girder bridge?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:design res:Box_girder_bridge . ?x prop:crosses ?uri . }",julipc-p(huggingface) Whay common comic is written by Karakuri Dji Ultimo and narrated by The Incredible Hulk ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:author ?uri. prop:narrated ?uri}",julipc-p(huggingface) Which university attended by Donn Barber and education institute of Jack McGregor ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Donn_Barber prop:education ?uri. res:Jack_McGregor onto:education ?uri}",julipc-p(huggingface) Where is the lake located into which the Winnipeg River flows?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:outflow res:Winnipeg_River . ?x prop:location ?uri . }",julipc-p(huggingface) Who is the designer of Saleen S5S Raptor ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Saleen_S5S_Raptor prop:designer ?uri . }",julipc-p(huggingface) Name the newspaper owned by Schibsted and headquartered at Stockholm?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:owners . ?uri prop:headquarters . ?uri rdf:type onto:Newspaper}",julipc-p(huggingface) How many party are there of the office holders whose one of the party is Janata Dal ?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:otherParty . ?x onto:otherParty ?uri }",julipc-p(huggingface) Name the first driver of 1999 San Marino Grand Prix ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:1999_San_Marino_Grand_Prix onto:firstDriver ?uri }",julipc-p(huggingface) Who battled under commander Egushawa in a conflict?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:commander . ?x prop:combatant ?uri . ?x rdf:type onto:MilitaryConflict}",julipc-p(huggingface) How many things have made different people living in Canada famous?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:nationality . ?x onto:knownFor ?uri . }",julipc-p(huggingface) Which is the largest city of Union State ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Union_State prop:largestCity ?uri }",julipc-p(huggingface) Which university has a sports team member called Micheal Powell and also owns Syracuse University Press ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:team ?uri. prop:parent ?uri}",julipc-p(huggingface) Ryan Seacrest has been the presenter of how many things?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:presenter . }",julipc-p(huggingface) Count the tenants of the stadiums designed by Populous?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:architect . ?x onto:tenant ?uri . }",julipc-p(huggingface) Who all have been judges on CTV Network's shows?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:network . ?x prop:judges ?uri . ?x rdf:type onto:TelevisionShow}",julipc-p(huggingface) How many have former teams as Indianapolis Colts and Carolina Panthers?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?uri onto:formerTeam . ?uri onto:formerTeam }",julipc-p(huggingface) What are some movies whose distributer's CEO is Ted Hartley?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:keyPeople . ?uri prop:distributor ?x . ?uri rdf:type onto:Film}",julipc-p(huggingface) What was the stadium of Panionios G.S.S. in 2014-15 season ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:2014–15_Panionios_G.S.S._season prop:stadium ?uri }",julipc-p(huggingface) Who was the editor of the newspaper owned by the the UK government?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:owners . ?x prop:editor ?uri . ?x rdf:type onto:Newspaper}",julipc-p(huggingface) List the Stanley Kubrick's movies which has music by Laurie Johnson ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:director . ?uri prop:music . ?uri rdf:type onto:Film}",julipc-p(huggingface) What are the type of Greenup County High School?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Greenup_County_High_School prop:type ?uri }",julipc-p(huggingface) "Where does the road starting from Madison, Wisconsin end?","PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:routeEnd . ?x onto:routeStart ?uri . ?x rdf:type onto:Road}",julipc-p(huggingface) What is sovereignity of the successor of Mr. George Robert Andrews ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:George_Roberts_Andrews prop:successor ?x . ?x onto:country ?uri . }",julipc-p(huggingface) Colin Powell was the commander of which military conflict ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:commander . ?uri rdf:type onto:MilitaryConflict}",julipc-p(huggingface) What is the label of Next Thing ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Next_Thing onto:recordLabel ?uri }",julipc-p(huggingface) List down the schools whose mascot's order is Even-toed ungulate?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:order . ?uri prop:mascot ?x . }",julipc-p(huggingface) Name the company whose products is Boeing F/A-18E/F Super Hornet and key person is Raymond Conner?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:products . ?uri onto:keyPerson . ?uri rdf:type onto:Company}",julipc-p(huggingface) List the relatives of the governor of Gabriel Slaughter?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Gabriel_Slaughter onto:governor ?x . ?x onto:relation ?uri . }",julipc-p(huggingface) How many corporations were founded in Texas?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:foundationPlace . ?uri rdf:type onto:Company}",julipc-p(huggingface) "What is the style of architecture of Shaheed Minar, Kolkata ?","PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:architecturalStyle ?uri }",julipc-p(huggingface) Which developer of Go was also the predecssor of X compnay ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:developer ?uri. prop:predecessor ?uri}",julipc-p(huggingface) List all the houses of United States Congress ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:United_States_Congress prop:houses ?uri }",julipc-p(huggingface) What companies are located in toronto?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:locationCity . ?uri rdf:type onto:Company}",julipc-p(huggingface) Where does the network cofounded by Seewoosagur Ramgoolam air its shows?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:founder . ?x prop:broadcastArea ?uri . ?x rdf:type onto:BroadcastNetwork}",julipc-p(huggingface) Name the appliance produced by Foxconn and its OS is provided by PlayStation 3 system software ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:manufacturer . ?uri prop:os . ?uri rdf:type onto:InformationAppliance}",julipc-p(huggingface) Which teams participate in the football seasons headed by Patricia Amorim?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:chairman . ?x prop:name ?uri . ?x rdf:type onto:SportsSeason}",julipc-p(huggingface) Who was the architect of the stadium currently run by Brandenton?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:operator . ?x prop:architect ?uri . ?x rdf:type onto:Stadium}",julipc-p(huggingface) who operates the south side elevated railroad?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:South_Side_Elevated_Railroad onto:operatedBy ?uri }",julipc-p(huggingface) Name few companies founded in Texas?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:foundationPlace . ?uri rdf:type onto:Company}",julipc-p(huggingface) In which timezone does Khok Kwang lie?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Khok_Kwang onto:timeZone ?uri }",julipc-p(huggingface) Who directed the albums recorded in Anaheim?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:recordedIn . ?x prop:director ?uri . ?x rdf:type onto:Album}",julipc-p(huggingface) "How many awards have been received by graduates of University of Melbourne, Faculty of VCA & MCM?","PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:training . ?x onto:award ?uri . }",julipc-p(huggingface) What is the result of the GazaIsrael conflict is also the place of the Qaqun?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Gaza–Israel_conflict prop:result ?uri. res:Qaqun prop:place ?uri}",julipc-p(huggingface) To which military division does Clark Daniel Stearns belong?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Clark_Daniel_Stearns onto:militaryBranch ?uri }",julipc-p(huggingface) Who are the opponents of Gervase Helwys?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Gervase_Helwys onto:opponent ?uri }",julipc-p(huggingface) Which planet was discovered by Johann Gottfired and Urbain Le Verrier ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:discoverer . ?uri onto:discoverer . ?uri rdf:type onto:Planet}",julipc-p(huggingface) Which awards have been given to immunologists?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:fields res:Immunology . ?x onto:award ?uri . }",julipc-p(huggingface) What are the mountains in the Sequoia National Park?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:locatedInArea . ?uri rdf:type onto:Mountain}",julipc-p(huggingface) What is the alma mater of Alvin Bell and Charles Plosser?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Alvin_Bell onto:college ?uri. res:Charles_Plosser prop:almaMater ?uri}",julipc-p(huggingface) Which animator of The Skeleton Dance is also the animator of the Tommy Tucker's Tooth ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:animator ?uri. prop:animator ?uri}",julipc-p(huggingface) From where did Ben Wilson (American football) do his highscool?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:highschool ?uri }",julipc-p(huggingface) Name some books by Spanish speaking authors.,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:language res:Spanish_language . ?uri prop:author ?x . }",julipc-p(huggingface) How many famous people are born in Long Island?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:birthPlace . }",julipc-p(huggingface) Name some sports played in institutions of Maharashtra?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:state res:Maharashtra . ?x onto:sport ?uri . }",julipc-p(huggingface) How many other genere are there of the radio stations whose one of the genre is Classic rock ?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:programmeFormat . ?x onto:programmeFormat ?uri }",julipc-p(huggingface) Where did Allama Matthews study?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Allama_Matthews onto:college ?uri }",julipc-p(huggingface) What is the common nationality of Funny Face a comedian and that of Georgina Theodora Wood ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:nationality ?uri. onto:nationality ?uri}",julipc-p(huggingface) What shows are aired on sister channels of BBC Parliaments,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:sisterNames . ?uri onto:network ?x . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) How many veterans are buried in the US?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:restingPlace . ?uri rdf:type onto:MilitaryPerson}",julipc-p(huggingface) name the Glover's distributer ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:distributor ?uri }",julipc-p(huggingface) Whichi office of Walter Evnas Edge is also the part of Atlantic seaboard fall lines ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Atlantic_Seaboard_fall_line onto:part ?uri. res:Walter_Evans_Edge prop:office ?uri}",julipc-p(huggingface) What are the television shows whose network is Prime Time Entertainment Network?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:network . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) "To which company is the service ""Nintendo eShop"" associated with?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:services . ?uri rdf:type onto:Company}",julipc-p(huggingface) Name the famous employee of open society foundations ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:employer res:Open_Society_Foundations . }",julipc-p(huggingface) List the movies whose music composer is often associated with Jon and Vangelis.,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:associatedActs . ?uri onto:musicComposer ?x . ?uri rdf:type onto:Film}",julipc-p(huggingface) who is the governer of New Castile?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:order res:Governorate_of_New_Castile }",julipc-p(huggingface) How many teams have someone playing at the defenceman position?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:position . ?x onto:team ?uri . ?uri rdf:type onto:SportsTeam}",julipc-p(huggingface) List all the teams which have someone who played their first game for the Yankees?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:debutteam res:New_York_Yankees . ?x onto:team ?uri . }",julipc-p(huggingface) Cricket is played by which countries' citizens?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:occupation res:Cricket . ?x onto:stateOfOrigin ?uri . }",julipc-p(huggingface) Which religion is followed by the PM who was served by Chea Sim?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Chea_Sim prop:primeminister ?x . ?x onto:religion ?uri . }",julipc-p(huggingface) Name some shows similar to the one whose theme song is made by Murray Gold.,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:themeMusicComposer . ?uri onto:related ?x . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) What is the constituency of the people who died in Lampedusa?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:deathPlace . ?x prop:constituency ?uri . ?x rdf:type onto:Person}",julipc-p(huggingface) Who are the relatives of the character after which Quagmire's Quagmire was made?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:subsequentWork . ?uri onto:relative ?x . }",julipc-p(huggingface) Name the driver who was at pole in 1997 Canadian Grand Prix and also 1994 Spanish Grand Prix ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:1997_Canadian_Grand_Prix prop:poleDriver ?uri. res:1994_Spanish_Grand_Prix onto:poleDriver ?uri}",julipc-p(huggingface) Which fictional character portrayed by Roger barton has Darth Vader as family member ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:family . ?uri prop:portrayer . ?uri rdf:type onto:FictionalCharacter}",julipc-p(huggingface) Which band was left by Kevin Jonas?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:formerBandMember . ?uri rdf:type onto:Band}",julipc-p(huggingface) What is the place of death of the gymnast who was the silver medalist at the 1956 Summer Olympics Men's rings ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:silverMedalist ?x . ?x prop:placeOfDeath ?uri . }",julipc-p(huggingface) Name the narrators of the album which has been narrated by Alan Thicke ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:narrated res:Alan_Thicke . ?x prop:narrated ?uri . }",julipc-p(huggingface) "Whose children died in North Bend, Ohio?","PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:deathPlace . ?uri onto:child ?x . }",julipc-p(huggingface) Name the presenter of Shirley Temple's Storybook ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:presenter ?uri }",julipc-p(huggingface) What is the place of birth of the stars of Auto Shankar ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:starring ?x . ?x onto:birthPlace ?uri . }",julipc-p(huggingface) Name the television show created by CE Webber and also has actor named Companion?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:starring . ?uri onto:creator . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) Give me the characters who last appeared in Star Wars Episode 3,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:last res:Star_Wars:_Episode_III_–_Revenge_of_the_Sith }",julipc-p(huggingface) "How many awards have been awarded to people who are buried in Glendale, California?","PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:restingPlace . ?x onto:award ?uri . }",julipc-p(huggingface) Count the number of tenants whose one of the tenant is Toronto Phantoms ?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:tenant . ?x onto:tenant ?uri }",julipc-p(huggingface) In which war did the units garrisoned at Turin fight?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:garrison res:Turin . ?x onto:battle ?uri . }",julipc-p(huggingface) Which software uses GTK+ as programming language?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:programmingLanguage . ?uri rdf:type onto:Software}",julipc-p(huggingface) Producers of what have died in Mississippi?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:deathPlace res:Mississippi . ?uri onto:producer ?x . }",julipc-p(huggingface) Where is the birthplace of Ferrel Harris ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Ferrel_Harris prop:birthplace ?uri }",julipc-p(huggingface) Which sports exist in the universities whose president is Emanuel de Guzman?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:president . ?x onto:sport ?uri . ?x rdf:type onto:University}",julipc-p(huggingface) How many scientists are known for the Manhatten Project?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:knownFor . ?uri rdf:type onto:Scientist}",julipc-p(huggingface) Who designed the stadiums which have been rented by Oakland athletics?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:tenant . ?x prop:architect ?uri . ?x rdf:type onto:Stadium}",julipc-p(huggingface) Who were the producers of the tenderfoot?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:producer ?uri }",julipc-p(huggingface) Name the route start of Saint Petersburg Moscow Railway ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Saint_Petersburg_–_Moscow_Railway onto:routeStart ?uri }",julipc-p(huggingface) Name the sport league of Hampton Roads Rhinos ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Hampton_Roads_Rhinos prop:league ?uri }",julipc-p(huggingface) How many Thesaban towns are there?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:settlementType . ?uri rdf:type onto:Town}",julipc-p(huggingface) Name all the broadcast area of the TV stations which has Rodrigues as one of the broadcast area ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:broadcastArea . ?x prop:broadcastArea ?uri . ?x rdf:type onto:TelevisionStation}",julipc-p(huggingface) Which share holder of outlook is also the content license of the MSX Basics ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:MSX_BASIC prop:license ?uri. res:Outlook_on_the_web prop:owner ?uri}",julipc-p(huggingface) Name the shows whose theme was composed by a band in which Jay Lane used to be?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:formerBandMember . ?uri prop:themeMusicComposer ?x . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) Name the office holder with predecessor as Mark Latham and partner Tim Mathieson ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:predecessor . ?uri onto:partner . ?uri rdf:type onto:OfficeHolder}",julipc-p(huggingface) Which newspaper owned by Schibsted is published in Swedish ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:language . ?uri prop:owners . ?uri rdf:type onto:Newspaper}",julipc-p(huggingface) How many other people are in a band with Robert de Niro?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:currentMembers . ?x onto:bandMember ?uri . ?uri rdf:type onto:Person}",julipc-p(huggingface) "Which river goes through cohoes, NY","PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:river ?uri }",julipc-p(huggingface) List the software which uses Microsoft Windows as their operating system ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:operatingSystem . ?uri rdf:type onto:Software}",julipc-p(huggingface) What all has been created by Jerry Siegel?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:creators res:Jerry_Siegel }",julipc-p(huggingface) What is the common party of the Manthena Venkata Raju and B. Shiva Rao?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Manthena_Venkata_Raju onto:party ?uri. res:B._Shiva_Rao prop:party ?uri}",julipc-p(huggingface) List the country of Tokaj wine region ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Tokaj_wine_region prop:country ?uri }",julipc-p(huggingface) Who all were venerated in Islam?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:veneratedIn . }",julipc-p(huggingface) Which country has outflow of Lake Uniamsi and inflows of the Cahora Bassa?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Lake_Uniamési prop:outflow ?uri. res:Cahora_Bassa prop:inflow ?uri}",julipc-p(huggingface) How many items belong to the Science Fiction genre?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:genre . }",julipc-p(huggingface) For what is Abhijit Kunte known ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Abhijit_Kunte prop:knownFor ?uri }",julipc-p(huggingface) Who is the author of Karakuri Dji Ultimo ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Karakuri_Dôji_Ultimo prop:author ?uri }",julipc-p(huggingface) How many shows belong to the networks one of whose sister station is BBC News?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:sisterNames . ?uri onto:network ?x . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) Which spouse of Ptolemy XIV had a mother named Ptolemy XII auletes ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:parent res:Ptolemy_XII_Auletes . ?uri onto:spouse res:Ptolemy_XIV_of_Egypt . }",julipc-p(huggingface) What is the mascot of Galatasaray Handball Team ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Galatasaray_Handball_Team prop:mascot ?uri }",julipc-p(huggingface) Name some dishes made with flowering plants.,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:division . ?uri onto:ingredient ?x . ?uri rdf:type onto:Food}",julipc-p(huggingface) Whose artworks are in Sao Paulo Museum of Art?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:museum . ?x prop:artist ?uri . ?x rdf:type onto:Artwork}",julipc-p(huggingface) Which country are the players of the Atletico Petroleos de Luanda from?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:club . ?x onto:nationality ?uri . ?x rdf:type onto:Athlete}",julipc-p(huggingface) What is the ethnicity of the people working for the Philippines house of representatives?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:occupation . ?x onto:ethnicity ?uri . ?x rdf:type onto:Person}",julipc-p(huggingface) Where was Ganefo hosted?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:GANEFO prop:hostCity ?uri }",julipc-p(huggingface) What is the religion of the governors whose office is the Bank of Thailand?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:office . ?x onto:religion ?uri . ?x rdf:type onto:Governor}",julipc-p(huggingface) Count everyone who was in a youthclub chaired by Josep Maria Bartomeu ?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:chairman . ?uri prop:youthclubs ?x . }",julipc-p(huggingface) What is the common branch of military of Edward Joseph Schwartz and John Tower ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Edward_Joseph_Schwartz prop:branch ?uri. res:John_Tower onto:militaryBranch ?uri}",julipc-p(huggingface) Which TNT show has Christopher Franke as artist?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:artist . ?uri prop:network . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) "List all the locations of the companies whose are also located in Rancho Cucamonga, California ?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:locationCountry . ?x onto:locationCountry ?uri . ?x rdf:type onto:Company}",julipc-p(huggingface) Name the university with affiliations as Graham Holdings Company and campus at Indiana?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:affiliations . ?uri onto:campus . ?uri rdf:type onto:University}",julipc-p(huggingface) Greek writers have won which award?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:ethnicity . ?x onto:award ?uri . ?x rdf:type onto:Writer}",julipc-p(huggingface) In which nation does the league take place where C.D. Primeiro de Agosto play?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:league ?x . ?x onto:country ?uri . ?x rdf:type onto:SportsLeague}",julipc-p(huggingface) Where are ethnic group located which speak Nebraskan?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:language ?x . ?x prop:region ?uri . ?x rdf:type onto:EthnicGroup}",julipc-p(huggingface) "For which reasons have the ones born in Edinburgh, died?","PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:placeOfBirth res:Edinburgh . ?x onto:deathCause ?uri . }",julipc-p(huggingface) What is the largest city of the country which have an assembly of Plymouth Savoy?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Plymouth_Savoy onto:assembly ?x . ?x onto:largestCity ?uri . }",julipc-p(huggingface) What is the religion of the ethnic group to which Clara Ng belongs?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:ethnicity ?x . ?x onto:religion ?uri . ?x rdf:type onto:EthnicGroup}",julipc-p(huggingface) What is the affiliation of Vanderbilt University Medical Center ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Vanderbilt_University_Medical_Center prop:affiliation ?uri }",julipc-p(huggingface) How many scientist became famous for the battle of Occupation of Japan?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:battle . ?uri prop:knownFor ?x . ?uri rdf:type onto:Scientist}",julipc-p(huggingface) In which municipalities does the NYC housing authority own buildings?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:owningOrganisation . ?x onto:municipality ?uri . ?x rdf:type onto:Building}",julipc-p(huggingface) What have been made in the state whose capital is Boston?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:capital res:Boston . ?uri onto:location ?x . }",julipc-p(huggingface) Name the military conflict whose commander was Colin Powell and took place in israel ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:commander . ?uri onto:place . ?uri rdf:type onto:MilitaryConflict}",julipc-p(huggingface) Where do the judge advocate general corps live?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:rank . ?x prop:residence ?uri . }",julipc-p(huggingface) List the universities with athletics NCAA Division I Football Bowl Subdivision ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:athletics . ?uri rdf:type onto:University}",julipc-p(huggingface) Who is the builder of the Stadium of Costa Rica women's national football team?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:stadium ?x . ?x onto:builder ?uri . ?x rdf:type onto:Stadium}",julipc-p(huggingface) How many sitcoms were produced by the company whose predecessor was the Desilu Productions,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:predecessor . ?uri prop:company ?x . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) What city is the residence of Cheryl Teigs?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Cheryl_Tiegs onto:residence ?uri }",julipc-p(huggingface) Which basketball team's coach is Kurt Rambis?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:coach res:Kurt_Rambis }",julipc-p(huggingface) Who is the successor of Quest Software ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Quest_Software prop:successor ?uri }",julipc-p(huggingface) What are some other destinations covered by the airlines whose flights go to the Mediterranean sea?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:destinations . ?x onto:destination ?uri . ?x rdf:type onto:Airline}",julipc-p(huggingface) Where is the assembly of Caterpillar 797 ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Caterpillar_797 onto:assembly ?uri }",julipc-p(huggingface) What is the official residence of the senator who is the deputy of Everett Dirksen?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:deputy ?x . ?x onto:residence ?uri . ?x rdf:type onto:Senator}",julipc-p(huggingface) Name the television show whose voice is given by April Stewart and theme music composer is Primus (band)?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:voices . ?uri prop:themeMusicComposer . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) Name the constituency of Jonas Gahr Stre ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Jonas_Gahr_Støre prop:constituency ?uri }",julipc-p(huggingface) Which players have represented Los Angeles Angels of Anaheim?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:team . ?uri rdf:type onto:BaseballPlayer}",julipc-p(huggingface) Where did Goran Cengic die?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Goran_Čengić prop:deathPlace ?uri }",julipc-p(huggingface) What is the profession of Claiborne Pell ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Claiborne_Pell onto:profession ?uri }",julipc-p(huggingface) Which former team of the Harry Parker (baseball) is the debut team of the Carl Sitton?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:formerTeam ?uri. prop:debutteam ?uri}",julipc-p(huggingface) What are the county seats of the region which operates the Boeing Field?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:operator ?x . ?x onto:countySeat ?uri . ?x rdf:type onto:Region}",julipc-p(huggingface) Where is the hometown of A Bartlett Giamatti?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:A._Bartlett_Giamatti onto:hometown ?uri }",julipc-p(huggingface) What are the professions of Frederick Frelinghuysen (general) ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:occupation ?uri }",julipc-p(huggingface) Name the species of Southwest African lion ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Southwest_African_lion onto:species ?uri }",julipc-p(huggingface) Count the sports played at universities located in Urban Areas?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:campus . ?x onto:sport ?uri . }",julipc-p(huggingface) What is the mountain whose parent mountain peak is Nevado de Toluca?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:parentMountainPeak . ?uri rdf:type onto:Mountain}",julipc-p(huggingface) Was Just Another day made by Queen Latifah?,"PREFIX res: PREFIX onto: ASK WHERE { onto:musicalBand res:Queen_Latifah }",julipc-p(huggingface) Who was the narrator in the point?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:narrated ?uri }",julipc-p(huggingface) What is the home town of the Band which is the previous work of Sammy Hagar & Friends ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:previousWork ?x . ?x onto:hometown ?uri . ?x rdf:type onto:Band}",julipc-p(huggingface) List all the school of the rugby player whose one of the school is Michael House ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:school . ?x prop:school ?uri . ?x rdf:type onto:RugbyPlayer}",julipc-p(huggingface) What is the official residence of the Christopher Daz Figuero which is also the state of the Cruce a Nado Internacional,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Christopher_Díaz_Figueroa prop:residence ?uri. res:Cruce_a_Nado_Internacional onto:country ?uri}",julipc-p(huggingface) What is the national origin of Focke-Wulf Fw 260 ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:nationalOrigin ?uri }",julipc-p(huggingface) What is manufactured by a company founded by Akio Morita?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:founder res:Akio_Morita . ?uri onto:manufacturer ?x . }",julipc-p(huggingface) "What is the name of the river whose mouth country is Mozambique and source region is North-Western Province, Zambia?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:mouthCountry . ?uri onto:sourceRegion . ?uri rdf:type onto:River}",julipc-p(huggingface) List the races of Fergie Sutherland?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Fergie_Sutherland prop:race ?uri }",julipc-p(huggingface) Games on amiga are typically of what kind?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:computingPlatform . ?x prop:genre ?uri . ?x rdf:type onto:VideoGame}",julipc-p(huggingface) Where is the gold coast football club located?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Gold_Coast_Football_Club prop:location ?uri }",julipc-p(huggingface) Which shows are similar to the ones produced by Phil Collinson?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:executiveProducer . ?uri onto:related ?x . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) What is the country whose leader name is Grard Larcher?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:leaderName . ?uri rdf:type onto:Country}",julipc-p(huggingface) Name the wine regions of Baco noir?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Baco_noir onto:wineRegion ?uri }",julipc-p(huggingface) What is the awards won by the producer of From the Life of the Marionettes ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:From_the_Life_of_the_Marionettes onto:producer ?x . ?x prop:awards ?uri . }",julipc-p(huggingface) What is the meaning of the Isa (name) which is also a relegion of Sacred Heart Convent School (Bangkok) ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:meaning ?uri. onto:type ?uri}",julipc-p(huggingface) List the doctoral students of Harry Harlow ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Harry_Harlow prop:doctoralStudents ?uri }",julipc-p(huggingface) List the major shrines of the saints whose one of the shrine is St. Takla Haymanot's Church ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:majorShrine . ?x onto:majorShrine ?uri . ?x rdf:type onto:Saint}",julipc-p(huggingface) Which currency is used by the record label of the Way to Your Heart?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:The_Way_to_Your_Heart onto:recordLabel ?x . ?x prop:currency ?uri . }",julipc-p(huggingface) In which department does Raymond Baldwin work?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Raymond_E._Baldwin prop:branch ?uri }",julipc-p(huggingface) Where did the fashion designer study who died at the Stony Brook University Hospital?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:deathPlace . ?x prop:education ?uri . ?x rdf:type onto:FashionDesigner}",julipc-p(huggingface) Which company of Ford Theatre is the owning organization of F0ord Kansa City Assemply Plant ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Ford_Kansas_City_Assembly_Plant onto:owningOrganisation ?uri. res:Ford_Theatre prop:company ?uri}",julipc-p(huggingface) What is the religion of the relatives of Ananda Weerasekara?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:relation res:Ananda_Weerasekara . ?x onto:religion ?uri . }",julipc-p(huggingface) Who are all the people who used to figure skate with the current partner of Alexa Scimeca?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Alexa_Scimeca onto:currentPartner ?x . ?x onto:formerPartner ?uri . }",julipc-p(huggingface) Isaac Hayes has acted in which movies ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:starring . ?uri rdf:type onto:Film . ?uri rdf:type onto:Film}",julipc-p(huggingface) What is the citizenship of the Sarah Kazemy and land of the Cervelle de canut,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Sarah_Kazemy onto:citizenship ?uri. res:Cervelle_de_canut onto:country ?uri}",julipc-p(huggingface) What is the company that has products with Windows RT as its OS?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:os res:Windows_RT . ?uri onto:product ?x . }",julipc-p(huggingface) How many buildings are located in the jurisdiction of John Tory?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:leaderName . ?uri prop:location ?x . ?uri rdf:type onto:Building}",julipc-p(huggingface) Name some software as a service?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:license . ?uri rdf:type onto:Software}",julipc-p(huggingface) List down the associated musical artist of the writer of Rain Is a Good Thing ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Rain_Is_a_Good_Thing prop:writer ?x . ?x onto:associatedMusicalArtist ?uri . }",julipc-p(huggingface) Who founded the league which was won by Joe McKeehen?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:champion . ?x prop:founded ?uri . ?x rdf:type onto:SportsLeague}",julipc-p(huggingface) "How many companies were founded in Menlo Park, California?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:foundation . ?uri rdf:type onto:Company}",julipc-p(huggingface) Which European Broadcasting Union's TV show has opening theme as Te Deum ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:company . ?uri onto:openingTheme . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) Give me all martial artists trained by Joe Schilling.,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:trainer . ?uri rdf:type onto:MartialArtist}",julipc-p(huggingface) Name the musical band of Written in the Stars ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:musicalBand ?uri }",julipc-p(huggingface) Carl Sagan has penned books on how many matters?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:author . ?x prop:subject ?uri . }",julipc-p(huggingface) What is the venerated in of Edwin of Northumbria ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Edwin_of_Northumbria prop:veneratedIn ?uri }",julipc-p(huggingface) Where was Picasso's Last Words recorded ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:recorded ?uri }",julipc-p(huggingface) "What is the hub airport of Pawan Hans, and is also the largest city of India?","PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Pawan_Hans onto:hubAirport ?uri. res:India onto:largestCity ?uri}",julipc-p(huggingface) What is the occupation of the people who are born in Iowa?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:birthPlace . ?x onto:occupation ?uri . ?x rdf:type onto:Person}",julipc-p(huggingface) Where all does the sister station of virgin radio play?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:sisterStation res:Virgin_Radio . ?x prop:location ?uri . }",julipc-p(huggingface) Under whom did Charles Drummond Ellis do his PhD?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:doctoralStudent res:Charles_Drummond_Ellis }",julipc-p(huggingface) How many have company as Paramount Television and network as NBC are there?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:company . ?uri onto:network }",julipc-p(huggingface) Under which president did some politicians live in Kensington?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:residence . ?x onto:president ?uri . ?x rdf:type onto:OfficeHolder}",julipc-p(huggingface) Ontario's ice hockey players have been a part of which teams?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:placeOfBirth . ?x onto:team ?uri . ?x rdf:type onto:IceHockeyPlayer}",julipc-p(huggingface) What race of Linda Hogan is the state of origin of the Holmes Colbert ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Linda_Hogan prop:ethnicity ?uri. res:Holmes_Colbert onto:stateOfOrigin ?uri}",julipc-p(huggingface) What is the official residence of Fergus McMaster ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Fergus_McMaster onto:residence ?uri }",julipc-p(huggingface) Count the different causes of death of Christians.,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:religion . ?x onto:deathCause ?uri . }",julipc-p(huggingface) How many players debuted their careers from San Francisco 49ers?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:debutTeam . ?uri rdf:type onto:Athlete}",julipc-p(huggingface) Name the TV shows whose developer is J. Michael Straczynski and executive producer is Douglas Netter?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:developer . ?uri onto:executiveProducer . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) What is the company whose one of the key person is Dennis Muilenburg and produces Boeing CH-47 Chinook ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:keyPeople . ?uri onto:product . ?uri rdf:type onto:Company}",julipc-p(huggingface) "Which company is located in Harris County, Texas?","PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:locationCity . ?uri rdf:type onto:Company}",julipc-p(huggingface) Which memeber of South Asia SubRegional Economic cooperation is also the nationality of Aishath saffa ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:South_Asia_Subregional_Economic_Cooperation prop:membership ?uri. res:Aishath_Saffa prop:nationality ?uri}",julipc-p(huggingface) Which board memeber of jimmy Wales also owns Latvian Wikipedia ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Jimmy_Wales onto:board ?uri. res:Latvian_Wikipedia onto:owner ?uri}",julipc-p(huggingface) Which baseball team is managed by Bruce Bochy?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:manager . ?uri rdf:type onto:BaseballTeam}",julipc-p(huggingface) "What are the musicals based on, whose lyricist was Shelon Harnick?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:lyrics . ?x onto:basedOn ?uri . ?x rdf:type onto:Musical}",julipc-p(huggingface) Who has given guest appearances on the TV Episodes whose was music done by Mama Makes 3?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:music . ?x prop:guests ?uri . ?x rdf:type onto:TelevisionEpisode}",julipc-p(huggingface) "What series is Mazes of Time from, and is produced by BBC multimedia?","PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:BBC_Multimedia onto:product ?uri. res:Doctor_Who:_The_Mazes_of_Time onto:series ?uri}",julipc-p(huggingface) What are the universities where athletics is regulated by National Collegiate Athletic Association?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:athletics . ?uri rdf:type onto:University}",julipc-p(huggingface) "Which office holder's resting place is Alta Mesa Memorial Park and Henry E. Catto, Jr. as predecessor ?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:restingPlace . ?uri prop:predecessor . ?uri rdf:type onto:OfficeHolder}",julipc-p(huggingface) Name the TV show whose network is NBC and is the subsequent work of Fraiser ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:network . ?uri onto:subsequentWork . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) How many had their debut team coached by Chip Kelly?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:coach . ?uri onto:debutTeam ?x . }",julipc-p(huggingface) Who is the scientist whose academic advisor was Karl Ewald Hasse?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:academicAdvisor . ?uri rdf:type onto:Scientist}",julipc-p(huggingface) Malaysian highway authority has designed bridges over what things?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:designer . ?x prop:crosses ?uri . ?x rdf:type onto:Bridge}",julipc-p(huggingface) Which labels have published songs written by Harry Connick Jr?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:writer . ?x prop:label ?uri . ?x rdf:type onto:Song}",julipc-p(huggingface) List the academic discipline of the journals whose publisher is SAGE Publications.,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:publisher . ?x onto:academicDiscipline ?uri . ?x rdf:type onto:AcademicJournal}",julipc-p(huggingface) What is the government type of Kumta ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Kumta prop:governmentType ?uri }",julipc-p(huggingface) what kind of games can I find for PC 9800?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:computingPlatform . ?x prop:genre ?uri . ?x rdf:type onto:VideoGame}",julipc-p(huggingface) "After the death of which political figure, did the Coalition Provisional Authority came into power?","PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:successor res:Coalition_Provisional_Authority . }",julipc-p(huggingface) Who owns the radio stations in Alabama?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:city . ?x onto:owner ?uri . ?x rdf:type onto:RadioStation}",julipc-p(huggingface) Name the movie whose director is Stanley Kubrick and editor is Anthony Harvey?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:editing . ?uri onto:director . ?uri rdf:type onto:Film}",julipc-p(huggingface) what are the nicknames of the people who are in Ekstraliga?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:league . ?x prop:nickname ?uri . }",julipc-p(huggingface) List the alma mater of the person who is wedded to Sissela Bok.,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:spouse res:Sissela_Bok . ?x prop:almaMater ?uri . }",julipc-p(huggingface) List all the members of the organization whose one of the members is Bangladesh ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:membership . ?x prop:membership ?uri . ?x rdf:type onto:Organisation}",julipc-p(huggingface) Which sports are played in schools founded by Fr Almeida?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:founder . ?x onto:sport ?uri . ?x rdf:type onto:School}",julipc-p(huggingface) What is the nationality of the economist who is one of the important people in the Foundation for Economic Education?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:keyPerson ?x . ?x onto:nationality ?uri . ?x rdf:type onto:Economist}",julipc-p(huggingface) List all discipline of the journals whose one of the discipline is Cerebral blood flow ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:academicDiscipline . ?x onto:academicDiscipline ?uri . ?x rdf:type onto:AcademicJournal}",julipc-p(huggingface) Which high school of jerry Tagge is also the nearest city of Tennie laura ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:highSchool ?uri. prop:nearestCity ?uri}",julipc-p(huggingface) In how many different places do Starwood hotels and resorts worldwide operate?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:operator . ?x prop:address ?uri . }",julipc-p(huggingface) Which athletics of Jaimatu Muslim Mindano is same as the genre of the Fritz Chess ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Jamiatu_Muslim_Mindanao onto:athletics ?uri. res:Fritz_Chess onto:genre ?uri}",julipc-p(huggingface) How many utopian and dystopian fiction books are there?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:literaryGenre . }",julipc-p(huggingface) Which scientist is known for anthrax and has Karl Ewald Hasse as his academic advisor ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:knownFor . ?uri onto:academicAdvisor . ?uri rdf:type onto:Scientist}",julipc-p(huggingface) Who appointed the governor under whom Richard Winn works?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:lieutenant . ?x prop:appointer ?uri . ?x rdf:type onto:Governor}",julipc-p(huggingface) Where is Vietnam Airlines located ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Vietnam_Airlines onto:location ?uri }",julipc-p(huggingface) "Which location of INKAS is also the location of T.I. Ahmadiyya Senior High School, Kumasi ?","PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:locations ?uri. onto:denomination ?uri}",julipc-p(huggingface) Which TV show's company is PlayTone and is produced by Stephen E. Ambrose ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:company . ?uri prop:producer . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) What is the route end of NorthSouth Transport Corridor ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:North–South_Transport_Corridor onto:routeEnd ?uri }",julipc-p(huggingface) List the architect of the buildings whose one of the architect is Philip Webb?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:architect . ?x prop:architect ?uri . ?x rdf:type onto:Building}",julipc-p(huggingface) What is the residence of the bronze medalist of Alpine skiing at the women's downhill competition at the 1972 Winter Olympics?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:bronzeMedalist ?x . ?x prop:birthPlace ?uri . }",julipc-p(huggingface) Who is the manufacturer of engine of Jeep Forward Control ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Jeep_Forward_Control prop:engine ?x . ?x onto:manufacturer ?uri . }",julipc-p(huggingface) Which company founded in New Mexico manufactures Visual Studio ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:foundation . ?uri prop:products . ?uri rdf:type onto:Company}",julipc-p(huggingface) Which government agency is run by Supachai Somcharoen?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:leader . ?x prop:agencyName ?uri . ?x rdf:type onto:GovernmentAgency}",julipc-p(huggingface) What is the owner of Ivanpah Solar Power Facility and the original developer of Dart?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:owner ?uri. onto:developer ?uri}",julipc-p(huggingface) Find the total number of ingredient of the recepies whose ingredient is common Mushroom ?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:ingredient . ?x onto:ingredient ?uri }",julipc-p(huggingface) List all the tenants of the stadium where the WWF Summer Slam 2004 took place.,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:venue ?x . ?x onto:tenant ?uri . }",julipc-p(huggingface) Who were the founders of Sea Gayle Music?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Sea_Gayle_Music prop:founder ?uri }",julipc-p(huggingface) What religion's politicians are in the Malaysian Chinese association?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:party . ?x onto:religion ?uri . ?x rdf:type onto:Politician}",julipc-p(huggingface) How many movies are directed by the spouse of Dolores del Ro?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:partner . ?uri prop:director ?x . ?uri rdf:type onto:Film}",julipc-p(huggingface) What are some bands out to texarkana?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:origin . ?uri rdf:type onto:Band}",julipc-p(huggingface) What is the military branch of John Tower ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:John_Tower onto:militaryBranch ?uri }",julipc-p(huggingface) In which country was GM was firt aired which is also the mouth country of Upper Neretva?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:mouthCountry ?uri. prop:firstAired ?uri}",julipc-p(huggingface) How many information appliance are manufactured by companies located in Taiwan?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:locationCity . ?uri onto:manufacturer ?x . ?uri rdf:type onto:InformationAppliance}",julipc-p(huggingface) How many people are in the England national football team?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:nationalteam . }",julipc-p(huggingface) With which musical artist is the producer of Spotlight associated ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:producer ?x . ?x prop:associatedActs ?uri . ?x rdf:type onto:MusicalArtist}",julipc-p(huggingface) Where was the current champion of Egyptian Open born ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Egyptian_Open onto:champion ?x . ?x onto:birthPlace ?uri . }",julipc-p(huggingface) In what battles did president Park Chung-hee participate?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:commander . ?uri rdf:type onto:MilitaryConflict}",julipc-p(huggingface) who is the husband of Rosie Huntington Whiteley?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:partner ?uri }",julipc-p(huggingface) What is the river whose tributary is Zarqa River?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:leftTributary . ?uri rdf:type onto:River}",julipc-p(huggingface) Who holds stock in the railway lines ending in Washington DC?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:routeEnd . ?x prop:owner ?uri . ?x rdf:type onto:RailwayLine}",julipc-p(huggingface) Which religion does the leader of Church and Wellesley follow?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Church_and_Wellesley prop:leaderName ?x . ?x onto:religion ?uri . }",julipc-p(huggingface) Who are the local authority of Buckhurst Hill County High School ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Buckhurst_Hill_County_High_School onto:localAuthority ?uri }",julipc-p(huggingface) Who made the singles on the famous album Aida?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:album . ?x onto:musicalArtist ?uri . ?x rdf:type onto:Single}",julipc-p(huggingface) List all the former broadcast network of WMDN ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:WMDN onto:formerBroadcastNetwork ?uri }",julipc-p(huggingface) What company's founder is Jim Harris?,"PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:founder }",julipc-p(huggingface) Which religions are practiced in India?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:hometown res:India . ?x prop:religion ?uri . }",julipc-p(huggingface) Which current player of Chicago Bulls was drafted by Los Angeles Clippers ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:team res:Chicago_Bulls . ?uri prop:draftTeam res:Los_Angeles_Clippers . }",julipc-p(huggingface) Which New Mexico company provides One Drive as a service ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:foundation . ?uri prop:services . ?uri rdf:type onto:Company}",julipc-p(huggingface) What team has players born in Dominican Republic ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:birthPlace res:Dominican_Republic . ?x onto:team ?uri . }",julipc-p(huggingface) Name the party of Indira Gandhi ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Indira_Gandhi onto:party ?uri }",julipc-p(huggingface) "Who was the opponent of Robert Carr, 1st Earl of Somerset ?","PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:opponent ?uri }",julipc-p(huggingface) What is the common country of Ganz UV and Balaton wine region ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Ganz_UV onto:operator ?uri. res:Balaton_wine_region onto:location ?uri}",julipc-p(huggingface) What is the mascot of Celal Bayar University ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Celal_Bayar_University prop:mascot ?uri }",julipc-p(huggingface) Whose resting place is William Henry Harrison Tomb State Memorial and has kids named John Scott Harrison?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:restingplace res:William_Henry_Harrison_Tomb_State_Memorial . ?uri onto:child res:John_Scott_Harrison . }",julipc-p(huggingface) Why did Letita McTavish Hargrave and Sextus Barbour die?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Letitia_MacTavish_Hargrave onto:deathCause ?uri. res:Sextus_Barbour prop:deathCause ?uri}",julipc-p(huggingface) Name the constituency of Domenico Modugno ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Domenico_Modugno prop:constituency ?uri }",julipc-p(huggingface) Name the president whose had relatives in Clinton family and lieutenant named Joe Purcell?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:relation . ?uri onto:lieutenant . ?uri rdf:type onto:President}",julipc-p(huggingface) What discipline was The Chess Monthly about ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:The_Chess_Monthly prop:discipline ?uri }",julipc-p(huggingface) Which saints were the messengers of Islam?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:veneratedIn . ?uri rdf:type onto:Saint}",julipc-p(huggingface) tonle sap flows into which river?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:rightTributary res:Tonlé_Sap }",julipc-p(huggingface) What awards were given to the producer of Chicken Little?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:producer ?x . ?x onto:award ?uri . }",julipc-p(huggingface) What water bodies have primary inflows sa Kemijoki?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:inflow res:Kemijoki }",julipc-p(huggingface) Where was WiZeefa founded ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:WiZeefa prop:foundation ?uri }",julipc-p(huggingface) Where is Richard Stites located ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Richard_Stites onto:birthPlace ?uri }",julipc-p(huggingface) Which drinks have emerged from the US?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:origin . ?x prop:locationCity ?uri . ?x rdf:type onto:Beverage}",julipc-p(huggingface) Who composed the lyrics of Holler If Ya Hear Me ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:lyrics ?uri }",julipc-p(huggingface) What is the headquarters of the public transit system which is the system of Bottineau LRT ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:system ?x . ?x prop:headquarters ?uri . ?x rdf:type onto:PublicTransitSystem}",julipc-p(huggingface) What units are garrisoned in the Pentagon?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:garrison . ?uri rdf:type onto:MilitaryUnit}",julipc-p(huggingface) What is the hometown of John Speraw ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:John_Speraw prop:hometown ?uri }",julipc-p(huggingface) Count the journals in the field of Philosophy.,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:discipline . ?uri rdf:type onto:AcademicJournal}",julipc-p(huggingface) Which scientist advised a doctoral student named Erban Ieica?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:doctoralStudents . ?uri rdf:type onto:Scientist}",julipc-p(huggingface) Where are the Dinamo Krasnodar players born?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:club . ?x prop:placeOfBirth ?uri . ?x rdf:type onto:Athlete}",julipc-p(huggingface) "How many major shrine are there, of the saints whose beatified by Pope Pius XI ?","PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:beatifiedBy . ?x onto:majorShrine ?uri . }",julipc-p(huggingface) Name the TV shows owned by divisions of CBS?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:parent . ?uri prop:company ?x . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) What is the academic discipline of Journal of Cerebral Blood Flow & Metabolism ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:academicDiscipline ?uri }",julipc-p(huggingface) What is the agency name of the Ministry of Information and Communication Technology (Thailand) and distribution region of the Channel 9 MCOT HD ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:agencyName ?uri. prop:city ?uri}",julipc-p(huggingface) Which gaming console's central processing unit is microprocessor and built by Sony?,"PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:cpu . ?uri onto:manufacturer . }",julipc-p(huggingface) List the home stadiums of the teams in the Russian Premier League?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:league res:2011–12_Russian_Premier_League . ?x onto:homeStadium ?uri . }",julipc-p(huggingface) Give me an estimate number of races where horses grandsired by the Wild Risk have raced in?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:grandsire . ?x prop:race ?uri . ?uri rdf:type onto:HorseRace}",julipc-p(huggingface) Give me the list of people who scaled mountains in Sierra Nevada?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:mountainRange . ?x onto:firstAscentPerson ?uri . }",julipc-p(huggingface) What is the name of the movie whose director of photography was Jordan Cronenweth and music composer was Vangelis?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:cinematography . ?uri onto:musicComposer . ?uri rdf:type onto:Film}",julipc-p(huggingface) What are the common sports played by jamiatu Muslim mindanao and Polytechnic University of Philippines Taguig ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Jamiatu_Muslim_Mindanao onto:athletics ?uri. res:Polytechnic_University_of_the_Philippines_Taguig onto:sport ?uri}",julipc-p(huggingface) Count the different origins of members of the Vitis Vinifera species.,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:species . ?x onto:origin ?uri . ?uri rdf:type onto:Place}",julipc-p(huggingface) What magazine published Allal and is the employer of Peter Bergman?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:publisher ?uri. onto:employer ?uri}",julipc-p(huggingface) Name the office holder who was married to Dolley Madison and has resting palce as Montpelier ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:spouse . ?uri prop:restingplace . ?uri rdf:type onto:OfficeHolder}",julipc-p(huggingface) Where was David Scherman trained ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:David_Scherman onto:training ?uri }",julipc-p(huggingface) In which series has Sean Young portrayed someone?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:portrayer res:Sean_Young . ?x onto:series ?uri . }",julipc-p(huggingface) "List all the hubs of the airline whose one of the hub is Subang, Indonesia ?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:hubs . ?x prop:hubs ?uri . ?x rdf:type onto:Airline}",julipc-p(huggingface) Who is the president when Loretta Ucelli used to work for Democratic party?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Loretta_Ucelli onto:president ?uri }",julipc-p(huggingface) Who wrote the play in which Blanche DuBois is a character?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:characters . ?x prop:writer ?uri . ?x rdf:type onto:Play}",julipc-p(huggingface) Which district of Robert William Wilcox os the place of birth of Kamaloohua ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Robert_William_Wilcox prop:district ?uri. res:Kamaloohua prop:placeOfBirth ?uri}",julipc-p(huggingface) Where is the capital of Kelsey Creek located?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Kelsey_Creek onto:region ?x . ?x onto:countySeat ?uri . }",julipc-p(huggingface) "What borders the valley which falls under Lake County, Oregon?","PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:municipality . ?x onto:border ?uri . ?x rdf:type onto:Valley}",julipc-p(huggingface) What city is it where Wayne Allard governs and Juli Ashton was born?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Wayne_Allard onto:region ?uri. res:Juli_Ashton onto:birthPlace ?uri}",julipc-p(huggingface) List the regions served by the company which serves in Pacific Ocean ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:regionServed . ?x onto:regionServed ?uri . ?x rdf:type onto:Company}",julipc-p(huggingface) Which prime ministers were served by the governor who appointed Murray Gleeson?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Murray_Gleeson onto:appointer ?x . ?x onto:primeMinister ?uri . }",julipc-p(huggingface) Name the fictional character painted by Josh Friedman and portrayed in Terminator Genisys ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:creator . ?uri onto:portrayer . ?uri rdf:type onto:FictionalCharacter}",julipc-p(huggingface) What is the state of origin of the person who is the successor of Tetsugen Bernard Glassman?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:successor ?x . ?x onto:stateOfOrigin ?uri . ?x rdf:type onto:Person}",julipc-p(huggingface) Give me the name of the organization hqed at Chaeng Watthana Govt Complex?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:headquarter . ?x prop:agencyName ?uri . ?x rdf:type onto:Organisation}",julipc-p(huggingface) Who is the writer of the singles whose producer is Peter-John Vettese?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:producer . ?x onto:writer ?uri . ?x rdf:type onto:Single}",julipc-p(huggingface) Count the number of artist whose pone of the field is writing ?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:field . ?x onto:field ?uri }",julipc-p(huggingface) Which veterans served at CBS?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:occupation res:CBS . }",julipc-p(huggingface) What are some shareholders of the bridge maintained by the Massachusetts department of transportation?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:maintainedBy . ?x prop:owner ?uri . ?x rdf:type onto:Bridge}",julipc-p(huggingface) Name the team for which Cam Plante played for which were also the tenants of MasterCard center ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Cam_Plante prop:playedFor ?uri. res:MasterCard_Centre prop:tenants ?uri}",julipc-p(huggingface) City of Miami Cemetery is the governing body of which city?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:City_of_Miami_Cemetery prop:governingBody ?uri }",julipc-p(huggingface) List the movies whose editors are born in London.,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:placeOfBirth . ?uri onto:editing ?x . ?uri rdf:type onto:Film}",julipc-p(huggingface) Who attended Great Ayton university?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:education res:Great_Ayton . }",julipc-p(huggingface) Where was Babita born ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Babita prop:birthplace ?uri }",julipc-p(huggingface) What is the city whose mayor is Giorgos Kaminis?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:mayor . ?uri rdf:type onto:AdministrativeRegion}",julipc-p(huggingface) Which destinations of the Air 2000 is also the location continent of the Falken Tire ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Air_2000 prop:destinations ?uri. res:Falken_Tire onto:locationCountry ?uri}",julipc-p(huggingface) Which field's journals are edited by Paul Morphy?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:editor . ?x prop:discipline ?uri . ?x rdf:type onto:AcademicJournal}",julipc-p(huggingface) Give me a list of everyone who manages the famous rock art sites?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:architecture res:Rock_art . ?x onto:governingBody ?uri . }",julipc-p(huggingface) List the film starring of the movies whose editor is Harvey Rosenstock ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:editing . ?x prop:starring ?uri . ?x rdf:type onto:Film}",julipc-p(huggingface) Name hte builder of Baku Olympic Stadium ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:builder ?uri }",julipc-p(huggingface) Count the awards received by Immunologists?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:fields . ?x onto:award ?uri . ?uri rdf:type onto:Award}",julipc-p(huggingface) What is the nickname of the club managed by Piotr baron?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:manager res:Piotr_Baron . ?x prop:nickname ?uri . }",julipc-p(huggingface) For how many different teams have the players debuted in Houston Astros played?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:debutTeam . ?x onto:team ?uri . ?uri rdf:type onto:SportsTeam}",julipc-p(huggingface) How many different things are used as ingredients in Sweden?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:country . ?x onto:ingredient ?uri . }",julipc-p(huggingface) How many people have been the first one to scale a peak in the Yosemite Park?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:locatedInArea . ?x onto:firstAscentPerson ?uri . ?uri rdf:type onto:Person}",julipc-p(huggingface) "What are some licensees of the stations playing in Nashville, Tennessee?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:area . ?x prop:licensee ?uri . ?x rdf:type onto:RadioStation}",julipc-p(huggingface) Which builder of Ford Straight-6 engine is also the automobile latform provider of Chiva bus ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:automobilePlatform ?uri. onto:manufacturer ?uri}",julipc-p(huggingface) List the awards given to the key people in Pixar ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Pixar prop:keyPeople ?x . ?x onto:award ?uri . }",julipc-p(huggingface) Which distributer of Bombay Sapphire also makes Grewy goose ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:manufacturer ?uri. prop:distributor ?uri}",julipc-p(huggingface) Count the total number of bacterias whose division is Firmicutes and domain is Bacteria?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:division . ?uri prop:domain }",julipc-p(huggingface) Count me the number of people whose military unit is involved with Close air support ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:role . ?uri onto:militaryUnit ?x . ?uri rdf:type onto:MilitaryPerson}",julipc-p(huggingface) What is the college of Malik Ausean which is also the college of Kyle Fuller ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:college ?uri. prop:college ?uri}",julipc-p(huggingface) What are some other great things by the person who produced Queer as Folk?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { onto:producer ?x . ?x prop:notableworks ?uri . ?x rdf:type onto:Person}",julipc-p(huggingface) Which rivers start in a country whose leader is Irene Mambilima?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:leaderName . ?uri onto:sourceCountry ?x . ?uri rdf:type onto:River}",julipc-p(huggingface) Count the number of books whose author's were born in Alcal de Henares ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:birthPlace . ?uri onto:author ?x . ?uri rdf:type onto:Book}",julipc-p(huggingface) List down all the baseball teams whose team manager was a Catcher?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:position . ?uri onto:manager ?x . ?uri rdf:type onto:BaseballTeam}",julipc-p(huggingface) Which musical band produced the subsequent work of City of New Orleans ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:subsequentWork ?x . ?x onto:musicalBand ?uri . }",julipc-p(huggingface) What is the alma mater of the James Still which is also the alma mater of Tom Maniatis?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:James_Still onto:almaMater ?uri. res:Tom_Maniatis prop:almaMater ?uri}",julipc-p(huggingface) Where is the stadium of west Papus football team ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:West_Papua_football_team onto:stadium ?uri }",julipc-p(huggingface) What is the debut team of the football player whose college is UCLA Bruins football?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:college . ?x onto:debutTeam ?uri . ?x rdf:type onto:GridironFootballPlayer}",julipc-p(huggingface) What is the origin of the grape whose wine region is the Troodos Mountains ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:wineRegion . ?x onto:origin ?uri . ?x rdf:type onto:Grape}",julipc-p(huggingface) Name the artist of Brad Paisley discography ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Brad_Paisley_discography prop:artist ?uri }",julipc-p(huggingface) Ernest Rutherford was the advisor of how many people?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:doctoralAdvisor . }",julipc-p(huggingface) Name the TV show whose composer is Judy Hart Angelo and company as Paramount Television ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:composer . ?uri prop:company . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) list all the chairman of Vancouver Whitecaps FC?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Vancouver_Whitecaps_FC prop:chairman ?uri }",julipc-p(huggingface) "What are some employees of Uni of California, santa cruz?","PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:employer . }",julipc-p(huggingface) "Which municipality of the Brown's Corners, toronto also place of birth of Krista Kelly ?","PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:municipality ?uri. prop:placeOfBirth ?uri}",julipc-p(huggingface) Which famous writer was married to Jill Krementz and had a son named Edith Vonnegut ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:spouse . ?uri onto:child . ?uri rdf:type onto:Writer}",julipc-p(huggingface) Name the nearest city to Tennie and Laura ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:nearestCity ?uri }",julipc-p(huggingface) How many TV shows have been created by Simon Fuller ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:creator . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) Who appointed the governor under which Robert Witherspoon worked?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Robert_Witherspoon onto:governor ?x . ?x prop:appointer ?uri . }",julipc-p(huggingface) What is the area of ITV (Thailand) ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:area ?uri }",julipc-p(huggingface) who all play for of the american football players at Quarterback position?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:position . ?x onto:team ?uri . ?x rdf:type onto:AmericanFootballPlayer}",julipc-p(huggingface) Name the office holder whose child is Lori Black and predecessor is Henry E. Catto Jr ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:children . ?uri onto:predecessor . ?uri rdf:type onto:OfficeHolder}",julipc-p(huggingface) Which televion show's theme music was given by Ron Grainer and is broadcasted by BBC HD ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:themeMusicComposer . ?uri onto:network . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) Name a person who was educated in Humes High School ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:education . ?uri rdf:type onto:Person}",julipc-p(huggingface) Where do I find buildings rented by Weber Thompson?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:tenant . ?x prop:address ?uri . ?x rdf:type onto:Building}",julipc-p(huggingface) What is the field of interest of the advisor of Henri Maspero ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Henri_Maspero onto:academicAdvisor ?x . ?x prop:fields ?uri . }",julipc-p(huggingface) Count the cities whihch are on the same sea as that of Miami ?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:cities . ?x prop:cities ?uri }",julipc-p(huggingface) Name the stock holders of soccer club whose one of the stockholder is Carl Sanders ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:owner . ?x onto:owner ?uri . ?x rdf:type onto:SoccerClub}",julipc-p(huggingface) Who are the key people of FWD.us?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:FWD.us prop:keyPeople ?uri }",julipc-p(huggingface) Who is the executive producer of Into the Dalek ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Into_the_Dalek prop:executiveProducer ?uri }",julipc-p(huggingface) List everyone who got their training in the city of California?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:city res:California . ?uri prop:training ?x . }",julipc-p(huggingface) Through how many cities does the river flowing into Arkansas go?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:mouthMountain . ?x onto:city ?uri . ?uri rdf:type onto:City}",julipc-p(huggingface) "What is the municipality of the Brown's Corners, Toronto and also the place of birth of the George Karrys","PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:municipality ?uri. prop:placeOfBirth ?uri}",julipc-p(huggingface) How many things are manufactured by the company whose subsidiary is Sony Corporation shareholders and subsidiaries?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:subsidiary . ?uri onto:manufacturer ?x . }",julipc-p(huggingface) What is the total number of office holders who preceded the people working under president bill clinton?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:president . ?uri prop:successor ?x . ?uri rdf:type onto:OfficeHolder}",julipc-p(huggingface) "In which other places are there companies which are in Ontario, too?","PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:locationCity res:Ontario . ?x prop:locations ?uri . }",julipc-p(huggingface) What is the POD of the successor of Pmare I ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Pōmare_I prop:successor ?x . ?x onto:deathPlace ?uri . }",julipc-p(huggingface) In which companies boards do the writers of Wikitionary belong?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Wiktionary onto:author ?x . ?x onto:board ?uri . }",julipc-p(huggingface) How many nations' volleyball players have played for the Russian women volleyball team?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:nationalteam . ?x prop:placeOfBirth ?uri . ?uri rdf:type onto:Country}",julipc-p(huggingface) "Which office holder's governor is Charles Willing Byrd and has final resting place in North Bend, Ohio?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:governor . ?uri prop:restingplace . ?uri rdf:type onto:OfficeHolder}",julipc-p(huggingface) What is the television show which has cast member as Jason Carter and network is TNT (TV channel)?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:starring . ?uri prop:network . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) In how many places can I find people whose alma mater was in bachelor of arts?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:almaMater . ?x onto:residence ?uri . ?uri rdf:type onto:Place}",julipc-p(huggingface) Which scientist's academic advisor is Georg Meissner and is known for invention of Anthrax ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:knownFor . ?uri prop:doctoralAdvisor . ?uri rdf:type onto:Scientist}",julipc-p(huggingface) Name the writer of South Park: The Stick of Truth ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:South_Park:_The_Stick_of_Truth onto:writer ?uri }",julipc-p(huggingface) Who owns Torrey Pines Gliderport?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Torrey_Pines_Gliderport prop:owner ?uri }",julipc-p(huggingface) Who wrote a streetcar named desire?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:writer ?uri }",julipc-p(huggingface) Which nationality of Newin Chidchob is also the nationality of Ajahn Sao Kantaslo ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Newin_Chidchob prop:nationality ?uri. res:Ajahn_Sao_Kantasīlo onto:nationality ?uri}",julipc-p(huggingface) What is the label of the album whose previous work is Waterfall?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:previousWork . ?x prop:label ?uri . ?x rdf:type onto:Album}",julipc-p(huggingface) What is the label of things produced by the band If?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:artist . ?x prop:label ?uri . }",julipc-p(huggingface) Which automobile platform provider of Chiva bus is also the parent company of the Ford Falcon Cobra ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Chiva_bus onto:automobilePlatform ?uri. res:Ford_Falcon_Cobra onto:parentCompany ?uri}",julipc-p(huggingface) List the goverener of Winston Bryant?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Winston_Bryant prop:governor ?uri }",julipc-p(huggingface) Count the movies directed by Tim Burton and music composer Danny Elfman ?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:music . ?uri prop:director }",julipc-p(huggingface) Erik Jendresen is writer and Play tone is company of which TV show ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:writer . ?uri prop:company . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) From which genres of music did those genres emerge where drums are important?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:instruments . ?x onto:stylisticOrigin ?uri . ?x rdf:type onto:MusicGenre}",julipc-p(huggingface) Which developer of the Spider-Man: Edge of Time is the successor of PlayStation 2 ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:developer ?uri. onto:successor ?uri}",julipc-p(huggingface) Who is the appointer of Earl B. Ruth ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Earl_B._Ruth prop:appointer ?uri }",julipc-p(huggingface) What is the constituency of the leader of Labour Party (Norway)?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:leader ?x . ?x prop:constituency ?uri . }",julipc-p(huggingface) Name the office holder who has a child named lori Black and Harvard Westlake school as one of the educational institute ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:children . ?uri onto:almaMater . ?uri rdf:type onto:OfficeHolder}",julipc-p(huggingface) To which educational institutes is Samuel Isham associated to?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Samuel_Isham prop:education ?uri }",julipc-p(huggingface) Give me a count of mammals whose family is Canidae?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:family . ?uri rdf:type onto:Mammal}",julipc-p(huggingface) Which band produced the album Aida?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:album . ?x onto:musicalArtist ?uri . ?x rdf:type onto:MusicalWork}",julipc-p(huggingface) Name the champion of National League ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:National_League prop:champion ?uri }",julipc-p(huggingface) Which European sea has Oulu as one of the shore city ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:location . ?uri prop:cities . ?uri rdf:type onto:Sea}",julipc-p(huggingface) "Name the team Ramiro Pea played for, which was also the first team of Steve Ontiveros?","PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:debutteam ?uri. onto:team ?uri}",julipc-p(huggingface) List the total number of awards of the musicals who have won Tony Award?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:awards . ?x prop:awards ?uri }",julipc-p(huggingface) What is the debut team of people born in Vargas?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:birthPlace . ?x prop:debutteam ?uri . }",julipc-p(huggingface) "What is the product of the BBC Multimedia and is the theme of Visions, the convention?","PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:product ?uri. prop:genre ?uri}",julipc-p(huggingface) Count the awards received by the ones who fought the battle of france?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:battle . ?x onto:award ?uri . }",julipc-p(huggingface) List the military branch of Henry Hyde ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Henry_Hyde onto:militaryBranch ?uri }",julipc-p(huggingface) What is the ethnicity of the Maike Evers and state of origin of the Theodor Hillenhinrichs ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Maike_Evers onto:ethnicity ?uri. res:Theodor_Hillenhinrichs onto:stateOfOrigin ?uri}",julipc-p(huggingface) How many people play for the Dallas Cowboys?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:team . }",julipc-p(huggingface) "What is the country whose administrative centre is Hagta, Guam?","PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:capital . ?uri rdf:type onto:Country}",julipc-p(huggingface) Which sports by Polytechnic University of the Philippines Taguig is the discipline of The Chess Monthly ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:The_Chess_Monthly prop:discipline ?uri. res:Polytechnic_University_of_the_Philippines_Taguig onto:sport ?uri}",julipc-p(huggingface) Which source country of SamurAbsheron channel is the birth place of Anar Salmanov ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Samur–Absheron_channel onto:sourceCountry ?uri. res:Anar_Salmanov prop:placeOfBirth ?uri}",julipc-p(huggingface) List the resting place of the people who served in Norwalk Trainband.,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:militaryUnit . ?x prop:restingplace ?uri . ?x rdf:type onto:Person}",julipc-p(huggingface) Who was the designer of john madden Football '92 ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:designer ?uri }",julipc-p(huggingface) Give me all magazines whose editors live in Chicago?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:hometown . ?uri prop:editor ?x . ?uri rdf:type onto:Magazine}",julipc-p(huggingface) Which company's cars are assembled in Iran?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:assembly . ?x prop:parentCompany ?uri . ?x rdf:type onto:Automobile}",julipc-p(huggingface) Which are the television show which have been created by Donald Wilson?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:creator . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) Count all the Colonels?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:rank . }",julipc-p(huggingface) What sports can be played at universities in Metro Manila?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:state . ?x prop:athletics ?uri . ?x rdf:type onto:University}",julipc-p(huggingface) What has location as Ontario?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:location res:Ontario . }",julipc-p(huggingface) Where was Juno I launched from ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Juno_I onto:launchSite ?uri }",julipc-p(huggingface) "In which sects was the aristocrat venerated, whose parent is Thelred the Unready?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:parent . ?x prop:veneratedIn ?uri . ?x rdf:type onto:Royalty}",julipc-p(huggingface) "Who won the ohio house of representatives, 2010?","PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:incumbent ?uri }",julipc-p(huggingface) What is the draft team of Gene Conley ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Gene_Conley prop:draftTeam ?uri }",julipc-p(huggingface) What are some common ingredients used in Swedish dishes?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:country res:Sweden . ?x onto:ingredient ?uri . }",julipc-p(huggingface) Where did Rheinmetall MG 60 originated ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Rheinmetall_MG_60 onto:origin ?uri }",julipc-p(huggingface) Gregg Toland cinematographed how many things?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:cinematography . }",julipc-p(huggingface) What type of government is elected in Kumta?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Kumta onto:governmentType ?uri }",julipc-p(huggingface) List the birth city of the politicians of Democratic Party.,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:party . ?x onto:birthPlace ?uri . ?x rdf:type onto:Politician}",julipc-p(huggingface) Give me the total number of lines owned by owner of Mwtro-Noth Railroad ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:owner . ?x prop:owner ?uri }",julipc-p(huggingface) What is the governing body of Fort Monroe ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Fort_Monroe prop:governingBody ?uri }",julipc-p(huggingface) List the common sports played by Polytechnic University of the Philippines Bataan and Jamiatu Muslim Mindanao ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Polytechnic_University_of_the_Philippines_–_Bataan onto:sport ?uri. res:Jamiatu_Muslim_Mindanao onto:athletics ?uri}",julipc-p(huggingface) How many television shows are broadcasted on Fox Broadcasting Company?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:channel . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) What are some tv shows created by Simon Fuller?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:creator . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) What is the place of birth of the Michael Marder which is also the place of death of the Tigran Petrosian,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Michael_Marder prop:placeOfBirth ?uri. res:Tigran_Petrosian onto:deathPlace ?uri}",julipc-p(huggingface) Who is married to Tony Ramo,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:partner res:Tony_Romo . }",julipc-p(huggingface) How many states are in the Mediterranean Basketball Association?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { onto:country ?uri . ?uri rdf:type onto:Place}",julipc-p(huggingface) What is the title of the Kakae and also the district of the Robert William Wilcox ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Kakae prop:title ?uri. res:Robert_William_Wilcox prop:district ?uri}",julipc-p(huggingface) Who wrote the singles on the Main Course?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:album . ?x prop:writer ?uri . ?x rdf:type onto:Single}",julipc-p(huggingface) State the religion of the person known for People's Bank (Sri Lanka) ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:knownFor . ?x onto:religion ?uri . }",julipc-p(huggingface) To which US states does the roads belong which meet at the East Whiteland Township in Pennsylvania?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:routeJunction . ?x onto:state ?uri . ?x rdf:type onto:Road}",julipc-p(huggingface) In how many places can I find people who were the architects of the Dundas Castle?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { prop:architecture ?x . ?x prop:region ?uri . }",julipc-p(huggingface) List all the children of Barbara Bush?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Barbara_Bush prop:children ?uri }",julipc-p(huggingface) Name the notable work by Russell T Davis which is also the series of Doctor Who:Destiny of the Doctors ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Russell_T_Davies prop:notableworks ?uri. res:Doctor_Who:_Destiny_of_the_Doctors onto:series ?uri}",julipc-p(huggingface) Who oarent organization of Get TV is also the label provider of I Pray on CHristmas ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:I_Pray_on_Christmas prop:label ?uri. res:GetTV onto:parentOrganisation ?uri}",julipc-p(huggingface) Who wrote the frost king?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:The_Frost_King onto:author ?uri }",julipc-p(huggingface) Which company had built the rockets launched at the Cape Canaveral Air Force Station Space Launch Complex 17?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:launchSite res:Cape_Canaveral_Air_Force_Station_Space_Launch_Complex_17 . ?x onto:manufacturer ?uri . }",julipc-p(huggingface) Name a royalty whose one of the child is Augustus and is associated with Publius Servilius Vatia Isauricus?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:children . ?uri onto:associate . }",julipc-p(huggingface) Who trained the wrestlers who are billed in Wisconsin?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:billed . ?x onto:trainer ?uri . ?x rdf:type onto:Wrestler}",julipc-p(huggingface) Which currency of Republic of Montenegro is also the currency of the French Southern and Antarctic Lands ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:currency ?uri. prop:currency ?uri}",julipc-p(huggingface) Where are the movies directed by Faisal Aman Khan recorded?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:director res:Faisal_Aman_Khan . ?x prop:recorded ?uri . }",julipc-p(huggingface) Where was the battle fought where 2nd Foreign Infantry Regiment participated ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:battle ?x . ?x onto:territory ?uri . ?x rdf:type onto:MilitaryConflict}",julipc-p(huggingface) How many cities are around the sea in which the ionian sea flows?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { onto:outflow ?x . ?x prop:cities ?uri . ?x rdf:type onto:Sea}",julipc-p(huggingface) What is the administrative headquarters of Pulau Ujong ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Pulau_Ujong onto:capital ?uri }",julipc-p(huggingface) "What all is produced by companies in Douglas, Isle of Man?","PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:locationCity . ?x onto:product ?uri . ?x rdf:type onto:Company}",julipc-p(huggingface) Miguel de Cervantes wrote the musical extended from which book?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:author . ?x onto:basedOn ?uri . ?x rdf:type onto:Musical}",julipc-p(huggingface) Which city amongst the one which belongs to Boundary Dam was the palce for Soccer Bowl '76 ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:city ?uri. prop:owner ?uri}",julipc-p(huggingface) Which employer of Manu Cornet has alsoe written Google.by ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Manu_Cornet prop:employer ?uri. res:Google.by onto:author ?uri}",julipc-p(huggingface) Who had headed the governmental agencies whose admin HQ was in Niederkirchnerstrasse?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:headquarter . ?x onto:leader ?uri . ?x rdf:type onto:GovernmentAgency}",julipc-p(huggingface) Where does the Kentucky cycle take place?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:The_Kentucky_Cycle prop:place ?uri }",julipc-p(huggingface) "Whichi burial place of the Henri, Duke of Rohan is also the birth place of Michel Frutschi ?","PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:placeOfBurial ?uri. prop:birthPlace ?uri}",julipc-p(huggingface) Which river's source mountain is Baikal Mountains and is located in Laptev Sea ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:sourceMountain . ?uri prop:mouthLocation . ?uri rdf:type onto:River}",julipc-p(huggingface) Among which sitcoms in which theme music is composed by Gary Portnoy is located in Massachusetts ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:location . ?uri prop:themeMusicComposer . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) Name the movies distributed by Warner Bros. and directed by Ridley Scott ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:distributor . ?uri prop:director . ?uri rdf:type onto:Film}",julipc-p(huggingface) "WHich region of the Providence Chapel, Charlwood is also the region of the Joseph Case High School","PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:style ?uri. onto:region ?uri}",julipc-p(huggingface) Name a river starting from arequipa region?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:sourceRegion . ?uri rdf:type onto:River}",julipc-p(huggingface) What basketball league's champion is Golden State Warriors,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:champion . ?uri rdf:type onto:BasketballLeague}",julipc-p(huggingface) Name some people working at someplace owned by News Corp.,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:owners res:News_Corp . ?uri onto:employer ?x . }",julipc-p(huggingface) What is the basketball team whose President's college is Brockport Golden Eagles?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:college . ?uri prop:president ?x . ?uri rdf:type onto:BasketballTeam}",julipc-p(huggingface) Count the number of fileds of the scientist whose one of the interest is Chinese poetry ?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:fields . ?x prop:fields ?uri }",julipc-p(huggingface) What organisations purpose is Peace?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:purpose . ?uri rdf:type onto:Organisation}",julipc-p(huggingface) In how many different teams have all those who have played as a defenceman been?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:position . ?x prop:playedFor ?uri . ?uri rdf:type onto:SportsTeam}",julipc-p(huggingface) How many teams have used the stadiums which have been rented by the Canadian Hockey team?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:tenant . ?x prop:tenants ?uri . }",julipc-p(huggingface) How many teams have LA kings players in them currently?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:formerTeam . ?x onto:team ?uri . ?uri rdf:type onto:SportsTeam}",julipc-p(huggingface) What is the television show whose developer is J. Michael Straczynski?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:developer . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) What is the content license of Darcs ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Darcs onto:license ?uri }",julipc-p(huggingface) "Name a military unit whose command structure is United States Department of the Navy and garrison is Arlington County, Virginia?","PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:commandStructure . ?uri onto:garrison . ?uri rdf:type onto:MilitaryUnit}",julipc-p(huggingface) List all the artist of albums which have been produced by Stephen Kozmeniuk ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:producer . ?x prop:artist ?uri . ?x rdf:type onto:Album}",julipc-p(huggingface) Which colored race horses have won the Grand National?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:honours . ?x onto:colour ?uri . ?x rdf:type onto:RaceHorse}",julipc-p(huggingface) "What is common between sports played at Fr Agnel School and Jr college, and the genre of Virtual Kasparov?","PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Virtual_Kasparov onto:genre ?uri. res:Fr._Agnel_Multipurpose_School_and_Junior_College onto:sport ?uri}",julipc-p(huggingface) What are other famous works of the writer who created the Sarah Jane Adventures?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:notableworks . ?x onto:notableWork ?uri . ?x rdf:type onto:Writer}",julipc-p(huggingface) What is the mascot of the alma mater of Deborah Crombie?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Deborah_Crombie onto:almaMater ?x . ?x prop:mascot ?uri . }",julipc-p(huggingface) Where did the genres originate which can found in The Mudbloods?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:The_Mudbloods prop:genre ?x . ?x onto:stylisticOrigin ?uri . }",julipc-p(huggingface) What is the resting place of the person who is the successor of James W. Hyatt ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:successor ?x . ?x onto:restingPlace ?uri . ?x rdf:type onto:Person}",julipc-p(huggingface) Who wrote the mangas produced by Masahike Minami?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:producer . ?x onto:author ?uri . ?x rdf:type onto:Manga}",julipc-p(huggingface) Which contnet license provider of Microsoft Office Picture Manager is also the game platform of Google Clud Connect ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Microsoft_Office_Picture_Manager onto:license ?uri. res:Google_Cloud_Connect onto:computingPlatform ?uri}",julipc-p(huggingface) What is the mascot of military in Quezon city?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:garrison . ?x prop:mascot ?uri . ?x rdf:type onto:MilitaryUnit}",julipc-p(huggingface) "What all are in the states whose anthem is Ja, vi esker dette landet?","PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:anthem . ?uri onto:country ?x . }",julipc-p(huggingface) Which officers fought in the war of Siege of Fort Recovery?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:battle . ?uri rdf:type onto:OfficeHolder}",julipc-p(huggingface) return some players who have played in the NBA?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:league res:National_Basketball_Association }",julipc-p(huggingface) Name an airline with hub airports as Los Angeles International Airport and San Francisco International Airport?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:hubAirport . ?uri prop:hubs . ?uri rdf:type onto:Airline}",julipc-p(huggingface) "Give me all office holders who finally retired in Montpelier, Orange, Virgina?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:restingplace . ?uri rdf:type onto:OfficeHolder}",julipc-p(huggingface) Give me a count on scientist who are known for garrison is Tennessee ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:garrison . ?uri prop:knownFor ?x . ?uri rdf:type onto:Scientist}",julipc-p(huggingface) "Which river starts from the county seat of Heathsville, Virginia?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:countySeat . ?uri prop:mouthLocation ?x . ?uri rdf:type onto:River}",julipc-p(huggingface) Who owns the bank where Fabio Mercurio works?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:institution ?x . ?x prop:owner ?uri . ?x rdf:type onto:Bank}",julipc-p(huggingface) Who owns the horses which have won the Timeform award?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:awards . ?x onto:owner ?uri . ?x rdf:type onto:Horse}",julipc-p(huggingface) What are some fictional characters whose voice is in the peanuts movie?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:voice res:The_Peanuts_Movie . }",julipc-p(huggingface) What religion do people of the country of Mahbuba Islam Rakhi follow?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Mahbuba_Islam_Rakhi onto:nationality ?x . ?x onto:religion ?uri . }",julipc-p(huggingface) How many people used to play for Toronto Argonauts?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:formerTeam . }",julipc-p(huggingface) How many different people have been in any political seat in places which are under the Indian Standard timezone?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:timeZone . ?x onto:leaderName ?uri . }",julipc-p(huggingface) "The sports team which played at the American Basketball League championship (1996-1998), have which stadiums?","PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:league . ?x onto:stadium ?uri . ?x rdf:type onto:SportsTeam}",julipc-p(huggingface) What is the national origin of Dornier Aerodyne and Hirth Acrostar ?;,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Dornier_Aerodyne prop:nationalOrigin ?uri. res:Hirth_Acrostar onto:origin ?uri}",julipc-p(huggingface) Count the tenants of the stadiums owned by toronto.,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:owner . ?x prop:tenants ?uri . }",julipc-p(huggingface) Name the president who has relations with Clinton family and had a lieutenant named Winston Bryant?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:relation . ?uri onto:lieutenant . ?uri rdf:type onto:President}",julipc-p(huggingface) What is the fictional character whose voice over is done by the animator of Dick Lundy ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:animator . ?uri onto:voice ?x . ?uri rdf:type onto:FictionalCharacter}",julipc-p(huggingface) How many sports are played in organizations presided by Emanuel de Guzman?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:president . ?x onto:sport ?uri . ?uri rdf:type onto:Sport}",julipc-p(huggingface) What are the home stadiums of the things Leonid Fedun has been the chairman of?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:chairman res:Leonid_Fedun . ?x onto:homeStadium ?uri . }",julipc-p(huggingface) Which region of English American is also the palce of Death of Brent Darby ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:English_Americans prop:region ?uri. res:Brent_Darby prop:placeOfDeath ?uri}",julipc-p(huggingface) Who acted in the work written by Colin Brake?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:writer . ?x prop:starring ?uri . ?x rdf:type onto:Work}",julipc-p(huggingface) List everything written in languages developed by EXperimental Computing Facility?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:author . ?uri prop:programmingLanguage ?x . ?uri rdf:type onto:Work}",julipc-p(huggingface) What are some movies whose score is composed by relatives of Bodhi Elfman?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:relatives . ?uri prop:music ?x . ?uri rdf:type onto:Film}",julipc-p(huggingface) List the series of the books whose author is K. W. Jeter.,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:author . ?x onto:series ?uri . ?x rdf:type onto:Book}",julipc-p(huggingface) What is the common university iof vanderbilt Commodores and also the college of hubert Wiggs ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Vanderbilt_Commodores onto:university ?uri. res:Hubert_Wiggs onto:college ?uri}",julipc-p(huggingface) What are the prizes awarded to the main members of DisneyToon Studios?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:DisneyToon_Studios onto:keyPerson ?x . ?x onto:award ?uri . }",julipc-p(huggingface) How many sports are played at the university whose president is Emanuel de Guzman?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:president . ?x onto:sport ?uri . ?uri rdf:type onto:Sport}",julipc-p(huggingface) Give me the count of interests of the philosopher whose primary interest is Metaphysics ?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:mainInterests . ?x prop:mainInterests ?uri }",julipc-p(huggingface) Who was buried at St. Mary's Church and fought the battle of Benedict Arnold's expedition to Quebec ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:battle . ?uri prop:placeofburial . }",julipc-p(huggingface) On which subjects does the author of the novel Thud! delve?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:nonFictionSubject ?uri }",julipc-p(huggingface) Name the people living in a place governed by William W Brien?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:leaderName res:William_W._Brien . ?uri onto:residence ?x . }",julipc-p(huggingface) Name the river whose source is located in Ikelenge District and mouth in Mozambique?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:sourceLocation . ?uri prop:mouthCountry . ?uri rdf:type onto:River}",julipc-p(huggingface) How many people won the Gold Medal of the Royal Astronomical Society?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:prizes . }",julipc-p(huggingface) What are the relatives of the parliament member whose successor is Peter Thorneycroft?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:successor . ?x onto:relation ?uri . ?x rdf:type onto:MemberOfParliament}",julipc-p(huggingface) Which river's source country is Zambia and mouth country is Mozambique?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:sourceCountry . ?uri prop:mouthCountry . ?uri rdf:type onto:River}",julipc-p(huggingface) How many members are there of the order of Bacillales?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:order . }",julipc-p(huggingface) Which program was on NBC network with executive producer as Glen and Les Charles?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:network . ?uri onto:executiveProducer . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) Moscow-Kazan high speed railway starts from which station?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:routeStart ?uri }",julipc-p(huggingface) Which neighboring municipalities of Cologny has a mayor named Ester Alder ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:neighboringMunicipalities res:Cologny . ?uri onto:mayor res:Esther_Alder . }",julipc-p(huggingface) How many people work in the Massachusetts house of Representatives?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:office . }",julipc-p(huggingface) Which countries came together to serve a greater purpose and founded South Asia Subregional Economic Cooperation?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:South_Asia_Subregional_Economic_Cooperation prop:membership ?uri }",julipc-p(huggingface) Count the number of religions followed by Janta Dal members.,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:party . ?x onto:religion ?uri . }",julipc-p(huggingface) "Who is the founder of Wuropean School, Karlsruhe ?","PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:founder ?uri }",julipc-p(huggingface) Which football team is in a city where A J Clark was a builder?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:builder . ?uri prop:city ?x . ?uri rdf:type onto:AmericanFootballTeam}",julipc-p(huggingface) Which city near to Elliott Bay was the death place of George F. Moore ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:nearestCity ?uri. prop:placeOfDeath ?uri}",julipc-p(huggingface) Through which label has Katy B released her singles?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:writer . ?x onto:recordLabel ?uri . ?x rdf:type onto:Single}",julipc-p(huggingface) List the teams for which Bobby Hoppe played ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Bobby_Hoppe prop:pastteams ?uri }",julipc-p(huggingface) How many other characters are there of the plays which has a characters name Joker (comics) ?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:characters . ?x prop:characters ?uri }",julipc-p(huggingface) Who first ascented a mountain of Cathedral Peak (California) ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:firstAscentPerson ?uri }",julipc-p(huggingface) Which awards did the children of Erik Bergman won ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:children ?x . ?x prop:awards ?uri . }",julipc-p(huggingface) Name the sharehoders of The National Herald ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:owner ?uri }",julipc-p(huggingface) Which writer of A streetcar Named Desire is also the author of The Catastrophe of Success ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:writer ?uri. onto:author ?uri}",julipc-p(huggingface) How many people are buried in the Mausoleum of Augustus?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:placeOfBurial . }",julipc-p(huggingface) What are some famous works of the writer of The Second Coming?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:writer ?x . ?x prop:notableworks ?uri . }",julipc-p(huggingface) List the program genres of the sister stations of 97.1 WASH FM?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:sisterStations ?x . ?x onto:programmeFormat ?uri . }",julipc-p(huggingface) Which team's players have played in the national hockey league?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:league . ?x onto:team ?uri . ?x rdf:type onto:Athlete}",julipc-p(huggingface) Which associated band of the Teddy Riley is also the performer of the Before I Let You Go?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Teddy_Riley onto:associatedBand ?uri. res:Before_I_Let_You_Go onto:musicalArtist ?uri}",julipc-p(huggingface) Where was James McClure born ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:birthPlace ?uri }",julipc-p(huggingface) Who is the operator of AT&T Park ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:operator ?uri }",julipc-p(huggingface) Whose music composer is signed up with Sony Music Entertainment?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:label res:Sony_Music_Entertainment . ?uri onto:musicComposer ?x . }",julipc-p(huggingface) In which company is Raymond Conner at an important position?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:keyPerson res:Raymond_Conner }",julipc-p(huggingface) Who hold stocks in the bank which is located at 731 Lexington Avenue?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:locationCity . ?x prop:owner ?uri . ?x rdf:type onto:Bank}",julipc-p(huggingface) Which labels signs up progressive rock bands?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:genre . ?x onto:recordLabel ?uri . ?x rdf:type onto:MusicalArtist}",julipc-p(huggingface) "Where does the railway tracks start, which ends in Kazan?","PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:routeEnd . ?x onto:routeStart ?uri . ?x rdf:type onto:RailwayLine}",julipc-p(huggingface) Name the branch of Carroll E. Lanier ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Carroll_E._Lanier prop:branch ?uri }",julipc-p(huggingface) what are some devices made by asus?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:manufacturer . ?uri rdf:type onto:InformationAppliance}",julipc-p(huggingface) Which former team of Franois Beauchemin does the Nathan Dempsey played for ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Nathan_Dempsey prop:playedFor ?uri. res:François_Beauchemin onto:formerTeam ?uri}",julipc-p(huggingface) What is the colour of Red Marauder ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Red_Marauder onto:colour ?uri }",julipc-p(huggingface) What is the draft team of Dale Mitchell (ice hockey) ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:draftTeam ?uri }",julipc-p(huggingface) "Give me a count of schools in Reading, Berkshire?","PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:city . ?uri rdf:type onto:School}",julipc-p(huggingface) Who are some cofounders of record labels with Frank Rogers?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:foundedBy . ?x prop:founder ?uri . ?x rdf:type onto:RecordLabel}",julipc-p(huggingface) By whom is the broadcaster network Bounce TV founded?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Bounce_TV onto:foundedBy ?uri }",julipc-p(huggingface) Who is the scientist whose doctoral student is Erich Bagge?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:doctoralStudent . ?uri rdf:type onto:Scientist}",julipc-p(huggingface) Who appointed the successor of Thomas Bee?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Thomas_Bee onto:successor ?x . ?x prop:appointer ?uri . }",julipc-p(huggingface) List books authored by Miguel de Cervantes and published by Francisco de Robles ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:author . ?uri onto:publisher . ?uri rdf:type onto:Book}",julipc-p(huggingface) List down all notable works of Neil Cross ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Neil_Cross onto:notableWork ?uri }",julipc-p(huggingface) What is the local authority of the Buckhurst Hill County High School is also the birth palce of Sarah hampion ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:localAuthority ?uri. prop:birthPlace ?uri}",julipc-p(huggingface) what awards have been giving to Muhammad Yunus?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Muhammad_Yunus onto:award ?uri }",julipc-p(huggingface) Who is the meaning of the name Isa which was also one of the subject of play The Prodigal Son ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:meaning ?uri. prop:subject ?uri}",julipc-p(huggingface) "Who are the parent of the people that has POD as Redding, Connecticut ?","PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:deathPlace . ?x onto:parent ?uri . }",julipc-p(huggingface) What are the things Eric Schiller known for ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Eric_Schiller onto:knownFor ?uri }",julipc-p(huggingface) List the parts of Greater San Antonio?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Greater_San_Antonio onto:part ?uri }",julipc-p(huggingface) Where is Temenos Group founded ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Temenos_Group prop:foundation ?uri }",julipc-p(huggingface) Name some leaders of the parent organisation of the Gestapo?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Gestapo onto:parentOrganisation ?x . ?x onto:leader ?uri . }",julipc-p(huggingface) How many venues are located in the US?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:address . ?uri rdf:type onto:Venue}",julipc-p(huggingface) What are some neighboring cities of cologny?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:neighboringMunicipalities res:Cologny . }",julipc-p(huggingface) What religion is Kabir Suman from?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:birthName res:Kabir_Suman . ?x prop:religion ?uri . }",julipc-p(huggingface) Who are the people who died in a place architected by Jens Jensen,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:architect . ?uri onto:deathPlace ?x . ?uri rdf:type onto:Person}",julipc-p(huggingface) Name the television show whose subsequent work is Frasier and opening theme is Where Everybody Knows Your Name?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:subsequentWork . ?uri onto:openingTheme . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) Name the television show whose company is HBO and Playtone?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:company . ?uri prop:company . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) Name the cover artist of the adventure of Tom sawyer ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:The_Adventures_of_Tom_Sawyer onto:coverArtist ?uri }",julipc-p(huggingface) Who did Bruce Bochy play for ? ,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Bruce_Bochy onto:team ?uri }",julipc-p(huggingface) Name the company which provides Outlook.com as service and also has a product named Microsoft Azure ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:services . ?uri onto:product . ?uri rdf:type onto:Company}",julipc-p(huggingface) Name the company with product named Microsft Azure and provides OneDrive as a service ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:product . ?uri prop:services . ?uri rdf:type onto:Company}",julipc-p(huggingface) What is the Band whose band member is Mark Middleton?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:bandMember res:Mark_Middleton }",julipc-p(huggingface) List the actors of Lucy Sullivan Is Getting Married?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Lucy_Sullivan_Is_Getting_Married prop:starring ?uri }",julipc-p(huggingface) How many people have worked in the band one of whose current member is Hynief?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:currentMembers . ?x onto:bandMember ?uri . ?uri rdf:type onto:Person}",julipc-p(huggingface) Enumerate all those who are in the Board of companies founded in New York?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:foundation . ?uri onto:board ?x . }",julipc-p(huggingface) Name the awards that have been given to the writer made famous for Creature Comforts?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:notableWork . ?x onto:award ?uri . ?x rdf:type onto:Writer}",julipc-p(huggingface) Murray Gold has composed music for how many things?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:composer . }",julipc-p(huggingface) In which wars did Percy Fitzwallace fight?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Percy_Fitzwallace prop:battles ?uri }",julipc-p(huggingface) What other awards have Becket fund for religious liberty winners received?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:award res:Becket_Fund_for_Religious_Liberty . ?x prop:awards ?uri . }",julipc-p(huggingface) Who was the vice president under which elizabeth alexander served?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:vicePresident ?uri . }",julipc-p(huggingface) How many people have been presenters for NBC shows?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:channel . ?x prop:presenter ?uri . ?uri rdf:type onto:Person}",julipc-p(huggingface) "Name the river whose source region is North-Western Province, Zambia and source location is Ikelenge District?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:sourceRegion . ?uri prop:sourceLocation . ?uri rdf:type onto:River}",julipc-p(huggingface) Who is the compiler of British Gazette whose prime minister is also Peter Thorneycroft ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:British_Gazette prop:editor ?uri. res:Peter_Thorneycroft prop:primeminister ?uri}",julipc-p(huggingface) Name the states which have been billed by the wrestlers who has also billed Georgia ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:billed . ?x prop:billed ?uri . ?x rdf:type onto:Wrestler}",julipc-p(huggingface) List the outflows of the lake whose one of the outflows is Benu river ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:outflow res:Benué_River . ?x onto:outflow ?uri . }",julipc-p(huggingface) Name the television show with opening theme as Te Deum and is composed by Marc-Antoine Charpentier?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:openingTheme . ?uri prop:themeMusicComposer . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) Who produced wizards vs aliens?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Wizards_vs_Aliens onto:producer ?uri }",julipc-p(huggingface) Who is the distributer of Rev ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:distributor ?uri }",julipc-p(huggingface) Which city was founded by George Washington and John Forbes (British Army officer)?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:founder . ?uri onto:founder . ?uri rdf:type onto:City}",julipc-p(huggingface) What are the books written by authors who died in Madrid?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:restingPlace . ?uri prop:author ?x . ?uri rdf:type onto:Book}",julipc-p(huggingface) What is father's name who also served in military of Carlene Carter?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:children res:Carlene_Carter . }",julipc-p(huggingface) Count the number of broadcast area of the TV stations which serves in Agalga ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:broadcastArea . ?x prop:broadcastArea ?uri }",julipc-p(huggingface) "In which wars army men awarded with the Croix de Guerre, fought?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:awards . ?x prop:battles ?uri . ?x rdf:type onto:MilitaryPerson}",julipc-p(huggingface) Where is the residence of the governor of Bangkok ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Bangkok onto:leaderName ?x . ?x prop:residence ?uri . }",julipc-p(huggingface) Name the scientist whose supervisor was Ernest Rutherford and had a doctoral students named Charles Drummond Ellis?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:doctoralAdvisor . ?uri prop:doctoralStudents . ?uri rdf:type onto:Scientist}",julipc-p(huggingface) Name the movies writtten by the group Monty Python ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:writer . ?uri rdf:type onto:Film}",julipc-p(huggingface) Where is Lao Plaza Hotel located?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Lao_Plaza_Hotel prop:developer ?uri }",julipc-p(huggingface) Which sitcom's company is Paramount Television and is located in Cheers Beacon hill ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:company . ?uri prop:location . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) Which mainter of Pandaruan Bridge is also the land of Malaysia junior Hockey league ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Pandaruan_Bridge onto:maintainedBy ?uri. res:Malaysia_Junior_Hockey_League onto:country ?uri}",julipc-p(huggingface) Which Tv series led to Frasier?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:subsequentWork . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) What is the profession of William Luther Hill ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:William_Luther_Hill onto:profession ?uri }",julipc-p(huggingface) Name all the hubs of the airlines whose one of the hubs is Selangir ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:hubs . ?x prop:hubs ?uri . ?x rdf:type onto:Airline}",julipc-p(huggingface) How many other school are there of the rugby players whose school is Michaelhouse ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:school . ?x prop:school ?uri }",julipc-p(huggingface) What are the films whose atleast one cast member died due to Colorectal cancer?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:deathCause . ?uri prop:starring ?x . ?uri rdf:type onto:Film}",julipc-p(huggingface) Who is the President of United World College of Costa Rica ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:United_World_College_of_Costa_Rica prop:president ?uri }",julipc-p(huggingface) Which city has it's landmark as Cheasty Boulevard South?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Cheasty_Boulevard_South onto:maintainedBy ?uri }",julipc-p(huggingface) List down the opponents of Frank Stilwell?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Frank_Stilwell onto:opponent ?uri }",julipc-p(huggingface) Name the movie whose director is Ridley Scott and it's music composer is Vangelis?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:director . ?uri onto:musicComposer . ?uri rdf:type onto:Film}",julipc-p(huggingface) Where is Bogobiri House located ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Bogobiri_House prop:locationCity ?uri }",julipc-p(huggingface) What is the religion of the leader of South Korean legislative election of 1992 ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:leader ?x . ?x onto:religion ?uri . }",julipc-p(huggingface) Who is the writer of Neverwhere (radio play) ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:writer ?uri }",julipc-p(huggingface) How many other key people are there of the non-profit organisations whose key people is Hillary Clinton ?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:keyPeople . ?x prop:keyPeople ?uri }",julipc-p(huggingface) List the stadium of the teams which uses Nea Smyrni as one of the stadium ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:stadium res:Nea_Smyrni_Stadium . ?x prop:stadium ?uri . }",julipc-p(huggingface) How many currencies are in used in places where people speak French?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:officialLanguage . ?x onto:currency ?uri . ?uri rdf:type onto:Currency}",julipc-p(huggingface) Which football managers managed Middlesbrough F.C.?,"PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:managerClub }",julipc-p(huggingface) "Who are some american football players whose high school is Oktoc, Mississippi?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:highSchool . ?uri rdf:type onto:AmericanFootballPlayer}",julipc-p(huggingface) Name the company founded in US and created Visual Studio ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:foundation . ?uri prop:products . ?uri rdf:type onto:Company}",julipc-p(huggingface) How many factions were involved in the battles fought by Arthur St. Clair?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { prop:battles ?x . ?x prop:combatant ?uri . }",julipc-p(huggingface) Count the number of ingredient of the foods which have one of the ingredient is Pork ?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:ingredient . ?x onto:ingredient ?uri }",julipc-p(huggingface) What is the television show whose opening theme is Te Deum (Charpentier)?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:openingTheme . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) List the ideologies of the party of Boonchu Rojanastien?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Boonchu_Rojanastien prop:party ?x . ?x onto:ideology ?uri . }",julipc-p(huggingface) Who were the narrators of the albums which had Ringo Starr as one of the narrator ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:narrated . ?x prop:narrated ?uri . ?x rdf:type onto:Album}",julipc-p(huggingface) How many people have played for the ones who own the stadium of Bankers Life Fieldhouse?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:arena . ?uri prop:team ?x . }",julipc-p(huggingface) List the newspapers whose headquarters's time zone is Central European Summer Time.,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:timeZone . ?uri prop:headquarters ?x . ?uri rdf:type onto:Newspaper}",julipc-p(huggingface) Where does the river end which starts in Mazabuka?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:city . ?x onto:riverMouth ?uri . ?x rdf:type onto:River}",julipc-p(huggingface) Count all american football players whose former team owns Lucas Oil Stadium ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:city . ?uri onto:formerTeam ?x . ?uri rdf:type onto:AmericanFootballPlayer}",julipc-p(huggingface) What are the academic interests of the advisor of Paul Demiville ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Paul_Demiéville onto:academicAdvisor ?x . ?x prop:fields ?uri . }",julipc-p(huggingface) Which awards are presented by Swedish Academy?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:presenter . ?uri rdf:type onto:Award}",julipc-p(huggingface) Name the university whose teams have been managed by Albertin Montoya?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:managerclubs ?x . ?x onto:university ?uri . ?x rdf:type onto:SportsTeam}",julipc-p(huggingface) what are some journals of academic Philosophy,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:discipline res:Philosophy }",julipc-p(huggingface) Where did the conflict take place where Liu Mingchuan fought?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Liu_Mingchuan prop:battles ?x . ?x onto:territory ?uri . }",julipc-p(huggingface) Which rivers originate from Dowra?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:sourceMountain res:Dowra }",julipc-p(huggingface) What is the official residence of the Lula J. Davis which is also the death location of the John McTaggart (jockey) ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:residence ?uri. onto:deathPlace ?uri}",julipc-p(huggingface) What is the military rank of the commanders of Regiment of Mounted Grenadiers?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Regiment_of_Mounted_Grenadiers prop:notableCommanders ?x . ?x onto:militaryRank ?uri . }",julipc-p(huggingface) To which series does the character of Londo Mollari belong?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Londo_Mollari onto:series ?uri }",julipc-p(huggingface) What company's leader is Edwin Catmull?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:keyPeople . ?uri rdf:type onto:Company}",julipc-p(huggingface) How many different layouts do cars designed by Oliver Boulay have?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:designer . ?x onto:layout ?uri . }",julipc-p(huggingface) Whihc state of Timothy J. Roemer is also the location city of Dad's Root Beer ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:locationCity ?uri. prop:state ?uri}",julipc-p(huggingface) What is the type of Naval Station Bremerton ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Naval_Station_Bremerton prop:type ?uri }",julipc-p(huggingface) Name the borough of the Bordesley railway station which is also the route end of the Birmingham and Oxford Junction Railway?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Bordesley_railway_station prop:borough ?uri. res:Birmingham_and_Oxford_Junction_Railway onto:routeEnd ?uri}",julipc-p(huggingface) What are some movies written by British writers?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:nationality . ?uri onto:writer ?x . ?uri rdf:type onto:Film}",julipc-p(huggingface) Which university is led by Jay Gogue?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:president . ?uri rdf:type onto:University}",julipc-p(huggingface) Count the number of artists who trained at the San Francisco Art Institute?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:training . ?uri rdf:type onto:Artist}",julipc-p(huggingface) What games can be played in schools founded by Fr. Orlando?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:foundedBy . ?x onto:sport ?uri . ?x rdf:type onto:School}",julipc-p(huggingface) List the leaders of the government agencies whose jurisdiction was German-occupied Europe.,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:jurisdiction . ?x onto:leader ?uri . ?x rdf:type onto:GovernmentAgency}",julipc-p(huggingface) List the cast member of the movies whose producer is Mark Johnson.,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:producer . ?x onto:starring ?uri . ?x rdf:type onto:Film}",julipc-p(huggingface) Which city was designed by saleen Pator which is also the birht location of Jimmy Diggs ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Saleen_S5S_Raptor prop:designer ?uri. res:Jimmy_Diggs onto:birthPlace ?uri}",julipc-p(huggingface) Name the company whose products's predecessor is Boeing Vertol CH-46 Sea Knight?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:predecessor . ?uri prop:products ?x . ?uri rdf:type onto:Company}",julipc-p(huggingface) What is the birth place of music artists which were associated with Albert Ayler ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:associatedActs ?x . ?x onto:birthPlace ?uri . ?x rdf:type onto:MusicalArtist}",julipc-p(huggingface) What is the religious affiliation of Wickramabahu Central College (National School) ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:religiousAffiliation ?uri }",julipc-p(huggingface) Name the nearest city to Lake Victoria?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Lake_Victoria onto:nearestCity ?uri }",julipc-p(huggingface) Where is the tombstone of Johannes Gerhardus Strijdom?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Johannes_Gerhardus_Strijdom prop:restingplace ?uri }",julipc-p(huggingface) What is the common award won by Charles LeMaire and Eric Roth,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Charles_LeMaire prop:awards ?uri. res:Eric_Roth onto:award ?uri}",julipc-p(huggingface) Was Gareth Southgate a manager of Middlesbrough F.C.?,"PREFIX prop: ASK WHERE { prop:managerclubs }",julipc-p(huggingface) What is the total number of builder of the military structures whose builder is also United States?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:builder . ?x onto:builder ?uri }",julipc-p(huggingface) Tell me the total number of organizations who maintain the bridges made by the malaysian PWD?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:designer . ?x onto:maintainedBy ?uri . ?uri rdf:type onto:Organisation}",julipc-p(huggingface) How many shows does HBO have?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:company . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) How many people have been canonized by Pope Benedict XVI?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:canonizedBy . }",julipc-p(huggingface) What party was in majority of Fourth Legislative Assembly of Delhi?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Fourth_Legislative_Assembly_of_Delhi prop:party ?uri }",julipc-p(huggingface) Bud Adams owns which american football team?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:owner . ?uri rdf:type onto:AmericanFootballTeam}",julipc-p(huggingface) Whose work is in the Musee d'orsay?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:museum . ?x prop:artist ?uri . ?x rdf:type onto:Artwork}",julipc-p(huggingface) What are the famous Uni Toronto scientists known for?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:almaMater . ?x onto:knownFor ?uri . ?x rdf:type onto:Scientist}",julipc-p(huggingface) Who used to skate with the pupils of Laureano Ibarra?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:coach . ?x onto:formerPartner ?uri . ?x rdf:type onto:FigureSkater}",julipc-p(huggingface) How many books have been penned by Miguel de Cervantes?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:author . ?uri rdf:type onto:Book}",julipc-p(huggingface) Name the river flowing through Reading and source place as Gloucestershire ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:city . ?uri onto:sourcePlace . ?uri rdf:type onto:River}",julipc-p(huggingface) Count the band members of Skull Gang?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { onto:bandMember ?uri . ?uri rdf:type onto:Person}",julipc-p(huggingface) In which teams have league members of the Czech Extraliga played previously?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:league res:Czech_Extraliga . ?x onto:formerTeam ?uri . }",julipc-p(huggingface) Which country's people have graduated from Ghana School of Law?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:almaMater . ?x onto:nationality ?uri . ?x rdf:type onto:Person}",julipc-p(huggingface) "What does the river flow into, whose left tributary is Bukovica?","PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:leftTributary . ?x onto:mouthCountry ?uri . }",julipc-p(huggingface) For which team does hunter pence play for?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Hunter_Pence onto:team ?uri }",julipc-p(huggingface) Name the ground of Al-Rayan SC ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:ground ?uri }",julipc-p(huggingface) In which cities were the chess grand masters born?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:title . ?x onto:birthPlace ?uri . }",julipc-p(huggingface) Which city's governing body is led by Bruce Harrell?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:leader res:Bruce_Harrell . ?uri prop:governingBody ?x . }",julipc-p(huggingface) "What band was Afrika Baby Bam a part of, and often performed with Q Tip?","PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:associatedBand ?uri. onto:associatedMusicalArtist ?uri}",julipc-p(huggingface) Which siler medalist of the Tennis at the 2012 Summer Olympics Men's singles was also the flagbearer of the Switzerland at the 2008 Summer Olympics,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:silverMedalist ?uri. prop:flagbearer ?uri}",julipc-p(huggingface) Who is the prime minister of the successor of Kingsley Wood?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Kingsley_Wood onto:successor ?x . ?x prop:primeminister ?uri . }",julipc-p(huggingface) List the common relegion affiliation of khadra Haji Ismail and Yasmin khatun ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Khadra_Haji_Ismail_Geid prop:religion ?uri. res:Yasmin_Khatun onto:religion ?uri}",julipc-p(huggingface) Where was Thomy Bourdelle born?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Thomy_Bourdelle prop:placeOfBirth ?uri . }",julipc-p(huggingface) How many bands are based in London?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:hometown . ?uri rdf:type onto:Band}",julipc-p(huggingface) Name few TV shows aired by Prime Time Entertainment Network?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:network . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) Which president of Lance Adams-Schneider had nickname Daniel O'Regan ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:president ?uri. prop:nickname ?uri}",julipc-p(huggingface) WHo gave the lyrcis of Doonesbury ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:lyrics ?uri }",julipc-p(huggingface) Who coached the marquet golden eagels during 2013,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:coach ?uri }",julipc-p(huggingface) Give me a list of computers whose CPU is in the US.,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:locationCity . ?uri onto:cpu ?x . ?uri rdf:type onto:InformationAppliance}",julipc-p(huggingface) "What is that something which made Breann McGregor famous, and Frank Thorne received as an award?","PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Frank_Thorne onto:award ?uri. res:Breann_McGregor prop:knownFor ?uri}",julipc-p(huggingface) "Which things have been located, where governance is Houston City Council?","PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:governingBody res:Houston_City_Council . ?uri onto:location ?x . }",julipc-p(huggingface) What beverages originate in Leuven?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:origin . ?uri rdf:type onto:Beverage}",julipc-p(huggingface) What are the different religions followed by presidents whose prime minister was Surayud Chulanont?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:primeminister . ?x onto:religion ?uri . ?x rdf:type onto:President}",julipc-p(huggingface) How many prime ministers did the predecessor of Duncan Sandys serve?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { prop:successor ?x . ?x prop:primeminister ?uri . }",julipc-p(huggingface) Name the city served by Juhu Aerodrome ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Juhu_Aerodrome prop:cityServed ?uri }",julipc-p(huggingface) What is the settlement whose neighboring municipalities is Lancy and mayor name is Esther Alder?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:neighboringMunicipalities . ?uri onto:mayor . ?uri rdf:type onto:Settlement}",julipc-p(huggingface) List the notable works of the writer of The Tony Randall Show ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:The_Tony_Randall_Show prop:writer ?x . ?x onto:notableWork ?uri . }",julipc-p(huggingface) How many cars succeed the cars assembled in Canada?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:assembly . ?x onto:predecessor ?uri . ?uri rdf:type onto:Automobile}",julipc-p(huggingface) Where has the employee of Columbia Records worked ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:employer res:Columbia_Records . ?x onto:employer ?uri . }",julipc-p(huggingface) What is the birth place of the cast of Lagnacha Dhumdhadaka?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Lagnacha_Dhumdhadaka prop:starring ?x . ?x prop:placeOfBirth ?uri . }",julipc-p(huggingface) Whci co founder of Sea gayle Music is also the artist of Brad Paisley Discography /,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Brad_Paisley_discography prop:artist ?uri. res:Sea_Gayle_Music prop:founder ?uri}",julipc-p(huggingface) Which wine region of Bogdanua is the mouth country of Upper Neretva ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Bogdanuša onto:wineRegion ?uri. res:Upper_Neretva onto:mouthCountry ?uri}",julipc-p(huggingface) Which television show's network is BBC HD and is related to Doctor Who Confidential?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:network . ?uri onto:related . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) Name the products of Den norske Bank ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Den_norske_Bank prop:products ?uri }",julipc-p(huggingface) In how many places have people canonized by John Paul II died?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:canonizedBy . ?x prop:deathPlace ?uri . ?uri rdf:type onto:Place}",julipc-p(huggingface) "Where does the river flow into, which starts at the Sierra Madre de Chiapas?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:source . ?x prop:mouthCountry ?uri . ?x rdf:type onto:River}",julipc-p(huggingface) Who are the shareholder of the broadcast networks whose owning company is Jamie Kellner?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:owningCompany . ?x prop:owner ?uri . ?x rdf:type onto:BroadcastNetwork}",julipc-p(huggingface) The Prime minister who worked in the Khmer Issarak follows which religion?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:militaryBranch . ?x onto:religion ?uri . ?x rdf:type onto:PrimeMinister}",julipc-p(huggingface) Which country does league of Nguendula Filipe belongs to?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Nguendula_Filipe onto:league ?x . ?x prop:country ?uri . }",julipc-p(huggingface) Which rivers flow into the lower manhatten?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:mouthMountain res:Lower_Manhattan }",julipc-p(huggingface) Who is the founder of Pittsburgh ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Pittsburgh onto:founder ?uri }",julipc-p(huggingface) What are the airlines whose hub is San Francisco International Airport?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:hubs . ?uri rdf:type onto:Airline}",julipc-p(huggingface) Who rented the stadium where the UFC 152 take place?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:venue ?x . ?x onto:tenant ?uri . ?x rdf:type onto:Stadium}",julipc-p(huggingface) What is the place where the mayor's wife is Jean-Marc Germain?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:spouse . ?uri onto:mayor ?x . ?uri rdf:type onto:Place}",julipc-p(huggingface) Which religions' people fought in the Miao rebellion?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:combatant ?x . ?x onto:religion ?uri . }",julipc-p(huggingface) Which universities are alma mater to Charles Plosser?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Charles_Plosser prop:almaMater ?uri }",julipc-p(huggingface) What is the constituency of Santo Versace?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Santo_Versace prop:constituency ?uri }",julipc-p(huggingface) Count all the shows whose music composers are in Oysterhead.,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:associatedMusicalArtist . ?uri prop:themeMusicComposer ?x . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) List the significant building of the architect who also designed Kiev?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:significantBuilding . ?x onto:significantBuilding ?uri . ?x rdf:type onto:Architect}",julipc-p(huggingface) How many other architect are there of the historic places whose architect is also Stanford White ?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:architect . ?x onto:architect ?uri }",julipc-p(huggingface) What is the deathplace of the rugby player who is the relatives of Anton Oliver ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Anton_Oliver prop:relatives ?x . ?x onto:deathPlace ?uri . }",julipc-p(huggingface) What is the alma mater of the Marshall Fletcher McCallie and has affiliation with Vanderbilt University Medical Center ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Marshall_Fletcher_McCallie prop:almaMater ?uri. res:Vanderbilt_University_Medical_Center prop:affiliation ?uri}",julipc-p(huggingface) Who has had been the tenant of the stadium built by PCL construction firm?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:builder . ?x onto:tenant ?uri . ?x rdf:type onto:Stadium}",julipc-p(huggingface) "List the people educated at Harvard-Westlake School and has resting place as Palo Alto, California?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:almaMater . ?uri prop:restingPlace . ?uri rdf:type onto:Person}",julipc-p(huggingface) Which companies published Super Mario Adventures?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Super_Mario_Adventures prop:publisher ?uri }",julipc-p(huggingface) What is the television show whose producer is Stephen E. Ambrose?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:producer . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) Which artist of Madagascar: Operation Penguin is also the writer of He's a Pirate ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:artist ?uri. prop:writer ?uri}",julipc-p(huggingface) Name the software whose operating system is Mac OS and programming language is C++ ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:operatingSystem . ?uri prop:programmingLanguage . ?uri rdf:type onto:Software}",julipc-p(huggingface) In which state does the valley bordering the Modoc plateau lie?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:border . ?x onto:state ?uri . ?x rdf:type onto:Valley}",julipc-p(huggingface) Where was the designer of REP Parasol born?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:REP_Parasol onto:designer ?x . ?x onto:birthPlace ?uri . }",julipc-p(huggingface) Which religion is followed by people in the family of Meadow Sopranos?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:family . ?x onto:religion ?uri . ?x rdf:type onto:Person}",julipc-p(huggingface) What religion does roshan ranasinghe and nhiek tioulong follow?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Roshan_Ranasinghe prop:religion ?uri. res:Nhiek_Tioulong onto:religion ?uri}",julipc-p(huggingface) How many cars are the predecessor of cars similar to the Pontiac G8?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { onto:relatedMeanOfTransportation ?x . ?x onto:predecessor ?uri . ?x rdf:type onto:Automobile}",julipc-p(huggingface) What are some shows whose voice actors play the piano?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:instrument . ?uri prop:voices ?x . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) What is the birth place of the successor of Ella T. Grasso ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Ella_T._Grasso prop:successor ?x . ?x prop:birthPlace ?uri . }",julipc-p(huggingface) From how many different places have participants of Breeders's Cup Turf come?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:race . ?x prop:birthPlace ?uri . }",julipc-p(huggingface) How many movies were cinematographed by Jordan Cronenweth?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:cinematography . ?uri rdf:type onto:Film}",julipc-p(huggingface) Who is the famous relative of Kelly Osbourne?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:relatives res:Kelly_Osbourne . }",julipc-p(huggingface) In how many different stadiums are the seasons of the 2015 NA Soccer league held?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:league . ?x onto:ground ?uri . ?uri rdf:type onto:Stadium}",julipc-p(huggingface) What teams have Avangard Omsk's players played for?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:playedFor res:Avangard_Omsk . ?x onto:formerTeam ?uri . }",julipc-p(huggingface) Who is the player who plays for the team that has the Michigan Stadium?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:stadium . ?uri prop:currentteam ?x . ?uri rdf:type onto:Athlete}",julipc-p(huggingface) How many athletic associations are there in all of the private universities?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:type . ?x prop:athletics ?uri . }",julipc-p(huggingface) In which cities can i find drinks similar to the IBC root beer?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:related . ?x prop:locationCity ?uri . ?x rdf:type onto:Beverage}",julipc-p(huggingface) Which royal person married the successor of Darius I?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:predecessor . ?uri prop:spouse ?x . ?uri rdf:type onto:Royalty}",julipc-p(huggingface) What are some products manufactured by Sony? ,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:manufacturer res:Sony . }",julipc-p(huggingface) What is the producer of the television shows whose channel is CBBC?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:channel . ?x onto:producer ?uri . ?x rdf:type onto:TelevisionShow}",julipc-p(huggingface) List all the movies whose music has been made up with someone under RCA records?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:recordLabel . ?uri prop:music ?x . ?uri rdf:type onto:Film}",julipc-p(huggingface) What cities are around the valley bordering Lake Mead?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:border . ?x onto:city ?uri . ?x rdf:type onto:Valley}",julipc-p(huggingface) List the magazines published by Playbow Enterprises ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:publisher . ?uri rdf:type onto:Magazine}",julipc-p(huggingface) In which series do I find Minbari species' characters?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:species . ?x onto:series ?uri . ?x rdf:type onto:FictionalCharacter}",julipc-p(huggingface) What is the style of architecture of South Loop Printing House District ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:South_Loop_Printing_House_District onto:architecturalStyle ?uri }",julipc-p(huggingface) Name the ssignificant buildings of Ivan Fomin ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Ivan_Fomin onto:significantBuilding ?uri }",julipc-p(huggingface) Where did the relatives of David Hume study?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:relative res:David_Hume . ?x prop:education ?uri . }",julipc-p(huggingface) Which state of Tendaho dam is the headquarters of Ethiopian People's revolutionary democratic Front located ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:headquarters ?uri. prop:country ?uri}",julipc-p(huggingface) What prizes have been awarded to the relatives of Linn Ullmann?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Linn_Ullmann prop:relatives ?x . ?x prop:awards ?uri . }",julipc-p(huggingface) What are the television shows of a company headquartered in Geneva?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:headquarters . ?uri prop:company ?x . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) Name the television show whose distributor is Comedy central and the character voice is given by Isaac hayes ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:distributor . ?uri prop:voices . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) Give me the count of newspaper whose language is Sweedish and headquartered at stockholm ?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:language . ?uri prop:headquarters }",julipc-p(huggingface) What are the cities located on the sea into which the Aegean Sea flows?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Aegean_Sea onto:outflow ?x . ?x prop:cities ?uri . }",julipc-p(huggingface) In which areas did the pupils of Sylvain Levi work?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:academicAdvisor res:Sylvain_Lévi . ?x prop:fields ?uri . }",julipc-p(huggingface) Name the movie whose producer is Michael Deeley and music is given by Vangelis ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:producer . ?uri prop:music . ?uri rdf:type onto:Film}",julipc-p(huggingface) How many people are in the band with Juelz Santana?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:currentMembers . ?x onto:bandMember ?uri . ?uri rdf:type onto:Person}",julipc-p(huggingface) Name the partners of the models whose one of the partner is Thom Evans ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:partner . ?x onto:partner ?uri . ?x rdf:type onto:Model}",julipc-p(huggingface) Who owns the broadcast network founded by CNN?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:foundedBy . ?x prop:owner ?uri . ?x rdf:type onto:BroadcastNetwork}",julipc-p(huggingface) List the writers of Tales of Suspense ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Tales_of_Suspense prop:writers ?uri }",julipc-p(huggingface) Which magazine has publisher as Jann Wenner?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:publisher . ?uri rdf:type onto:Magazine}",julipc-p(huggingface) List the academic discipline of the journals whose one of the discipline is neuro imaging ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:academicDiscipline . ?x onto:academicDiscipline ?uri . ?x rdf:type onto:AcademicJournal}",julipc-p(huggingface) Who has authored books published by the Perkins school for the Blind?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:publisher . ?x onto:author ?uri . ?x rdf:type onto:WrittenWork}",julipc-p(huggingface) Semani languages are spoken in which countries?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:languages . ?uri rdf:type onto:Country}",julipc-p(huggingface) What kind of games does Blizzard games develop?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:developer . ?x onto:genre ?uri . ?x rdf:type onto:VideoGame}",julipc-p(huggingface) "How many different pole drivers are there, of the GPs when Renault was the first team?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:firstTeam . ?x onto:poleDriver ?uri . ?uri rdf:type onto:FormulaOneRacer}",julipc-p(huggingface) What is the label of Double Diamond (album) ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:recordLabel ?uri }",julipc-p(huggingface) "Where is the VP buried, which was served by Frederick Cooke?","PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:vicePresident ?x . ?x onto:restingPlace ?uri . }",julipc-p(huggingface) Name the person whose child is Irne Joliot-Curie?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:children . ?uri rdf:type onto:Person}",julipc-p(huggingface) How many destinations are covered by the airlines which also serves Europe ?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:destinations . ?x prop:destinations ?uri }",julipc-p(huggingface) Where can i find companies which were started in Toronto?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:foundationPlace . ?x prop:locations ?uri . ?x rdf:type onto:Company}",julipc-p(huggingface) Name the university with mascot as Aubie and president as jay Gogue ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:mascot . ?uri onto:president . ?uri rdf:type onto:University}",julipc-p(huggingface) How many things belong to phylum of Chordate?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:phylum . }",julipc-p(huggingface) People from how many political parties exist in Maharashtra?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:placeOfBirth . ?x onto:party ?uri . }",julipc-p(huggingface) With which musical artist is the music group which sung Mind Blowin' related to ? ,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:musicalArtist ?x . ?x onto:associatedMusicalArtist ?uri . }",julipc-p(huggingface) Where did the office holder died who also have faith in Episcopal Church ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:religion . ?x onto:deathPlace ?uri . ?x rdf:type onto:OfficeHolder}",julipc-p(huggingface) To which branch Edwin F. Hunter belong ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Edwin_F._Hunter prop:branch ?uri }",julipc-p(huggingface) Who are the children of Abigail Adams?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Abigail_Adams prop:children ?uri }",julipc-p(huggingface) Which things are Breann McGregor known for ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Breann_McGregor prop:knownFor ?uri }",julipc-p(huggingface) Who have done their PhDs under a National Medal of Science winner?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:prizes res:National_Medal_of_Science . ?uri prop:doctoralAdvisor ?x . }",julipc-p(huggingface) List the profession of senate whose one of the profession is United States Coast Guard ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:profession . ?x onto:profession ?uri . ?x rdf:type onto:Politician}",julipc-p(huggingface) Where is the headquarters of the public transit system which operators Go-to-card ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:operator ?x . ?x prop:headquarters ?uri . ?x rdf:type onto:PublicTransitSystem}",julipc-p(huggingface) How many people are there who have relationship with Kennedy family?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:relation . }",julipc-p(huggingface) "Name the company founded by Jim Harris located in Harris County, Texas ?","PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:foundedBy . ?uri onto:locationCity . ?uri rdf:type onto:Company}",julipc-p(huggingface) What is the total number of fictional characters whose created by Greg Daniels and series is The Office (U.S. TV series)?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:creator . ?uri onto:series }",julipc-p(huggingface) Which local authority of Buckhurst Hill County High School is the palce of burial of Elizabeth Rhuddlan ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Elizabeth_of_Rhuddlan prop:placeOfBurial ?uri. res:Buckhurst_Hill_County_High_School onto:localAuthority ?uri}",julipc-p(huggingface) In which city where there is a headquarters of Orient News and also Feras Saied died?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Orient_News prop:headquarters ?uri. res:Feras_Saied onto:deathPlace ?uri}",julipc-p(huggingface) "Who were the opponents of employees of Henry Howard, the Northampton Earl?","PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:employer . ?x onto:opponent ?uri . }",julipc-p(huggingface) What newspapers's owners is Schibsted,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:owners . ?uri rdf:type onto:Newspaper}",julipc-p(huggingface) Who is the common parent of Gettv and hypnotize mind ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:GetTV onto:parentOrganisation ?uri. res:Hypnotize_Minds prop:parent ?uri}",julipc-p(huggingface) Name a fictional character whose relative is Uncle Henry and species is Human?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:relative . ?uri onto:species . ?uri rdf:type onto:FictionalCharacter}",julipc-p(huggingface) Which river inflow of the Cahora Bassa is also Batoka Gorge Hydroelectric Power Station's river ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Cahora_Bassa prop:inflow ?uri. res:Batoka_Gorge_Hydroelectric_Power_Station onto:river ?uri}",julipc-p(huggingface) "Which cities come in the course of the river, into which Big Creek around Texas flows too?","PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:rightTributary . ?x onto:city ?uri . ?x rdf:type onto:River}",julipc-p(huggingface) What islands are there on the Greater Antilles archipelago?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:archipelago . ?x prop:name ?uri . ?x rdf:type onto:Island}",julipc-p(huggingface) Name the military units whose command structure's headquarters is The Pentagon?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:headquarters . ?uri onto:commandStructure ?x . ?uri rdf:type onto:MilitaryUnit}",julipc-p(huggingface) Which TV show's setting is in Massachusetts and is the subsequent work of Fraiser ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:subsequentWork . ?uri onto:location . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) Which bands are associated to David Paton?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:David_Paton onto:associatedBand ?uri }",julipc-p(huggingface) In how many teams have people previously played who play as defencemen?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:position . ?x onto:formerTeam ?uri . ?uri rdf:type onto:SportsTeam}",julipc-p(huggingface) What is the Team Name of St. Viator High School ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:St._Viator_High_School prop:teamName ?uri }",julipc-p(huggingface) Give me the count of tenants of the stadia whose one of the tenants is Toronto Furies?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:tenants . ?x prop:tenants ?uri }",julipc-p(huggingface) Who is the headcoach of 2013-14 Marquette Golden Eagles men's basketball team ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:headcoach ?uri }",julipc-p(huggingface) Who is the musician of Before I let you Go ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Before_I_Let_You_Go onto:musicalArtist ?uri }",julipc-p(huggingface) Who developed the programming languages designed by Rob Pike?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:designer . ?x onto:developer ?uri . ?x rdf:type onto:ProgrammingLanguage}",julipc-p(huggingface) "Name the military unit whose garrison is Arlington County, Virginia and command structure is United States Department of Defense?","PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:garrison . ?uri onto:commandStructure . ?uri rdf:type onto:MilitaryUnit}",julipc-p(huggingface) Which races has the horse bred by Jacques Van't Hart participated in?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:breeder . ?x prop:race ?uri . ?x rdf:type onto:Horse}",julipc-p(huggingface) What are all the countires where food related to tuna salad is consumed ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:related res:Tuna_salad . ?x prop:country ?uri . }",julipc-p(huggingface) What is the layout of the automobiles whose designer company is Olivier Boulay?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:designCompany . ?x onto:layout ?uri . ?x rdf:type onto:Automobile}",julipc-p(huggingface) which band was Roger waters in?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:formerBandMember res:Roger_Waters }",julipc-p(huggingface) In which places can we find the people won the Project Runaway Canada?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:award . ?x onto:residence ?uri . ?x rdf:type onto:Person}",julipc-p(huggingface) Who is the coach of England national under-21 football team ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:coach ?uri }",julipc-p(huggingface) "Which rivers end in Old Saybrook, Connecticut?","PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:mouthMountain }",julipc-p(huggingface) "Where does the river end, into which the Rakitnica flows?","PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:rightTributary res:Rakitnica . ?x onto:mouthCountry ?uri . }",julipc-p(huggingface) "What does the bridge go over, which is in Katima Mulilo?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:locatedInArea . ?x prop:crosses ?uri . ?x rdf:type onto:Bridge}",julipc-p(huggingface) What are the baseball players who played for San Francisco Giants?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:team . ?uri rdf:type onto:BaseballPlayer}",julipc-p(huggingface) How many airlines have a hub at an airport run by LA World Airports?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:operator . ?uri onto:hubAirport ?x . ?uri rdf:type onto:Airline}",julipc-p(huggingface) where is the thorington train station located?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Thorington_railway_station onto:district ?uri }",julipc-p(huggingface) Who is the person whose parent is Ptolemy XII Auletes?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:parent . ?uri rdf:type onto:Person}",julipc-p(huggingface) "What are the schools whose city is Reading, Berkshire?","PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:city }",julipc-p(huggingface) List the television shows whose network's executive officer is Steve Burke.,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:keyPerson . ?uri onto:network ?x . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) With whom were the engagements of Alpine Brigade Taurinense?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Alpine_Brigade_Taurinense onto:battle ?uri }",julipc-p(huggingface) Find the total number of tenants of the stadium whose tenants was Toronto Marlies?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:tenants . ?x prop:tenants ?uri }",julipc-p(huggingface) What genres of games are available on the Commodore 64?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:computingPlatform . ?x prop:genre ?uri . ?x rdf:type onto:VideoGame}",julipc-p(huggingface) Who gave the voice for Allen Walker ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Allen_Walker onto:voice ?uri }",julipc-p(huggingface) Which companies have Kumho Asiana Group as their parent company?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:parentCompany res:Kumho_Asiana_Group }",julipc-p(huggingface) How many buildings are located in Toronto ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:location . ?uri rdf:type onto:Building}",julipc-p(huggingface) "Where does the river flows into, which starts in Gredelj?","PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:source res:Gredelj . ?x onto:riverMouth ?uri . }",julipc-p(huggingface) "What is the country which lies on the European route E8, and where Ragnhild Jolson was born?","PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:European_route_E8 onto:county ?uri. res:Ragnhild_Jølsen prop:birthplace ?uri}",julipc-p(huggingface) How many people have been the head coach for Middlesbrough FC?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:club . ?x onto:manager ?uri . ?uri rdf:type onto:Person}",julipc-p(huggingface) "Where do the people, famous for the Panathinaikos FC reside?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:knownFor . ?x prop:residence ?uri . ?x rdf:type onto:Person}",julipc-p(huggingface) Who is the office holder whose resting place is Monticello?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:restingPlace . ?uri rdf:type onto:OfficeHolder}",julipc-p(huggingface) What was founded by pina Records which has name of Geography of Puerto Rico ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Geography_of_Puerto_Rico prop:name ?uri. res:Pina_Records prop:founded ?uri}",julipc-p(huggingface) "Where is the tunnel, which is operated by BNSF railways?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:operatedBy . ?x prop:location ?uri . ?x rdf:type onto:RailwayTunnel}",julipc-p(huggingface) Terminal Station at Chattanooga is made by architects from which University?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:knownFor . ?x prop:education ?uri . ?x rdf:type onto:Architect}",julipc-p(huggingface) How many producers have casted Michael Jackson?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:starring . ?x prop:producer ?uri . }",julipc-p(huggingface) "Who is married to a Miss Louisiana, USA?","PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:title res:Miss_Louisiana_USA . ?uri prop:spouse ?x . }",julipc-p(huggingface) What sports are played by school which owns Fr. Agnel Stadium ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:owner ?x . ?x onto:sport ?uri . ?x rdf:type onto:School}",julipc-p(huggingface) What is the major shrine of Jacques-Dsir Laval ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:majorShrine ?uri }",julipc-p(huggingface) What fictional character's species is American Pekin duck,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:species res:American_Pekin_duck }",julipc-p(huggingface) What is the television show whose subsequent work is Crusade (TV series) and developed by J. Michael Straczynski?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:subsequentWork . ?uri onto:developer . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) What is the county of Saint Lucia national cricket team ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Saint_Lucia_national_cricket_team onto:county ?uri }",julipc-p(huggingface) Who is the Pole driver of 1997 Canadian Grand Prix ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:1997_Canadian_Grand_Prix prop:poleDriver ?uri }",julipc-p(huggingface) What is the common region of the braod cast area of ITV and nationality of Ajahn Thate ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:broadcastArea ?uri. onto:nationality ?uri}",julipc-p(huggingface) Who is the president of United World College of Costa Rica ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:United_World_College_of_Costa_Rica onto:president ?uri }",julipc-p(huggingface) Things going to the mediterranean sea also go where?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:destinations . ?x onto:destination ?uri . }",julipc-p(huggingface) Who is the distributor of Rev (drink) ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:distributor ?uri }",julipc-p(huggingface) In how many different places are Brown haired models living?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:hairColor . ?x onto:residence ?uri . }",julipc-p(huggingface) Mouse Morris' horses have raced in which races?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:trainer . ?x prop:race ?uri . ?x rdf:type onto:Horse}",julipc-p(huggingface) What are the television shows telecasted on the network which has headquarters at Atlanta?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:headquarters . ?uri prop:network ?x . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) Name the award given in Norway and presented by Swedish Academy ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:presenter . ?uri onto:country . ?uri rdf:type onto:Award}",julipc-p(huggingface) Which producer of Boeing F/A has Dennis Muilenburg as an important person ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:product . ?uri prop:keyPeople . }",julipc-p(huggingface) "Where is the assembly of Plymouth Savoy, and where Special 26 was recorded?","PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Plymouth_Savoy onto:assembly ?uri. res:Special_26 prop:recorded ?uri}",julipc-p(huggingface) What is an airport inside ontario?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:cityServed . ?uri rdf:type onto:Airport}",julipc-p(huggingface) "What is the career of George Arceneaux, Jr. ?","PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:occupation ?uri }",julipc-p(huggingface) What are some shows by Comedy Central?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:network . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) What are the party of the politicians whose deputy was Chaudhary Devi Lal?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:deputy . ?x onto:otherParty ?uri . ?x rdf:type onto:OfficeHolder}",julipc-p(huggingface) Which movies' music is composed by people associated with the band Yes?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:associatedMusicalArtist . ?uri onto:musicComposer ?x . ?uri rdf:type onto:Film}",julipc-p(huggingface) What came before PlayStation 4 and uses PlayStation 3 system software as OS?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:successor res:PlayStation_4 . ?uri prop:os res:PlayStation_3_system_software . }",julipc-p(huggingface) "List the affiliation of Indian general election, 2004 (Andhra Pradesh) ?","PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:affiliation ?uri }",julipc-p(huggingface) How many religion's commanders have served in the Royal Thai Army?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { prop:notableCommanders ?x . ?x onto:religion ?uri . }",julipc-p(huggingface) "Who are the people which were the influencer of the person, who influenced Costanzo Preve ?","PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:influencedBy ?x . ?x onto:influencedBy ?uri . ?x rdf:type onto:Person}",julipc-p(huggingface) Name the TV show with theme music by Primus and broadcasted on Comedy Central ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:network . ?uri prop:themeMusicComposer . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) Count all the games whose distributors are located in America,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:country . ?uri prop:distributor ?x . }",julipc-p(huggingface) What is the location of the pope whose major shrine is St. Peter's Basilica ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:majorShrine . ?x prop:birthPlace ?uri . ?x rdf:type onto:Pope}",julipc-p(huggingface) List all the faiths that British Columbian politicians follow?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:residence . ?x prop:religion ?uri . ?x rdf:type onto:Politician}",julipc-p(huggingface) What is the birthplace of the Ferrel Harris which is also resting palce of Green Wix Unthank?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Ferrel_Harris prop:birthplace ?uri. res:Green_Wix_Unthank onto:restingPlace ?uri}",julipc-p(huggingface) What is the river one of whose left tributary's native name is Arabic?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:nativeName res:Arabic . ?uri onto:leftTributary ?x . }",julipc-p(huggingface) What work has been directed by Orson Welles and distributed by RKO Pictures?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:director . ?uri prop:distributor . ?uri rdf:type onto:Work}",julipc-p(huggingface) What is the alma mater of Andrew W. Lewis ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Andrew_W._Lewis onto:almaMater ?uri }",julipc-p(huggingface) Who is the spouse of Daniel Gibson? ,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:spouse res:Daniel_Gibson . }",julipc-p(huggingface) "Name the nearest city to the historic place which has Englewood, Colorado as one of them ?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:nearestCity . ?x onto:nearestCity ?uri . ?x rdf:type onto:HistoricPlace}",julipc-p(huggingface) What are the movies directed by Joel Schumacher?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:director . ?uri rdf:type onto:Film}",julipc-p(huggingface) Where did the music genre of Harry and the Potters originate?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:genre ?x . ?x onto:stylisticOrigin ?uri . }",julipc-p(huggingface) To which political party do the children of Sonia Gandhi belong?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Sonia_Gandhi prop:children ?x . ?x onto:party ?uri . }",julipc-p(huggingface) Name some relatives of the people studied in Manurewa High School?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:school res:Manurewa_High_School . ?x onto:relative ?uri . }",julipc-p(huggingface) Name a TV show judged by Jennifier Lopez and presented by Brian Dunkleman ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:judges . ?uri prop:presenter . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) What is the draft team of Antoine Bibeau ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Antoine_Bibeau prop:draftTeam ?uri }",julipc-p(huggingface) What are a few molluscas whose family is Buccinidae?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:family . ?uri rdf:type onto:Mollusca}",julipc-p(huggingface) How many have family as Ape and order (taxonomy) is Primate ?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:family . ?uri onto:order }",julipc-p(huggingface) From which team did Marv McFadden played ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Marv_McFadden prop:pastteams ?uri }",julipc-p(huggingface) "Who studied at Harvard-Westlake School and has Henry E. Catto, Jr. as predecessor ?","PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:almaMater . ?uri onto:predecessor . }",julipc-p(huggingface) Name the licensee of the WRVU who has the affiliation of Monroe Carell Jr. Children's Hospital at Vanderbilt ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:licensee ?uri. prop:affiliation ?uri}",julipc-p(huggingface) Who are the trainersof Candice Michelle?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Candice_Michelle onto:trainer ?uri }",julipc-p(huggingface) Which constructor's team won the 1967 Mexican Grand Prix ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:1967_Mexican_Grand_Prix prop:firstTeam ?uri }",julipc-p(huggingface) Where is the main ground of soccer seasons whose chairman is Ronaldo?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:chairman . ?x onto:ground ?uri . ?x rdf:type onto:SoccerClubSeason}",julipc-p(huggingface) Which person belongs to the board of Howard Hughes Medical Institute?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:board . ?uri rdf:type onto:Person}",julipc-p(huggingface) Who is the stock holder of the bank where Peter Grauer works ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:occupation ?x . ?x prop:owner ?uri . ?x rdf:type onto:Bank}",julipc-p(huggingface) Where is the head quarters of the owner of Hamline Avenue?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:owner ?x . ?x prop:headquarters ?uri . }",julipc-p(huggingface) Who is the co-founder of the city where Owen Dougherty died?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:placeOfDeath ?x . ?x onto:founder ?uri . ?x rdf:type onto:City}",julipc-p(huggingface) For which teams did the Hawai graduated players play their first game?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:college . ?x onto:debutTeam ?uri . ?x rdf:type onto:Athlete}",julipc-p(huggingface) What is the title of Kakae ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Kakae prop:title ?uri }",julipc-p(huggingface) Which broadcast area of Mauritius Broadcasting Corporation is also the nationality of Michael Medor ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Mauritius_Broadcasting_Corporation prop:broadcastArea ?uri. res:Michael_Medor onto:nationality ?uri}",julipc-p(huggingface) What is the county of the road whose route end is Pahang ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:routeEnd . ?x onto:county ?uri . ?x rdf:type onto:Road}",julipc-p(huggingface) Who wrote Heroman?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Heroman prop:author ?uri }",julipc-p(huggingface) Name the person who died in Fair Lane ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:deathPlace . ?uri rdf:type onto:Person}",julipc-p(huggingface) List the religion of people in the Cambodian human rights party?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:otherParty . ?x onto:religion ?uri . ?x rdf:type onto:Person}",julipc-p(huggingface) What relegious affiliation of Josiah Idowu-Fearon was canonized by john of Damasucs ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:canonizedBy ?uri. onto:religion ?uri}",julipc-p(huggingface) Which draft team od Dale Mitchell is also the tenant of Master Card center /,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:draftTeam ?uri. prop:tenants ?uri}",julipc-p(huggingface) "What cities does the river goes through, whose tributary is the little black river in Arkansas?","PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:leftTributary . ?x onto:city ?uri . ?x rdf:type onto:River}",julipc-p(huggingface) What show has judge as Randy Jackson sculptors as Simon Fuller?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:judges . ?uri prop:creator . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) Which nation's engineers have graduated in Poland?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:education . ?x prop:nationality ?uri . ?x rdf:type onto:Engineer}",julipc-p(huggingface) Give me a count of movies whose music composer is Bernard Herrmann?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:musicComposer . ?uri rdf:type onto:Film}",julipc-p(huggingface) "What awards have been given to the artists coming out of the university of Melbourne, faculty of VCA and MCM?","PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:training . ?x onto:award ?uri . ?x rdf:type onto:Artist}",julipc-p(huggingface) List the destinations of Novair International Airways ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Novair_International_Airways prop:destinations ?uri }",julipc-p(huggingface) Name the state of Timothy J. Roemer ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Timothy_J._Roemer prop:state ?uri }",julipc-p(huggingface) What are all the religions that have been followed by the Sir Lankan attorneys?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:profession res:Attorneys_in_Sri_Lanka . ?x onto:religion ?uri . }",julipc-p(huggingface) Which awards have been given to the horse who sired Triplicate ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Triplicate prop:sire ?x . ?x onto:honours ?uri . }",julipc-p(huggingface) Where did the spouse of pmare ii die?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:spouse res:Pōmare_II . ?x onto:deathPlace ?uri . }",julipc-p(huggingface) Into which water bodies does Lake Uniamsi outflow?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Lake_Uniamési prop:outflow ?uri }",julipc-p(huggingface) Which river does Katima Mulilo Bridge cross?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Katima_Mulilo_Bridge prop:crosses ?uri }",julipc-p(huggingface) Which office holder's successor is Adrian A. Basora and child named Lori Black?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:successor . ?uri prop:children . ?uri rdf:type onto:OfficeHolder}",julipc-p(huggingface) What is the debut team of Tom O'Malley ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:debutteam ?uri }",julipc-p(huggingface) In which country is Bocas del toro a capital of some region?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:capital . ?x prop:country ?uri . }",julipc-p(huggingface) What is the political party to which Purnima Banerjee is a member of??,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Purnima_Banerjee onto:party ?uri }",julipc-p(huggingface) What is the headquarters of the public transit system which is the section of Red Ahead ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:isPartOf ?x . ?x prop:headquarters ?uri . ?x rdf:type onto:PublicTransitSystem}",julipc-p(huggingface) List the leaders of all the cities through which the Ganga river flows ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:city ?x . ?x onto:leaderName ?uri . ?x rdf:type onto:City}",julipc-p(huggingface) Who has written works found in the Gangan comics?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:magazine res:Gangan_Comics . ?x prop:author ?uri . }",julipc-p(huggingface) What is the currency of Republic of Montenegro (1992-2006) ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:currency ?uri }",julipc-p(huggingface) What is the device whose successor's CPU is by AMD?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:cpu . ?uri onto:successor ?x . ?uri rdf:type onto:Device}",julipc-p(huggingface) What is the club of Perianne Jones ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Perianne_Jones prop:club ?uri }",julipc-p(huggingface) What awards did the founder of Grameen Bank win?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Grameen_Bank prop:founder ?x . ?x onto:award ?uri . }",julipc-p(huggingface) What television show is aired on channel Sirius XM Holdings?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:channel . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) How many have order (taxonomy) as Bacillales and division as Firmicutes are there?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:order . ?uri onto:division }",julipc-p(huggingface) What is the movie whose producer is Michael Deeley and directed by Ridley Scott?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:producer . ?uri prop:director . ?uri rdf:type onto:Film}",julipc-p(huggingface) Which manufacturer of Ford Y-block engine is the parent of Ford Air Transport Service ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:manufacturer ?uri. prop:parent ?uri}",julipc-p(huggingface) Which governing body of the Oahu Railway and Land Company is also the military branch of the Jimmy Quillen ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Oahu_Railway_and_Land_Company prop:governingBody ?uri. res:Jimmy_Quillen onto:militaryBranch ?uri}",julipc-p(huggingface) Which arena of WPC Dynamo Moscow is the death palce of Mikhail Voronin ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:WPC_Dynamo_Moscow prop:arena ?uri. res:Mikhail_Voronin prop:deathPlace ?uri}",julipc-p(huggingface) Name the TV show with Simon Fuller as artist and Fox as the channel ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:creator . ?uri prop:channel . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) Who are the opponents of graduates of the Middle Temple?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:education res:Middle_Temple . ?x onto:opponent ?uri . }",julipc-p(huggingface) What religions are followed by economists?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:profession res:Economist . ?x onto:religion ?uri . }",julipc-p(huggingface) What are some important works of US citizens?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:nationality res:United_States . ?x onto:notableWork ?uri . }",julipc-p(huggingface) Name the rivers whose source country's capital is Lusaka?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:capital . ?uri onto:sourceCountry ?x . ?uri rdf:type onto:River}",julipc-p(huggingface) Which sports are played typically in private schools?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:schooltype res:Private_school . ?x onto:sport ?uri . }",julipc-p(huggingface) What is the state of the senator whose successor is Nathaniel P. Hill ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:successor . ?x prop:state ?uri . ?x rdf:type onto:Senator}",julipc-p(huggingface) How many shows is Russell Davies known for?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { prop:notableworks ?uri . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) "Who manages the operator of Norman Park Branch, CTA?","PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:operator ?x . ?x onto:operatedBy ?uri . }",julipc-p(huggingface) What is the casting of the movie directed by Justin Zackham ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:director . ?x prop:starring ?uri . ?x rdf:type onto:Film}",julipc-p(huggingface) Name the island with archipelago as Society Islands and has the largest city named Faaa ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:largestCity . ?uri prop:archipelago . ?uri rdf:type onto:Island}",julipc-p(huggingface) List all the mmebers of Mekong River Commission?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Mekong_River_Commission prop:membership ?uri }",julipc-p(huggingface) Name the actors of the TV show which has an episode named The Five ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:series ?x . ?x prop:starring ?uri . ?x rdf:type onto:TelevisionShow}",julipc-p(huggingface) How many religion's people have died in Malaysia?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:deathPlace . ?x onto:religion ?uri . }",julipc-p(huggingface) Name the HBO TV show written by Erik jendresen ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:company . ?uri prop:writer . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) How many different currencies are used in the places governed by the president of France?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:leaderTitle . ?x onto:currency ?uri . }",julipc-p(huggingface) List the team for which Doug Acomb played ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Doug_Acomb prop:playedFor ?uri }",julipc-p(huggingface) Which architect of Marine Corps Air Station Kaneohe Bay was also tenant of New Sanno hotel /',"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Marine_Corps_Air_Station_Kaneohe_Bay prop:architect ?uri. res:New_Sanno_Hotel onto:tenant ?uri}",julipc-p(huggingface) Which sects people are part of local political parties which fall under the International Muslim Brotherhood?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:international . ?x onto:religion ?uri . ?x rdf:type onto:PoliticalParty}",julipc-p(huggingface) List common systems are developed by of the Google Videos and written by of the Google Web Toolkit ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Google_Videos prop:developer ?uri. res:Google_Web_Toolkit onto:author ?uri}",julipc-p(huggingface) Which television show 's producer is Stephen E. Ambrose and written by Erik Jendresen?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:producer . ?uri prop:writer . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) Tell me the name of the Prime Time Entertainment Network's TV show whose Artist is Christopher Franke ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:artist . ?uri onto:network . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) How many other battles have the military person fought whose one of the battles is World War II ?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:battles . ?x prop:battles ?uri }",julipc-p(huggingface) Whose network's parent organisation is Comcast?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:parentOrganisation res:Comcast . ?uri onto:network ?x . }",julipc-p(huggingface) Which cport of Vishwajyot High School is also the genere of Battle chess ,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Battle_Chess prop:genre ?uri. res:Vishwajyot_High_School onto:sport ?uri}",julipc-p(huggingface) In which state is the Channel district?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Channel_District onto:state ?uri }",julipc-p(huggingface) What is the total number of other tenant of the stadia whose one of the tenant is Raptors 905?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:tenant . ?x onto:tenant ?uri }",julipc-p(huggingface) Where can one find the Dzogchen Ponolop Rinpoche?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Dzogchen_Ponlop_Rinpoche prop:location ?uri }",julipc-p(huggingface) Who is the stockholder of the road tunnels operated by the Massachusetts Department of Transportation?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:operator . ?x prop:owner ?uri . ?x rdf:type onto:RoadTunnel}",julipc-p(huggingface) What are the awards won by the film director of Saraband ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Saraband onto:director ?x . ?x prop:awards ?uri . }",julipc-p(huggingface) What is the almamater of the president whose vice president was Enrique Jos Varona?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:vicePresident res:Enrique_José_Varona . ?x onto:almaMater ?uri . }",julipc-p(huggingface) What is the route end of Birmingham and Oxford Junction Railway ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Birmingham_and_Oxford_Junction_Railway onto:routeEnd ?uri }",julipc-p(huggingface) Where did the Vitis Vinifera grapes originate?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:species . ?x onto:origin ?uri . ?x rdf:type onto:Grape}",julipc-p(huggingface) How many people are there whose children died in Indiana?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:deathPlace . ?uri onto:child ?x . ?uri rdf:type onto:Person}",julipc-p(huggingface) What is the military branch of the William French Smith which is also the branch of Pierre R. Graham ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:William_French_Smith onto:militaryBranch ?uri. res:Pierre_R._Graham prop:branch ?uri}",julipc-p(huggingface) What is the river whose source is Lake Ontario?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:source . ?uri rdf:type onto:River}",julipc-p(huggingface) Whichlocation city of the Denver Broncos is the palce of birth of Steven Clark Cunningham ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Denver_Broncos onto:locationCity ?uri. res:Steven_Clark_Cunningham onto:birthPlace ?uri}",julipc-p(huggingface) What is the religion of the person who founded the Emel magazine?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:founder ?x . ?x onto:religion ?uri . ?x rdf:type onto:Person}",julipc-p(huggingface) How many cities are around the sea in which the the fig tree bay meets?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { onto:inflow ?x . ?x prop:cities ?uri . ?x rdf:type onto:Sea}",julipc-p(huggingface) Name the movies distributed by RKO Pictures and has music composer as Bernard Herrmann?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:distributor . ?uri onto:musicComposer . ?uri rdf:type onto:Film}",julipc-p(huggingface) How many pole drivers have been there in grand prixes where first driver was Damon Hill?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:firstDriver . ?x onto:poleDriver ?uri . ?uri rdf:type onto:FormulaOneRacer}",julipc-p(huggingface) Where are jockeys in Dubai World Cup from?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:race . ?x prop:birthPlace ?uri . ?x rdf:type onto:Jockey}",julipc-p(huggingface) Who owns the newspaper which was founded by Nehru?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:founder . ?x onto:owner ?uri . ?x rdf:type onto:Newspaper}",julipc-p(huggingface) To which places do the flights go by airlines headquartered in the UK?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:headquarters . ?x prop:destinations ?uri . ?x rdf:type onto:Airline}",julipc-p(huggingface) What is the magazine which have been founded by Ralph J. Gleason?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:founder . ?uri rdf:type onto:Magazine}",julipc-p(huggingface) In which cities can the beverage related to Barq's be found?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:related ?x . ?x prop:locationCity ?uri . }",julipc-p(huggingface) What is the birth place of the astronaut whose mission was the Vostok programmer?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:mission . ?x onto:birthPlace ?uri . ?x rdf:type onto:Astronaut}",julipc-p(huggingface) Count everyone who studied at an institute which are in Suburbs?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:campus . ?uri prop:education ?x . }",julipc-p(huggingface) Where did Whitney Wistert debut?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Whitey_Wistert prop:debutteam ?uri }",julipc-p(huggingface) What is the major shrine of the monarchs whose successor is Dragimir of Travunia and Zachlumia?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:successor . ?x prop:majorShrine ?uri . ?x rdf:type onto:Monarch}",julipc-p(huggingface) How many television shows have Fox Broadcasting Company as their channel?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:channel . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) What are some wars fought when Chung Il Kwon as the country's prime minister?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:primeminister . ?uri onto:commander ?x . ?uri rdf:type onto:MilitaryConflict}",julipc-p(huggingface) Where was the person born who died in Bryn Mawr Hospital?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:placeOfDeath res:Bryn_Mawr_Hospital . ?x prop:placeOfBirth ?uri . }",julipc-p(huggingface) What is the faith of the Ajith Perera and religious affiliation of the Neungin High School?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Ajith_Perera onto:religion ?uri. res:Neungin_High_School prop:religiousAffiliation ?uri}",julipc-p(huggingface) Who was in military unit which played the role of Air interdiction?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:role res:Air_interdiction . ?uri onto:militaryUnit ?x . }",julipc-p(huggingface) Who are the current members of Insects vs Robots?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Insects_vs_Robots prop:currentMembers ?uri }",julipc-p(huggingface) Greater Napanee is the home town of what people?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:hometown . ?uri rdf:type onto:Person}",julipc-p(huggingface) Name the nationalteam of Trn Vit Hng ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Trần_Việt_Hương prop:nationalteam ?uri }",julipc-p(huggingface) Which designer of RENFE also owns Renaissance Center ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:RENFE_Class_333 onto:designer ?uri. res:Renaissance_Center prop:owner ?uri}",julipc-p(huggingface) Whihc uni did Joshua A. Siegel attend ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Joshua_A._Siegel prop:education ?uri }",julipc-p(huggingface) How many books are written by the author who is famous for Novelas Ejemplares?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:notableWork . ?uri onto:author ?x . ?uri rdf:type onto:Book}",julipc-p(huggingface) Name the rivers who originate from Essex?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:mouthPlace . ?uri rdf:type onto:River}",julipc-p(huggingface) Companies founded in Taiwan have typically which divisions?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:foundationPlace . ?x onto:division ?uri . ?x rdf:type onto:Company}",julipc-p(huggingface) "to which university did both, the Stanford Cardinal and Gerald Reaven go?","PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Stanford_Cardinal onto:university ?uri. res:Gerald_Reaven onto:institution ?uri}",julipc-p(huggingface) Name the nearest city to David W. Brown House ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:David_W._Brown_House onto:nearestCity ?uri }",julipc-p(huggingface) where did Deion Sanders debut?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Deion_Sanders prop:debutteam ?uri }",julipc-p(huggingface) What cities are nearer to Fuountain Lake Farm?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Fountain_Lake_Farm prop:nearestCity ?uri }",julipc-p(huggingface) Who are the characters of Batman Live?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Batman_Live prop:characters ?uri }",julipc-p(huggingface) Which artists trained in San Francisco Art Institute?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:training . ?uri rdf:type onto:Artist}",julipc-p(huggingface) What is the owning organisation of the Ford Kansas City Assembly Plant and also the builder of the Ford Y-block engine?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:owningOrganisation ?uri. onto:manufacturer ?uri}",julipc-p(huggingface) Name the country with currency as Aureus ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:currency . ?uri rdf:type onto:Country}",julipc-p(huggingface) what awards have been given to A. Peter Dewey?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:A._Peter_Dewey onto:award ?uri }",julipc-p(huggingface) How many shows belong to the network one of whose sister station is Cartoonite?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:sisterStation . ?uri prop:network ?x . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) what has been developed by John Fanning?,"PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:developer }",julipc-p(huggingface) Muhammad Yunus has won how many awards?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { onto:award ?uri . }",julipc-p(huggingface) List the associates of bands which have a label by Motown ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:recordLabel . ?x prop:associatedActs ?uri . ?x rdf:type onto:Band}",julipc-p(huggingface) Who wrote the musical whose composer is Emil Dean Zoghby?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:musicBy . ?x onto:author ?uri . ?x rdf:type onto:Musical}",julipc-p(huggingface) "Count the units garrisoned at Arlington County, Virginia.","PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:garrison . ?uri rdf:type onto:MilitaryUnit}",julipc-p(huggingface) What is the faith of Kwai Chang Caine ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Kwai_Chang_Caine onto:religion ?uri }",julipc-p(huggingface) What are the houses of the legislature where the leader is called Pullaiahgaripalli ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:leaderTitle ?x . ?x prop:houses ?uri . ?x rdf:type onto:Legislature}",julipc-p(huggingface) Which serving railway line of the Daund Junction railway station was also the place where 99 (2009 film) was recorded ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:servingRailwayLine ?uri. prop:recorded ?uri}",julipc-p(huggingface) List the ethnicity of Riley Reid?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Riley_Reid prop:ethnicity ?uri }",julipc-p(huggingface) Which shows are from a company whose subsidiary is Viacom Productions?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:subsidiary . ?uri prop:company ?x . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) What is the university whose campus is Mount Moosilauke?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:campus . ?uri rdf:type onto:University}",julipc-p(huggingface) How many religions are followed by the group whose architectural style can be seen on Sanggar Agung?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { prop:architecturalStyle ?x . ?x onto:religion ?uri . ?x rdf:type onto:EthnicGroup}",julipc-p(huggingface) How many things are written in C++?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:programmingLanguage . }",julipc-p(huggingface) Name the garrison of the Western Naval Command and line of the Vadodara Junction railway station ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Western_Naval_Command prop:garrison ?uri. res:Vadodara_Junction_railway_station prop:line ?uri}",julipc-p(huggingface) Who are the shareholder of the soccer club for whom Steve Holland plays?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:currentclub ?x . ?x prop:owner ?uri . }",julipc-p(huggingface) Which city located on Mediterranean Sea is also the stadium of Panionios G.S.S. season ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:2014–15_Panionios_G.S.S._season prop:stadium ?uri. res:Mediterranean_Sea prop:cities ?uri}",julipc-p(huggingface) Through which cities do the rivers starting at the Montauk State Park flow?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:sourcePlace . ?x onto:city ?uri . ?x rdf:type onto:River}",julipc-p(huggingface) How many ideologies do the political party of Boonchu Rojanastien hold?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { prop:party ?x . ?x onto:ideology ?uri . ?x rdf:type onto:PoliticalParty}",julipc-p(huggingface) "What are the hubs of PLUS Helicopter Services, a highway helicopter unit of PLUS Expressways?","PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:PLUS_Expressways prop:hubs ?uri }",julipc-p(huggingface) Name the movies for which music was given by Geoffrey Burgon and distributed by Cinema International Corporation?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:music . ?uri prop:distributor . ?uri rdf:type onto:Film}",julipc-p(huggingface) Which country's leader is Giuseppe Bertello?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:leader . ?uri rdf:type onto:Country}",julipc-p(huggingface) Who wrote the subsequent work of One Day at a Time (Em's Version) ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:subsequentWork ?x . ?x onto:writer ?uri . }",julipc-p(huggingface) Name the TV shows with network as NBC and company as Paramount Television ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:network . ?uri prop:company . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) Name the fictional character whose voice's animator is Hardie Gramatky?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:animator . ?uri onto:voice ?x . ?uri rdf:type onto:FictionalCharacter}",julipc-p(huggingface) Which license provider of MSX basic is also the designer of Language Integrated Query ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Language_Integrated_Query onto:designer ?uri. res:MSX_BASIC prop:license ?uri}",julipc-p(huggingface) Who are the architect of the stadium whose one of the architect is louis D. Astorino ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:architect res:Louis_D._Astorino . ?x prop:architect ?uri . }",julipc-p(huggingface) Who are the astronauts associated with NASA?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:type . ?uri rdf:type onto:Astronaut}",julipc-p(huggingface) Who is the partner of Rob Patterson?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:partner res:Rob_Patterson . }",julipc-p(huggingface) How many politicians are there from the city of Ganges?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { prop:city ?x . ?x onto:leaderName ?uri . }",julipc-p(huggingface) To which american football teams does the Heinz Field serve as home stadium?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Heinz_Field prop:tenants ?uri }",julipc-p(huggingface) Which architect of the Marine Corps Air Station Kaneohe Bay is the branch of the Burnet R. Maybank?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Marine_Corps_Air_Station_Kaneohe_Bay prop:architect ?uri. res:Burnet_R._Maybank prop:branch ?uri}",julipc-p(huggingface) Which movies's screenplay is written by Akiva Goldsman,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:screenplay . ?uri rdf:type onto:Film}",julipc-p(huggingface) How many TV shows are similar to the ones belonging to fantasy genre?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:genre . ?uri onto:related ?x . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) How many developers were involved in creating games whose score is composed by Gerard Marino?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:composer . ?x onto:developer ?uri . }",julipc-p(huggingface) Which television show's developer is Brian Graden and voices to the character is by Isaac Hayes?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:developer . ?uri prop:voices . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) How did the child of Stevens T. Mason die?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:child ?x . ?x onto:deathCause ?uri . }",julipc-p(huggingface) What is the nickname of the home stadium of Angels Toru?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Angels_Toruń onto:homeStadium ?x . ?x prop:nickname ?uri . }",julipc-p(huggingface) What is the television show whose executive producer is Douglas Netter?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:executiveProducer . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) List out the people who are related to the relatives of Jared Kushner ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Jared_Kushner onto:relation ?x . ?x onto:relation ?uri . }",julipc-p(huggingface) List all the doctoral student of the scientist who has advised john Bowlby ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:doctoralStudents . ?x prop:doctoralStudents ?uri . ?x rdf:type onto:Scientist}",julipc-p(huggingface) To which series does the book belong which came after the Blade Runner 2?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:previousWork res:Blade_Runner_2:_The_Edge_of_Human . ?x onto:series ?uri . }",julipc-p(huggingface) In which city did The Ultimate Fighter: Team Rousey vs. Team Tate take place ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:The_Ultimate_Fighter:_Team_Rousey_vs._Team_Tate prop:city ?uri }",julipc-p(huggingface) Where was Sino-French War fought ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:territory ?uri }",julipc-p(huggingface) Who did Daniel Gibson marry?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:spouse res:Daniel_Gibson . }",julipc-p(huggingface) What is the political party of the daughter of Jawaharlal Nehru ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Jawaharlal_Nehru onto:child ?x . ?x onto:party ?uri . }",julipc-p(huggingface) Name the river with source as Shannon Pot and its mouth is located in Limerick?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:source . ?uri prop:mouthLocation . ?uri rdf:type onto:River}",julipc-p(huggingface) Count the number of sports team members which have player named Matt Williams ?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:name . ?x prop:name ?uri }",julipc-p(huggingface) How many different people own the Timeform award winners?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:awards . ?x onto:owner ?uri . ?uri rdf:type onto:Person}",julipc-p(huggingface) What religions do diplomats typically follow?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:profession res:Diplomacy . ?x prop:religion ?uri . }",julipc-p(huggingface) Guggenheim family is the cofounder of a company that invested stocks in which baseball teams?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:founder . ?uri prop:owner ?x . ?uri rdf:type onto:BaseballTeam}",julipc-p(huggingface) Which city is known for the people working in the western penn hospital?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:workInstitutions . ?x onto:knownFor ?uri . ?x rdf:type onto:Person}",julipc-p(huggingface) In which country does the publishing house exist which was cofounded by Panos Loannides?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:founder . ?x prop:country ?uri . ?x rdf:type onto:Publisher}",julipc-p(huggingface) Name the team which is owned by Dafenham wind turbines and stood first in 1967 mexican Grand Prix ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:1967_Mexican_Grand_Prix prop:firstTeam ?uri. res:Dagenham_wind_turbines prop:owner ?uri}",julipc-p(huggingface) Which education center Sidney Catlin Partrodge attended which was also the alma mater of Lisa Brummel ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Sidney_Catlin_Partridge prop:education ?uri. res:Lisa_Brummel onto:almaMater ?uri}",julipc-p(huggingface) What sports can be played in Kharghar's schools,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:city . ?x onto:sport ?uri . ?x rdf:type onto:School}",julipc-p(huggingface) Which ethinicity of Riley Reid is the state of origin of Holmes Colbert?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Riley_Reid prop:ethnicity ?uri. res:Holmes_Colbert onto:stateOfOrigin ?uri}",julipc-p(huggingface) Which american football team has stadium as O.co Coliseum?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:locationCity . ?uri rdf:type onto:AmericanFootballTeam}",julipc-p(huggingface) How many subjects are covered in the publications of Doubleday?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:publisher . ?x onto:nonFictionSubject ?uri . }",julipc-p(huggingface) In which city of Pittsburg Steelers was the Congress of Inductrial Organization founded ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Congress_of_Industrial_Organizations prop:founded ?uri. res:Pittsburgh_Steelers prop:city ?uri}",julipc-p(huggingface) What is the hometown of the residents of Martha's vineyards?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:residence . ?x onto:hometown ?uri . }",julipc-p(huggingface) Name the sea into which Danish Straits flows and has Kaliningrad as one of the city on the shore ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:cities . ?uri prop:outflow . ?uri rdf:type onto:Sea}",julipc-p(huggingface) Name the team manger of Middlebrough F.C season 2006-07 ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:manager ?uri }",julipc-p(huggingface) What city has the football team in which Lee Robinson debuted?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:debutTeam ?x . ?x onto:locationCity ?uri . }",julipc-p(huggingface) Who is the owner of the bank which owns Bloomberg Radio?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:owner ?x . ?x prop:owner ?uri . ?x rdf:type onto:Bank}",julipc-p(huggingface) Which companies were behind the renovation of McKechnie Field ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:McKechnie_Field prop:architect ?uri }",julipc-p(huggingface) "Who was the coach of marquette Golden Eagles men's basketball team-2012,13 season ?","PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:coach ?uri }",julipc-p(huggingface) Which governer of Winston bryant is also the president of Carl Stokes ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Winston_Bryant prop:governor ?uri. res:Carl_Stokes prop:president ?uri}",julipc-p(huggingface) List the sports of PATTS College of Aeronautics which are of interest of Jon Speelman ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:PATTS_College_of_Aeronautics prop:athletics ?uri. res:Jon_Speelman onto:field ?uri}",julipc-p(huggingface) What is the home stadium of the club coached by Justine Omojong?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:coach . ?x prop:homeStadium ?uri . ?x rdf:type onto:SoccerClub}",julipc-p(huggingface) Which are the predecessors of the cars which are similar to the Oldsmobile 88?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Oldsmobile_88 prop:related ?x . ?x onto:predecessor ?uri . }",julipc-p(huggingface) Name a queen whose parent is Ptolemy XII Auletes and consort is Ptolemy XIII Theos Philopator?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:parent . ?uri prop:spouse . ?uri rdf:type onto:Royalty}",julipc-p(huggingface) Which show's theme music was composed by Primus and voiced by Isaac Hayes?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:themeMusicComposer . ?uri prop:voices . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) "Who is the chancellor of the university whose campus is in Woodlane, New Jersey ?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:campus . ?x prop:chancellor ?uri . ?x rdf:type onto:University}",julipc-p(huggingface) Name the mountain whose parent peak is located in Mexico.,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:locatedInArea . ?uri onto:parentMountainPeak ?x . ?uri rdf:type onto:Mountain}",julipc-p(huggingface) List the ingredient of Blodpalt ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Blodpalt onto:ingredient ?uri }",julipc-p(huggingface) List the served region of the organisations of Trade association.,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:type . ?x onto:regionServed ?uri . ?x rdf:type onto:Organisation}",julipc-p(huggingface) Who composed the music for Tonight's the Night ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:music ?uri }",julipc-p(huggingface) How many things are made by companies who produce mass media articles?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:products . ?uri onto:manufacturer ?x . }",julipc-p(huggingface) What awards have been given to race horses bred by Bert Michell?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:trainer . ?x onto:honours ?uri . ?x rdf:type onto:RaceHorse}",julipc-p(huggingface) Whose mayors are affiliated with Christen-Democratisch en Vlaams?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:affiliation . ?uri onto:leaderName ?x . }",julipc-p(huggingface) What is the common nationality of Viveka Babajee anad Ronny Vencatachellum ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Viveka_Babajee prop:citizenship ?uri. res:Ronny_Vencatachellum onto:nationality ?uri}",julipc-p(huggingface) Which party won the elections when Y.S. Rajasekhara Reddy was in power?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:leader . ?x onto:affiliation ?uri . ?x rdf:type onto:Election}",julipc-p(huggingface) Where does the river begin whose left tributary is Krapanski Potok?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:leftTributary res:Krapanski_Potok . ?x onto:source ?uri . }",julipc-p(huggingface) What are the notable commanders of the army whose one of the notable commanders is Paul Hausser?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:notableCommanders res:Paul_Hausser . ?x prop:notableCommanders ?uri . }",julipc-p(huggingface) Name the source of Raa ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:source ?uri }",julipc-p(huggingface) Who is the producer of Frampton's Camel ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:producer ?uri }",julipc-p(huggingface) Name the directors of Lennon Legend: The Very Best of John Lennon (DVD) ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:director ?uri }",julipc-p(huggingface) To which country is Svetlana Navasardyan from?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Svetlana_Navasardyan prop:origin ?uri }",julipc-p(huggingface) What is the alma mater of the scientist who is known for Rational analysis ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:knownFor . ?x onto:almaMater ?uri . ?x rdf:type onto:Scientist}",julipc-p(huggingface) Who is the owner of Chelsea F.C. ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:owner ?uri }",julipc-p(huggingface) In how many places has Don R. Berlin worked?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { onto:employer ?uri . }",julipc-p(huggingface) For how many movies are there whose musicians home town is in Volos ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:hometown . ?uri prop:music ?x . ?uri rdf:type onto:Film}",julipc-p(huggingface) "Name the fictional character whose relatives are Huey, Dewey, and Louie and is of species American Pekin duck?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:relatives . ?uri onto:species . ?uri rdf:type onto:FictionalCharacter}",julipc-p(huggingface) Who is the owner of the website which has the label Seed Eight ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:label ?x . ?x prop:owner ?uri . ?x rdf:type onto:Website}",julipc-p(huggingface) In which country is Sierra del Merendin?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Sierra_del_Merendón onto:country ?uri . }",julipc-p(huggingface) "What is on the border of the places which fall under crook county municipality, oregon?","PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:municipality . ?x onto:border ?uri . }",julipc-p(huggingface) Which is the university of Vanderbilt Commodores ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Vanderbilt_Commodores onto:university ?uri }",julipc-p(huggingface) What musicians are signed up with colpix records?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:label . ?uri rdf:type onto:MusicalArtist}",julipc-p(huggingface) What currencies are used in the country whose capital is Podgorica?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:capital res:Podgorica . ?x prop:currency ?uri . }",julipc-p(huggingface) How many other home stadium are there of the soccer club whose home stadium is Luzhniki Stadium ?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:homeStadium . ?x onto:homeStadium ?uri }",julipc-p(huggingface) Where was William Anthony trained ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:training ?uri }",julipc-p(huggingface) Which composer of Motorpsycho Nitemare has also composed The time are A-Changing ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:composer ?uri. onto:musicBy ?uri}",julipc-p(huggingface) What river is it whose source is Dowra?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:sourceLocation . ?uri rdf:type onto:River}",julipc-p(huggingface) "What is the religion of the president who won the Mongolian legislative election, 2004 ?","PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:leader ?x . ?x onto:religion ?uri . }",julipc-p(huggingface) Give me everything owned by networks which is lead by Steve Burke?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:keyPerson . ?uri onto:network ?x . }",julipc-p(huggingface) What is the municipality of Homestead Grays Bridge ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Homestead_Grays_Bridge onto:municipality ?uri }",julipc-p(huggingface) "What religion do the politicians follow, who graduated from the Yokkohama Nationaal University?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:almaMater . ?x onto:religion ?uri . ?x rdf:type onto:Politician}",julipc-p(huggingface) "Who is the narrator of The Incredible Hulk , 1982 TV series ?","PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:narrated ?uri }",julipc-p(huggingface) What sports are played in schools where Swahili is the official language?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:language res:Swahili_language . ?x onto:sport ?uri . }",julipc-p(huggingface) Which interest of Philip Novak is the relegion of Vesak ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Philip_Novak prop:mainInterests ?uri. res:Vesak onto:type ?uri}",julipc-p(huggingface) Count all the ethinic group who speaks language which belongs to Anglo-Frisian language family ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:languageFamily . ?uri prop:languages ?x . ?uri rdf:type onto:EthnicGroup}",julipc-p(huggingface) What is the area of the Tar Heel Sports Network which is official residence of the Michael Nichols (photographer) ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:area ?uri. onto:residence ?uri}",julipc-p(huggingface) How many artists have their works in the Sao Paolo Museum of Art?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:museum . ?x prop:artist ?uri . ?uri rdf:type onto:Artist}",julipc-p(huggingface) What is used as money for French Southern and Antarctic Lands is also the product of the Karafarin Bank ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:French_Southern_and_Antarctic_Lands onto:currency ?uri. res:Karafarin_Bank onto:product ?uri}",julipc-p(huggingface) Give me the total number of membership of the organisations which have memebers as Azerbaijan?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:membership . ?x prop:membership ?uri }",julipc-p(huggingface) What is the content licence of MSX BASIC ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:MSX_BASIC prop:license ?uri }",julipc-p(huggingface) What are the central characters in spy kids series?,"PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:series . }",julipc-p(huggingface) Which comic characters were created by Paul Dini?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:creators . ?uri rdf:type onto:ComicsCharacter}",julipc-p(huggingface) who owns the ship Victoria?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:owner ?uri }",julipc-p(huggingface) Where was the predecessor of Sevan Ross born?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:successor res:Sevan_Ross . ?x prop:placeOfBirth ?uri . }",julipc-p(huggingface) Where is the school which is the rival of Somerset Berkley Regional High?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:rival ?x . ?x onto:region ?uri . ?x rdf:type onto:School}",julipc-p(huggingface) How many soccer manager have been in the Spain nation football team?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:nationalteam . ?uri rdf:type onto:SoccerManager}",julipc-p(huggingface) What are some companies which are founded in Dallas Jurisdiction?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:governingBody . ?uri onto:foundationPlace ?x . ?uri rdf:type onto:Company}",julipc-p(huggingface) How many bands collaborated with artists who signed up with EMI?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:recordLabel . ?x onto:associatedMusicalArtist ?uri . ?uri rdf:type onto:Band}",julipc-p(huggingface) What is the purpose of New Zealand Chess Federation ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:New_Zealand_Chess_Federation prop:purpose ?uri }",julipc-p(huggingface) How many TV shows are of the company which are of company which is a subsidiary of Big Ticket Entertainment ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:subsidiary . ?uri prop:company ?x . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) Who operates twin Cities 400 ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Twin_Cities_400 onto:operatedBy ?uri }",julipc-p(huggingface) What is the city of the Maine School of Science and Mathematics is also the resting place of Charles A. Boutelle ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Maine_School_of_Science_and_Mathematics onto:authority ?uri. res:Charles_A._Boutelle prop:restingplace ?uri}",julipc-p(huggingface) Give me a count of royalties buried in Rome ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:placeOfBurial . ?uri rdf:type onto:Royalty}",julipc-p(huggingface) In how many places are Marjas found?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:title . ?x onto:location ?uri . ?uri rdf:type onto:Location}",julipc-p(huggingface) List the soccer players whose current team has the ground Stoke-on-Trent.,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:ground . ?uri prop:currentclub ?x . ?uri rdf:type onto:SoccerPlayer}",julipc-p(huggingface) Which are the countires where Pioneer Corporation has flourished?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Pioneer_Corporation prop:country ?uri }",julipc-p(huggingface) Who is the president of Carl Stokes nad Wyche Fowler ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Carl_Stokes prop:president ?uri. res:Wyche_Fowler onto:president ?uri}",julipc-p(huggingface) List few Swedish language movies ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:language . ?uri rdf:type onto:Film}",julipc-p(huggingface) What is the currency of Kerguelen Islands ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Kerguelen_Islands onto:currency ?uri }",julipc-p(huggingface) What are the musicals whose musicians worked under Sony Music Entertainment?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:label . ?uri prop:music ?x . ?uri rdf:type onto:Musical}",julipc-p(huggingface) Whose shrines are in a place governed by Justin Trudeau?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:leaderName res:Justin_Trudeau . ?uri onto:majorShrine ?x . }",julipc-p(huggingface) What are the academic interests of the past members of Senser?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Senser prop:pastMembers ?x . ?x prop:mainInterests ?uri . }",julipc-p(huggingface) Who is the leader of Hackweiser ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Hackweiser prop:leaderName ?uri }",julipc-p(huggingface) In which city is the sister station of KTXY located ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:KTXY onto:sisterStation ?x . ?x onto:city ?uri . }",julipc-p(huggingface) Where was the successor of Hank Brown born?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Hank_Brown prop:successor ?x . ?x onto:birthPlace ?uri . }",julipc-p(huggingface) Name the constituency of Jonas Gahr where Sverre Krogh was born ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Jonas_Gahr_Støre prop:constituency ?uri. res:Sverre_Krogh_Sundbø prop:birthPlace ?uri}",julipc-p(huggingface) What is the common battle fought by Stephen Urban and Ali Habib Mahmud ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Stephen_Urban onto:battle ?uri. res:Ali_Habib_Mahmud prop:battles ?uri}",julipc-p(huggingface) What is the relegious affiliations of Katyayana ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:religion ?uri }",julipc-p(huggingface) Where was the engineer born who manufactured EP R.E.P. 1?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:manufacturer ?x . ?x onto:birthPlace ?uri . }",julipc-p(huggingface) who all have been a manager of english under twenty one football team?,"PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:managerclubs }",julipc-p(huggingface) Which party has come in power in Mumbai North?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:constituency . ?x onto:party ?uri . }",julipc-p(huggingface) What is the largest city of the country which hosted the 1951 Asian Games?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:hostCity ?x . ?x onto:largestCity ?uri . ?x rdf:type onto:Country}",julipc-p(huggingface) Which royalty was married to ptolemy XIII Theos Philopator and had mother named Cleopatra V ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:mother . ?uri prop:spouse . ?uri rdf:type onto:Royalty}",julipc-p(huggingface) Whose theme music was composed by a band which collaborated with Phish?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:associatedBand res:Phish . ?uri prop:themeMusicComposer ?x . }",julipc-p(huggingface) Which administrative headquarters of the Pulau Ubin is also the resting place of the Nicole Lai,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Pulau_Ubin onto:capital ?uri. res:Nicole_Lai onto:restingPlace ?uri}",julipc-p(huggingface) Where did the beverages sold by Refriango originate?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:manufacturer . ?x prop:origin ?uri . ?x rdf:type onto:Beverage}",julipc-p(huggingface) Who built the stadium which was rented by Costa Rica national football team?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:tenants . ?x onto:builder ?uri . ?x rdf:type onto:Stadium}",julipc-p(huggingface) In which country does the Auckland rugby union team play ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Auckland_rugby_union_team onto:league ?x . ?x onto:country ?uri . }",julipc-p(huggingface) "What is the serving railway line of Warwick railway station, Perth ?","PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:servingRailwayLine ?uri }",julipc-p(huggingface) "What is the radio show created by Timoteo Jeffries, about?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:creator . ?x prop:format ?uri . ?x rdf:type onto:RadioProgram}",julipc-p(huggingface) "Where are all the protected areas near Bend, Oregon?","PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:nearestCity . ?x onto:location ?uri . ?x rdf:type onto:ProtectedArea}",julipc-p(huggingface) Which notable series of Russell T Davies is also the series of Short Trips: A day in the life ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Short_Trips:_A_Day_in_the_Life onto:series ?uri. res:Russell_T_Davies onto:notableWork ?uri}",julipc-p(huggingface) Which battles were fought under the president when Chung Won Shik was the prime minister?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:primeminister . ?x prop:battles ?uri . ?x rdf:type onto:President}",julipc-p(huggingface) "Which office holder's resting place is in Palo Alto, California and was succeeded by Adrian A. Basora ?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:restingPlace . ?uri prop:successor . ?uri rdf:type onto:OfficeHolder}",julipc-p(huggingface) which movies have been published by Cinema International Corporation?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:distributor res:Cinema_International_Corporation }",julipc-p(huggingface) What is the total number of other destinations of the airlines whose one of the destinations is Mediterranean Sea?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:destinations . ?x prop:destinations ?uri }",julipc-p(huggingface) Count the total number of academic discipline of the journals whose one of the academic discipline is Neuroimaging ?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:academicDiscipline . ?x onto:academicDiscipline ?uri }",julipc-p(huggingface) What are some cities which have a Ferris wheel?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:buildingType res:Ferris_wheel . ?x prop:locationTown ?uri . }",julipc-p(huggingface) Name the movie who has screenplay by Akiva Goldsman and is edited by Mark Stevens ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:screenplay . ?uri prop:editing . ?uri rdf:type onto:Film}",julipc-p(huggingface) Count the movies in Swedish language?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:language . ?uri rdf:type onto:Film}",julipc-p(huggingface) Give me the total number of television shows whose theme music composer is Julian Gingell and created by Simon Fuller?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:themeMusicComposer . ?uri prop:creator }",julipc-p(huggingface) Which cloud platform of Google cloud connect also provides services to 21Vianet ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:21Vianet prop:services ?uri. res:Google_Cloud_Connect onto:computingPlatform ?uri}",julipc-p(huggingface) Name the office holder whose constituency is Haight-Ashbury?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:constituency . ?uri rdf:type onto:OfficeHolder}",julipc-p(huggingface) Name the loocation of Lekh Castle which is also the location of SamurAbsheron channel ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Lekh_Castle onto:location ?uri. res:Samur–Absheron_channel onto:sourceCountry ?uri}",julipc-p(huggingface) Count the number of families of the Animal kingdom.,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:kingdom . ?x onto:family ?uri . }",julipc-p(huggingface) What is the political party of the person succeeded by A.K. Singh?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:successor . ?x prop:party ?uri . ?x rdf:type onto:Person}",julipc-p(huggingface) Who is the head coach of the teams in Middlesbrough FC?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:club . ?x onto:manager ?uri . }",julipc-p(huggingface) People in the royal Thai army follow which religion?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:branch . ?x onto:religion ?uri . ?x rdf:type onto:Person}",julipc-p(huggingface) Who are the producers of the movies which has music by Gary Chang ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:music . ?x prop:producer ?uri . ?x rdf:type onto:Film}",julipc-p(huggingface) Where was Special 26 recorded ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Special_26 prop:recorded ?uri }",julipc-p(huggingface) How many movies music composers are associated with Demis Roussos ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:associatedActs . ?uri onto:musicComposer ?x . ?uri rdf:type onto:Film}",julipc-p(huggingface) To which nation did David Animle Hanses owe his allegiance?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:David_Animle_Hansen prop:allegiance ?uri }",julipc-p(huggingface) What is the alma mater of the actors of The God Who Wasn't There ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:starring ?x . ?x prop:almaMater ?uri . }",julipc-p(huggingface) List some musicians associated with famous guitar players?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:notableInstruments res:Guitar . ?x onto:associatedMusicalArtist ?uri . }",julipc-p(huggingface) What are the airlines whose hub airport is operated by the Los Angeles World Airports?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:operator . ?uri onto:hubAirport ?x . ?uri rdf:type onto:Airline}",julipc-p(huggingface) Which company's cars are assembled in Colombia?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:assembly . ?x prop:parentCompany ?uri . ?x rdf:type onto:Automobile}",julipc-p(huggingface) Who directed The Haunted House ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:director ?uri }",julipc-p(huggingface) Count all the different purposes followed by the different NGOs.,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:type . ?x prop:purpose ?uri . }",julipc-p(huggingface) "The players born in Bellaire, Ohio have played for which team?","PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:birthPlace . ?x onto:team ?uri . }",julipc-p(huggingface) What is the common ideology followed by Katyayana and Palang Dharma Party ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:religion ?uri. onto:ideology ?uri}",julipc-p(huggingface) Count the tenants of MasterCard Centre?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { prop:tenants ?uri . }",julipc-p(huggingface) who are starring in the movies written by Mark Sandrich ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:writer . ?x onto:starring ?uri . ?x rdf:type onto:Film}",julipc-p(huggingface) Count the number of religions followed by BJP members.,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:party . ?x onto:religion ?uri . }",julipc-p(huggingface) What is the mascot of the rival school of Sullivan Central High?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Sullivan_Central_High_School prop:rival ?x . ?x prop:mascot ?uri . }",julipc-p(huggingface) What award has been awarded to both Dion Beebe and Charles LeMaire?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Dion_Beebe onto:award ?uri. res:Charles_LeMaire prop:awards ?uri}",julipc-p(huggingface) What is the birth name of Putri Raemawasti ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Putri_Raemawasti prop:birthName ?uri }",julipc-p(huggingface) What is the party of the politicians whose children is Sanjay Gandhi ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:children . ?x onto:party ?uri . ?x rdf:type onto:OfficeHolder}",julipc-p(huggingface) Name the tenants of MAsterCard center wich is also the draft team of Antoine Bibeau?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:MasterCard_Centre prop:tenants ?uri. res:Antoine_Bibeau prop:draftTeam ?uri}",julipc-p(huggingface) "What is the number of occupation of the people who died in tampa bay, florida?","PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:deathPlace . ?x onto:occupation ?uri . }",julipc-p(huggingface) Who was the United States president who also served as a governor of Indiana Territory?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:branch res:Indiana_Territory }",julipc-p(huggingface) List the people who were born in Gelnhausen and graduated from Pepperdine University?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:birthPlace . ?uri prop:education . ?uri rdf:type onto:Person}",julipc-p(huggingface) Musical artists who are associated with Ren & Angela were born where ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:associatedActs . ?x prop:birthPlace ?uri . ?x rdf:type onto:MusicalArtist}",julipc-p(huggingface) Who designed the language integrated query?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Language_Integrated_Query onto:designer ?uri . }",julipc-p(huggingface) Name the debut team of Dan Otero ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Dan_Otero onto:debutTeam ?uri }",julipc-p(huggingface) Who founded the Not on our Watch NGO?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:foundedBy ?uri }",julipc-p(huggingface) What is the name of the artist which worked on the subsequent work of Ella Loves Cole ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Ella_Loves_Cole onto:subsequentWork ?x . ?x prop:artist ?uri . }",julipc-p(huggingface) Which company owns Sony bank ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Sony_Bank onto:owningCompany ?uri }",julipc-p(huggingface) Who is a religious figure titled superior general?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:title . ?uri rdf:type onto:Religious}",julipc-p(huggingface) "List the employments of people who died in Tampa, Florida.","PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:deathPlace . ?x onto:occupation ?uri . }",julipc-p(huggingface) What are some famous veterinary physicians known for?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:field res:Veterinary_physician . ?x prop:knownFor ?uri . }",julipc-p(huggingface) List the movies edited by Julian Doyle in which music was composed by Geoffrey Brugon ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:music . ?uri prop:editing . ?uri rdf:type onto:Film}",julipc-p(huggingface) Name the children of the person who is the star of The Weathered Underground ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:starring ?x . ?x prop:children ?uri . ?x rdf:type onto:Person}",julipc-p(huggingface) Which owner of Chelsea F.C also owns Evraz ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:owningCompany ?uri. prop:owner ?uri}",julipc-p(huggingface) Name the office holder with associate as Marcus Calpurnius Bibulus and has a kid named Augustus?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:associate . ?uri onto:child . ?uri rdf:type onto:OfficeHolder}",julipc-p(huggingface) What are the movies whose screenplay is done by Eric Roth?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:screenplay . ?uri rdf:type onto:Film}",julipc-p(huggingface) What is the total number of writers whose singles are recorded in Miami?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:recordedIn . ?x prop:writer ?uri . }",julipc-p(huggingface) What religions are followed by members of the societies whose architectural influences can be seen on the Sanggar Agung ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Sanggar_Agung prop:architecturalStyle ?x . ?x onto:religion ?uri . }",julipc-p(huggingface) Who is the producer of album which has the song Money?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:album ?x . ?x prop:producer ?uri . }",julipc-p(huggingface) List the Sci-fi TV shows with theme music given by Ron Grainer?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:genre . ?uri prop:themeMusicComposer . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) What is the company to which Fusajiro Yamauchi proprietor to ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:foundedBy . ?uri rdf:type onto:Company}",julipc-p(huggingface) Who is the writer of mark twain Tonight ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Mark_Twain_Tonight prop:writer ?uri }",julipc-p(huggingface) How many members are there in the European Go Federation?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { prop:membership ?uri . }",julipc-p(huggingface) What is the mascot of the handball teams in the Turkish Handball Super League?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:league . ?x prop:mascot ?uri . ?x rdf:type onto:HandballTeam}",julipc-p(huggingface) What city was recorded in Live in detroit which is also the official residence of ken Holland ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:recordedIn ?uri. onto:residence ?uri}",julipc-p(huggingface) Marika Gombitov makes songs in which languages?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:artist res:Marika_Gombitová . ?x prop:language ?uri . }",julipc-p(huggingface) What are some musical artists associated with the ones signed up with EMI?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:recordLabel . ?x onto:associatedMusicalArtist ?uri . ?x rdf:type onto:MusicalArtist}",julipc-p(huggingface) Name the river which flows through the closest city of Mount Raimer ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Mount_Raimer prop:nearestCity ?x . ?x onto:river ?uri . }",julipc-p(huggingface) Name the scientist whose supervisor also supervised Mary Ainsworth?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:doctoralStudents . ?uri prop:doctoralAdvisor ?x . ?uri rdf:type onto:Scientist}",julipc-p(huggingface) What are some relatives of armymen who died in Germany?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:placeOfDeath . ?x onto:relation ?uri . ?x rdf:type onto:MilitaryPerson}",julipc-p(huggingface) Which garrison of East Indies Station is also the route end of Mumbai Vadodara Express ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Mumbai_Vadodara_Expressway onto:routeEnd ?uri. res:East_Indies_Station onto:garrison ?uri}",julipc-p(huggingface) To which political party does Virendra Kataria belongs ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Virendra_Kataria prop:party ?uri }",julipc-p(huggingface) Copley Medal has been awarded to which scientists?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:awards . ?uri rdf:type onto:Scientist}",julipc-p(huggingface) "What is the total number of awards whose presenter's headquarters is Beverly Hills, California?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:headquarters . ?uri onto:presenter ?x . ?uri rdf:type onto:Award}",julipc-p(huggingface) Who is the narrator of The Price of Beauty ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:The_Price_of_Beauty onto:narrator ?uri }",julipc-p(huggingface) Who is the producer of the device which is the operating system of Now TV ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:operatingSystem ?x . ?x onto:manufacturer ?uri . }",julipc-p(huggingface) How many artists have collaborated with famous guitar players?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:notableInstruments . ?x onto:associatedMusicalArtist ?uri . ?uri rdf:type onto:Artist}",julipc-p(huggingface) How many politicians live in India?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:residence . ?uri rdf:type onto:OfficeHolder}",julipc-p(huggingface) What is the base currency of the country which operates the Marion Dufresne?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:operator ?x . ?x onto:currency ?uri . }",julipc-p(huggingface) What is the region served by the governor of Stephen L.R. McNichols ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Stephen_L.R._McNichols prop:governor ?x . ?x onto:region ?uri . }",julipc-p(huggingface) Who operates Liverpool Playhouse ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Liverpool_Playhouse onto:operatedBy ?uri }",julipc-p(huggingface) Who has composed songs produced by Terry Melcher?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:producer . ?x onto:composer ?uri . ?x rdf:type onto:Song}",julipc-p(huggingface) To which series does Lost special belong to ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:The_Lost_Special prop:series ?uri }",julipc-p(huggingface) How many albums did the maker of The Band produce?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:artist . ?x onto:subsequentWork ?uri . ?uri rdf:type onto:Album}",julipc-p(huggingface) List few musical artist whose notable instruments are Ludwig Drums and Remo?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:notableInstruments . ?uri onto:instrument . ?uri rdf:type onto:MusicalArtist}",julipc-p(huggingface) How many rivers start in an English speaking country?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:officialLanguage . ?uri onto:sourceCountry ?x . ?uri rdf:type onto:River}",julipc-p(huggingface) Where Everybody knows you is the theme album of which show ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Where_Everybody_Knows_Your_Name onto:album ?uri }",julipc-p(huggingface) Food in which countries has shallot in it?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:ingredient . ?x onto:country ?uri . ?x rdf:type onto:Food}",julipc-p(huggingface) "Which rivers have source origins asnorth western, Zambia ?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:sourceRegion . ?uri rdf:type onto:River}",julipc-p(huggingface) "Name the river with Readin, Brekshire in its path and mouth place is Sothend-on-sea ?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:city . ?uri onto:mouthPlace . ?uri rdf:type onto:River}",julipc-p(huggingface) "Alexander Magleby, a rugby player is alma mater to which university?","PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Alexander_Magleby prop:university ?uri }",julipc-p(huggingface) What sport played at Islamic azad uni employes Craig Van Tilbury?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Craig_Van_Tilbury onto:occupation ?uri. res:Islamic_Azad_University_Central_Tehran_Branch onto:sport ?uri}",julipc-p(huggingface) List the products of the company which published Tweenies: Game Time.,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Tweenies:_Game_Time prop:publisher ?x . ?x prop:products ?uri . }",julipc-p(huggingface) List the agencies located someplace lead by Alex Chalk.,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:leaderName . ?uri onto:location ?x . ?uri rdf:type onto:GovernmentAgency}",julipc-p(huggingface) What religion are the characters of Absolutely Fabulous from?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:series . ?x onto:religion ?uri . ?x rdf:type onto:FictionalCharacter}",julipc-p(huggingface) What are the movies whose music composer uses a Hammond organ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:instrument . ?uri onto:musicComposer ?x . ?uri rdf:type onto:Film}",julipc-p(huggingface) Whihc birthpalce of Svetlana Gounkina is also the largest city of Union State ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Union_State prop:largestCity ?uri. res:Svetlana_Gounkina onto:birthPlace ?uri}",julipc-p(huggingface) Name the TV show with artist Christopher Franke and cast member Jason Carter ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:artist . ?uri onto:starring . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) Which artist married to Lee Krasner?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:spouse . ?uri rdf:type onto:Artist}",julipc-p(huggingface) What teams did the ex teamplayers of lighthouse boy club start their career with?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:youthclubs res:Lighthouse_Boys_Club . ?x prop:debutteam ?uri . }",julipc-p(huggingface) Where was the deadbody discovered of one of the alumni of General Educational Development?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:education res:General_Educational_Development . ?x prop:bodyDiscovered ?uri . }",julipc-p(huggingface) Who designed the bridge in Oddamavadi?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:locatedInArea . ?x prop:designer ?uri . ?x rdf:type onto:Bridge}",julipc-p(huggingface) What is the leader name of the settlements whose governing body is Municipal council?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:governingBody . ?x onto:leaderName ?uri . ?x rdf:type onto:Settlement}",julipc-p(huggingface) Name the co-founder of the record labels which have one of the founder as Chris DuBois ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:founder . ?x prop:founder ?uri . ?x rdf:type onto:RecordLabel}",julipc-p(huggingface) List the companies operating in Australia?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:regionServed res:Australia }",julipc-p(huggingface) In which countries is coconut used as a food ingredient?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:ingredient . ?x prop:country ?uri . ?x rdf:type onto:Food}",julipc-p(huggingface) How many people have worked for teams chaired by Patricia Amorim?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:chairman . ?x prop:name ?uri . ?uri rdf:type onto:Person}",julipc-p(huggingface) How many kinds of games can be played on the Amiga?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:computingPlatform . ?x prop:genre ?uri . }",julipc-p(huggingface) How many relatives are there of people fought in the Battle of the Bulge?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:battles . ?x onto:relation ?uri . }",julipc-p(huggingface) How many genres of games can I find on the commodore CDTV?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:computingPlatform . ?x onto:genre ?uri . }",julipc-p(huggingface) Directors of which movies are buried in Ronda?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:restingPlace res:Ronda . ?uri prop:director ?x . }",julipc-p(huggingface) List the debut team of the baseball player who born in Houston.,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:birthPlace . ?x onto:debutTeam ?uri . ?x rdf:type onto:BaseballPlayer}",julipc-p(huggingface) Who edited British Gazette ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:British_Gazette prop:editor ?uri }",julipc-p(huggingface) List the things for which the relatives of Mrunalini Kunte are known?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Mrunalini_Kunte onto:relative ?x . ?x prop:knownFor ?uri . }",julipc-p(huggingface) What acts and artists are associated with people who have worked with Divertis?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:associatedActs res:Divertis . ?x onto:associatedMusicalArtist ?uri . }",julipc-p(huggingface) What are the notableworks of Russell T Davies?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Russell_T_Davies prop:notableworks ?uri }",julipc-p(huggingface) Which company has developed games whose music is done by Gerard Marino?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:composer . ?x onto:developer ?uri . ?x rdf:type onto:VideoGame}",julipc-p(huggingface) Who all have developed softwares for Unix Like OSes?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:operatingSystem . ?x onto:developer ?uri . ?x rdf:type onto:Software}",julipc-p(huggingface) What are some party leaders of the parties which have had a seat in Berlin?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:headquarter . ?x onto:leader ?uri . ?x rdf:type onto:PoliticalParty}",julipc-p(huggingface) Which tenant of New Sanno Hotel is the military branch of the Gary Holder-Winfield ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:tenant ?uri. onto:militaryBranch ?uri}",julipc-p(huggingface) List the director of The Adventures of mimi ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:director ?uri }",julipc-p(huggingface) List sports managers who managed Middlesbrough F.C. and England national under-21 football team?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:managerClub . ?uri prop:managerclubs . ?uri rdf:type onto:SportsManager}",julipc-p(huggingface) Name all the soccer players who played in a under 18 club for La Liga?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:league . ?uri prop:youthclubs ?x . ?uri rdf:type onto:SoccerPlayer}",julipc-p(huggingface) Which key perosn of the Elders is also the president of united World College ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:keyPeople ?uri. onto:president ?uri}",julipc-p(huggingface) Who are the players whose current clubs have Ferran Soriano as chairman?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:chairman . ?uri prop:currentclub ?x . ?uri rdf:type onto:Person}",julipc-p(huggingface) What are some parties which have people from Mangalore as a member?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:placeOfBirth res:Mangalore . ?x prop:party ?uri . }",julipc-p(huggingface) Which employer of Michael M. Sears is also the producer of Delta III ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Michael_M._Sears onto:employer ?uri. res:Delta_III onto:manufacturer ?uri}",julipc-p(huggingface) Name the largest city in the county where there is a Cy-Fair High School.,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:county ?x . ?x onto:largestCity ?uri . }",julipc-p(huggingface) How many bacterias are there whose division is Firmicutes?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:division . ?uri rdf:type onto:Bacteria}",julipc-p(huggingface) To which country does Peter Blay owe his allegiance?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Peter_Blay prop:allegiance ?uri }",julipc-p(huggingface) Name the television show whose subsequent work is Crusade and Composer is Stewart Copeland?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:subsequentWork . ?uri prop:composer . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) What are the current music bands of Chester Bennington?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:currentMembers res:Chester_Bennington }",julipc-p(huggingface) Who was the prime minister under which the predecessor of Derick Heathcoat Amory served?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:successor . ?x prop:primeminister ?uri . }",julipc-p(huggingface) Which person designed the cars which has been designed by ASC Creative Services?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:designCompany . ?x prop:designer ?uri . ?x rdf:type onto:Automobile}",julipc-p(huggingface) What are some orthonychidae birds?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:family . ?uri rdf:type onto:Bird}",julipc-p(huggingface) Which driver had the pole position in 1994 Spanish Grand Prix ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:1994_Spanish_Grand_Prix onto:poleDriver ?uri }",julipc-p(huggingface) How many awards have been given to the founder of Grameen Bank?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { prop:founder ?x . ?x onto:award ?uri . }",julipc-p(huggingface) Was Queen Latifah in the U.N.I.T.Y. group?,"PREFIX res: PREFIX onto: ASK WHERE { onto:musicalArtist res:Queen_Latifah }",julipc-p(huggingface) Count the number of important works done by the writers of The Second Coming?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { onto:author ?x . ?x onto:notableWork ?uri . }",julipc-p(huggingface) Who all are known to play the Gibson Guitar Corporation?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:notableInstruments res:Gibson_Guitar_Corporation }",julipc-p(huggingface) Which child of Jack Ferguson became a Prime Minister?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Jack_Ferguson onto:child ?x . ?x prop:primeminister ?uri . }",julipc-p(huggingface) What are the things whose mascots are from the class Eutheria?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:class res:Eutheria . ?uri prop:mascot ?x . }",julipc-p(huggingface) For whom did Michael Springer palyed for which is also had a former student named Donald Brooks ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Michael_Springer prop:team ?uri. res:Donald_Brooks prop:education ?uri}",julipc-p(huggingface) Name the movie written by Monty Python and distributed by Cinema International Corporation ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:distributor . ?uri prop:writer . ?uri rdf:type onto:Film}",julipc-p(huggingface) Name the partners of Kelly Brook?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Kelly_Brook onto:partner ?uri }",julipc-p(huggingface) What is the area of the broadcast network which has the affiliation with 9TV?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:affiliation ?x . ?x prop:area ?uri . ?x rdf:type onto:BroadcastNetwork}",julipc-p(huggingface) Who is married to Gerard Piqu?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:partner res:Gerard_Piqué . }",julipc-p(huggingface) Which sports are played in schools affiliated with the Harvest Christian Center?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:religiousAffiliation . ?x onto:sport ?uri . ?x rdf:type onto:School}",julipc-p(huggingface) Who debuted their career in a team coached by Chip Kelly?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:coach res:Chip_Kelly . ?uri onto:debutTeam ?x . }",julipc-p(huggingface) What are the nicknames given to the characters of The Wolves of the Mercy Falls?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:List_of_The_Wolves_of_Mercy_Falls_characters prop:nickname ?uri }",julipc-p(huggingface) "Name the river with source country in Zambia and source region as North-Western Province, Zambia?","PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:sourceCountry . ?uri onto:sourceRegion . ?uri rdf:type onto:River}",julipc-p(huggingface) Members of how many political parties have died in Delhi?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:placeOfDeath . ?x prop:party ?uri . }",julipc-p(huggingface) what is the headquarters of Juan Dalmau Ramerez?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Juan_Dalmau_Ramírez prop:headquarters ?uri }",julipc-p(huggingface) The president who was in office when Lee Hyun Jae was the PM followed which religion?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:primeminister . ?x onto:religion ?uri . ?x rdf:type onto:President}",julipc-p(huggingface) Who is the maker of the engine of Ford F-Series first generation ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:engine ?x . ?x onto:manufacturer ?uri . }",julipc-p(huggingface) What is the religious affiliation of Neungin High School?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Neungin_High_School prop:religiousAffiliation ?uri }",julipc-p(huggingface) Name the office holder with successor as Adrian A Basora and child as Lori Black ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:child . ?uri prop:successor . ?uri rdf:type onto:OfficeHolder}",julipc-p(huggingface) Who is the owner of the South end ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:The_South_End prop:owners ?uri }",julipc-p(huggingface) What is the colour of Xocolatlite ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Xocolatlite onto:colour ?uri }",julipc-p(huggingface) For how many other teams have the members of Atlant Moscow Oblast played?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:playedFor . ?x onto:formerTeam ?uri . }",julipc-p(huggingface) What is the state of origin of the president whose alma mater is Hellenic Naval Academy ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:almaMater . ?x onto:stateOfOrigin ?uri . ?x rdf:type onto:President}",julipc-p(huggingface) In which places do companies founded in Newcastle operate?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:foundationPlace . ?x onto:regionServed ?uri . ?x rdf:type onto:Company}",julipc-p(huggingface) What kind of games are made by Interplay Entertainment?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:publisher . ?x prop:genre ?uri . ?x rdf:type onto:VideoGame}",julipc-p(huggingface) Which producer of Purvis Eureka engine is also the owner of Ford Theatre ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Purvis_Eureka prop:engine ?uri. res:Ford_Theatre prop:company ?uri}",julipc-p(huggingface) What developed EMMS?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:EMMS onto:developer ?uri }",julipc-p(huggingface) "Which music band made Take Me There, and to which Tedd Riley was associated?","PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:associatedBand ?uri. onto:musicalBand ?uri}",julipc-p(huggingface) In which time zone is Pong Pha?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Pong_Pha onto:timeZone ?uri }",julipc-p(huggingface) How many fictional characters are there in a series in which Craig Robinson acted?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:starring . ?uri onto:series ?x . ?uri rdf:type onto:FictionalCharacter}",julipc-p(huggingface) Which political party of Chandra Shekhar is also the political party of Datl Satyanarayana Raju ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Chandra_Shekhar onto:otherParty ?uri. res:Datla_Satyanarayana_Raju onto:party ?uri}",julipc-p(huggingface) Who owns the airport in Paphos?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:city . ?x prop:owner ?uri . ?x rdf:type onto:Airport}",julipc-p(huggingface) What is the baseball team whose club manager is Chip Hale?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:manager . ?uri rdf:type onto:BaseballTeam}",julipc-p(huggingface) Which bacteria's taxonomic class is Bacilli?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:class . ?uri rdf:type onto:Bacteria}",julipc-p(huggingface) What honours did Reigh Count receive?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Reigh_Count onto:honours ?uri }",julipc-p(huggingface) What are some products of the the company whose subsidiary is Sony Corp shareholders and subsidies?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:subsidiary res:Sony_Corporation_shareholders_and_subsidiaries . ?uri onto:manufacturer ?x . }",julipc-p(huggingface) Who built the stadiums where 2014 FIFA under 17 woman's world cup took place?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:tenant . ?x onto:builder ?uri . }",julipc-p(huggingface) Which area operataed by the South Side Elevated Railroad is also the palce of death of the Sakari Suzuki ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:South_Side_Elevated_Railroad onto:operatedBy ?uri. res:Sakari_Suzuki prop:deathPlace ?uri}",julipc-p(huggingface) What is the television show whose related with Doctor Who Confidential?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:related . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) In which city wasThe Triple Door (The Courage album) performed live?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:recorded ?uri }",julipc-p(huggingface) Which nearest city of Jurgens Site is the death plce of Jimmie Heuga ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Jurgens_Site prop:nearestCity ?uri. res:Jimmie_Heuga prop:deathPlace ?uri}",julipc-p(huggingface) List the battles fought by Ali Habib Mahmud ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Ali_Habib_Mahmud prop:battles ?uri }",julipc-p(huggingface) How many companies were started in the states?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:foundationPlace . ?uri rdf:type onto:Company}",julipc-p(huggingface) How many movies are distributed by Cinema International Corporation?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:distributor . ?uri rdf:type onto:Film}",julipc-p(huggingface) "Name the local authority of Trinity School, Brentwood ?","PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:localAuthority ?uri }",julipc-p(huggingface) Name the president of Wyche Fowler ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Wyche_Fowler onto:president ?uri }",julipc-p(huggingface) In which fields have people born in Lausanne worked?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:placeOfBirth res:Lausanne . ?x prop:fields ?uri . }",julipc-p(huggingface) Which Texas based company was founded by Jim Harris ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:locationCity . ?uri prop:founder . ?uri rdf:type onto:Company}",julipc-p(huggingface) "Name a show hosted by Brian Dunkleman and judged by Harry Connick, Jr.?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:presenter . ?uri prop:judges . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) To which educational institute does Cornell University Press belong to?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Cornell_University_Press onto:parentCompany ?uri }",julipc-p(huggingface) "In which country's cuisine, ham is an important part?","PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:mainIngredient res:Ham . ?x prop:country ?uri . }",julipc-p(huggingface) List the softwares which runs on Microsoft Windows and has license as Software as a service?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:operatingSystem . ?uri onto:license . ?uri rdf:type onto:Software}",julipc-p(huggingface) Which ppolitical party of Yashpal Kapur is also the owner of National Herald ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:owner ?uri. onto:party ?uri}",julipc-p(huggingface) Who all have been presenters on shows by the NBC?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:channel . ?x prop:presenter ?uri . ?x rdf:type onto:TelevisionShow}",julipc-p(huggingface) Give me the list of cars which are the predecessor of Full Sized Cars?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:class . ?x onto:predecessor ?uri . ?x rdf:type onto:Automobile}",julipc-p(huggingface) "List the people with final resting place as Plymouth, Vermont and has Samuel W. McCall as predecessor?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:restingPlace . ?uri prop:predecessor . ?uri rdf:type onto:Person}",julipc-p(huggingface) What are some software which are written in languages that are run on Unix like OS?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:operatingSystem . ?uri prop:programmingLanguage ?x . ?uri rdf:type onto:Software}",julipc-p(huggingface) "List all the movies whose directors were born in Kenosha, Wisconsin?","PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:birthPlace . ?uri prop:director ?x . }",julipc-p(huggingface) What stadium's operator is Stan Kroenke,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:operator . ?uri rdf:type onto:Stadium}",julipc-p(huggingface) Who gave guest appearances on the show which is the next episode after the Bombshell one?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:previousWork . ?x prop:guests ?uri . ?x rdf:type onto:TelevisionEpisode}",julipc-p(huggingface) What is manufactured by a company headed by Kazuo Hirai?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:keyPeople res:Kazuo_Hirai . ?uri onto:manufacturer ?x . }",julipc-p(huggingface) Under which presidents have politicians from the Continental army served?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:branch res:Continental_Army . ?x prop:president ?uri . }",julipc-p(huggingface) Philadelphia City Council is the governing body of which city?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:governingBody res:Philadelphia_City_Council }",julipc-p(huggingface) What are the binomial authority of Menetries's warbler?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:binomialAuthority ?uri }",julipc-p(huggingface) Name the movie which has music composed by Elliot Goldenthal and screenplay by Akiva Goldsman ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:music . ?uri prop:screenplay . ?uri rdf:type onto:Film}",julipc-p(huggingface) Name the fictional character whose relative are Duck family and Clan McDuck?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:relative . ?uri prop:relatives . ?uri rdf:type onto:FictionalCharacter}",julipc-p(huggingface) Which university with athletics department in NCAA Division I Football Bowl Subdivision has nickname Tulane Green Wave ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:mouthMountain . ?uri onto:rightTributary . ?uri rdf:type onto:University}",julipc-p(huggingface) Which state does Jerome B. Chaffee belong ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Jerome_B._Chaffee prop:state ?uri }",julipc-p(huggingface) "In which of the parties that have governed over Rishikesh, does Govinda belong too?","PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:party ?uri. onto:leaderName ?uri}",julipc-p(huggingface) What awards are won by the screenwriter of Lucky You?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:screenplay ?x . ?x onto:award ?uri . }",julipc-p(huggingface) Name the Pole driver of 1994 Spanish Grand Prix ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:1994_Spanish_Grand_Prix prop:poleDriver ?uri }",julipc-p(huggingface) Where did Georges Wolinski and Judson Huss die/,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Georges_Wolinski prop:placeOfDeath ?uri. res:Judson_Huss prop:deathPlace ?uri}",julipc-p(huggingface) What is the parent company of the airline whose hub is in Detroit?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:hubs . ?x onto:parentCompany ?uri . ?x rdf:type onto:Airline}",julipc-p(huggingface) What is the appliance which uses the central processing unit manufactured by Marvell Technology Group?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:cpu . ?uri rdf:type onto:InformationAppliance}",julipc-p(huggingface) "Give me all magazines whose founder died in Berkeley, California?","PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:deathPlace . ?uri onto:founder ?x . ?uri rdf:type onto:Magazine}",julipc-p(huggingface) Which technological products were manufactured by Foxconn?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:manufacturer . ?uri rdf:type onto:InformationAppliance}",julipc-p(huggingface) Whose predecessor had Jenny Macklin as a deputy ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:deputy res:Jenny_Macklin . ?uri prop:predecessor ?x . }",julipc-p(huggingface) How many cars are similar to the ones assembled in the Jefferson North Assembly?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:assembly . ?x prop:related ?uri . }",julipc-p(huggingface) Count the number of region of AN/FSQ-7 Combat Direction Central?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { onto:region ?uri . }",julipc-p(huggingface) What are the common houses of US Congress and the Kansas Legislature?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:United_States_Congress prop:houses ?uri. res:Kansas_Legislature onto:house ?uri}",julipc-p(huggingface) From how many different places have people gone to the Harward Medical School?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:institution . ?x onto:birthPlace ?uri . }",julipc-p(huggingface) Name the television show where Mona Marshall has given voice and is distributed by Comedy Central?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:voices . ?uri prop:distributor . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) What are Jerry Bock's musicals based upon?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:music . ?x onto:basedOn ?uri . ?x rdf:type onto:Musical}",julipc-p(huggingface) Give me list of people who were the first to climb a peak in the Yosemite park?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:locatedInArea res:Yosemite_National_Park . ?x onto:firstAscentPerson ?uri . }",julipc-p(huggingface) What is Naval Support Activity Naples a part of?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Naval_Support_Activity_Naples onto:type ?uri }",julipc-p(huggingface) Who has allegiance is Colony of Virginia and buried in Montpelier?,"PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:allegiance . ?uri prop:restingplace . }",julipc-p(huggingface) What is the successor of PlayStation 4,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:successor res:PlayStation_4 . }",julipc-p(huggingface) What is the sovereign state of the Dafydd Benfras where Jasmine Lowson is also citizen of ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Dafydd_Benfras onto:country ?uri. res:Jasmine_Lowson onto:citizenship ?uri}",julipc-p(huggingface) Who did their highschool from a school whose mascot was a fighting tiger?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:mascot res:Fighting_Tiger . ?uri onto:highschool ?x . }",julipc-p(huggingface) Which destination of Emerald Air is also the city served by houston Fort Bend Airport ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:destination ?uri. prop:cityServed ?uri}",julipc-p(huggingface) name the region served by Jerusalem Institue of Justice which was also the conflict region in GazaIsrael ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Jerusalem_Institute_of_Justice onto:service ?uri. res:Gaza–Israel_conflict prop:result ?uri}",julipc-p(huggingface) Name the company whose key person is Raymond Conner and produces Boeing CH-47 Chinook?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:keyPeople . ?uri prop:products . ?uri rdf:type onto:Company}",julipc-p(huggingface) What is the total number of professions in which someone who has suicided worked?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:deathCause . ?x onto:occupation ?uri . }",julipc-p(huggingface) How many golf players are there in Arizona State Sun Devils ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:college . ?uri rdf:type onto:GolfPlayer}",julipc-p(huggingface) Count the number of characters in Batman Live?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { prop:characters ?uri . ?uri rdf:type onto:ComicsCharacter}",julipc-p(huggingface) List the services provided by the company which provides Microsoft azure as one of the service ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:services . ?x prop:services ?uri . ?x rdf:type onto:Company}",julipc-p(huggingface) What are some team members of the team based in Camp Nou?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:homeStadium res:Camp_Nou . ?x prop:name ?uri . }",julipc-p(huggingface) Which universities are also known as the Tulane Green wave?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:nickname . ?uri rdf:type onto:University}",julipc-p(huggingface) What is the branch of the politicians whose governor is Bill Clements?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:governor . ?x prop:branch ?uri . ?x rdf:type onto:Politician}",julipc-p(huggingface) Who composed the episode after which came Butter's Very own Episode?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:subsequentWork . ?x onto:musicComposer ?uri . ?x rdf:type onto:TelevisionEpisode}",julipc-p(huggingface) What is the location country of Teperberg 1870 ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Teperberg_1870 prop:locationCountry ?uri }",julipc-p(huggingface) List the software developed by Shawn Fanning ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:developer . ?uri rdf:type onto:Software}",julipc-p(huggingface) What is the stylistic origin of the music genres where the Bass guitar is important?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:instruments . ?x onto:stylisticOrigin ?uri . ?x rdf:type onto:MusicGenre}",julipc-p(huggingface) What are the other notable work of the executive producer of The Runaway Bride episode of Doctor Who?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:executiveProducer ?x . ?x prop:notableworks ?uri . }",julipc-p(huggingface) Name the office holder whose final resting place is North Bend and was part of Siege of fort recovery conflict ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:battle . ?uri prop:restingplace . ?uri rdf:type onto:OfficeHolder}",julipc-p(huggingface) What type of engines are utilised by Purvis Eureka?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Purvis_Eureka prop:engine ?uri }",julipc-p(huggingface) Who edited Easy street ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:editing ?uri }",julipc-p(huggingface) Who were involved in the wars where Jonathan Haskell battled?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Jonathan_Haskell prop:battles ?x . ?x prop:combatant ?uri . }",julipc-p(huggingface) In which city was the film star of Singhasan Battisi born ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:starring ?x . ?x prop:birthPlace ?uri . }",julipc-p(huggingface) What are the reason served by Toll Global Express which is also the country of LPGA ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Toll_Global_Express onto:regionServed ?uri. res:LPGA onto:country ?uri}",julipc-p(huggingface) List the territory of Tonkin Campaign ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Tonkin_Campaign onto:territory ?uri }",julipc-p(huggingface) For which teams did Ryan Powell play for?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:team ?uri }",julipc-p(huggingface) What are the awards won by the person who wrote the screen play for Lost in Rio ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:OSS_117:_Lost_in_Rio prop:screenplay ?x . ?x prop:awards ?uri . }",julipc-p(huggingface) Total number of places where people drafted in the detroit pistons have died?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:draftTeam . ?x prop:placeOfDeath ?uri . ?uri rdf:type onto:Location}",julipc-p(huggingface) Name the club of Julie Hastings ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Julie_Hastings onto:club ?uri }",julipc-p(huggingface) From where does the river Upper Neretva start flowing?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Upper_Neretva onto:riverMouth ?uri }",julipc-p(huggingface) "Name the university located in Indiana and has affiliations with Kaplan, Inc.?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:campus . ?uri prop:affiliations . ?uri rdf:type onto:University}",julipc-p(huggingface) List the newspapers whose offices are situated in 1211 Avenue of the Americas?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:headquarter . ?uri rdf:type onto:Newspaper}",julipc-p(huggingface) What river originates in Kingston Ontario?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:sourceLocation . ?uri rdf:type onto:River}",julipc-p(huggingface) "By what style was Providence Chapel, Charlwood made?","PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:style ?uri }",julipc-p(huggingface) "For how many PMs did the politician work, whose successor was Kingsley Wood?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { onto:successor ?x . ?x prop:primeminister ?uri . ?x rdf:type onto:OfficeHolder}",julipc-p(huggingface) list some companies founded by Jim Harris.,"PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:foundedBy }",julipc-p(huggingface) Give me the total number of employer of the engineers whose one of the employer is McDonnell Aircraft ?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:employer . ?x onto:employer ?uri }",julipc-p(huggingface) How many developers have games where I can hear Lightning McQueen?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { onto:voice ?x . ?x onto:developer ?uri . }",julipc-p(huggingface) "Which universit's affiliation is with Kalpan, Inc. and has campus at Iowa ?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:affiliations . ?uri onto:campus . ?uri rdf:type onto:University}",julipc-p(huggingface) How many record labels publish works of Jazz fusion?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:genre . ?x onto:recordLabel ?uri . }",julipc-p(huggingface) What are the regions in which the distributor of Secrets and Lies serves ? ,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:distributor ?x . ?x onto:regionServed ?uri . }",julipc-p(huggingface) List all the writers of the comics which has Robert Bernstein as one of the writer ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:writers . ?x prop:writers ?uri . ?x rdf:type onto:Comic}",julipc-p(huggingface) What are the settlements whose neighboring municipalities is Lancy?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:neighboringMunicipalities . ?uri rdf:type onto:Settlement}",julipc-p(huggingface) Count the total number of hometown of the gymnasts whose one of the hometown in Russia ?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:hometown . ?x prop:hometown ?uri }",julipc-p(huggingface) In which states does the river flow whose left tributary is Toms Creek?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:leftTributary ?x . ?x onto:state ?uri . }",julipc-p(huggingface) Name the river whose source mountain is Baikal Mountains and mouth location is Arctic Ocean?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:sourceMountain . ?uri prop:mouthLocation . ?uri rdf:type onto:River}",julipc-p(huggingface) Count the PhD students whose thesis are supervised by National Medal of Science winners?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:prizes . ?x prop:doctoralStudents ?uri . }",julipc-p(huggingface) Which broadcast area of CFRX is also the palce of birth of Anthony Raymond ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:CFRX onto:broadcastArea ?uri. res:Anthony_Raymond_Ceresko prop:placeOfBirth ?uri}",julipc-p(huggingface) Count the total number of cast member of the television shows whose actress is Joey McIntyre?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:starring . ?x prop:starring ?uri }",julipc-p(huggingface) List all the awards won by the artist who has won SIGGRAPH ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:award res:SIGGRAPH . ?x onto:award ?uri . }",julipc-p(huggingface) Where was david Scherman trained ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:David_Scherman prop:training ?uri }",julipc-p(huggingface) Count the battles fought by Raoul Magrin-Vernerey?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { prop:battles ?uri . ?uri rdf:type onto:MilitaryConflict}",julipc-p(huggingface) Which nationalist group was responsible for foundation of Young Lords?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Young_Lords prop:international ?uri }",julipc-p(huggingface) What award was won by the father of Angelina Jolie?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:children res:Angelina_Jolie . ?x onto:award ?uri . }",julipc-p(huggingface) What are the software whose programming language are Multilingual?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:language . ?uri prop:programmingLanguage ?x . ?uri rdf:type onto:Software}",julipc-p(huggingface) Which birthplace of Liliya Lobanova is also the location of the Snake Island ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:birthplace ?uri. prop:locationCountry ?uri}",julipc-p(huggingface) Count all the stateless people,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:citizenship . }",julipc-p(huggingface) Josef Bhler belongs to which political party?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Josef_Bühler onto:occupation ?uri }",julipc-p(huggingface) Where did the war take place where one of the commander was Zuo Zongtang?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:commander . ?x onto:territory ?uri . ?x rdf:type onto:MilitaryConflict}",julipc-p(huggingface) In which place is the company which is known for Barbara bestor located ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:knownFor ?x . ?x onto:location ?uri . ?x rdf:type onto:Company}",julipc-p(huggingface) What novels are belong to the genre of Utopian and dystopian fiction?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:literaryGenre res:Utopian_and_dystopian_fiction }",julipc-p(huggingface) What are the movies written by Nick Castle?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:writer . ?uri rdf:type onto:Film}",julipc-p(huggingface) On which river are there things belonging to zambezi river authority?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:owner res:Zambezi_River_Authority . ?x onto:river ?uri . }",julipc-p(huggingface) Who has fought in wars under commander Arthur St Clair?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:commander res:Arthur_St._Clair . ?x prop:combatant ?uri . }",julipc-p(huggingface) Which Paramount TV show was produced by Glen and Les Charles ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:executiveProducer . ?uri prop:company . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) Name some basketball players who have played for chicago bulls?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:team . ?uri rdf:type onto:BasketballPlayer}",julipc-p(huggingface) Which owner of the national Herald india is the leader of Kumta ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:owner ?uri. prop:governmentType ?uri}",julipc-p(huggingface) What is the largest city of Pulau Ubin ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Pulau_Ubin onto:largestCity ?uri }",julipc-p(huggingface) What is the origin of the musical artist of A Todo Romantic Style ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:A_Todo_Romantic_Style prop:artist ?x . ?x prop:origin ?uri . }",julipc-p(huggingface) Horses sired by Karinga Bay have participated in which races?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:sire . ?x prop:race ?uri . ?x rdf:type onto:Horse}",julipc-p(huggingface) What is the alma mater of the scientists known for String theory?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:knownFor . ?x prop:almaMater ?uri . ?x rdf:type onto:Scientist}",julipc-p(huggingface) How many apes are there?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:family . }",julipc-p(huggingface) Where do beauty queens with brown hair reside?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:hairColor res:Brown_hair . ?x onto:residence ?uri . }",julipc-p(huggingface) List the television shows one of whose distributor's divisions is Warner Bros. Animation.,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:divisions . ?uri prop:distributor ?x . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) Name the television show directed by Simon Fuller and judged by Jennifier Lopez ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:creator . ?uri prop:judges . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) Name the appointer of William Clark ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:William_Clark prop:appointer ?uri }",julipc-p(huggingface) in which movies have momoki kochi acted,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:starring res:Momoko_Kōchi }",julipc-p(huggingface) What is the base currency of the Benelux and is also used as money in Kerguelen Islands?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Benelux prop:currency ?uri. res:Kerguelen_Islands onto:currency ?uri}",julipc-p(huggingface) List the mammals whose taxonomy is Diprotodontia and phylum is Chordate?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:order . ?uri onto:phylum . ?uri rdf:type onto:Mammal}",julipc-p(huggingface) Count the key people of the Clinton Foundation?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { prop:keyPeople ?uri . }",julipc-p(huggingface) Name the company founded in New Mexico and provides Outlook.com as services ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:foundation . ?uri prop:services . ?uri rdf:type onto:Company}",julipc-p(huggingface) Which tv show was preceded by The spirit of Christmas and voice to the character was given by Mona Marshall ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:previousWork . ?uri prop:voices . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) Music of how many things has been given by Akira Ifukube?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:music . }",julipc-p(huggingface) What was the career of some people who have committed suicide?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:deathCause res:Suicide . ?x onto:occupation ?uri . }",julipc-p(huggingface) In how many places are the tombs of people who died in Connecticut Colony?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:placeOfDeath . ?x onto:restingPlace ?uri . ?uri rdf:type onto:Place}",julipc-p(huggingface) List the producer of the television shows distributed by FremantleMedia.,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:distributor . ?x onto:producer ?uri . ?x rdf:type onto:TelevisionShow}",julipc-p(huggingface) Name the awards won by Elie Wiesel ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Elie_Wiesel prop:awards ?uri }",julipc-p(huggingface) Who are the producers of Marie Sisters?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Marie_Sisters prop:producer ?uri }",julipc-p(huggingface) Who won the silver medal when the bronze was won by Yang Yilin?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:bronzeMedalist res:Yang_Yilin . ?x onto:silverMedalist ?uri . }",julipc-p(huggingface) "List the successor of successor of Hayden, Stone & Co.","PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:successor ?x . ?x onto:successor ?uri . }",julipc-p(huggingface) Count the number of battles fought by the military person involved in Morocco ?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:battles . ?x prop:battles ?uri }",julipc-p(huggingface) What is the origin of Xynisteri?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Xynisteri onto:origin ?uri }",julipc-p(huggingface) How many important works have been done by Russel Davies?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { onto:notableWork ?uri . }",julipc-p(huggingface) Who are currently playing for Barcelona FC?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:currentclub res:FC_Barcelona }",julipc-p(huggingface) Who is the owner of Saumarez ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:owner ?uri }",julipc-p(huggingface) What is telecasted on the network where Deborah Turness holds important position?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:keyPerson res:Deborah_Turness . ?uri onto:network ?x . }",julipc-p(huggingface) Who is the fictional character whose relative is Vestigial Peter?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:relative . ?uri rdf:type onto:FictionalCharacter}",julipc-p(huggingface) "How many home stadium are there, of the soccer club seasons whose chairman is Merritt Paulson?","PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:chairman . ?x onto:homeStadium ?uri . }",julipc-p(huggingface) Name the alma mater of Ernest de Saisset ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Ernest_de_Saisset onto:almaMater ?uri }",julipc-p(huggingface) What magazine companies are of form Limited liability company?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:company . ?uri rdf:type onto:Magazine}",julipc-p(huggingface) List the driver of SA MArino Grand Prix is also the Pole driver of Canadian Grand Proix ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:1999_San_Marino_Grand_Prix prop:firstDriver ?uri. res:1997_Canadian_Grand_Prix prop:poleDriver ?uri}",julipc-p(huggingface) Where does John A Danaher III work?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:John_A._Danaher_III prop:office ?uri }",julipc-p(huggingface) Name few movies directed by Tim Burton ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:director . ?uri rdf:type onto:Film}",julipc-p(huggingface) "Where was Live in Detroit, MI recorded ?","PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:recordedIn ?uri }",julipc-p(huggingface) Name all the bands which have members of QDT in them.,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:QDT onto:bandMember ?x . ?x onto:associatedBand ?uri . }",julipc-p(huggingface) Which footballers did their high school in west Sacramento california? ,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:highSchool . ?uri rdf:type onto:AmericanFootballPlayer}",julipc-p(huggingface) List the names of the soccer club seasons whose division is 2012 Campeonato Brasileiro Srie A.,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:league . ?x prop:name ?uri . ?x rdf:type onto:SoccerClubSeason}",julipc-p(huggingface) Which successor of Philippine Ports Authority is the state of origin of Ruben J. Villote ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Philippine_Ports_Authority onto:successor ?uri. res:Ruben_J._Villote onto:stateOfOrigin ?uri}",julipc-p(huggingface) What awards have been won by the executive producer of Timmy Time ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Timmy_Time onto:executiveProducer ?x . ?x onto:award ?uri . }",julipc-p(huggingface) Which american football team is owned by Mark davis and is located in O.co Colliseum ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:owner . ?uri onto:locationCity . ?uri rdf:type onto:AmericanFootballTeam}",julipc-p(huggingface) "The successor of Ulrich II, Count of East Frisia was born in what place?","PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:successor ?x . ?x prop:placeOfBirth ?uri . }",julipc-p(huggingface) Who is the prime minister of Michael Jeffery who is also the minister of Williuam Deane ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Michael_Jeffery prop:primeminister ?uri. res:William_Deane onto:primeMinister ?uri}",julipc-p(huggingface) Who is the owner of the FC which owns the Cobham Training Centre?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:owner ?x . ?x prop:owner ?uri . ?x rdf:type onto:SoccerClub}",julipc-p(huggingface) Who is considered to be the deciding person when it comes to crustaceans from the Balanidae family?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:family . ?x onto:binomialAuthority ?uri . ?x rdf:type onto:Crustacean}",julipc-p(huggingface) What have some US citizens died of?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:citizenship res:United_States . ?x onto:deathCause ?uri . }",julipc-p(huggingface) What are some apes?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:family res:Ape . }",julipc-p(huggingface) Who is buried at the place governed by National Park Service?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:governingBody res:National_Park_Service . ?uri prop:restingplace ?x . }",julipc-p(huggingface) Name the municipality of Roberto Clemente Bridge ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Roberto_Clemente_Bridge onto:municipality ?uri }",julipc-p(huggingface) Which past members of the The Conglomerate (American group) also sang Take Me There (Blackstreet & Ma song)?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:pastMembers ?uri. onto:musicalBand ?uri}",julipc-p(huggingface) List all the notable works of Russell T Davies?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Russell_T_Davies onto:notableWork ?uri }",julipc-p(huggingface) "Which military unit garrison is Arlington County, Virginia and The Pentagon?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:garrison . ?uri prop:garrison . ?uri rdf:type onto:MilitaryUnit}",julipc-p(huggingface) Name all the products produced by the producer of United States dollar ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:product res:United_States_dollar . ?x onto:product ?uri . }",julipc-p(huggingface) What is the launch site of Aquarius (rocket) ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:launchSite ?uri }",julipc-p(huggingface) Count the total number of mammals whose phylum is Chordate and order (taxonomy) is Diprotodontia?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:phylum . ?uri onto:order }",julipc-p(huggingface) Who is the music composer of Kenny Dies ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Kenny_Dies onto:musicComposer ?uri }",julipc-p(huggingface) How many cities are around the sea into which the aegean sea flows?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { onto:outflow ?x . ?x prop:cities ?uri . ?x rdf:type onto:Sea}",julipc-p(huggingface) Where did the office holder who is predecessor to Marco Aurelio Robles died ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:predecessor . ?x prop:placeOfDeath ?uri . ?x rdf:type onto:OfficeHolder}",julipc-p(huggingface) What is the programme format of WWTR ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:WWTR onto:programmeFormat ?uri }",julipc-p(huggingface) list the founders of Bream Bay ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Bream_Bay prop:founder ?uri }",julipc-p(huggingface) What is the total number of participant in conflict of SFOR?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:battles . ?x onto:battle ?uri . }",julipc-p(huggingface) Name the people whose academic advisor has also mentored the thesis of Alexius Meinong?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:doctoralStudents . ?uri onto:academicAdvisor ?x . ?uri rdf:type onto:Person}",julipc-p(huggingface) Where is Denver Broncos located ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Denver_Broncos onto:locationCity ?uri }",julipc-p(huggingface) Which serving railway line of the Daund Junction railway station is the home port of INS Viraat ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:homeport ?uri. onto:servingRailwayLine ?uri}",julipc-p(huggingface) "Which river flows through Hudson Highlands State park and also through Troy, New york ?","PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:river ?uri. onto:river ?uri}",julipc-p(huggingface) "What is the university to which Erica Frank went, and where Ivan Toplak was a club manager?","PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Erica_Frank onto:institution ?uri. res:Ivan_Toplak onto:managerClub ?uri}",julipc-p(huggingface) How many movies have been directed by Orson Welles ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:director . ?uri rdf:type onto:Film}",julipc-p(huggingface) Who is the performer of the album whose subsequent work is Willie Nelson and Family ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:subsequentWork res:Willie_Nelson_and_Family . ?x onto:artist ?uri . }",julipc-p(huggingface) "Who is the producer of album, which has the song Eclipse ?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:album ?x . ?x prop:producer ?uri . ?x rdf:type onto:Album}",julipc-p(huggingface) "Which parties have their members live in the PM House, Colombo?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:residence . ?uri onto:leader ?x . ?uri rdf:type onto:PoliticalParty}",julipc-p(huggingface) Which awards have been given to scientists that graduated from NKU athens?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:almaMater . ?x onto:award ?uri . ?x rdf:type onto:Scientist}",julipc-p(huggingface) Ricky Gervais is the executive producer of the series having how many fictional characters?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:executiveProducer . ?uri onto:series ?x . ?uri rdf:type onto:FictionalCharacter}",julipc-p(huggingface) Cable stayed bridges have been used to cross over how many things?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:design . ?x prop:crosses ?uri . }",julipc-p(huggingface) What are the television shows whose starting music is composed by Ron Grainer?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:themeMusicComposer . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) Who influenced the author of The Shooting of Dan McGrew ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:writer ?x . ?x prop:influences ?uri . }",julipc-p(huggingface) Raymond Johansen is the mayor of what city?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:leaderName res:Raymond_Johansen . }",julipc-p(huggingface) "List some teams for which someone who has played as a defender, now plays?","PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:position res:Defenceman . ?x onto:team ?uri . }",julipc-p(huggingface) Which rivers start from the Provinces of Zambia?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:settlementType . ?uri onto:sourceRegion ?x . ?uri rdf:type onto:River}",julipc-p(huggingface) Who are the scientists known for the Manhattan Project?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:knownFor . ?uri rdf:type onto:Scientist}",julipc-p(huggingface) What are some dishes from the family of dishes which primarily use flour?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:mainIngredient . ?uri onto:type ?x . ?uri rdf:type onto:Food}",julipc-p(huggingface) "Which religion do the people follow, whose constituency is Jadavpur?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:constituency . ?x prop:religion ?uri . ?x rdf:type onto:Person}",julipc-p(huggingface) "In which region is the rival school of Somerset, Massachusetts located?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:rival . ?x onto:region ?uri . ?x rdf:type onto:School}",julipc-p(huggingface) Which key person of Clinton Foundation is also the president of Jim Sasser ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Clinton_Foundation prop:keyPeople ?uri. res:Jim_Sasser onto:president ?uri}",julipc-p(huggingface) "Where did the athlete start his career, who did his highschool in Red Lion Area School District?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:highschool . ?x prop:debutteam ?uri . ?x rdf:type onto:Athlete}",julipc-p(huggingface) Name a person who works in Open Society Foundation and has wife named Susan Weber Soros ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:employer . ?uri prop:spouse . ?uri rdf:type onto:Person}",julipc-p(huggingface) How many things are crossed over by bridges which can carry cars?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:carries . ?x prop:crosses ?uri . }",julipc-p(huggingface) Which fictional character sculpted by Josh Friedmann was portrayed in Terminator 3 ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:creator . ?uri onto:portrayer . ?uri rdf:type onto:FictionalCharacter}",julipc-p(huggingface) Which team won the American Football League?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:American_Football_League prop:champion ?uri }",julipc-p(huggingface) Who is the founder of the trade union which affiliates Amalgamated Association of Iron and Steel Workers?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:affiliation ?x . ?x prop:founded ?uri . ?x rdf:type onto:TradeUnion}",julipc-p(huggingface) Which leader of United States House of Representatives was the appinter of ohn Drayton ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:leader ?uri. prop:appointer ?uri}",julipc-p(huggingface) Which researchers received fellowship from Royal Society?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:award . ?uri rdf:type onto:Scientist}",julipc-p(huggingface) Which president of United States had vice president as John Adams?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:vicePresident . ?uri rdf:type onto:OfficeHolder}",julipc-p(huggingface) Where was James H. Fields buried ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:James_H._Fields prop:placeofburial ?uri }",julipc-p(huggingface) What is the commander of Battle of Brownstown ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Battle_of_Brownstown onto:commander ?uri }",julipc-p(huggingface) What is Jon Speelman famous for?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Jon_Speelman onto:field ?uri }",julipc-p(huggingface) Who is the fictional character whose family member is Padme Amidala?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:family . ?uri rdf:type onto:FictionalCharacter}",julipc-p(huggingface) How many different songwriters have had their songs recorded in London?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:recordedIn . ?x onto:writer ?uri . }",julipc-p(huggingface) Which are the automobile platform whose one of the automobile platform is Dodge ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:automobilePlatform . ?x onto:automobilePlatform ?uri . ?x rdf:type onto:Automobile}",julipc-p(huggingface) What is the total number of other combatant of the military conflicts whose combatant is Choctaw?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:combatant . ?x prop:combatant ?uri }",julipc-p(huggingface) List some pupils of National Science Medal winning scientists?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:prizes . ?x prop:doctoralStudents ?uri . ?x rdf:type onto:Scientist}",julipc-p(huggingface) Relatives of Moses used to follow which religions?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Moses onto:relative ?x . ?x onto:veneratedIn ?uri . }",julipc-p(huggingface) "Where was Ne daj se, Nina first aired ?","PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:firstAired ?uri }",julipc-p(huggingface) Where did the 2015 MLS All-Star Game take place?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:city ?uri }",julipc-p(huggingface) What is the name of the homeground of football team Panionios G.S.S.?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:2013–14_Panionios_G.S.S._season onto:ground ?uri }",julipc-p(huggingface) List presidents of the school whose one of the president is Charles. Prince of Wales ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:president . ?x prop:president ?uri . ?x rdf:type onto:School}",julipc-p(huggingface) Brian Moriarty designed video games written by whom?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:designer . ?x prop:writer ?uri . ?x rdf:type onto:VideoGame}",julipc-p(huggingface) What are some movies whose distributors are led by Kevin Tsujihara?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:keyPerson . ?uri prop:distributor ?x . ?uri rdf:type onto:Film}",julipc-p(huggingface) What did Steven T Mason's father die from?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:child res:Stevens_T._Mason . ?x onto:deathCause ?uri . }",julipc-p(huggingface) What automobile engine's successor is BMW M40,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:successor . ?uri rdf:type onto:AutomobileEngine}",julipc-p(huggingface) Name the company which produces both Boeing F/A-18 E/F Hornet nad CH-46 Chinook ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:product . ?uri prop:products . ?uri rdf:type onto:Company}",julipc-p(huggingface) What is the district of Methodist Central Hall Westminster ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Methodist_Central_Hall_Westminster onto:district ?uri }",julipc-p(huggingface) Who develops the computation platform of Microsoft Expression Encoder ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Microsoft_Expression_Encoder onto:computingPlatform ?x . ?x onto:developer ?uri . }",julipc-p(huggingface) "What is the official language of Ladonia, which is the target area of Probus Journal?","PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:officialLanguage ?uri. onto:academicDiscipline ?uri}",julipc-p(huggingface) Where did the conflict take place where Louis Briere de I'Isle was a commander?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:commander . ?x onto:territory ?uri . ?x rdf:type onto:MilitaryConflict}",julipc-p(huggingface) "In which team was the person drafted who has studied at the Worcester college, Oxford?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:almaMater . ?x prop:draftTeam ?uri . ?x rdf:type onto:Person}",julipc-p(huggingface) How many people hold important positions alongwith Donna Shalala?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:keyPerson . ?x prop:keyPeople ?uri . }",julipc-p(huggingface) What other things are provided by the producer of Office 365?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:service res:Office_365 . ?x prop:services ?uri . }",julipc-p(huggingface) Who owns the company that made the Edsel Villager?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:products res:Edsel_Villager . ?x prop:parent ?uri . }",julipc-p(huggingface) Who fought in the battle at Tupelo Mississippi?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:place . ?x prop:combatant ?uri . ?x rdf:type onto:MilitaryConflict}",julipc-p(huggingface) List the movies whose cast member were born in Scotland.,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:birthPlace . ?uri onto:starring ?x . ?uri rdf:type onto:Film}",julipc-p(huggingface) List the other nicknames of city which has one of the nickname as City of Angels ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:nickname res:City_of_Angels . ?x prop:nickname ?uri . }",julipc-p(huggingface) Count the writers whose work has been played in NY?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:place . ?x prop:writer ?uri . }",julipc-p(huggingface) "Where did the graduates of Memphis, Tenessee continue their education?","PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:highschool . ?x onto:school ?uri . }",julipc-p(huggingface) What subsequent work of Moondog Matinee has the composer of Motorpsycho Nitemare ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Motorpsycho_Nitemare prop:composer ?uri. res:Moondog_Matinee onto:subsequentWork ?uri}",julipc-p(huggingface) What was the language of the single which came before To Know Him Is to Love Him?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:To_Know_Him_Is_to_Love_Him onto:previousWork ?x . ?x prop:language ?uri . }",julipc-p(huggingface) What are the television shows whose company is owned by Viacom?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:owningCompany . ?uri prop:company ?x . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) How many people used to play in the youthclub of FC Barcelona?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:youthclubs . }",julipc-p(huggingface) Quebec born ice hockey players have stopped playing for which teams?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:birthPlace . ?x onto:formerTeam ?uri . ?x rdf:type onto:IceHockeyPlayer}",julipc-p(huggingface) Who is the chancellor of Falmouth University ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Falmouth_University prop:chancellor ?uri }",julipc-p(huggingface) what kind of things play on WBIG FM?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:programmeFormat ?uri }",julipc-p(huggingface) Name the are where South side Elevated Railroad operate and has place of birth as Arthur A. Ross ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:South_Side_Elevated_Railroad onto:operatedBy ?uri. res:Arthur_A._Ross prop:placeOfBirth ?uri}",julipc-p(huggingface) "In which fields are the graduates of Worcester College, Oxford working?","PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:almaMater . ?x onto:field ?uri . }",julipc-p(huggingface) List the places where the relatives of Mark Donaldson died ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:relatives ?x . ?x onto:deathPlace ?uri . }",julipc-p(huggingface) What famous politician died in the Petersen House?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:deathPlace . ?uri rdf:type onto:Person}",julipc-p(huggingface) What are some artists on the show whose opening theme is Send It On?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:openingTheme . ?x prop:artist ?uri . ?x rdf:type onto:TelevisionShow}",julipc-p(huggingface) What is the citizenship of Saima Chowdhury?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Saima_Chowdhury onto:citizenship ?uri }",julipc-p(huggingface) What are the musical performances whose label is Celluloid Records?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:label res:Celluloid_Records . }",julipc-p(huggingface) What is the craft of the Ralph Flanders which is also the profession of Claiborne Pell ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Ralph_Flanders prop:occupation ?uri. res:Claiborne_Pell onto:profession ?uri}",julipc-p(huggingface) How many people have fought wars where Arthur St. Clair was a commander?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:commander . ?x prop:combatant ?uri . }",julipc-p(huggingface) What are the awards received by spouse of Ellen Lundstrom?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:spouse res:Ellen_Lundström . ?x prop:awards ?uri . }",julipc-p(huggingface) Who all have succeeded the kings buried in Rome?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:placeOfBurial . ?x onto:successor ?uri . ?x rdf:type onto:Royalty}",julipc-p(huggingface) Through which states do the rivers flow which join in the republican river from the left?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Republican_River onto:leftTributary ?x . ?x onto:state ?uri . }",julipc-p(huggingface) Give me the home town of all musical artists who uses Guitar as instrument ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:instrument . ?x onto:hometown ?uri . ?x rdf:type onto:MusicalArtist}",julipc-p(huggingface) How many religions are followed amongst the people who've worked in the Korean army?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:militaryBranch . ?x onto:religion ?uri . }",julipc-p(huggingface) Count the number of musical work which were sold by Sony Music?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:label . ?uri prop:music ?x . ?uri rdf:type onto:MusicalWork}",julipc-p(huggingface) "Who is the person whose home town is Fairmount, Indiana?","PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:hometown . ?uri rdf:type onto:Person}",julipc-p(huggingface) Name the movies directed by Stanley Kubrick and edited by Anthony Harvey?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:director . ?uri prop:editing . ?uri rdf:type onto:Film}",julipc-p(huggingface) List all binomial authority of the insects whose one of the binomial authority is douard Mntries?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:binomialAuthority res:Édouard_Ménétries . ?x onto:binomialAuthority ?uri . }",julipc-p(huggingface) "Who is the military general buried in St Mary's Church, Battersea?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:placeofburial . ?uri rdf:type onto:MilitaryPerson}",julipc-p(huggingface) What are some other things developed by the company who made the remote desktop protocol?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:products . ?x onto:product ?uri . ?x rdf:type onto:Company}",julipc-p(huggingface) Where was Al-Muzaffar Umar buried ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:placeOfBurial ?uri }",julipc-p(huggingface) List the guests of On Broadway ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:guests ?uri }",julipc-p(huggingface) How many universities are there whose country's capital is Oslo?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:capital . ?uri onto:country ?x . ?uri rdf:type onto:University}",julipc-p(huggingface) What is the religion of the ones in the Kampuchean Union of Salvation?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:militaryBranch res:Kampuchean_United_Front_for_National_Salvation . ?x onto:religion ?uri . }",julipc-p(huggingface) Where did the members of judge advocate general corps study?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:militaryRank . ?x onto:almaMater ?uri . }",julipc-p(huggingface) Name the airlines which have a hub in airport in SF?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:cityServed . ?uri prop:hubs ?x . ?uri rdf:type onto:Airline}",julipc-p(huggingface) What is the official name of Colorado wine ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Colorado_wine prop:officialName ?uri }",julipc-p(huggingface) In how many states can one find Burr Tuss kind of bridges?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:style . ?x onto:state ?uri . ?uri rdf:type onto:Region}",julipc-p(huggingface) who developed google videos?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Google_Videos prop:developer ?uri }",julipc-p(huggingface) "Who is the child of John Tyler, Sr.?","PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:child ?uri }",julipc-p(huggingface) Name all those buried in a place governed by a city council.,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:governingBody res:City_council . ?uri prop:restingPlace ?x . }",julipc-p(huggingface) What royalties's sepulchre is Mausoleum of Augustus?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:placeOfBurial res:Mausoleum_of_Augustus }",julipc-p(huggingface) What is the automobile platform of Chiva bus ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Chiva_bus onto:automobilePlatform ?uri }",julipc-p(huggingface) Who are the animator of The Skeleton Dance?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:The_Skeleton_Dance onto:animator ?uri }",julipc-p(huggingface) How many movies have a screenplay located in the States?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:birthPlace . ?uri prop:screenplay ?x . ?uri rdf:type onto:Film}",julipc-p(huggingface) "Which ceremonial County of the East Tilbury is also the local authority of the Trinity School, Brentwood?","PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:ceremonialCounty ?uri. onto:localAuthority ?uri}",julipc-p(huggingface) Name the country whose leader's deputy is Piotr Glinski?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:deputy . ?uri prop:leaderName ?x . ?uri rdf:type onto:Country}",julipc-p(huggingface) Which TV show is related to The Sarah Jane Adventures and theme music is composed by Ron Grainer?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:related . ?uri prop:themeMusicComposer . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) Name the parent company of Ford Air Transport Service ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Ford_Air_Transport_Service onto:parentCompany ?uri }",julipc-p(huggingface) Which region of Bannock is the origin od Spaghetti squash ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:origin ?uri. onto:region ?uri}",julipc-p(huggingface) Count everyone who lives in a place where Indian English is an official language ?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:officialLanguage . ?uri onto:residence ?x . }",julipc-p(huggingface) How many religions are practiced by diplomats?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:profession . ?x prop:religion ?uri . }",julipc-p(huggingface) Was Elton John a chairman of a Watford FC Season?,"PREFIX onto: ASK WHERE { onto:chairman }",julipc-p(huggingface) Which publisher of Lucifer's hammer is also known for Jo Garcia ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:publisher ?uri. onto:knownFor ?uri}",julipc-p(huggingface) To whom was Tessa Dahl born to?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Tessa_Dahl onto:parent ?uri }",julipc-p(huggingface) Which sport at Polytechnic University of the Philippines Taguig is the field of Jon speelman ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Jon_Speelman onto:field ?uri. res:Polytechnic_University_of_the_Philippines_Taguig onto:sport ?uri}",julipc-p(huggingface) Count the number of things people who know linguistics are known for ?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:knownFor . ?x onto:knownFor ?uri }",julipc-p(huggingface) Where were sverre krogh sundbo and havard vad petersson born?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Sverre_Krogh_Sundbø prop:birthPlace ?uri. res:Håvard_Vad_Petersson prop:placeOfBirth ?uri}",julipc-p(huggingface) How many religions are followed by organizations which are internationally known as the muslim brotherhood?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:international . ?x onto:religion ?uri . }",julipc-p(huggingface) What are some people born in NY known for?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:birthPlace res:New_York_City . ?x onto:knownFor ?uri . }",julipc-p(huggingface) Who is the developer of the software which is produced by Claris ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:products ?x . ?x onto:developer ?uri . ?x rdf:type onto:Software}",julipc-p(huggingface) What is the river whose source is Cowombat Flat and has it's mouth located in Murray Mouth?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:source . ?uri onto:riverMouth . ?uri rdf:type onto:River}",julipc-p(huggingface) Where does the river flow into which begins in Lebrsnik?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:sourcePlace res:Lebršnik . ?x onto:riverMouth ?uri . }",julipc-p(huggingface) What is the government type of Ancient Rome ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Ancient_Rome onto:governmentType ?uri }",julipc-p(huggingface) What is the television show whose channel's parent organisation is Fox Sports?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:parentOrganisation . ?uri onto:channel ?x . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) What is the home ground of the clubs managed by Ciao Zanardi?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:manager . ?x onto:ground ?uri . ?x rdf:type onto:SoccerClubSeason}",julipc-p(huggingface) What is the country with native language as Languages of Ethiopia?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:language . ?uri rdf:type onto:Country}",julipc-p(huggingface) List the people with Scientology as their religious belief?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:religion . ?uri rdf:type onto:Person}",julipc-p(huggingface) How many fictional characters were humans?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:species . ?uri rdf:type onto:FictionalCharacter}",julipc-p(huggingface) Where was Girls (The Prodigy song) recorded ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:recorded ?uri }",julipc-p(huggingface) How many TV shows' networks are headquarterd in NY?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:headquarters . ?uri prop:network ?x . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) How many teams have rented stadiums in Canada?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:location . ?x prop:tenants ?uri . }",julipc-p(huggingface) List the awards won by the film director of Chicken Run?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Chicken_Run prop:director ?x . ?x onto:award ?uri . }",julipc-p(huggingface) What territory of Sino French War was the battle of Raoul Magrin-Vernerey fought ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:territory ?uri. prop:battles ?uri}",julipc-p(huggingface) List the outflow of Lake Uniamsi?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Lake_Uniamési onto:outflow ?uri }",julipc-p(huggingface) List the universities from a country where Norwegian language is officially accepted.,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:officialLanguage . ?uri onto:country ?x . ?uri rdf:type onto:University}",julipc-p(huggingface) Name the incumbent of Linda Jenness ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Linda_Jenness onto:incumbent ?uri }",julipc-p(huggingface) "Which companies makes cars assembled in Karachi, Pakistan?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:assembly . ?x prop:parentCompany ?uri . ?x rdf:type onto:Automobile}",julipc-p(huggingface) Which company founded by Fusajiro Yamauchi also provides services of Nintendo eShop ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:foundedBy . ?uri prop:services . ?uri rdf:type onto:Company}",julipc-p(huggingface) In which countries does the sea lie on whose shore is the city of Cumana?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:cities . ?x onto:country ?uri . ?x rdf:type onto:Sea}",julipc-p(huggingface) Tirana is the largest city of which country?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:largestCity . ?uri rdf:type onto:Country}",julipc-p(huggingface) From which countries are the people from who are an academic authority of the Western pygmy blue species?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:binomialAuthority ?x . ?x onto:citizenship ?uri . ?x rdf:type onto:Person}",julipc-p(huggingface) Where is the headquarters of Sigma TV,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Sigma_TV prop:headquarters ?uri }",julipc-p(huggingface) Which scientist was advised by John Robert Woodyard?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:doctoralAdvisor . ?uri rdf:type onto:Scientist}",julipc-p(huggingface) What is the launch site of the Juno I which was also the ground of 2016 Fort Lauderdale Strikers season ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Juno_I onto:launchSite ?uri. res:2016_Fort_Lauderdale_Strikers_season onto:ground ?uri}",julipc-p(huggingface) Count the affiliations of International Union of Anarchists?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { prop:affiliation ?uri . }",julipc-p(huggingface) What is the alma mater of the scientist whose PhD advisor is Jean-Claude Latombe ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:doctoralAdvisor . ?x prop:almaMater ?uri . ?x rdf:type onto:Scientist}",julipc-p(huggingface) "List the people residing in Wilton, Connecticut?","PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:residence }",julipc-p(huggingface) What is the Location of the Peetz Table Wind Energy Center which is also the state of Ben Nighthorse Campbell ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Peetz_Table_Wind_Energy_Center prop:location ?uri. res:Ben_Nighthorse_Campbell prop:state ?uri}",julipc-p(huggingface) Count the water bodies that flow into the North Sea?,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { prop:inflow ?uri . }",julipc-p(huggingface) Who was the First Driver of 1999 San Marino Grand Prix ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:1999_San_Marino_Grand_Prix prop:firstDriver ?uri }",julipc-p(huggingface) Bantam Spectra is the publisher of which series?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:publisher res:Bantam_Spectra . ?x onto:series ?uri . }",julipc-p(huggingface) Where is the sister station of Al Arabiya 99 located?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:sisterStations . ?x prop:location ?uri . ?x rdf:type onto:RadioStation}",julipc-p(huggingface) How many things are produced by companies located in Tehran?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:location . ?x onto:product ?uri . }",julipc-p(huggingface) Name the officeholder who hasa child named Augustus and has an associate named Marcus Bibulus ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:associate . ?uri prop:children . ?uri rdf:type onto:OfficeHolder}",julipc-p(huggingface) Give me someone on the board of trinity house?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:board res:Trinity_House . }",julipc-p(huggingface) Horses grandsired by Sundridge have won which awards?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:grandsire . ?x onto:honours ?uri . ?x rdf:type onto:Horse}",julipc-p(huggingface) "What is the river whose source region is North-Western Province, Zambia and river mouth is Indian Ocean?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:sourceRegion . ?uri onto:riverMouth . ?uri rdf:type onto:River}",julipc-p(huggingface) "Who was on the first team in the GPs that were held at Watkins Glen, NY?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:location . ?x prop:firstTeam ?uri . ?x rdf:type onto:GrandPrix}",julipc-p(huggingface) Name the movie whose screenplay is by Akiva Goldsman and directed by Joel Schumacher ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:screenplay . ?uri onto:director . ?uri rdf:type onto:Film}",julipc-p(huggingface) What ethinicity of Linda Hogan is also the state of origin of Holmes Colbert ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Linda_Hogan onto:ethnicity ?uri. res:Holmes_Colbert onto:stateOfOrigin ?uri}",julipc-p(huggingface) What are the track and field events of Jamiatu Muslim Mindanao?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Jamiatu_Muslim_Mindanao prop:athletics ?uri }",julipc-p(huggingface) How many cities are close to Lake Victoria?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { onto:nearestCity ?uri . }",julipc-p(huggingface) What is the baseball team whose club manager's debut team is Houston Astros?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:debutTeam . ?uri onto:manager ?x . ?uri rdf:type onto:BaseballTeam}",julipc-p(huggingface) What cities are near to Nihoa which is also known as Bird Island ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Nihoa prop:nearestCity ?uri }",julipc-p(huggingface) Which shareholder of Naval Air facility Adak is also the operator of New Sanno Hotel ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:New_Sanno_Hotel prop:operator ?uri. res:Naval_Air_Facility_Adak prop:owner ?uri}",julipc-p(huggingface) What other awards have been given to Golden Globe winners?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:award res:Golden_Globe_Award . ?x prop:awards ?uri . }",julipc-p(huggingface) Which allegiance of the John Kotelawala is also the sovereign state of the Sanath Weerakoon ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:John_Kotelawala prop:allegiance ?uri. res:Sanath_Weerakoon onto:country ?uri}",julipc-p(huggingface) List the television shows whose network's sister names is N-tv.,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:sisterNames . ?uri prop:network ?x . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) God Defend New Zealand is the national anthem of which country?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:nationalAnthem res:God_Defend_New_Zealand }",julipc-p(huggingface) Where do the rivers starting from Zambia end?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:sourceCountry . ?x onto:riverMouth ?uri . ?x rdf:type onto:River}",julipc-p(huggingface) "Which political party of kumta had affiliation with Indian general election, 2004 (Andhra Pradesh) ","PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:governmentType ?uri. onto:affiliation ?uri}",julipc-p(huggingface) Where is the king buried whose predecessor was Iyasu II?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:predecessor . ?x prop:placeOfBurial ?uri . ?x rdf:type onto:Monarch}",julipc-p(huggingface) In how many different places have people beatified by Pope Pius X died?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:beatifiedBy . ?x prop:deathPlace ?uri . ?uri rdf:type onto:Place}",julipc-p(huggingface) What faiths are followed by the relatives of Meadow Soprano?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Meadow_Soprano onto:relative ?x . ?x onto:religion ?uri . }",julipc-p(huggingface) "Where is the headquarters of the public transit system which owns Target Field, a Metro Transit Station ?","PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:owningOrganisation ?x . ?x prop:headquarters ?uri . }",julipc-p(huggingface) What is the nationality of Aishath Saffa ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Aishath_Saffa prop:nationality ?uri }",julipc-p(huggingface) who was the president under whom winston bryant served as a lieutenant?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:lieutenant res:Winston_Bryant }",julipc-p(huggingface) What are the bands associated with the artists of My Favorite Girl ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:artist ?x . ?x onto:associatedBand ?uri . }",julipc-p(huggingface) On what subjects was Broca's Brain written?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:subject ?uri }",julipc-p(huggingface) Which parent organization of GetTV is also the label of next thing ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Next_Thing onto:recordLabel ?uri. res:GetTV onto:parentOrganisation ?uri}",julipc-p(huggingface) Which teams have used the stadium whose architect was Populous ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:architect . ?x onto:tenant ?uri . ?x rdf:type onto:Stadium}",julipc-p(huggingface) Which hockey team is head coached by Bill Peters?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:headCoach . ?uri rdf:type onto:HockeyTeam}",julipc-p(huggingface) Count the number of religions followed by the alumini of Ananda College.,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:almaMater . ?x onto:religion ?uri . }",julipc-p(huggingface) What are the television shows whose network's stockholder is Warner Bros. Television?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:owner . ?uri onto:network ?x . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) Name the Fox TV show judged by Rand Jackson ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:judges . ?uri prop:channel . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) What is the total number of software whose programming language is C++ and operating system is Microsoft Windows?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:programmingLanguage . ?uri onto:operatingSystem }",julipc-p(huggingface) Name the city of Phil-Ellena ?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:city ?uri }",julipc-p(huggingface) how many companies are located in a spanish speaking region?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:language . ?uri onto:location ?x . ?uri rdf:type onto:Organisation}",julipc-p(huggingface) What is the combatant of the Northwest Indian War and also the ethnic group of the Linda Hogan ,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Northwest_Indian_War prop:combatant ?uri. res:Linda_Hogan prop:ethnicity ?uri}",julipc-p(huggingface) Which airlines fly to Gimhae International Airport?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:targetAirport res:Gimhae_International_Airport }",julipc-p(huggingface) GetTV is owned by which organisation?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:GetTV onto:parentOrganisation ?uri }",julipc-p(huggingface) Name the islands that belong to the archipelago whose largest city is Papeete?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:largestCity res:Papeete . ?uri prop:archipelago ?x . }",julipc-p(huggingface) List the settlements area whose province is Metropolitan City of Venice ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:province . ?uri rdf:type onto:Settlement}",julipc-p(huggingface) "What was recorded by Live in Detroit, MI and also palce of birth of the Bodhin Kjolhede?","PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:recordedIn ?uri. prop:placeOfBirth ?uri}",julipc-p(huggingface) From how many different institutes have the members of Judge Advocate General's Corps graduated?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:militaryRank . ?x onto:almaMater ?uri . ?uri rdf:type onto:EducationalInstitution}",julipc-p(huggingface) Whos a famous relative of anne spielberg?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:relation res:Anne_Spielberg . }",julipc-p(huggingface) To which city does Northeast Library belong?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Northeast_Library onto:city ?uri }",julipc-p(huggingface) What are the airline hubs of Cascade Airways?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Union_of_Cambodian_Democrats onto:ideology ?uri }",julipc-p(huggingface) Who has manufactured vehicles designed originally by NASA?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:designCompany . ?x onto:manufacturer ?uri . ?x rdf:type onto:Automobile}",julipc-p(huggingface) What is the order of the Henry Clay and profession of the William Luther Hill?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Henry_Clay prop:order ?uri. res:William_Luther_Hill onto:profession ?uri}",julipc-p(huggingface) What show has theme music composer as Ron Grainer and at the same time related to Class (2016 TV series)?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:themeMusicComposer . ?uri onto:related . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) What is the life stance of the ethnic groups related to Micronesia ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:related . ?x onto:religion ?uri . ?x rdf:type onto:EthnicGroup}",julipc-p(huggingface) Name the river whose mouth mountain is Southend-on-Sea and mouth place is Essex?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:mouthMountain . ?uri onto:mouthPlace . ?uri rdf:type onto:River}",julipc-p(huggingface) Which venue of indy PopCon is also the death palce of Louis Le Cocqq ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Indy_PopCon prop:venue ?uri. res:Louis_LeCocq prop:placeOfDeath ?uri}",julipc-p(huggingface) What genre's softwares are released with a GNU GPL license?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:license res:GNU_General_Public_License . ?x prop:genre ?uri . }",julipc-p(huggingface) Who is the leader of Allgemeine SS ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Allgemeine_SS onto:leader ?uri }",julipc-p(huggingface) Giorgos Kaminis is the mayor of what?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:mayor res:Giorgos_Kaminis }",julipc-p(huggingface) Where is the headquarters of Metro Transit (Minnesota) ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:headquarters ?uri }",julipc-p(huggingface) Give me the count of all the names of characters created by Frank Miller,"PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:creators . ?x prop:characterName ?uri . }",julipc-p(huggingface) Which fictional character portrayed in Terminator 2: Judgment Day is painted by Josh Friedman?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:portrayer . ?uri onto:creator . ?uri rdf:type onto:FictionalCharacter}",julipc-p(huggingface) Where was the narrator of Spain on the Road Again born?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Spain..._on_the_Road_Again onto:narrator ?x . ?x prop:birthPlace ?uri . }",julipc-p(huggingface) Name the movie with narrator as Trevor Peacock and music composer as Christophe Beck?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:narrator . ?uri prop:music . ?uri rdf:type onto:Film}",julipc-p(huggingface) Where did the scientist study whose doctoral thesis was supervised by Leonard Lerman?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:doctoralAdvisor . ?x prop:almaMater ?uri . ?x rdf:type onto:Scientist}",julipc-p(huggingface) Where can one find some quick bread in the world?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:type res:Quick_bread . ?x onto:region ?uri . }",julipc-p(huggingface) What rivers originate from Australian Alps?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:sourcePlace . ?uri rdf:type onto:River}",julipc-p(huggingface) Which venues are located at places governed by John Roberts?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:leader . ?uri prop:address ?x . ?uri rdf:type onto:Venue}",julipc-p(huggingface) What is the venue of San Diego Comic-Con International ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:venue ?uri }",julipc-p(huggingface) "Which office holder owes its allegiance to a state whose capital town is Jamestown, Virginia?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:capital . ?uri prop:allegiance ?x . ?uri rdf:type onto:OfficeHolder}",julipc-p(huggingface) "Which professional fighter, who is also a politician and was elected to House of Representatives of the Philippines?","PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:occupation res:House_of_Representatives_of_the_Philippines }",julipc-p(huggingface) List the comic characters created by Joe Shuster ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:creators . ?uri rdf:type onto:ComicsCharacter}",julipc-p(huggingface) "Which kind of conventions are held in Rosemont, Illinois?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:location . ?x prop:genre ?uri . ?x rdf:type onto:Convention}",julipc-p(huggingface) What city is located on the mouth of Duwamish River?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Duwamish_River onto:riverMouth ?x . ?x prop:cities ?uri . }",julipc-p(huggingface) Which governer of Winston Bryant is the president of Joseph Stiglitz ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Winston_Bryant prop:governor ?uri. res:Joseph_Stiglitz prop:president ?uri}",julipc-p(huggingface) How many people have led agencies in German occupied Europe?,"PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:jurisdiction . ?x onto:leader ?uri . }",julipc-p(huggingface) Where did the plays written by Robert Schenkkan take place?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:writer . ?x prop:place ?uri . ?x rdf:type onto:Play}",julipc-p(huggingface) Under which president did the predecessor of Simon Ferro work?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:successor res:Simon_Ferro . ?x onto:president ?uri . }",julipc-p(huggingface) Name some ww1 veterans?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:battles res:World_War_I . }",julipc-p(huggingface) Which operator of New Sanno Hotel is also the governing body of the Oahu Railway and Land Company ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:New_Sanno_Hotel prop:operator ?uri. res:Oahu_Railway_and_Land_Company prop:governingBody ?uri}",julipc-p(huggingface) Which predecessor of Alexander Downer was deputy to Neil Brown ?,"PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:predecessor . ?uri prop:deputy . }",julipc-p(huggingface) Which are the predecessor of Chevrolet Caprice?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Chevrolet_Caprice onto:predecessor ?uri }",julipc-p(huggingface) Who wrote the album coming right before Dead Man's Chest's OST?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:nextAlbum . ?x prop:writer ?uri . ?x rdf:type onto:Album}",julipc-p(huggingface) What is the series of the book which is a subsequent work of Blade Runner 2: The Edge of Human ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:subsequentWork ?x . ?x onto:series ?uri . ?x rdf:type onto:Book}",julipc-p(huggingface) For how many cities's teams did David Bowens play?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { onto:formerTeam ?x . ?x onto:locationCity ?uri . ?x rdf:type onto:SportsTeam}",julipc-p(huggingface) In which countries have models hanged themselves?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:deathCause . ?x prop:citizenship ?uri . ?x rdf:type onto:Model}",julipc-p(huggingface) Which TV show whose theme is composed by someone signed up with ATO records?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:recordLabel . ?uri prop:themeMusicComposer ?x . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) Which models were featured in Playboy Playmates 1954?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:succeeded . ?uri rdf:type onto:PlayboyPlaymate}",julipc-p(huggingface) What currencies have been prevalent in the country whose national anthem is La Marseillaise?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:anthem res:La_Marseillaise . ?x onto:currency ?uri . }",julipc-p(huggingface) Who is the relative of Jim Farley (businessman) ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:relatives ?uri }",julipc-p(huggingface) Name an American football player whose debuted in Chicago Bears and former team is 1998 Baltimore Ravens season?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:debutteam . ?uri onto:formerTeam . ?uri rdf:type onto:AmericanFootballPlayer}",julipc-p(huggingface) Name a river with source country as Zambia and source location as Ikelenge District?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:sourceCountry . ?uri prop:sourceLocation . ?uri rdf:type onto:River}",julipc-p(huggingface) Which fields of the Paul Demiville is also the faith of Koay Teng Hai ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Paul_Demiéville prop:fields ?uri. res:Koay_Teng_Hai onto:religion ?uri}",julipc-p(huggingface) Name the institute of Alton Ochsner ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Alton_Ochsner onto:institution ?uri }",julipc-p(huggingface) What movies have been written by authors of Monty Python ?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:writer . ?uri rdf:type onto:Film}",julipc-p(huggingface) Who was the cover artist of The Adventure of Tom Sawyer also wrote mark Twain Tonight ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:The_Adventures_of_Tom_Sawyer onto:coverArtist ?uri. res:Mark_Twain_Tonight prop:writer ?uri}",julipc-p(huggingface) Name the scientist whose academic advisor is Karl Ewald Hasse and supervisor is Georg Meissner?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:academicAdvisor . ?uri prop:doctoralAdvisor . ?uri rdf:type onto:Scientist}",julipc-p(huggingface) Where do current famous NatGeo photographers live?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:knownFor . ?x onto:residence ?uri . ?x rdf:type onto:Photographer}",julipc-p(huggingface) Georg Meissner was doctoral supervisor of which scientist ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:doctoralAdvisor . ?uri rdf:type onto:Scientist}",julipc-p(huggingface) Name books with publisher as Francisco de Robles and writer as Miguel de Cervantes ?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:publisher . ?uri prop:author . ?uri rdf:type onto:Book}",julipc-p(huggingface) Who owns the schools which have a penguin as its mascot?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:mascot . ?x onto:authority ?uri . ?x rdf:type onto:School}",julipc-p(huggingface) River which flows into the eugene mahoney state park pass through which states?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:mouthLocation res:Eugene_T._Mahoney_State_Park . ?x onto:state ?uri . }",julipc-p(huggingface) "Which TV show had a judge named Harry Connick, Jr. and was presented by Ryan Seacrest?","PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:judges . ?uri onto:presenter . ?uri rdf:type onto:TelevisionShow}",julipc-p(huggingface) Name the resting place of Fazlur Rahman Khan ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Fazlur_Rahman_Khan onto:restingPlace ?uri }",julipc-p(huggingface) Which arena of WPC Dynamo Moscow is death location of Tigran Petrosian >,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:WPC_Dynamo_Moscow prop:arena ?uri. res:Tigran_Petrosian onto:deathPlace ?uri}",julipc-p(huggingface) what cities are close by LoDaisKa ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:LoDaisKa_Site onto:nearestCity ?uri }",julipc-p(huggingface) Which wars were fought when the commanders involved served under PM Choi Tu Son?,"PREFIX rdf: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:primeminister . ?uri onto:commander ?x . ?uri rdf:type onto:MilitaryConflict}",julipc-p(huggingface) Who is the meaning of Isa ?,"PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:meaning ?uri }",julipc-p(huggingface) Count the number teams which have former ice hockey players which also included American Hockey League ?,"PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:formerTeam . ?x onto:formerTeam ?uri }",julipc-p(huggingface) List all the schools of the rugby player whose went to school named Pietermaritzburg ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:school res:Pietermaritzburg . ?x prop:school ?uri . }",julipc-p(huggingface) Name the office of Richard Coke ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Richard_Coke prop:office ?uri }",julipc-p(huggingface) ¿Cómo de alta el faro de Colombo?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?num WHERE { res:Colombo_Lighthouse onto:height ?num . }",julipc-p(huggingface) ¿Quién es el anfitrión de los especiales de la BBC Wildlife?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:BBC_Wildlife_Specials onto:presenter ?uri . }",julipc-p(huggingface) ¿Cuanto costo Pulp Fiction?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?n WHERE { res:Pulp_Fiction onto:budget ?n . }",julipc-p(huggingface) ¿En qué ciudad esta la fábrica de cerveza Heineken?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Heineken onto:manufacturer ?x . ?x onto:locationCity ?uri . }",julipc-p(huggingface) ¿Cuándo comenzó la operación Overlord?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?d WHERE { res:Operation_Overlord onto:date ?d . }",julipc-p(huggingface) ¿En que ciudad termina la ruta Chilena 68?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Chile_Route_68 onto:routeEnd ?uri . }",julipc-p(huggingface) ¿Quien desarrolló Slack?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:product . }",julipc-p(huggingface) ¿Por qué ciudades pasa el río Weser?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Weser onto:city ?uri . }",julipc-p(huggingface) ¿Cuántos asientos tiene el estadio del FC Porto?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?n WHERE { res:FC_Porto onto:ground ?x . ?x onto:seatingCapacity ?n . }",julipc-p(huggingface) ¿Con quién está casada la hija de Robert Kennedy?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Robert_F._Kennedy onto:child ?child . ?child onto:spouse ?uri . }",julipc-p(huggingface) ¿Qué libros de Kerouac han sido publicados por Viking Press?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Book . ?uri onto:publisher . ?uri onto:author . }",julipc-p(huggingface) ¿Cómo de alta es Amazon Eve?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?height WHERE { res:Amazon_Eve onto:height ?height . }",julipc-p(huggingface) ¿Quién descubrió Ceres?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:discoverer ?uri . }",julipc-p(huggingface) ¿Cuál es el país más grande del mundo?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri a onto:Country . ?uri onto:areaTotal ?n . } ORDER BY DESC(?n) OFFSET 0 LIMIT 1",julipc-p(huggingface) ¿Quién es el alcalde de París?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Paris onto:mayor ?uri . }",julipc-p(huggingface) ¿Quién es el entrenador del equipo de hockey sobre hielo de Ankara?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:city res:Ankara . ?x onto:league res:Turkish_Ice_Hockey_First_League . ?x onto:coach ?uri . }",julipc-p(huggingface) ¿Cuánto cuesta la película de Lego?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?n WHERE { res:The_Lego_Movie onto:budget ?n . }",julipc-p(huggingface) ¿Dónde empieza Piccadilly?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:routeStart res:Piccadilly. }",julipc-p(huggingface) ¿Cuántos idiomas se hablan en Turkmenistán?,"PREFIX onto: SELECT (COUNT(DISTINCT ?x) as ?c) WHERE { onto:language ?x . }",julipc-p(huggingface) ¿En qué películas actúan Julia Roberts y Richard Gere?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Film . ?uri onto:starring . ?uri onto:starring . }",julipc-p(huggingface) ¿En que año nació Rachel Stevens?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Rachel_Stevens onto:birthYear ?uri . }",julipc-p(huggingface) ¿Cuántas veces ha estado casada Jane Fonda?,"PREFIX onto: SELECT (COUNT(DISTINCT ?uri) as ?c) WHERE { onto:spouse ?uri . }",julipc-p(huggingface) ¿Cuántas personas viven en Polonia?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Poland onto:populationTotal ?uri . }",julipc-p(huggingface) ¿Donde están situadas las Casas del Parlamento?,"PREFIX res: PREFIX onto: SELECT ?uri WHERE { res:Palace_of_Westminster onto:location ?uri . }",julipc-p(huggingface) ¿Cuál fue la última película con Alec Guinness?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Film . ?uri onto:starring . ?uri onto:releaseDate ?date . } ORDER BY DESC(?date) LIMIT 1",julipc-p(huggingface) ¿Quién creó Family Guy?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Family_Guy onto:creator ?uri . }",julipc-p(huggingface) ¿Quién escribió la canción Hotel California?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Hotel_California onto:writer ?uri . }",julipc-p(huggingface) Dame todos los actores de películas dirigidas por William Shatner.,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:director res:William_Shatner . ?x onto:starring ?uri . }",julipc-p(huggingface) ¿Qué contiene una galleta de chocolate?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Chocolate_chip_cookie onto:ingredient ?uri . }",julipc-p(huggingface) ¿Qué ingredientes son necesarios para una tarta de zanahorias?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Carrot_cake onto:ingredient ?uri . }",julipc-p(huggingface) ¿juega Neymar en el Real Madrid?,"PREFIX res: PREFIX onto: ASK WHERE { res:Neymar onto:team . }",julipc-p(huggingface) ¿Qué ingeniero informático ganó un Oscar?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { { ?uri onto:field . } UNION { ?uri ?s . FILTER regex(?s,'computer scientist','i') } ?uri onto:award . }",julipc-p(huggingface) ¿Cuántas compañías fueron fundadas en el mismo año que Google?,"PREFIX rdf: PREFIX onto: SELECT (COUNT(DISTINCT ?uri) as ?c) WHERE { ?uri rdf:type onto:Company . ?uri onto:foundingYear ?year . onto:foundingYear ?year . }",julipc-p(huggingface) ¿Quién creó Batman?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Batman onto:creator ?uri . }",julipc-p(huggingface) ¿Quién interpreto a Gus Fring en Breaking Bad?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Gus_Fring onto:portrayer ?uri . }",julipc-p(huggingface) En que imperio antiguo pagaría con granos de cacao?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:currency res:Cocoa_bean . }",julipc-p(huggingface) ¿Qué compañías de electrónica fueron fundadas en Pekín?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri a onto:Company . ?uri onto:industry res:Electronics . ?uri onto:foundationPlace res:Beijing . }",julipc-p(huggingface) ¿Cuántas tiendas Aldi hay?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?number WHERE { res:Aldi onto:numberOfLocations ?number . }",julipc-p(huggingface) ¿Cuál es la capital de Camerún?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Cameroon onto:capital ?uri. }",julipc-p(huggingface) Dame todas las películas que haya dirigido Francis Ford Coppola.,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Film . ?uri onto:director . }",julipc-p(huggingface) Dame todos los nietos de Elvis Presley.,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Elvis_Presley onto:child ?child . ?child onto:child ?uri . }",julipc-p(huggingface) ¿Que peliculas protagonizadas por Mickey Rourke han sido dirigidas por Guy Ritchie?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Film . ?uri onto:starring . ?uri onto:director . }",julipc-p(huggingface) ¿Cuando murió el creador de Drácula?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?date WHERE { res:Count_Dracula onto:creator ?x . ?x onto:deathDate ?date . }",julipc-p(huggingface) ¿Cuál es el verdadero nombre de Batman?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?s WHERE { res:Batman prop:alterEgo ?s . }",julipc-p(huggingface) ¿Qué forma de gobierno tiene Rusia?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Russia onto:governmentType ?uri . }",julipc-p(huggingface) ¿Cuantas compañías han sido fundadas por el fundador de Facebook?,"PREFIX onto: SELECT (COUNT(DISTINCT ?uri) as ?c) WHERE { onto:foundedBy ?uri . ?uri onto:foundedBy ?uri . }",julipc-p(huggingface) ¿Cuántos hijos tuvo Benjamin Franklin?,"PREFIX onto: SELECT (COUNT(DISTINCT ?uri) as ?c) WHERE { onto:child ?uri . }",julipc-p(huggingface) ¿Qué aeropuertos sirve Yeti Airlines?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Yeti_Airlines onto:targetAirport ?uri . }",julipc-p(huggingface) ¿Qué empresa de la India tiene el mayor número de empleados?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri a onto:Company . ?uri onto:location . ?uri onto:numberOfEmployees ?n . } ORDER BY DESC(?n) OFFSET 0 LIMIT 1",julipc-p(huggingface) ¿Qué color expresa lealtad?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:connotation res:Loyalty . }",julipc-p(huggingface) ¿Cuántos grupos étnicos viven en Eslovenia?,"PREFIX onto: SELECT (COUNT(DISTINCT ?uri) as ?c) WHERE { onto:ethnicGroup ?uri . }",julipc-p(huggingface) ¿Quién es el presidente de Eritrea?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:leader ?uri . onto:leaderTitle 'President'@en . }",julipc-p(huggingface) ¿Qué películas dirigio Stanley Kubrick?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:director res:Stanley_Kubrick . }",julipc-p(huggingface) ¿Quién compuso la banda sonora del Titanic de Cameron?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:musicComposer ?uri . }",julipc-p(huggingface) ¿En qué zona horaria esta Roma?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Rome onto:timeZone ?uri . }",julipc-p(huggingface) ¿Quiénes son los desarrolladores de DBpedia?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:DBpedia onto:developer ?uri . }",julipc-p(huggingface) ¿Quién es el rey de los Países Bajos?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Netherlands onto:leader ?uri . ?uri a onto:Royalty . }",julipc-p(huggingface) ¿En que ciudad murió Nikos Kazantzakis?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Nikos_Kazantzakis onto:deathPlace ?uri . ?uri a onto:Town . }",julipc-p(huggingface) Dame una lista de todas las aves en peligro de extinción.,"PREFIX onto: SELECT DISTINCT ?uri ?p WHERE { ?uri a onto:Bird . { ?uri onto:conservationStatus 'CR'^^ . } UNION { ?uri . } }",julipc-p(huggingface) ¿Quién es el conductor de Formula 1 con más carreras?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:FormulaOneRacer . ?uri onto:races ?x . } ORDER BY DESC(?x) OFFSET 0 LIMIT 1",julipc-p(huggingface) ¿Qué compañías producen aerodeslizadores?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri a onto:Company . ?uri onto:product res:Hovercraft . }",julipc-p(huggingface) Tuvo hijos Elvis Presley?,"PREFIX res: PREFIX onto: ASK WHERE { res:Elvis_Presley onto:child ?uri . }",julipc-p(huggingface) ¿En que ciudad nació el presidente de Montenegro?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:office res:President_of_Montenegro . ?x onto:birthPlace ?uri . ?uri a onto:City . }",julipc-p(huggingface) ¿En qué país nació Bill Gates?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Bill_Gates onto:birthPlace ?x . ?x onto:country ?uri . }",julipc-p(huggingface) ¿En qué países se habla japonés?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri a onto:Country . ?uri onto:language res:Japanese_language . }",julipc-p(huggingface) ¿Cuál es el apodo de San Francisco?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?string WHERE { res:San_Francisco prop:nickname ?string . }",julipc-p(huggingface) ¿Cuál fue el primer álbum de Queen?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri a onto:Album . ?uri onto:artist . ?uri onto:releaseDate ?d . } ORDER BY ASC(?d) OFFSET 0 LIMIT 1",julipc-p(huggingface) ¿De qué país es Sitecore?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Sitecore onto:foundationPlace ?uri . }",julipc-p(huggingface) ¿Con quien se casó Lance Bass?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:spouse res:Lance_Bass . }",julipc-p(huggingface) ¿Quién inspiro a Vincent van Gogh?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:influenced res:Vincent_van_Gogh . }",julipc-p(huggingface) ¿Quién escribió el tema del Juego de Tronos?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Game_of_Thrones onto:composer ?uri. }",julipc-p(huggingface) ¿Cuándo termino Boris Becker su carrera como actor?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?d WHERE { res:Boris_Becker onto:activeYearsEndDate ?d . }",julipc-p(huggingface) ¿Que tipo de uva crece en Oregon?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Oregon_wine onto:growingGrape ?uri . }",julipc-p(huggingface) ¿A qué partido politico pertenece el alcalde de París?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Paris onto:mayor ?x . ?x onto:party ?uri . }",julipc-p(huggingface) ¿Quien es el supervisor de doctorado de Albert Einstein?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Albert_Einstein onto:doctoralAdvisor ?uri . }",julipc-p(huggingface) ¿En qué ciudad vive Sylvester Stallone?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri a onto:City . res:Sylvester_Stallone onto:residence ?uri . }",julipc-p(huggingface) ¿Quién es el hijo de Sonny y Cher?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:parent res:Cher . ?uri onto:parent res:Sonny_Bono . }",julipc-p(huggingface) ¿En qué ciudad se encuentra la sede de las Naciones Unidas?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Headquarters_of_the_United_Nations onto:location ?uri . ?uri a onto:City . }",julipc-p(huggingface) ¿Cúando se fundó Jack Wolfskin?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?year WHERE { res:Jack_Wolfskin onto:foundingYear ?year . }",julipc-p(huggingface) Muéstrame la autobiografía Hemingway.,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:author res:Ernest_Hemingway . ?uri onto:literaryGenre res:Autobiography . }",julipc-p(huggingface) Quien es el jugador de baloncesto mas alto?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:BasketballPlayer . ?uri onto:height ?num . } ORDER BY DESC(?num) OFFSET 0 LIMIT 1",julipc-p(huggingface) ¿Que ciudad tiene la menor población?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:City . ?uri onto:populationTotal ?pop . } ORDER BY ASC(?pop) OFFSET 0 LIMIT 1",julipc-p(huggingface) ¿Gano Kaurismäki alguna vez el Gran Prix de Cannes?,"PREFIX onto: ASK WHERE { onto:award . }",julipc-p(huggingface) ¿Donde se encuentra el Fort Knox?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Fort_Knox prop:location ?uri . }",julipc-p(huggingface) ¿Dónde está enterrado Syngman Rhee?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Syngman_Rhee onto:restingPlace ?uri . }",julipc-p(huggingface) ¿Cuál es la zona horaria en San Pedro de Atacama?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:San_Pedro_de_Atacama onto:timeZone ?uri . }",julipc-p(huggingface) ¿A qué estilo artístico pertenece el pinto de Los Tres Bailarines?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:The_Three_Dancers onto:author ?person . ?person onto:movement ?uri . }",julipc-p(huggingface) Muéstrame todos los libros en la serie Fundación de Asimov,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:series res:Foundation_series . }",julipc-p(huggingface) ¿Qué museo en Nueva York tiene el mayor numero de visitantes?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Museum . ?uri onto:location . ?uri onto:numberOfVisitors ?num . } ORDER BY DESC(?num) OFFSET 0 LIMIT 1",julipc-p(huggingface) Dame todos los miembros de la banda Prodigy.,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:The_Prodigy onto:bandMember ?uri . }",julipc-p(huggingface) ¿Quien protagoniza peliculas españolas producidas por Benicio del Toro?,"PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?film rdf:type onto:Film . ?film onto:country . ?film onto:producer . ?film onto:starring ?uri . ?uri rdf:type onto:Person . }",julipc-p(huggingface) ¿Qué subsidiario de TUI Travel vuela en Glasgow y en Dublin?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:TUI_Travel onto:subsidiary ?uri . ?uri onto:targetAirport res:Glasgow_Airport . ?uri onto:targetAirport res:Dublin_Airport . }",julipc-p(huggingface) ¿Cuántos idiomas se hablan en Colombia?,"PREFIX rdf: PREFIX onto: SELECT (COUNT(DISTINCT ?uri) as ?c) WHERE { ?uri rdf:type onto:Language . onto:language ?uri . }",julipc-p(huggingface) ¿Cuál es el estadio más grande de España?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri a onto:Stadium . ?uri onto:location . ?uri onto:seatingCapacity ?n . } ORDER BY DESC(?n) OFFSET 0 LIMIT 1",julipc-p(huggingface) ¿Cuáles son los cinco condados de Nueva York?,"PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:governmentType . }",julipc-p(huggingface) ¿Cuándo murió la princesa Diana?,"PREFIX onto: SELECT DISTINCT ?d WHERE { onto:deathDate ?d . }",julipc-p(huggingface) Name the service region of Jerusalem Institue of Justice which was also the result region in Gaza Israel conflict?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Jerusalem_Institute_of_Justice onto:service ?uri. res:Gaza–Israel_conflict prop:result ?uri}",Orange(huggingface) What disease led to the demise of Letitia MacTavish Hargrave and Martino Martini?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:deathCause ?uri. onto:deathCause ?uri . ?uri rdf:type onto:Disease}",Orange(huggingface) What are the movies produced by Michael Deeley?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:producer . ?uri onto:cinematography . ?uri rdf:type onto:Film}",Orange(huggingface) What has Carl Sagan written his books about?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:author . ?x prop:subject ?uri . ?x rdf:type onto:Book}",Orange(huggingface) How many first drivers have participated when Scuderia Ferrari was a first team?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:firstTeam . ?x onto:firstDriver ?uri . }",Orange(huggingface) In how many different places were the people born who are members of National Museum of Racing and Hall of Fame?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:honours . ?x prop:birthPlace ?uri . ?uri rdf:type onto:Place}",Orange(huggingface) Where is the office of P Elmo Futrell Jr?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:office ?uri . }",Orange(huggingface) Enumerate all those who are in the Board of companies founded in New York?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:foundation . ?uri onto:board ?x . }",Orange(huggingface) "Is US Navy garrisoned at Arlington County, Virginia?","PREFIX res: PREFIX prop: ASK WHERE { prop:garrison }",Orange(huggingface) List all the writers of the comics which has Robert Bernstein as one of the writer ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:writers . ?x prop:writers ?uri . ?x rdf:type onto:Comic}",Orange(huggingface) "Which person won Screen actors Guild Life Time Achievement award and has resting palce in Palo Alto, California ?","PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:restingPlace . ?uri onto:award . ?uri rdf:type onto:Person}",Orange(huggingface) Which american football team is owned by Mark davis and is located in O.co Colliseum ?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:owner . ?uri onto:locationCity . ?uri rdf:type onto:AmericanFootballTeam}",Orange(huggingface) Where is Dofinivka Estuary located ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Dofinivka_Estuary prop:location ?uri }",Orange(huggingface) Name the music artist which collaborated with the spouse of Jessi Colter?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:spouse . ?uri onto:associatedMusicalArtist ?x . ?uri rdf:type onto:MusicalArtist}",Orange(huggingface) What artist was associated closely with the bare necessities and rock a doodle?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:artist ?uri. onto:starring ?uri}",Orange(huggingface) Where is the building located whose architect was Francis Palmer Smith?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:architect . ?x prop:address ?uri . ?x rdf:type onto:Building}",Orange(huggingface) In how many different places have ethics philosophers died?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:mainInterests . ?x prop:placeOfDeath ?uri . ?uri rdf:type onto:Place}",Orange(huggingface) Who are the parents of writers born and bred in Buckinghamshire?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:homeTown . ?x onto:parent ?uri . ?x rdf:type onto:Writer}",Orange(huggingface) Race horses whose grandsire is Wild Risk have taken part in which races?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:grandsire . ?x prop:race ?uri . ?x rdf:type onto:RaceHorse}",Orange(huggingface) Does Mr. Jim's Pizza operate in the pizza industry?,"PREFIX res: PREFIX onto: ASK WHERE { onto:industry }",Orange(huggingface) Does Faaa International Airport serve tahiti too?,"PREFIX res: PREFIX prop: ASK WHERE { prop:cityServed }",Orange(huggingface) List the things for which people of New Orleans are famous for?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:placeOfBirth . ?x prop:knownFor ?uri . ?x rdf:type onto:Person}",Orange(huggingface) What is the province of Rouen Business School?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Rouen_Business_School prop:province ?uri }",Orange(huggingface) What is the home town of the band which is the artist of Your Ice Cream's Dirty ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:artist ?x . ?x onto:hometown ?uri . ?x rdf:type onto:Band}",Orange(huggingface) What are some bands originating in London?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:hometown . ?uri rdf:type onto:Band}",Orange(huggingface) What are the baseball teams who belongs to Guggenheim Partners?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:owner . ?uri rdf:type onto:BaseballTeam}",Orange(huggingface) Name some schools with a bison as their mascot?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:mascot . ?uri rdf:type onto:School}",Orange(huggingface) Which work institutions of Andrew Schally is the alma mater of Mara Eugenia Rojas Correa ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Andrew_Schally prop:workInstitutions ?uri. res:María_Eugenia_Rojas_Correa prop:almaMater ?uri}",Orange(huggingface) What are the tenants of Mercedes-Benz Superdome?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:tenant ?uri }",Orange(huggingface) What is the route end of NorthSouth Transport Corridor ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:North–South_Transport_Corridor onto:routeEnd ?uri }",Orange(huggingface) What is that show whose theme was composed by Joel Goodman?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:themeMusicComposer . ?x prop:showName ?uri . ?x rdf:type onto:TelevisionShow}",Orange(huggingface) What is the scientist whose PhD students are Erich Bagge and Serban Titeica?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri prop:doctoralStudents . ?uri prop:doctoralStudents . ?uri rdf:type onto:Scientist}",Orange(huggingface) Is Nikolai Morozov the former coach of Stanislav Morozov?,"PREFIX res: PREFIX prop: ASK WHERE { res:Stanislav_Morozov prop:formercoach res:Ingo_Steuer }",Orange(huggingface) Name the movie written by Monty Python and has music composer as Geoffrey Burgon?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:writer . ?uri onto:musicComposer . ?uri rdf:type onto:Film}",Orange(huggingface) How many total religions are followed by people whose hometown is somewhere in India?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:hometown . ?x prop:religion ?uri . }",Orange(huggingface) Where did john o conner study?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:almaMater ?uri }",Orange(huggingface) Count the tenants of the stadiums designed by Populous?,"PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:architect . ?x onto:tenant ?uri . }",Orange(huggingface) Who is the stock holder of the bank where Peter Grauer works ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:occupation ?x . ?x prop:owner ?uri . ?x rdf:type onto:Bank}",Orange(huggingface) How many teams have used the stadiums which have been rented by the Canadian Hockey Association?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:tenant . ?x prop:tenants ?uri . }",Orange(huggingface) Was Gerald Gibbs the cinematographer of X the unknown?,"PREFIX res: PREFIX onto: ASK WHERE { onto:cinematography }",Orange(huggingface) "Who is the military general buried in St Mary's Church, Battersea?","PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:placeofburial . ?uri rdf:type onto:MilitaryPerson}",Orange(huggingface) List the music played in television episode which came after The Colonel (The Americans)?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:subsequentWork ?x . ?x prop:music ?uri . }",Orange(huggingface) In how many teams have people previously played who play as defencemen?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:position . ?x onto:formerTeam ?uri . ?uri rdf:type onto:SportsTeam}",Orange(huggingface) From where did Ben Wilson (American football) do his highscool?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:highschool ?uri }",Orange(huggingface) Name the office holder whose battle is Siege of Fort Recovery and belongs to the Indian territory branch?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:battle . ?uri prop:branch . ?uri rdf:type onto:OfficeHolder}",Orange(huggingface) In how many places can I find people who were the architects of the Dundas Castle?,"PREFIX res: PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { prop:architecture ?x . ?x prop:region ?uri . }",Orange(huggingface) Name the borough of the Bordesley railway station which is also the route end of the Birmingham and Oxford Junction Railway?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Bordesley_railway_station prop:borough ?uri. res:Birmingham_and_Oxford_Junction_Railway onto:routeEnd ?uri}",Orange(huggingface) How many ships belong to states which has Unitary as government type?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:governmentType . ?uri onto:country ?x . ?uri rdf:type onto:Ship}",Orange(huggingface) What Orson Welles directed movie has photography director as Gregg Toland ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:cinematography . ?uri prop:director . ?uri rdf:type onto:Film}",Orange(huggingface) Did Paul Weatherwax an editor of Behave Yourself?,"PREFIX res: PREFIX prop: ASK WHERE { prop:editing }",Orange(huggingface) Which city's teams have been coached by Gary Kubaik?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:coach . ?x onto:locationCity ?uri . ?x rdf:type onto:SportsTeam}",Orange(huggingface) What nation is the motherland of Ricardo Alfonso Cerna where Apostolic Vicariate of El Petn is located?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Ricardo_Alfonso_Cerna prop:birthPlace ?uri. res:Apostolic_Vicariate_of_El_Petén onto:country ?uri . }",Orange(huggingface) List the mammals whose taxonomy is Diprotodontia and phylum is Chordate?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:order . ?uri onto:phylum . ?uri rdf:type onto:Mammal}",Orange(huggingface) "List all the hubs of the airline whose one of the hub is Subang, Indonesia ?","PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:hubs . ?x prop:hubs ?uri . ?x rdf:type onto:Airline}",Orange(huggingface) Which venue of Indy PopCon is also the death palce of Louis LeCocq?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Indy_PopCon prop:venue ?uri. res:Louis_LeCocq prop:placeOfDeath ?uri}",Orange(huggingface) Who is the owner of Chelsea F.C. ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:owner ?uri }",Orange(huggingface) Who represent the constituencies of Noe Valley and Duboce Triangle ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?uri prop:constituency . ?uri prop:constituency . }",Orange(huggingface) On how many subjects has Random house publishers published books?,"PREFIX res: PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:publisher . ?x prop:subject ?uri . }",Orange(huggingface) Which companies have launched a rocket from Cape Canaveral Air Force station?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:launchSite . ?x onto:manufacturer ?uri . ?x rdf:type onto:Rocket}",Orange(huggingface) Colin Powell was the commander of which military conflict ?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:commander . ?uri rdf:type onto:MilitaryConflict}",Orange(huggingface) List the software using C++ as programming language and licence is Software as a service?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:programmingLanguage . ?uri onto:license . ?uri rdf:type onto:Software}",Orange(huggingface) How many titles were given to people who engaged in the Operation Dragoon?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:battles . ?x onto:award ?uri . }",Orange(huggingface) "Name a military unit whose command structure is United States Department of the Navy and garrison is Arlington County, Virginia?","PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:commandStructure . ?uri onto:garrison . ?uri rdf:type onto:MilitaryUnit}",Orange(huggingface) What is the official residence of Fergus McMaster?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Fergus_McMaster onto:residence ?uri }",Orange(huggingface) What are the musicals whose musicians worked under Sony Music Entertainment?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:label . ?uri prop:music ?x . ?uri rdf:type onto:Musical}",Orange(huggingface) "How many people live in Wilton, Connecticut?","PREFIX res: PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:residence . }",Orange(huggingface) "How many major shrine are there, of the saints whose beatified by Pope Pius XI?","PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:beatifiedBy . ?x onto:majorShrine ?uri . }",Orange(huggingface) What were robert sarvis and Jack Ryan nominated for ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:nominee ?uri }",Orange(huggingface) Which scientist is known for writing Philosophi Naturalis Principia Mathematica?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:knownFor res:Philosophiæ_Naturalis_Principia_Mathematica }",Orange(huggingface) What is the outflow of Lake Uniamsi and the inflow of Cahora Bassa?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Lake_Uniamési prop:outflow ?uri. res:Cahora_Bassa prop:inflow ?uri}",Orange(huggingface) How many states are in the Mediterranean Basketball Association?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { onto:country ?uri . ?uri rdf:type onto:Place}",Orange(huggingface) Name the appliance produced by Foxconn and its OS is provided by PlayStation 3 system software?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:manufacturer . ?uri prop:os . ?uri rdf:type onto:InformationAppliance}",Orange(huggingface) was the first national bank and trust building architectured by Chicago?,"PREFIX res: PREFIX onto: ASK WHERE { onto:architecturalStyle }",Orange(huggingface) How many teams have LA kings players in them currently?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:formerTeam . ?x onto:team ?uri . ?uri rdf:type onto:SportsTeam}",Orange(huggingface) List the producer of the TV shows whose company is HBO.,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:company . ?x onto:producer ?uri . ?x rdf:type onto:TelevisionShow}",Orange(huggingface) Name the software which has been developed by John Fanning?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:developer . ?uri rdf:type onto:Software}",Orange(huggingface) Which college of Luke List (golfer) is the alma mater of K. Terry Dornbush?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:college ?uri. prop:almaMater ?uri}",Orange(huggingface) Did Trish Stratus train Christina Crawford?,"PREFIX res: PREFIX prop: ASK WHERE { prop:trainer }",Orange(huggingface) What show has judge as Randy Jackson sculptors as Simon Fuller?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:judges . ?uri prop:creator . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) What is the place of death of the royalties one of whose parents was Adam Ludwik Czartoryski?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:parent . ?x prop:deathPlace ?uri . ?x rdf:type onto:Royalty}",Orange(huggingface) Which producer of Boeing F/A-18E/F Super Hornet has a key person Dennis Muilenburg?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:keyPeople . ?uri prop:products . }",Orange(huggingface) "Mazhar Ul Haq High School, Beerwah is affiliated to Islamic Religion","PREFIX res: PREFIX prop: ASK WHERE { prop:religiousAffiliation }",Orange(huggingface) Which TV show's composer is Judy Hart Angelo and executive producer as Glen and Les Charles?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:composer . ?uri onto:executiveProducer . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) Who was the president under which people won the United States House of Representatives elections in 1790?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:leader ?x . ?x prop:president ?uri . ?x rdf:type onto:Person}",Orange(huggingface) Count the number of artist whose pone of the field is writing ?,"PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:field . ?x onto:field ?uri }",Orange(huggingface) Name the parent company of Ford Falcon Cobra?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Ford_Falcon_Cobra onto:parentCompany ?uri }",Orange(huggingface) Count the number of sports played by schools which play hockey ?,"PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:sport . ?x onto:sport ?uri }",Orange(huggingface) Who starred in Nothing in Common and produced From the Earth to the Moon?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:executiveProducer ?uri. prop:starring ?uri . }",Orange(huggingface) What are the different religions followed by presidents whose prime minister was Surayud Chulanont?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:primeminister . ?x onto:religion ?uri . ?x rdf:type onto:President}",Orange(huggingface) Whose military unit is 39th infantry regiment in 1812?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:militaryUnit . }",Orange(huggingface) List the name of the soccer clubs whose chairman is Joan Laporta.,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:chairman . ?x prop:name ?uri . ?x rdf:type onto:SoccerClub}",Orange(huggingface) What was founded by Congress of Industrial Organizations?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Congress_of_Industrial_Organizations prop:founded ?uri }",Orange(huggingface) Which TV show's producer is Stephen E. Ambrose and company is DreamWorks Television?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:producer . ?uri prop:writer . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) Which rivers start in a country whose leader is Irene Mambilima?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:leaderName . ?uri onto:sourceCountry ?x . ?uri rdf:type onto:River}",Orange(huggingface) Where was Picasso's Last Words recorded?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:recorded ?uri }",Orange(huggingface) "What state was Cyrus Mann born in, and has the famous Downriver?","PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Downriver onto:state ?uri. res:Cyrus_Mann prop:birthPlace ?uri . }",Orange(huggingface) List the former partner of the figure skaters whose former choreographer was Igor Shpillband.,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:formerChoreographer . ?x onto:formerPartner ?uri . ?x rdf:type onto:FigureSkater}",Orange(huggingface) Which country has leaders Karu Jayasuriya and Ranil Wickremesinghe?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:leader . ?uri onto:leader . ?uri rdf:type onto:Country}",Orange(huggingface) "Which river goes through cohoes, NY","PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:river ?uri }",Orange(huggingface) "Which school teams are there in schools of Arlington Heights, Illinois?","PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:city . ?x prop:teamName ?uri . ?x rdf:type onto:School}",Orange(huggingface) "Which band made the song Take me There, and has collaborated with Blayse in the past?","PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:musicalBand ?uri. onto:associatedBand ?uri}",Orange(huggingface) What are the political parties whose leaders have lived in the Prime Minister's House?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:residence . ?uri onto:leader ?x . ?uri rdf:type onto:PoliticalParty}",Orange(huggingface) List the doctoral students of Harry Harlow?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Harry_Harlow prop:doctoralStudents ?uri }",Orange(huggingface) What is the place of death of the gymnast who was the silver medalist at the 1956 Summer Olympics Men's rings ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:silverMedalist ?x . ?x prop:placeOfDeath ?uri . }",Orange(huggingface) In which city is Arsenal Cider House located?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Arsenal_Cider_House prop:locationCity ?uri }",Orange(huggingface) Give me the number of home stadiums of teams managed by John Spencer.,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:manager . ?x onto:homeStadium ?uri . }",Orange(huggingface) What is the alma mater of the scientist whose PhD advisor is Jean-Claude Latombe ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:doctoralAdvisor . ?x prop:almaMater ?uri . ?x rdf:type onto:Scientist}",Orange(huggingface) Name the movie in which Vangelis gave the music and Jordan was the cinematographer?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:music . ?uri onto:cinematography . ?uri rdf:type onto:Film}",Orange(huggingface) Who were the first drivers in Grand Prixes where the first team was Scuderia Ferrari?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:firstTeam . ?x onto:firstDriver ?uri . ?x rdf:type onto:GrandPrix}",Orange(huggingface) List the notable work of David Isaacs?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:notableWork ?uri }",Orange(huggingface) What is the purpose of some Maharashtran organizations?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:headquarter . ?x prop:purpose ?uri . ?x rdf:type onto:Organisation}",Orange(huggingface) Where is the headquarters of the public transit system which owns the American Boulevard (Metro Transit station) located ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:owningOrganisation ?x . ?x prop:headquarters ?uri . ?x rdf:type onto:PublicTransitSystem}",Orange(huggingface) What genres of games are available on the Commodore 64?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:computingPlatform . ?x prop:genre ?uri . ?x rdf:type onto:VideoGame}",Orange(huggingface) "Where did they debut their careers, those who have played for US men's national soccer team?","PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:nationalteam . ?x prop:debutteam ?uri . }",Orange(huggingface) Which magazine's editor is married to Crystal Harris?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:spouse . ?uri prop:editor ?x . ?uri rdf:type onto:Magazine}",Orange(huggingface) From which party is the politician who was selected in Barasat constituency?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:writer ?uri. prop:author ?uri . }",Orange(huggingface) What show had NTSC format and theme music composed byRon Grainer?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:format . ?uri prop:themeMusicComposer . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) Which broadcast area of Mauritius Broadcasting Corporation is also the nationality of Michael Medor?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Mauritius_Broadcasting_Corporation prop:broadcastArea ?uri. res:Michael_Medor onto:nationality ?uri}",Orange(huggingface) Name the office holder who has a child named Lori Black and resting place is Alta Mesa Memorial Park?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:child . ?uri prop:restingPlace . ?uri rdf:type onto:OfficeHolder}",Orange(huggingface) What team did J P Paris was former team of Bert McCaffrey play for?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:J._P._Parisé prop:playedFor ?uri. res:Bert_McCaffrey onto:formerTeam ?uri . }",Orange(huggingface) "The successor of Ulrich II, Count of East Frisia was born in what place?","PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:successor ?x . ?x prop:placeOfBirth ?uri . }",Orange(huggingface) What countries used Solidus as currency?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:currency . ?uri rdf:type onto:Country}",Orange(huggingface) What company's leader is Edwin Catmull?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:keyPeople . ?uri rdf:type onto:Company}",Orange(huggingface) Which technological products were manufactured by Foxconn?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:manufacturer . ?uri rdf:type onto:InformationAppliance}",Orange(huggingface) What is the river whose tributary is Zarqa River?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:leftTributary . ?uri rdf:type onto:River}",Orange(huggingface) In how many regions is the Baco Noir made?,"PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { onto:wineRegion ?uri . }",Orange(huggingface) How many cars can I find related to the cars which have a V8 engine?,"PREFIX res: PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:engine . ?x prop:related ?uri . }",Orange(huggingface) How many bands are signed up with labels which were founded in Japan?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:foundation . ?uri prop:label ?x . ?uri rdf:type onto:Band}",Orange(huggingface) Who is the manager of the club whose homeground is the riverside stadium?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:ground . ?uri onto:managerClub ?x . ?uri rdf:type onto:SportsManager}",Orange(huggingface) Who are some people whose religion is headquartered in Gold Base?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:headquarters res:Gold_Base . ?uri onto:religion ?x . }",Orange(huggingface) How many athletic associations are there in all of the private universities?,"PREFIX res: PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:type . ?x prop:athletics ?uri . }",Orange(huggingface) Who is the film star of On Air with Ryan Seacrest?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:On_Air_with_Ryan_Seacrest onto:starring ?uri }",Orange(huggingface) What is the largest city in the country where the San Marcos River originates?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:sourceMountain ?x . ?x onto:largestCity ?uri . ?x rdf:type onto:Country}",Orange(huggingface) "Who has these major shrines: Emmitsburg, Maryland and Shrine of St. Elizabeth Ann Bayley Seton?","PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:majorShrine . ?uri onto:majorShrine . }",Orange(huggingface) Name the constituency of Jonas Gahr Stre?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Jonas_Gahr_Støre prop:constituency ?uri }",Orange(huggingface) What politician's partner is Diana Taylor?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:partner . ?uri rdf:type onto:Politician}",Orange(huggingface) Name some TV shows whose theme is made by a band associated with Buckethead?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:associatedBand . ?uri prop:themeMusicComposer ?x . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) "What genre isPyChess from, which employes Craig Van Tilbury?","PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Craig_Van_Tilbury onto:occupation ?uri. res:Islamic_Azad_University_Central_Tehran_Branch onto:sport ?uri}",Orange(huggingface) Give me some TV stations whose network's main language is American English?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:language . ?uri prop:network ?x . ?uri rdf:type onto:TelevisionStation}",Orange(huggingface) Which city was founded by George Washington and John Forbes (British Army officer)?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:founder . ?uri onto:founder . ?uri rdf:type onto:City}",Orange(huggingface) Count the number of other product of the banks whose one of the product is Wealth management ?,"PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:product . ?x onto:product ?uri }",Orange(huggingface) When was Dick Redding born?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Dick_Redding prop:birthDate ?uri }",Orange(huggingface) What is the settlement whose neighboring municipalities is Lancy and mayor name is Esther Alder?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:neighboringMunicipalities . ?uri onto:mayor . ?uri rdf:type onto:Settlement}",Orange(huggingface) Who gave the voice to the characters sculpted by Clamp?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:creator . ?x onto:voice ?uri . ?x rdf:type onto:FictionalCharacter}",Orange(huggingface) Muhammad Yunus has won how many awards?,"PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { onto:award ?uri . }",Orange(huggingface) How many players are in the San Francisco Giants?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:team . ?uri rdf:type onto:Athlete}",Orange(huggingface) Where did the film director of Kala Pani die?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:director ?x . ?x onto:deathPlace ?uri . }",Orange(huggingface) From which team did Marv McFadden played?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Marv_McFadden prop:pastteams ?uri }",Orange(huggingface) How many information appliance are manufactured by companies located in Taiwan?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:locationCity . ?uri onto:manufacturer ?x . ?uri rdf:type onto:InformationAppliance}",Orange(huggingface) Which company offer service of Outlook and OneDrive?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri prop:services . ?uri prop:services . ?uri rdf:type onto:Company}",Orange(huggingface) Name the person whose relation is Dee Dee Warwick?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:relation . ?uri rdf:type onto:Person}",Orange(huggingface) In how many districts there are stations with borough called tendring?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:borough . ?x onto:district ?uri . }",Orange(huggingface) How many causes of death have been associated with American citizens?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:citizenship . ?x onto:deathCause ?uri . }",Orange(huggingface) What are some TV shows similar to the one produced by Susie Liggat?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:producer . ?uri onto:related ?x . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) Trevor Peacock has narrated in which movie?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:narrator . ?uri rdf:type onto:Film}",Orange(huggingface) Which office holder's predecessor is Lucius Cornelius and his associate is Marcus Calpurnius Bibulus?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:predecessor . ?uri onto:associate . ?uri rdf:type onto:OfficeHolder}",Orange(huggingface) List the launch site of the rockets whose one of the launch site has been Cape Canaveral Air Force Station Launch Complex 26 ?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:launchSite . ?x onto:launchSite ?uri . ?x rdf:type onto:Rocket}",Orange(huggingface) Name the office holder with predecessor as Samuel W. McCall and office in Massachusetts House of Representatives?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:predecessor . ?uri prop:office . ?uri rdf:type onto:OfficeHolder}",Orange(huggingface) Does Chicago own the Monroe Station?,"PREFIX res: PREFIX prop: ASK WHERE { prop:owned }",Orange(huggingface) "The people who did their high school in Palm City, Florida did their college where?","PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:highschool . ?x onto:college ?uri . ?x rdf:type onto:Person}",Orange(huggingface) Rostock and Oulu is the shore cities on which sea ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri prop:cities . ?uri prop:cities . ?uri rdf:type onto:Sea}",Orange(huggingface) What are some non fiction subjects dealt with in fantasy novels?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:literaryGenre . ?x onto:nonFictionSubject ?uri . ?x rdf:type onto:Book}",Orange(huggingface) What are some shows whose voice actors play the piano?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:instrument . ?uri prop:voices ?x . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) Which movie produced by Michael Deeley was distributed by Warner Bros?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:distributor . ?uri prop:producer . ?uri rdf:type onto:Film}",Orange(huggingface) List the websites which the authors of Tornado own ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:author ?x . ?x onto:owner ?uri . }",Orange(huggingface) Which branch of american military have both George Siebels jr and Leroy Collins served?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:branch ?uri. prop:branch ?uri . ?uri rdf:type onto:MilitaryUnit}",Orange(huggingface) Give me a count of movies whose film editor is Anthony Harvey?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:editing . ?uri rdf:type onto:Film}",Orange(huggingface) In which city can I find both the office of Elasticsearch and the Yellow Claw DJ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:location ?uri. prop:location ?uri . }",Orange(huggingface) Name the office holder with associate as Marcus Calpurnius Bibulus and has a kid named Augustus?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:associate . ?uri onto:child . ?uri rdf:type onto:OfficeHolder}",Orange(huggingface) Which builder of Edwin Andrews Air Base is also place of birth of the Akinoumi Setsuo ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Edwin_Andrews_Air_Base onto:builder ?uri. res:Akinoumi_Setsuo prop:placeOfBirth ?uri}",Orange(huggingface) "What is the state of the administrative region where Oscoda, Michigan is located?","PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:isPartOf ?x . ?x onto:state ?uri . ?x rdf:type onto:AdministrativeRegion}",Orange(huggingface) What are the houses of Parliament Security Services?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Parliament_Security_Services prop:houses ?uri }",Orange(huggingface) Horses grandsired by Sundridge have won which awards?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:grandsire . ?x onto:honours ?uri . ?x rdf:type onto:Horse}",Orange(huggingface) Was John Muir the first one to ascend one of the peaks in the cathedral peak?,"PREFIX res: PREFIX onto: ASK WHERE { onto:firstAscentPerson }",Orange(huggingface) "Name the university whose affiliations's foundation is in Washington, D.C.?","PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:foundation . ?uri prop:affiliations ?x . ?uri rdf:type onto:University}",Orange(huggingface) Miguel de Cervantes wrote the musical extended from which book?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:author . ?x onto:basedOn ?uri . ?x rdf:type onto:Musical}",Orange(huggingface) Who has composed songs produced by Terry Melcher?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:producer . ?x onto:composer ?uri . ?x rdf:type onto:Song}",Orange(huggingface) "Name the office holder whose constituency is Noe Valley, San Francisco and belongs to military unit USS Kittiwake (ASR-13)?","PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:constituency . ?uri onto:militaryUnit . ?uri rdf:type onto:OfficeHolder}",Orange(huggingface) "Which is county seat of the King County, Washington and PLACE OF DEATH of the Phil Lumpkin ?","PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:countySeat ?uri. prop:placeOfDeath ?uri}",Orange(huggingface) "To how many places does the airlines fly, whose head office is located at the Gatwick Airport?","PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:headquarter . ?x prop:destinations ?uri . ?uri rdf:type onto:Place}",Orange(huggingface) List the newspapers which has headquarters in Stockholm?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:headquarters . ?uri rdf:type onto:Newspaper}",Orange(huggingface) With what company is the service OneDrive associated?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:services . ?uri rdf:type onto:Company}",Orange(huggingface) What is the religion of the governors whose office is the Bank of Thailand?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:office . ?x onto:religion ?uri . ?x rdf:type onto:Governor}",Orange(huggingface) What is the political party to which Purnima Banerjee is a member of??,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Robert_Nutting onto:knownFor ?uri }",Orange(huggingface) Give me a count of all ice hockey players whose teams are headcoached by John Tortorella?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:headCoach . ?uri onto:team ?x . ?uri rdf:type onto:IceHockeyPlayer}",Orange(huggingface) Where is Denver Broncos located?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Denver_Broncos onto:locationCity ?uri }",Orange(huggingface) How many home stadiums are there of the seasons whose chairman in Merritt Paulson?,"PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:chairman . ?x onto:homeStadium ?uri . }",Orange(huggingface) List the developers who has contributed to both GNOWSYS and GNU TeXmacs?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:GNOWSYS onto:developer ?uri. res:GNU_TeXmacs onto:developer ?uri . }",Orange(huggingface) Artists trained at art students league NY are buried where?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:training . ?x onto:restingPlace ?uri . ?x rdf:type onto:Artist}",Orange(huggingface) How many things are written in C++?,"PREFIX res: PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:programmingLanguage . }",Orange(huggingface) Name the common associate band of Blayse and Teddy Riley?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Blayse onto:associatedBand ?uri. res:Teddy_Riley onto:associatedBand ?uri . }",Orange(huggingface) What is the Location of the Peetz Table Wind Energy Center which is also the state of Ben Nighthorse Campbell?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Peetz_Table_Wind_Energy_Center prop:location ?uri. res:Ben_Nighthorse_Campbell prop:state ?uri}",Orange(huggingface) Which educational institution of Jack Mcgregor is also the alma mater of Donn barber?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Jack_McGregor onto:education ?uri. res:Donn_Barber onto:education ?uri . }",Orange(huggingface) List the major shrines of the saints whose one of the shrine is St. Takla Haymanot's Church?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:majorShrine . ?x onto:majorShrine ?uri . ?x rdf:type onto:Saint}",Orange(huggingface) How many non-fiction subjects are there of the books whose one of the non-fiction subject is Ankh-Morpork City Watch ?,"PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:nonFictionSubject . ?x onto:nonFictionSubject ?uri }",Orange(huggingface) Which astronauts went on the Gemini 8 mission?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:mission . ?uri rdf:type onto:Astronaut}",Orange(huggingface) What are the notable works of the person who produced Queer as Folk?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:producer ?x . ?x prop:notableworks ?uri . ?x rdf:type onto:Person}",Orange(huggingface) Who was the writer of the novel Maniac Magee?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:notableworks . ?uri rdf:type onto:Writer}",Orange(huggingface) "Who is the narrator of The Incredible Hulk , 1982 TV series ?","PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:narrated ?uri }",Orange(huggingface) What are the non-fiction topics in the books whose authors is Terry Pratchett?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:author . ?x onto:nonFictionSubject ?uri . ?x rdf:type onto:Book}",Orange(huggingface) What is the county of the road whose route end is Pahang ?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:routeEnd . ?x onto:county ?uri . ?x rdf:type onto:Road}",Orange(huggingface) What is the layout of the automobiles whose designer company is Olivier Boulay?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:designCompany . ?x onto:layout ?uri . ?x rdf:type onto:Automobile}",Orange(huggingface) Which river flows through both eastern and central washington?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Eastern_Washington onto:river ?uri. res:Central_Washington onto:river ?uri . }",Orange(huggingface) Name a office holder whose predecessor is Edward Douglass White and has son named Charles Phelps Taft II?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:predecessor . ?uri onto:child . ?uri rdf:type onto:OfficeHolder}",Orange(huggingface) What are the television shows whose network is BBC HD?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:network . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) Name the ground of Al-Rayan SC?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:ground ?uri }",Orange(huggingface) Name the university of Alexandre Tichonov?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Alexandre_Tichonov prop:university ?uri }",Orange(huggingface) Count the number of tenants whose one of the tenant is Toronto Phantoms ?,"PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:tenant . ?x onto:tenant ?uri }",Orange(huggingface) How many other genre are there of the radio stations whose one of the genre is Classic rock?,"PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:programmeFormat . ?x onto:programmeFormat ?uri }",Orange(huggingface) Name the licensee of the TV station whose one of the licensee is Incorporation ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:licensee . ?x prop:licensee ?uri . ?x rdf:type onto:TelevisionStation}",Orange(huggingface) What is the river whose source is Lake Ontario?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:source . ?uri rdf:type onto:River}",Orange(huggingface) How many record labels publish works of Jazz fusion?,"PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:genre . ?x onto:recordLabel ?uri . }",Orange(huggingface) Giuseppe Bertello and Pietro Parolin are leaders of which place ?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:leader . ?uri onto:leader . ?uri rdf:type onto:Place}",Orange(huggingface) Which fictional character's relatives were made by Ted Osborne?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:creator . ?uri prop:relatives ?x . ?uri rdf:type onto:FictionalCharacter}",Orange(huggingface) Name the broadcast area of ITV (Thailand) ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:broadcastArea ?uri }",Orange(huggingface) How many cars succeeded the cars which were similar to Cadillac Fleetwood?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { prop:related ?x . ?x onto:predecessor ?uri . ?x rdf:type onto:Automobile}",Orange(huggingface) The successor of Ellsworth Bunker belongs to which region?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Ellsworth_Bunker onto:successor ?x . ?x onto:region ?uri . }",Orange(huggingface) What subjects does the subsequent work of The Dragons of Eden deals with?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:The_Dragons_of_Eden onto:subsequentWork ?x . ?x prop:subject ?uri . }",Orange(huggingface) Who wrote a streetcar named desire?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:writer ?uri }",Orange(huggingface) What currencies are prevalent in the countries governed by the President of France?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:leaderTitle . ?x onto:currency ?uri . ?x rdf:type onto:Country}",Orange(huggingface) Peanuts Motion Comics and The Peanuts Movie are the voice of whom?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:voice res:Peanuts_Motion_Comics . ?uri onto:voice res:The_Peanuts_Movie . }",Orange(huggingface) Give me a list of computers whose CPU is in the US.,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:locationCity . ?uri onto:cpu ?x . ?uri rdf:type onto:InformationAppliance}",Orange(huggingface) What are the school mascots in Blytheville school district?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:district . ?x prop:mascot ?uri . ?x rdf:type onto:School}",Orange(huggingface) What is the official residence of the senator who is the deputy of Everett Dirksen?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:deputy ?x . ?x onto:residence ?uri . ?x rdf:type onto:Senator}",Orange(huggingface) Which manufacturer of Ford Y-block engine is the parent of Ford Air Transport Service ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:manufacturer ?uri. prop:parent ?uri}",Orange(huggingface) Name the home town of Cline Buckens ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Céline_Buckens onto:hometown ?uri }",Orange(huggingface) Which office's people have died on the US Route 165?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:deathPlace . ?x prop:office ?uri . ?x rdf:type onto:Person}",Orange(huggingface) Which show's theme music was composed by Primus and voiced by Isaac Hayes?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:distributor . ?uri prop:voices . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) Which hockey teams have had people playing as Defenceman?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:position . ?x prop:playedFor ?uri . ?x rdf:type onto:IceHockeyPlayer}",Orange(huggingface) Count all the universities who participated in the tournament won by Alabama Crimson Tides in 2015 ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:champion . ?uri prop:athletics ?x . ?uri rdf:type onto:University}",Orange(huggingface) Who is the fictional character who portrayed in Terminator 2: Judgment Day?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:portrayer . ?uri rdf:type onto:FictionalCharacter}",Orange(huggingface) "To which party does the politician belong, who was born in Nandurbar?","PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:placeOfBirth . ?x onto:party ?uri . ?x rdf:type onto:Politician}",Orange(huggingface) List the main ingredient of Pizza-ghetti ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:mainIngredient ?uri }",Orange(huggingface) How many organizations work for Environmentalism?,"PREFIX res: PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:purpose . }",Orange(huggingface) Foxy Brown was associated with which band?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:associatedBand }",Orange(huggingface) Who has produced movies that have a James Horner score?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:music . ?x prop:producer ?uri . ?x rdf:type onto:Film}",Orange(huggingface) Who is the developer of Dart (programming language) ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:developer ?uri }",Orange(huggingface) Name the part of Liverpool city region ,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Liverpool_City_Region onto:part ?uri }",Orange(huggingface) How many awards have been given to the ones who died of lung cancer?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:deathCause . ?x onto:award ?uri . ?uri rdf:type onto:Award}",Orange(huggingface) List the profession of senate whose one of the profession is United States Coast Guard ?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:profession . ?x onto:profession ?uri . ?x rdf:type onto:Politician}",Orange(huggingface) Which company was founded by Fusajiro Yamauchi?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:foundedBy . ?uri rdf:type onto:Company}",Orange(huggingface) What are the software whose programming language is Multilingual?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:language . ?uri prop:programmingLanguage ?x . ?uri rdf:type onto:Software}",Orange(huggingface) Which railway line goes through the stations which are a part of the North Caucasus railway?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:type . ?x onto:servingRailwayLine ?uri . ?x rdf:type onto:Station}",Orange(huggingface) Count the different origins of members of the Vitis Vinifera species.,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:species . ?x onto:origin ?uri . ?uri rdf:type onto:Place}",Orange(huggingface) Name the battle fought by the military persons who also fought in Algeria ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:battles . ?x prop:battles ?uri . ?x rdf:type onto:MilitaryPerson}",Orange(huggingface) By which member of parliament was Provisional Government of Saskatchewan led?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:order . ?uri rdf:type onto:MemberOfParliament}",Orange(huggingface) How many areas are led by Willem Alexander?,"PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:leader . }",Orange(huggingface) How many things are produced by companies located in Tehran?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:location . ?x onto:product ?uri . }",Orange(huggingface) Greater Napanee is the home town of what people?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:hometown . ?uri rdf:type onto:Person}",Orange(huggingface) Which appointer of William Clark is the successor of Levi Lincoln Sr ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:successor ?uri. prop:appointer ?uri}",Orange(huggingface) Name the company with product named Microsft Azure and provides OneDrive as a service ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:product . ?uri prop:services . ?uri rdf:type onto:Company}",Orange(huggingface) "How many people live in the Beverly Hills, California?","PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:residence . ?uri rdf:type onto:Person}",Orange(huggingface) List the architect of the buildings whose one of the architect is Philip Webb?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:architect . ?x prop:architect ?uri . ?x rdf:type onto:Building}",Orange(huggingface) How many companies have launched their rockets from the Vandenerg Air base?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:launchSite . ?x onto:manufacturer ?uri . ?uri rdf:type onto:Company}",Orange(huggingface) Which show's network is Prime time Entertainment and has Douglas Netter as executive producer ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:network . ?uri onto:executiveProducer . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) Where did the beverage sold by Refriango originate?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:manufacturer . ?x prop:origin ?uri . ?x rdf:type onto:Beverage}",Orange(huggingface) Who built the stadium which was rented by Costa Rica national football team?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:tenants . ?x onto:builder ?uri . ?x rdf:type onto:Stadium}",Orange(huggingface) What units are garrisoned in the Pentagon?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:garrison . ?uri rdf:type onto:MilitaryUnit}",Orange(huggingface) Is Ian Thorpe the bronze medalist of Swimming at the 2004 Summer Olympics Men's 100 metre freestyle?,"PREFIX res: PREFIX onto: ASK WHERE { onto:bronzeMedalist }",Orange(huggingface) What is the result of the GazaIsrael conflict is also the place of the Qaqun?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Gaza–Israel_conflict prop:result ?uri. res:Qaqun prop:place ?uri}",Orange(huggingface) Which baseball team is managed by Bruce Bochy?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:manager . ?uri rdf:type onto:BaseballTeam}",Orange(huggingface) "Whose children died in North Bend, Ohio?","PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:deathPlace . ?uri onto:child ?x . }",Orange(huggingface) Malaysian highway authority has designed bridges over what things?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:designer . ?x prop:crosses ?uri . ?x rdf:type onto:Bridge}",Orange(huggingface) Which band was left by Kevin Jonas?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:formerBandMember . ?uri rdf:type onto:Band}",Orange(huggingface) Count the total number of software whose programming language is C++ and operating system is Microsoft Windows?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:programmingLanguage . ?uri onto:operatingSystem }",Orange(huggingface) What is the homeport of INS Viraat (R22) ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:homeport ?uri }",Orange(huggingface) Give me everything owned by networks which is lead by Steve Burke?,"PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:keyPerson . ?uri onto:network ?x . }",Orange(huggingface) Which newspapers are owned by Oslo citizens?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:location . ?uri prop:owners ?x . ?uri rdf:type onto:Newspaper}",Orange(huggingface) For which common president did Jim Sasser and Mike McCurry work?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:president ?uri. onto:president ?uri . }",Orange(huggingface) Which office holder's constituency is Haight-Ashbury and has military unit as USS Kittiwake ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:constituency . ?uri onto:militaryUnit . ?uri rdf:type onto:OfficeHolder}",Orange(huggingface) List down the commanders of Battle of Fort stephenson?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Battle_of_Fort_Stephenson onto:commander ?uri }",Orange(huggingface) Count all those whose youth club was managed by Luis Enrique.,"PREFIX res: PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:manager . ?uri prop:youthclubs ?x . }",Orange(huggingface) How many party leaders are there whose parties are headquartered in Berlin?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:headquarter . ?x onto:leader ?uri . ?uri rdf:type onto:Politician}",Orange(huggingface) Who is the common distributer of Bombay Sapphire and Rev ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:distributor ?uri. onto:distributor ?uri}",Orange(huggingface) Give me the total number of lines owned by owner of Metro-Noth Railroad ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:owner . ?x prop:owner ?uri }",Orange(huggingface) Which New Mexico company provides One Drive as a service ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:foundation . ?uri prop:services . ?uri rdf:type onto:Company}",Orange(huggingface) Which are the previous broadcast networks of sister channels of WGBC?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:sisterStations ?x . ?x onto:formerBroadcastNetwork ?uri . }",Orange(huggingface) In which areas can I find wine made of Vitis vinifera grapes?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:species . ?x onto:wineRegion ?uri . ?x rdf:type onto:Grape}",Orange(huggingface) Count the different religions practiced by people who are in the Malaysian and Chinese association.,"PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:party . ?x onto:religion ?uri . }",Orange(huggingface) Is Brazilian jiu-jitsu the trainer of Nick Diaz?,"PREFIX res: PREFIX onto: ASK WHERE { onto:trainer }",Orange(huggingface) President of Ghana is the leader title of which country?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:leaderTitle . ?uri rdf:type onto:Country}",Orange(huggingface) What is the venue of San Diego Comic-Con International ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:venue ?uri }",Orange(huggingface) Who edited Easy street ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:editing ?uri }",Orange(huggingface) How many people are buried in the Mausoleum of Augustus?,"PREFIX res: PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:placeOfBurial . }",Orange(huggingface) Which major shrine of Tekle haymanot is the palce of death of Haile Selassie Gugsa?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Tekle_Haymanot onto:majorShrine ?uri. res:Haile_Selassie_Gugsa prop:placeOfDeath ?uri}",Orange(huggingface) Which distributer of Bombay Sapphire also makes Grewy goose ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:manufacturer ?uri. prop:distributor ?uri}",Orange(huggingface) Which district of Robert William Wilcox is the place of birth of Kamaloohua ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Robert_William_Wilcox prop:district ?uri. res:Kamaloohua prop:placeOfBirth ?uri}",Orange(huggingface) Who were in the youth clubs that were in season of 2015 Argentine Primera Division?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:season res:2015_Argentine_Primera_División . ?uri prop:youthclubs ?x . }",Orange(huggingface) How many subjects have been covered in fantasy novels?,"PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:literaryGenre . ?x onto:nonFictionSubject ?uri . }",Orange(huggingface) Which company has developed games whose music is done by Gerard Marino?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:composer . ?x onto:developer ?uri . ?x rdf:type onto:VideoGame}",Orange(huggingface) "Fairfield, Connecticut is hometown to which persons?","PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:hometown . ?uri rdf:type onto:Person}",Orange(huggingface) Was Yabanc Damat first aired in UAE?,"PREFIX res: PREFIX prop: ASK WHERE { res:Yabancı_Damat prop:firstAired res:United_Arab_Emirates }",Orange(huggingface) Where is the head quarters of the owner of Hamline Avenue?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:owner ?x . ?x prop:headquarters ?uri . }",Orange(huggingface) Where does the river end on whose border we find in Bjelasnica?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:border res:BjelaÅ¡nica . ?x onto:mouthCountry ?uri . }",Orange(huggingface) What are the movies whose editor is Robert Wise?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:editing . ?uri rdf:type onto:Film}",Orange(huggingface) Martin AN/GSG-5 is a part of the building in which city?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:part . ?x prop:district ?uri . ?x rdf:type onto:Building}",Orange(huggingface) Give me a count of companies located in Texas ?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:locationCity . ?uri rdf:type onto:Company}",Orange(huggingface) What are the countries for which History of Trier principal to?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:capital . ?uri rdf:type onto:Country}",Orange(huggingface) What are some seas inside europe ?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:location . ?uri rdf:type onto:Sea}",Orange(huggingface) Count the number of artists who trained at the San Francisco Art Institute?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:training . ?uri rdf:type onto:Artist}",Orange(huggingface) How many sports are played at the university whose president is Emanuel de Guzman?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:president . ?x onto:sport ?uri . ?uri rdf:type onto:Sport}",Orange(huggingface) Name the musician who gave the music in Tonight's the night and is also wedded to Alana Stewart ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:music ?uri. onto:spouse ?uri}",Orange(huggingface) List all the artist of the TV shows which has McClain as one of the artist ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:artist . ?x prop:artist ?uri . ?x rdf:type onto:TelevisionShow}",Orange(huggingface) How many producers have casted Michael Jackson?,"PREFIX res: PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:starring . ?x prop:producer ?uri . }",Orange(huggingface) Count everything garrisoned at the pentagon?,"PREFIX res: PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:garrison . }",Orange(huggingface) Who had Joe Purcell and Winston Bryant as lieutenants?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:lieutenant res:Joe_Purcell . ?uri onto:lieutenant res:Winston_Bryant . }",Orange(huggingface) Name the city served by Juhu Aerodrome?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Juhu_Aerodrome prop:cityServed ?uri }",Orange(huggingface) Wringer (novel) and Maniac Magee is the notable work of which author?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri prop:notableworks . ?uri prop:notableworks . ?uri rdf:type onto:Writer}",Orange(huggingface) List all binomial authorities of the insects whose one of the binomial authority is douard Mntries?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:binomialAuthority res:Édouard_Ménétries . ?x onto:binomialAuthority ?uri . }",Orange(huggingface) How many people have been presenters for NBC shows?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:channel . ?x prop:presenter ?uri . ?uri rdf:type onto:Person}",Orange(huggingface) What is the magazine which have been founded by Ralph J. Gleason?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:founder . ?uri rdf:type onto:Magazine}",Orange(huggingface) List TV shows with producer as Erik Bork and company is DreamWorks Television ?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:company . ?uri onto:producer . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) Mota Engil built bridges over which rivers?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:builder . ?x onto:crosses ?uri . ?x rdf:type onto:Bridge}",Orange(huggingface) Which show's theme music composer's label is MapleMusic Recordings?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:recordLabel . ?uri prop:themeMusicComposer ?x . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) Who is the office holder whose deputy was Andrew Peacock and predecessor was Alexander Downer?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:deputy . ?uri onto:predecessor . ?uri rdf:type onto:OfficeHolder}",Orange(huggingface) List bacterias whose order is Bacillales and division is Firmicutes?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:order . ?uri onto:division . ?uri rdf:type onto:Bacteria}",Orange(huggingface) Was Don't Bring Me Down recorded in West Germany?,"PREFIX res: PREFIX prop: ASK WHERE { prop:recorded }",Orange(huggingface) Who are some US colonels?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:rank . }",Orange(huggingface) Which companies are founded in the city of which Collin County Texas is a part?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:part . ?uri onto:foundationPlace ?x . ?uri rdf:type onto:Company}",Orange(huggingface) Name the driver who had a pole finish in 1989 Portuguese Grand Prix?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:1989_Portuguese_Grand_Prix onto:poleDriver ?uri }",Orange(huggingface) How many factions have fought in wars where Francois Marie Le Marchand de Lignery was involved?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { onto:battle ?x . ?x prop:combatant ?uri . ?x rdf:type onto:MilitaryConflict}",Orange(huggingface) What is the former team of the american football players whose position is Running back?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:position . ?x onto:formerTeam ?uri . ?x rdf:type onto:AmericanFootballPlayer}",Orange(huggingface) Which company developed both Dart and Go?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:developer ?uri. onto:developer ?uri . }",Orange(huggingface) Who is the author of Karakuri Dji Ultimo?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Karakuri_Dôji_Ultimo onto:author ?uri }",Orange(huggingface) Which college of the Luke List (golfer) is the alma mater of the Park Trammell ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:college ?uri. onto:almaMater ?uri}",Orange(huggingface) In which mountain Inyo National Forest and California are located?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:locatedInArea . ?uri onto:locatedInArea . ?uri rdf:type onto:Mountain}",Orange(huggingface) Is greasy pop records distributed by festival records?,"PREFIX res: PREFIX onto: ASK WHERE { res:Greasy_Pop_Records onto:distributingLabel res:Festival_Records }",Orange(huggingface) Who wrote the album coming right before Dead Man's Chest's OST?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:nextAlbum . ?x prop:writer ?uri . ?x rdf:type onto:Album}",Orange(huggingface) What are some scientists who have stateless citizenship?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:citizenship . ?uri rdf:type onto:Scientist}",Orange(huggingface) What is the military branch of John Tower?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:John_Tower onto:militaryBranch ?uri }",Orange(huggingface) "Give me a count of everything under the archipelago, where Papeete is the biggest town.","PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:largestCity . ?uri prop:archipelago ?x . }",Orange(huggingface) Give me the count of all the names of characters created by Frank Miller,"PREFIX res: PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:creators . ?x prop:characterName ?uri . }",Orange(huggingface) Players from how many teams have participated in the National Hockey League?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:league . ?x onto:team ?uri . ?uri rdf:type onto:SportsTeam}",Orange(huggingface) Was Zachary taylor a major general?,"PREFIX res: PREFIX prop: ASK WHERE { prop:rank }",Orange(huggingface) Who is the co-founder of the city where Owen Dougherty died?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:placeOfDeath ?x . ?x onto:founder ?uri . ?x rdf:type onto:City}",Orange(huggingface) Was andy worhol the director of the san diego surf?,"PREFIX res: PREFIX onto: ASK WHERE { onto:cinematography }",Orange(huggingface) Who were the opponents of the people buried in the tower of London?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:restingPlace . ?x onto:opponent ?uri . ?x rdf:type onto:Person}",Orange(huggingface) What is the parent company of company which owns Sony Bank?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:parent ?x . ?x onto:parentCompany ?uri . ?x rdf:type onto:Company}",Orange(huggingface) What is the base currency of Benelux?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Benelux prop:currency ?uri }",Orange(huggingface) Who owns a bridge in Boston?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:locatedInArea . ?x prop:owner ?uri . ?x rdf:type onto:Bridge}",Orange(huggingface) Give me the list of people who scaled mountains in Sierra Nevada?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:mountainRange . ?x onto:firstAscentPerson ?uri . }",Orange(huggingface) "Which educational institution has Kaplan, Inc as it's affiliation?","PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:affiliations . ?uri rdf:type onto:EducationalInstitution}",Orange(huggingface) How many bacterias are there whose division is Firmicutes?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:division . ?uri rdf:type onto:Bacteria}",Orange(huggingface) "Which awards did the creator of A Barrel of Laughs, a Vale of Tears won ?","PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:author ?x . ?x onto:award ?uri . ?x rdf:type onto:ComicsCreator}",Orange(huggingface) List the settlements area whose province is Metropolitan City of Venice?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:province . ?uri rdf:type onto:Settlement}",Orange(huggingface) "Count all those who've played for the youth club which owns the Rosario, Santa Fe stadium.","PREFIX res: PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:ground . ?uri prop:youthclubs ?x . }",Orange(huggingface) What is the mountain whose parent mountain peak is Nevado de Toluca?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:parentMountainPeak . ?uri rdf:type onto:Mountain}",Orange(huggingface) Name the kingdom with currency Solidus (coin) and administrative headquarters in Nicomedia?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:currency . ?uri onto:capital . }",Orange(huggingface) Which type of building is Qun Thnh Temple ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Quán_Thánh_Temple prop:buildingType ?uri }",Orange(huggingface) Who are the chancellors of universities which is affiliated with Plymouth University?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:affiliations . ?x prop:chancellor ?uri . ?x rdf:type onto:University}",Orange(huggingface) "Which ceremonial County of the East Tilbury is also the local authority of the Trinity School, Brentwood?","PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:ceremonialCounty ?uri. onto:localAuthority ?uri}",Orange(huggingface) Which mountain range is the one with Ponte d'Aveneyre and Le Gibloux?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:mountainRange ?uri. onto:mountainRange ?uri . }",Orange(huggingface) What sports are played by school which owns Fr. Agnel Stadium?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:owner ?x . ?x onto:sport ?uri . ?x rdf:type onto:School}",Orange(huggingface) Which office holder's resting place is William Henry Harrison Tomb State Memorial and has governor named Charles Willing Byrd?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:restingplace . ?uri onto:governor . ?uri rdf:type onto:OfficeHolder}",Orange(huggingface) How many developers have games where I can hear Lightning McQueen?,"PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { onto:voice ?x . ?x onto:developer ?uri . }",Orange(huggingface) Give me some organizations working for Environmentalism?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:purpose . ?uri rdf:type onto:Organisation}",Orange(huggingface) How many factions were involved in the battles fought by Arthur St. Clair?,"PREFIX res: PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { prop:battles ?x . ?x prop:combatant ?uri . }",Orange(huggingface) Sentinel High School team is known as?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Sentinel_High_School prop:teamName ?uri }",Orange(huggingface) In which races did the horses of Mon Capitaine take part?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:sire . ?x prop:race ?uri . ?x rdf:type onto:Horse}",Orange(huggingface) What band has Joe Hahn and Chester Bennington?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri prop:currentMembers . ?uri prop:currentMembers . ?uri rdf:type onto:Band}",Orange(huggingface) How many tenants are there in the Mercedes Benz Superdome?,"PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { onto:tenant ?uri . }",Orange(huggingface) "Which office holder's governor is Charles Willing Byrd and has final resting place in North Bend, Ohio?","PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:governor . ?uri prop:restingplace . ?uri rdf:type onto:OfficeHolder}",Orange(huggingface) What is the total number of other nearest countries to the lakes whose nearest countries is Uganda?,"PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:nearestCity . ?x onto:nearestCity ?uri }",Orange(huggingface) Who are the people whose phD advisor was Harry Harlow?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:doctoralAdvisor . ?uri rdf:type onto:Person}",Orange(huggingface) Name the river with mouth place Essex and source place as Gloucestershire ?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:mouthPlace . ?uri onto:sourcePlace . ?uri rdf:type onto:River}",Orange(huggingface) "List the people with final resting place as Plymouth, Vermont and has Samuel W. McCall as predecessor?","PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:restingPlace . ?uri prop:predecessor . ?uri rdf:type onto:Person}",Orange(huggingface) Name a river with source country as Zambia and source location as Ikelenge District?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:sourceCountry . ?uri prop:sourceLocation . ?uri rdf:type onto:River}",Orange(huggingface) "Which rivers have source origins asnorth western, Zambia ?","PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:sourceRegion . ?uri rdf:type onto:River}",Orange(huggingface) Name the team which is the owner of Dafenham wind turbines and stood first in 1967 mexican Grand Prix?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:1967_Mexican_Grand_Prix prop:firstTeam ?uri. res:Dagenham_wind_turbines prop:owner ?uri}",Orange(huggingface) Under which scientist did doctoral students erban ieica and Erich Bagge study?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri prop:doctoralStudents . ?uri prop:doctoralStudents . ?uri rdf:type onto:Scientist}",Orange(huggingface) "Name a show hosted by Brian Dunkleman and judged by Harry Connick, Jr.?","PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:presenter . ?uri prop:judges . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) "Which river starts from the county seat of Heathsville, Virginia?","PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:countySeat . ?uri prop:mouthLocation ?x . ?uri rdf:type onto:River}",Orange(huggingface) Which distributer of Glover is also the stockholder of Seattle Mariners ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:distributor ?uri. onto:owner ?uri}",Orange(huggingface) For which country did Alexander Lippisch design airplanes?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:designer . ?x prop:nationalOrigin ?uri . ?x rdf:type onto:Aircraft}",Orange(huggingface) Who directed The Haunted House ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:director ?uri }",Orange(huggingface) Which non fictional subject of Thud is the athletics of PATTS College of Aeronautics ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:nonFictionSubject ?uri. prop:athletics ?uri}",Orange(huggingface) Name the show formed by J. Michael Stroczynski and had network as TNT ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:developer . ?uri prop:network . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) Name the tv series produced by Stephen Ambrose and Erik Bork?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:producer . ?uri onto:producer . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) In how many places are the tombs of people who died in Connecticut Colony?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:placeOfDeath . ?x onto:restingPlace ?uri . ?uri rdf:type onto:Place}",Orange(huggingface) What are the relatives of the parliament member whose successor is Peter Thorneycroft?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:successor . ?x onto:relation ?uri . ?x rdf:type onto:MemberOfParliament}",Orange(huggingface) Name the partners of the models whose one of the partner is Thom Evans ?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:partner . ?x onto:partner ?uri . ?x rdf:type onto:Model}",Orange(huggingface) "For how many movies have the music composer composed music, who have collaborated with Yes?","PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:associatedMusicalArtist . ?uri onto:musicComposer ?x . ?uri rdf:type onto:Film}",Orange(huggingface) How many companies were started in the states?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:foundationPlace . ?uri rdf:type onto:Company}",Orange(huggingface) What are some movies whose score is composed by relatives of Bodhi Elfman?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:relatives . ?uri prop:music ?x . ?uri rdf:type onto:Film}",Orange(huggingface) Titus software publishes which genre of games?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:publisher . ?x onto:genre ?uri . ?x rdf:type onto:VideoGame}",Orange(huggingface) how many companies are located in a spanish speaking region?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:language . ?uri onto:location ?x . ?uri rdf:type onto:Organisation}",Orange(huggingface) What awards have the alumni of Academy of Fine Arts in Lodz achieved?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:training res:Academy_of_Fine_Arts_In_Łódź . ?x onto:award ?uri . }",Orange(huggingface) What is the common award won by geoffrey Rush and Laemmle Theatres?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Geoffrey_Rush prop:awards ?uri. res:Laemmle_Theatres onto:service ?uri}",Orange(huggingface) Which state's largest city is Omaha?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:largestCity . ?uri rdf:type onto:AdministrativeRegion}",Orange(huggingface) What is the owning organisation of the Ford Kansas City Assembly Plant and also the builder of the Ford Y-block engine?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:owningOrganisation ?uri. onto:manufacturer ?uri}",Orange(huggingface) Which party has come in power in Mumbai North?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:constituency . ?x onto:party ?uri . }",Orange(huggingface) Name some politicians buried in a place near Orange Virginia?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:nearestCity . ?uri prop:restingplace ?x . ?uri rdf:type onto:OfficeHolder}",Orange(huggingface) What is the person known for who is the movie director of Sleepy-Time Squirrel?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:director ?x . ?x onto:knownFor ?uri . ?x rdf:type onto:Person}",Orange(huggingface) Which rivers start at the Brower's Spring?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:sourceMountain }",Orange(huggingface) Which sects people are part of local political parties which fall under the International Muslim Brotherhood?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:international . ?x onto:religion ?uri . ?x rdf:type onto:PoliticalParty}",Orange(huggingface) List the outflow of Lake Uniamsi?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Lake_Uniamési onto:outflow ?uri }",Orange(huggingface) Which famous writer was married to Jill Krementz and had a son named Edith Vonnegut?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:spouse . ?uri onto:child . ?uri rdf:type onto:Writer}",Orange(huggingface) How many people have worked for teams chaired by Patricia Amorim?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:chairman . ?x prop:name ?uri . ?uri rdf:type onto:Person}",Orange(huggingface) Which city which owns Boundary Dam and was the place for Soccer Bowl '76?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:city ?uri. prop:owner ?uri}",Orange(huggingface) Name the university whose athletic department is called National Collegiate Athletic Association and has a chancellor named Nicholas S. Zeppos?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:athletics . ?uri prop:chancellor . ?uri rdf:type onto:University}",Orange(huggingface) Where do the rivers starting from Zambia end?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:sourceCountry . ?x onto:riverMouth ?uri . ?x rdf:type onto:River}",Orange(huggingface) Which former team of the Harry Parker (baseball) is the debut team of the Carl Sitton?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:formerTeam ?uri. prop:debutteam ?uri}",Orange(huggingface) "Which office holder's military unit is USS Kittiwake and constituency is Castro District, San Francisco ?","PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:militaryUnit . ?uri prop:constituency . ?uri rdf:type onto:OfficeHolder}",Orange(huggingface) Count the tenants of the stadiums owned by toronto.,"PREFIX res: PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:owner . ?x prop:tenants ?uri . }",Orange(huggingface) What is the award won of the scientists known for Cubic Hermite spline?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:knownFor . ?x onto:award ?uri . ?x rdf:type onto:Scientist}",Orange(huggingface) People born in Saint-Amand-en-Puisaye are famous for what things ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:birthPlace . ?x prop:knownFor ?uri . }",Orange(huggingface) Who is related to Kelly Osbourne & Ozzy Osbourne?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?uri prop:relatives res:Kelly_Osbourne . ?uri prop:relatives res:Ozzy_Osbourne . }",Orange(huggingface) "What is the largest city of the country to whom, the battle honours of 65th Regiment of Foot were given?","PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:battleHonours ?x . ?x onto:largestCity ?uri . }",Orange(huggingface) What are the movies whose director is Orson Welles?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:director . ?uri rdf:type onto:Film}",Orange(huggingface) Name some ww1 veterans?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:battles res:World_War_I . }",Orange(huggingface) Which award is presented by Downtown Athletic Club?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:presenter . ?uri rdf:type onto:Award}",Orange(huggingface) Which planet was discovered by Johann Gottfired and Urbain Le Verrier ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:discoverer . ?uri onto:discoverer . ?uri rdf:type onto:Planet}",Orange(huggingface) What is the predecessor of BMW M40?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:BMW_M40 prop:predecessor ?uri }",Orange(huggingface) How many people currently play for Stoke City F.C.?,"PREFIX res: PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:currentclub . }",Orange(huggingface) Who worked at A Goon's Deed in a Weary World and CBS?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:occupation . ?uri onto:occupation . }",Orange(huggingface) What is the alma mater of the scientists known for String theory?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:knownFor . ?x prop:almaMater ?uri . ?x rdf:type onto:Scientist}",Orange(huggingface) CN Atletic-Barceloneta has a stadium in Barcelona?,"PREFIX res: PREFIX onto: ASK WHERE { onto:stadium }",Orange(huggingface) List all crafts of the people whose one of the profession is Kingdom of Naples ?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:occupation . ?x onto:occupation ?uri . ?x rdf:type onto:Person}",Orange(huggingface) List all the home stadium of the soccer clubs which has one of the home stadium as Nairobi?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:homeStadium . ?x prop:homeStadium ?uri . ?x rdf:type onto:SoccerClub}",Orange(huggingface) To what companies is Dennis Muilenburg important?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:keyPeople . ?uri rdf:type onto:Company}",Orange(huggingface) What are some software which are written in languages that are run on Unix like OS?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:operatingSystem . ?uri prop:programmingLanguage ?x . ?uri rdf:type onto:Software}",Orange(huggingface) List out the people who are related to the relatives of Jared Kushner?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Jared_Kushner onto:relation ?x . ?x onto:relation ?uri . }",Orange(huggingface) Which currency is primarily used by the company which is the distributing label of VDE-Gallo Records?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:distributingLabel ?x . ?x prop:currency ?uri . ?x rdf:type onto:Organisation}",Orange(huggingface) What are the movies whose music composer is Akira Ifukube?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:musicComposer . ?uri rdf:type onto:Film}",Orange(huggingface) What is the territory of the conflict whose commander is Feng Zicai?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:commander . ?x onto:territory ?uri . ?x rdf:type onto:MilitaryConflict}",Orange(huggingface) Give the distinct number of other party of the people which have one of the party as Janata Party?,"PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:otherParty . ?x onto:otherParty ?uri }",Orange(huggingface) What are the television shows whose network's successor is BBC Two?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:successor . ?uri onto:network ?x . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) What are Monrow Carell Jr Children Hospital and Vanderbilt University Medical Center both affiliated with?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:affiliation ?uri. prop:affiliation ?uri . }",Orange(huggingface) How many television shows are broadcasted on Fox Broadcasting Company?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:channel . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) "Over how many cities did the Bellaton MMA, Season 11 take place?","PREFIX res: PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { prop:city ?uri . }",Orange(huggingface) List down all the bands to which the writers of 03 Bonnie & Clyde are associated?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:writer ?x . ?x onto:associatedBand ?uri . }",Orange(huggingface) From how many countries did the aeroplanes designed by Alexander Lippisch originate?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:designer . ?x prop:nationalOrigin ?uri . ?uri rdf:type onto:Country}",Orange(huggingface) What magazine is Marritt Cabal known for and is the publisher of Lucifer's Hammer?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:knownFor ?uri. onto:publisher ?uri}",Orange(huggingface) "In which city was the company founded, which owns Grasim Bhiwani Textiles?","PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:parent ?x . ?x prop:foundation ?uri . ?x rdf:type onto:Company}",Orange(huggingface) What is the major shrine of the monarchs whose successor is Dragimir of Travunia and Zachlumia?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:successor . ?x prop:majorShrine ?uri . ?x rdf:type onto:Monarch}",Orange(huggingface) What religion do the Wickramabahu Centeral College and Neungin High School both follow?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:religiousAffiliation ?uri. prop:religiousAffiliation ?uri . }",Orange(huggingface) Name the television show voiced by April Stewart and Eliza Schneider?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri prop:voices . ?uri prop:voices . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) Who is the President of the United World College of Costa Rica and United World Colleges?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:United_World_College_of_Costa_Rica prop:president ?uri. res:United_World_Colleges prop:president ?uri . }",Orange(huggingface) Count the tenants of MasterCard Centre?,"PREFIX res: PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { prop:tenants ?uri . }",Orange(huggingface) Which education institute of Duncan U. Fletcher is also the university of Vanderbilt Commodores?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Duncan_U._Fletcher onto:almaMater ?uri. res:Vanderbilt_Commodores onto:university ?uri}",Orange(huggingface) How many people are known for Dragons' Den?,"PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:knownFor . }",Orange(huggingface) Which colonel has allegiance to Colony of Virginia ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:allegiance . ?uri prop:rank . ?uri rdf:type onto:OfficeHolder}",Orange(huggingface) Where are the tombstones of the successors of Edward Wolcott?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Edward_O._Wolcott prop:successor ?x . ?x onto:restingPlace ?uri . }",Orange(huggingface) How many owners are there of things located in Alabama?,"PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:city . ?x onto:owner ?uri . }",Orange(huggingface) Where did the Vitis Vinifera grapes originate?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:species . ?x onto:origin ?uri . ?x rdf:type onto:Grape}",Orange(huggingface) List the software which uses Microsoft Windows as their operating system ?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:operatingSystem . ?uri rdf:type onto:Software}",Orange(huggingface) List all the school of the rugby player whose one of the school is Michael House ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:school . ?x prop:school ?uri . ?x rdf:type onto:RugbyPlayer}",Orange(huggingface) Which military commander fought his battle at Fort Gadsen?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:battle . ?uri rdf:type onto:OfficeHolder}",Orange(huggingface) In which country did the planes designed by Ursula Hanle originate?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:designer . ?x prop:nationalOrigin ?uri . ?x rdf:type onto:Aircraft}",Orange(huggingface) List the guest of the show The Other Side (The Outer Limits)?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:guests ?uri }",Orange(huggingface) List the authors of the musicals whose songwriter is Richard M. Sherman.,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:musicBy . ?x onto:author ?uri . ?x rdf:type onto:Musical}",Orange(huggingface) Which city is the route start of the Moscow-Kazan high-speed railway and birth place of the Ilya Savelev ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:routeStart ?uri. onto:birthPlace ?uri}",Orange(huggingface) What is the title of the Kakae and also the district of the Robert William Wilcox?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Kakae prop:title ?uri. res:Robert_William_Wilcox prop:district ?uri}",Orange(huggingface) Who is the owner of the website which has the label Seed Eight ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:label ?x . ?x prop:owner ?uri . ?x rdf:type onto:Website}",Orange(huggingface) In how many places have Irishmen died?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:birthPlace . ?x onto:deathPlace ?uri . ?uri rdf:type onto:Location}",Orange(huggingface) Where do current famous NatGeo photographers live?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:knownFor . ?x onto:residence ?uri . ?x rdf:type onto:Photographer}",Orange(huggingface) Count the number of religions followed by the alumini of Ananda College.,"PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:almaMater . ?x onto:religion ?uri . }",Orange(huggingface) Which organisation has superintendent as Lieutenant general (United States)?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:superintendent . ?uri rdf:type onto:Organisation}",Orange(huggingface) What is the total number of other non-fiction subject of the books whose one of the subject is Racism?,"PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:nonFictionSubject . ?x onto:nonFictionSubject ?uri }",Orange(huggingface) What is the mascot of the military unit whose commander is Herbert Bautista ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:notableCommander . ?x prop:mascot ?uri . ?x rdf:type onto:MilitaryUnit}",Orange(huggingface) "Give me all magazines whose founder died in Berkeley, California?","PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:deathPlace . ?uri onto:founder ?x . ?uri rdf:type onto:Magazine}",Orange(huggingface) Name the movie whose director of photography is Gregg Toland and Bernard Herrmann was the music composer?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:cinematography . ?uri onto:musicComposer . ?uri rdf:type onto:Film}",Orange(huggingface) Who owns the railway line which goes through the Newark Station?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:line ?x . ?x prop:owner ?uri . }",Orange(huggingface) Which office holder's military branch is Continental Army and vice president is John Adams?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:militaryBranch . ?uri onto:vicePresident . ?uri rdf:type onto:OfficeHolder}",Orange(huggingface) In which country is the Chapelle Saint-Louis de Carthage located?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:location ?x . ?x onto:country ?uri . }",Orange(huggingface) Which scientist's academic advisor is Georg Meissner and is known for invention of Anthrax ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:knownFor . ?uri prop:doctoralAdvisor . ?uri rdf:type onto:Scientist}",Orange(huggingface) What is the common country of Ganz UV and Balaton wine region?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Ganz_UV onto:operator ?uri. res:Balaton_wine_region onto:location ?uri}",Orange(huggingface) What is the common ideology followed by Katyayana and Palang Dharma Party ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:religion ?uri. onto:ideology ?uri}",Orange(huggingface) Who is the headcoach of 2014-15 Virginia Tech Hokies men's basketball team ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:headcoach ?uri }",Orange(huggingface) How many players participated in the 2004-05 FC Barcelona season?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { prop:name ?uri . ?uri rdf:type onto:SoccerPlayer}",Orange(huggingface) Who was the coach of marquette Golden Eagles men's basketball team 2012-13 season ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:headcoach ?uri }",Orange(huggingface) "Who is the producer of album, which has the song Eclipse ?","PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:album ?x . ?x prop:producer ?uri . ?x rdf:type onto:Album}",Orange(huggingface) What is the content license of Darcs?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Darcs onto:license ?uri }",Orange(huggingface) List the cities which share the same water body as that of Florida ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:cities . ?x prop:cities ?uri . ?x rdf:type onto:BodyOfWater}",Orange(huggingface) For how many things are americans famous for?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:placeOfBirth . ?x onto:knownFor ?uri . }",Orange(huggingface) What is the nationality of the economist who is one of the important people in the Foundation for Economic Education?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:keyPerson ?x . ?x onto:nationality ?uri . ?x rdf:type onto:Economist}",Orange(huggingface) In which city wasthe Live at The Triple Door (The Courage album) performed?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:recorded ?uri }",Orange(huggingface) What is the debut team of the american football player who studied in North Fort Myers High School?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:highschool . ?x prop:debutteam ?uri . ?x rdf:type onto:AmericanFootballPlayer}",Orange(huggingface) What were robert sarvis and JAck Ryan nominated for ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:nominee ?uri. onto:nominee ?uri . }",Orange(huggingface) What came before PlayStation 4 and uses PlayStation 3 system software as OS?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:successor res:PlayStation_4 . ?uri prop:os res:PlayStation_3_system_software . }",Orange(huggingface) Who composed songs in the Mr Tambourine Man album?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:album . ?x onto:composer ?uri . ?x rdf:type onto:Song}",Orange(huggingface) What games are played in Protestant schools?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:schooltype . ?x onto:sport ?uri . ?x rdf:type onto:School}",Orange(huggingface) What is the service of the Laemmle Theatres and is also the award of the Jos Rivera (playwright)?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:service ?uri. prop:awards ?uri}",Orange(huggingface) Count the writers whose work has been played in NY?,"PREFIX res: PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:place . ?x prop:writer ?uri . }",Orange(huggingface) What is the location of Dad's Root Beer on Google maps?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:locationCity ?uri }",Orange(huggingface) Humes High School is alma mater to which person?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:education . ?uri rdf:type onto:Person}",Orange(huggingface) "Who were the commanders during the events which took place in Sandusky County, Ohio?","PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:place . ?x onto:commander ?uri . ?x rdf:type onto:Event}",Orange(huggingface) Which set of researchers won the Gold Medal of the Royal Astronomical Society award?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:prizes . ?uri rdf:type onto:Scientist}",Orange(huggingface) Name the television show with opening theme as Te Deum and is composed by Marc-Antoine Charpentier?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:openingTheme . ?uri prop:themeMusicComposer . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) Who is married to Tony Ramo?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:partner res:Tony_Romo . }",Orange(huggingface) Which river's source country is Zambia and mouth country is Mozambique?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:sourceCountry . ?uri prop:mouthCountry . ?uri rdf:type onto:River}",Orange(huggingface) Name the directors of Lennon Legend: The Very Best of John Lennon (DVD)?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:director ?uri }",Orange(huggingface) Name the constituency of Domenico Modugno?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Domenico_Modugno prop:constituency ?uri }",Orange(huggingface) In how many different stadiums are the seasons of the 2015 NA Soccer league held?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:league . ?x onto:ground ?uri . ?uri rdf:type onto:Stadium}",Orange(huggingface) What is the settlement whose neighboring municipalities is Lancy and mayor name is Esther Alder?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:neighboringMunicipalities . ?uri rdf:type onto:Settlement}",Orange(huggingface) "Name the office holder whose Governor is Charles Willing Byrd and has resting place as North Bend, Ohio?","PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:governor . ?uri prop:restingplace . ?uri rdf:type onto:OfficeHolder}",Orange(huggingface) Was Tommy Tucker's Tooth animated by Walt Disney?,"PREFIX res: PREFIX onto: ASK WHERE { onto:animator }",Orange(huggingface) Which fields of the Paul Demiville is also the faith of Koay Teng Hai?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Paul_Demiéville prop:fields ?uri. res:Koay_Teng_Hai onto:religion ?uri}",Orange(huggingface) List the broadcast area of the TV stations which also serves in Agalga?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:broadcastArea res:Agaléga . ?x prop:broadcastArea ?uri . }",Orange(huggingface) What is the political party of the Bengalis?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:ethnicity res:Bengalis . ?x onto:party ?uri . }",Orange(huggingface) Tirana is the largest city of which country?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:largestCity . ?uri rdf:type onto:Country}",Orange(huggingface) Name the airlines which have a hub in airport in San Francisco?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:cityServed . ?uri prop:hubs ?x . ?uri rdf:type onto:Airline}",Orange(huggingface) In which countries is coconut used as a food ingredient?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:ingredient . ?x prop:country ?uri . ?x rdf:type onto:Food}",Orange(huggingface) What is the mascot of the army unit whose commander is Peter Cosgrove ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:commander . ?x prop:mascot ?uri . ?x rdf:type onto:MilitaryUnit}",Orange(huggingface) Which musical artists have collaborated with Waylon Jennings?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:associatedMusicalArtist . ?uri rdf:type onto:MusicalArtist}",Orange(huggingface) What political party has governed both in Baraily and Jowai?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Baraily onto:leaderName ?uri. res:Jowai onto:leaderName ?uri . }",Orange(huggingface) what is the headquarters of Juan Dalmau Ramerez?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Juan_Dalmau_Ramírez prop:headquarters ?uri }",Orange(huggingface) Give me some software which run on mac os.,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:operatingSystem . ?uri rdf:type onto:Software}",Orange(huggingface) What games are played at universities in Lanao Del Sur?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:state . ?x onto:athletics ?uri . ?x rdf:type onto:University}",Orange(huggingface) Count all those who previously played for a team which ownes Varsity Stadium ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:field . ?uri onto:formerTeam ?x . }",Orange(huggingface) Give the name of the managers of England national under-20 football team and England national under-21 football team?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?uri prop:managerclubs . ?uri prop:managerclubs . }",Orange(huggingface) Who are the producers of the movies which has music by Gary Chang ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:music . ?x prop:producer ?uri . ?x rdf:type onto:Film}",Orange(huggingface) How many things belong to a division of plant kingdom?,"PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:kingdom . ?uri onto:division ?x . }",Orange(huggingface) List the show related to the which was followed by Doctor Who Extra?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:subsequentWork . ?uri onto:related ?x . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) What are the universities where athletics is regulated by National Collegiate Athletic Association?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:athletics . ?uri rdf:type onto:University}",Orange(huggingface) Which awards has Puerto Ricons won?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:ethnicity res:Puerto_Rico . ?x prop:awards ?uri . }",Orange(huggingface) Where did the genres originate which can be found in The Mudbloods?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:The_Mudbloods prop:genre ?x . ?x onto:stylisticOrigin ?uri . }",Orange(huggingface) What cities are near to Nihoa which is also known as Bird Island?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Nihoa prop:nearestCity ?uri }",Orange(huggingface) "Where was Live in Detroit, MI recorded and was also palce of birth of the Bodhin Kjolhede?","PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:recordedIn ?uri. prop:placeOfBirth ?uri}",Orange(huggingface) List the ceremonial county of East Tilbury?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:East_Tilbury onto:ceremonialCounty ?uri }",Orange(huggingface) Which TV show's setting is in Massachusetts and is the subsequent work of Fraiser ?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:subsequentWork . ?uri onto:location . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) List some writers which speak one of the Germanic languages.,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:languageFamily . ?uri prop:language ?x . ?uri rdf:type onto:Writer}",Orange(huggingface) Where has the employee of Columbia Records worked ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:employer res:Columbia_Records . ?x onto:employer ?uri . }",Orange(huggingface) Which operating system provider of LG Optimus Vu is also the employer of Manu Cornet?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:LG_Optimus_Vu onto:operatingSystem ?uri. res:Manu_Cornet prop:employer ?uri}",Orange(huggingface) Count the number of sports played by the universities which also plays Volleyball?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:athletics . ?x prop:athletics ?uri }",Orange(huggingface) How many universities are in the National Collegiate Athletic Association?,"PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:athletics . }",Orange(huggingface) Music of how many things has been given by Akira Ifukube?,"PREFIX res: PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:music . }",Orange(huggingface) Name the tv show with judges Randy Jackson and Jennifer Lopez?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri prop:judges . ?uri prop:judges . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) What is that river whose source gets water from the Shannon cave?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:inflow . ?uri onto:source ?x . ?uri rdf:type onto:River}",Orange(huggingface) Which university of Alexandre Tichonov is the place of death of Valentin Muratov?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Alexandre_Tichonov prop:university ?uri. res:Valentin_Muratov prop:placeOfDeath ?uri}",Orange(huggingface) Where are ethnic group located which speak Nebraskan?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:language ?x . ?x prop:region ?uri . ?x rdf:type onto:EthnicGroup}",Orange(huggingface) List the American MEditerranean Sea city is also the place of death of Laszlo Bellak?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:American_Mediterranean_Sea prop:cities ?uri. res:Laszlo_Bellak onto:deathPlace ?uri}",Orange(huggingface) What is the total number of other tenant of the stadia whose one of the tenant is Raptors 905?,"PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:tenant . ?x onto:tenant ?uri }",Orange(huggingface) What was the result of Operation Autumn Clouds?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Operation_Autumn_Clouds prop:result ?uri }",Orange(huggingface) How many items belong to the Science Fiction genre?,"PREFIX res: PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:genre . }",Orange(huggingface) Where did the fashion designer study who died at the Stony Brook University Hospital?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:deathPlace . ?x prop:education ?uri . ?x rdf:type onto:FashionDesigner}",Orange(huggingface) Count everyone who was in a youthclub chaired by Josep Maria Bartomeu?,"PREFIX res: PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:chairman . ?uri prop:youthclubs ?x . }",Orange(huggingface) Who is the meaning of Isa ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:meaning ?uri }",Orange(huggingface) Where was WiZeefa founded?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:WiZeefa prop:foundation ?uri }",Orange(huggingface) Who was buried at St. Mary's Church and fought the battle of Benedict Arnold's expedition to Quebec ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:battle . ?uri prop:placeofburial . }",Orange(huggingface) List the common prime minister of the Robert Ray and graham richardson ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:primeMinister ?uri. onto:primeMinister ?uri . }",Orange(huggingface) List the products of Playboy Enterprises?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:publisher . ?uri rdf:type onto:Magazine}",Orange(huggingface) Count the number of fields of the scientists whose one of the fields is Sanskrit?,"PREFIX res: PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:fields . ?x prop:fields ?uri }",Orange(huggingface) What awards have been given to the artists coming out of the University of Melbourne Faculty of VCA and MCM?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:training . ?x onto:award ?uri . ?x rdf:type onto:Artist}",Orange(huggingface) "What is the career of George Arceneaux, Jr. ?","PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:occupation ?uri }",Orange(huggingface) Was Queen Latifah in the UNITY group?,"PREFIX res: PREFIX onto: ASK WHERE { onto:musicalArtist res:Queen_Latifah }",Orange(huggingface) "What is the name of the river whose mouth country is Mozambique and source region is North-Western Province, Zambia?","PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:mouthCountry . ?uri onto:sourceRegion . ?uri rdf:type onto:River}",Orange(huggingface) Where was William anthony trained ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:training ?uri }",Orange(huggingface) What famous politician died in the Petersen House?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:deathPlace . ?uri rdf:type onto:Person}",Orange(huggingface) "Which relative of George Madison was the leader of United States House of Representatives elections, 1788 and 1789 ?","PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:relation ?uri. prop:leader ?uri}",Orange(huggingface) Which colonel consort is Dolley Madison?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:rank . ?uri prop:spouse . }",Orange(huggingface) For which clubs do the players of Azam F.C. play for?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:name ?x . ?x onto:team ?uri . ?x rdf:type onto:SoccerPlayer}",Orange(huggingface) What is the nationality of the golf player who won the 2002 Players Championship ?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:champion ?x . ?x onto:nationality ?uri . ?x rdf:type onto:GolfPlayer}",Orange(huggingface) What is the debut team of people born in Vargas?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:birthPlace . ?x prop:debutteam ?uri . }",Orange(huggingface) Name the mouth country of Upper Neretva?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Upper_Neretva onto:mouthCountry ?uri }",Orange(huggingface) What is the producer of the television shows whose channel is CBBC?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:channel . ?x onto:producer ?uri . ?x rdf:type onto:TelevisionShow}",Orange(huggingface) What is the political party of the person succeeded by A.K. Singh?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:successor . ?x prop:party ?uri . ?x rdf:type onto:Person}",Orange(huggingface) Who is the writer with notable works like Adventures of Huckleberry Finn and The Adventures of Tom Sawyer?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:notableWork . ?uri onto:notableWork . ?uri rdf:type onto:Writer}",Orange(huggingface) Who was the president under which a tennis player held office before John W. Weeks?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:predecessor . ?x prop:president ?uri . ?x rdf:type onto:TennisPlayer}",Orange(huggingface) "To what did the parliament member swore her oath to, whose son is Lohan Ratwatte?","PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:child . ?x prop:allegiance ?uri . ?x rdf:type onto:MemberOfParliament}",Orange(huggingface) Who wrote a rose for emily?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:notableWork . ?uri rdf:type onto:Writer}",Orange(huggingface) What is the ideology of Palang Dharma Party?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Palang_Dharma_Party onto:ideology ?uri }",Orange(huggingface) How many people have headed organizations headquartered at Niederkirchnerstrae?,"PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:headquarter . ?x onto:leader ?uri . }",Orange(huggingface) Which band produced the album Aida?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:album . ?x onto:musicalArtist ?uri . ?x rdf:type onto:MusicalWork}",Orange(huggingface) Count the awards received by the ones who fought the battle of france?,"PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:battle . ?x onto:award ?uri . }",Orange(huggingface) What automobile engine's successor is BMW M40?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:successor . ?uri rdf:type onto:AutomobileEngine}",Orange(huggingface) What are the other band members of the band one of whose current member is Robert De Niro?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:currentMembers . ?x onto:bandMember ?uri . ?x rdf:type onto:Band}",Orange(huggingface) List the newspapers whose headquarters's time zone is Central European Summer Time.,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:timeZone . ?uri prop:headquarters ?x . ?uri rdf:type onto:Newspaper}",Orange(huggingface) Count the number of places where alumini of Edinburgh university have died?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:education . ?x onto:deathPlace ?uri . }",Orange(huggingface) Name the office holder whose constituency are Duboce Triangle and Haight-Ashbury ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri prop:constituency . ?uri prop:constituency . ?uri rdf:type onto:OfficeHolder}",Orange(huggingface) List all discipline of the journals whose one of the discipline is Cerebral blood flow ?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:academicDiscipline . ?x onto:academicDiscipline ?uri . ?x rdf:type onto:AcademicJournal}",Orange(huggingface) Which fictional character sculpted by Josh Friedmann was portrayed in Terminator 3 ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:creator . ?uri onto:portrayer . ?uri rdf:type onto:FictionalCharacter}",Orange(huggingface) Which ppolitical party of Yashpal Kapur is also the owner of National Herald ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:owner ?uri. onto:party ?uri}",Orange(huggingface) Which fields are covered by academic journals in the US?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:country . ?x prop:discipline ?uri . ?x rdf:type onto:AcademicJournal}",Orange(huggingface) Who succeeded Lucius Crus as an office holder?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:predecessor . ?uri rdf:type onto:OfficeHolder}",Orange(huggingface) Grey goose and eristoff is produced by which company?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:manufacturer ?uri. prop:manufacturer ?uri . }",Orange(huggingface) Name the river flowing through Reading and source place as Gloucestershire?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:city . ?uri onto:sourcePlace . ?uri rdf:type onto:River}",Orange(huggingface) What is the birthplace of the office holder who is the predecessor of Brian Peddle ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:predecessor ?x . ?x prop:birthPlace ?uri . ?x rdf:type onto:OfficeHolder}",Orange(huggingface) Where is the T.I. Ahmadiyya Girls Senior High School?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:denomination ?uri }",Orange(huggingface) Name the college of the Allama Matthews which also has affiliation with Monroe Carell Jr. Children's Hospital at Vanderbilt,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:college ?uri. prop:affiliation ?uri}",Orange(huggingface) How many movies have a screenplay located in the States?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:birthPlace . ?uri prop:screenplay ?x . ?uri rdf:type onto:Film}",Orange(huggingface) Games on amiga are typically of what kind?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:computingPlatform . ?x prop:genre ?uri . ?x rdf:type onto:VideoGame}",Orange(huggingface) Which teams have used the stadium whose architect was Populous ?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:architect . ?x onto:tenant ?uri . ?x rdf:type onto:Stadium}",Orange(huggingface) How many game series exist for iOS?,"PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:computingPlatform . ?x onto:series ?uri . }",Orange(huggingface) What are the things whose leader was a monarch Willem-Alexander of the Netherlands?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:monarch . ?uri onto:leader ?x . }",Orange(huggingface) Does Dan River flow into the Jordan Valley?,"PREFIX res: PREFIX onto: ASK WHERE { onto:leftTributary }",Orange(huggingface) In which countries can i find some feminist writers?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:movement . ?x onto:nationality ?uri . ?x rdf:type onto:Writer}",Orange(huggingface) Companies founded in Taiwan have typically which divisions?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:foundationPlace . ?x onto:division ?uri . ?x rdf:type onto:Company}",Orange(huggingface) Which labels signs up progressive rock bands?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:genre . ?x onto:recordLabel ?uri . ?x rdf:type onto:MusicalArtist}",Orange(huggingface) Who are some cofounders of record labels with Frank Rogers?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:foundedBy . ?x prop:founder ?uri . ?x rdf:type onto:RecordLabel}",Orange(huggingface) In which nation does the league take place where C.D. Primeiro de Agosto play?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:league ?x . ?x onto:country ?uri . ?x rdf:type onto:SportsLeague}",Orange(huggingface) Who is the author of Heroman is also the author of Karakuri Dji Ultimo ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Heroman prop:author ?uri. res:Karakuri_Dôji_Ultimo onto:author ?uri}",Orange(huggingface) VP-8 and VP-10 shares which command structure ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:commandStructure ?uri. onto:commandStructure ?uri . }",Orange(huggingface) List the director of The Adventures of mimi?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:director ?uri }",Orange(huggingface) Who designed the bridge over the Valaichchenai lagoon?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:crosses . ?x prop:designer ?uri . ?x rdf:type onto:Bridge}",Orange(huggingface) Which company founded in New Mexico manufactures Visual Studio?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:foundation . ?uri prop:products . ?uri rdf:type onto:Company}",Orange(huggingface) Who have been the manager of national team of Spain?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:nationalteam . ?uri rdf:type onto:SoccerManager}",Orange(huggingface) Name the television show created by CE Webber and also has actor named Companion?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:starring . ?uri onto:creator . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) Among which city where Geography Club played also had the Kenticky Cycle ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:place ?uri. prop:place ?uri . }",Orange(huggingface) What is the alma mater of K. Terry Dornbush?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:K._Terry_Dornbush prop:almaMater ?uri }",Orange(huggingface) Which domain's journals did Willard Fiske edit?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:editor . ?x prop:discipline ?uri . ?x rdf:type onto:AcademicJournal}",Orange(huggingface) Name a company with one of the key person as Edwin Catmull and produces RenderMan?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:keyPerson . ?uri prop:products . ?uri rdf:type onto:Company}",Orange(huggingface) "Which parties have their members live in the PM House, Colombo?","PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:residence . ?uri onto:leader ?x . ?uri rdf:type onto:PoliticalParty}",Orange(huggingface) Where did Doug Walgren and Lee Si Chen study?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:almaMater ?uri. onto:almaMater ?uri . }",Orange(huggingface) Name the chairman of the soccer club for which Mike Salmon currently plays?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:currentclub ?x . ?x prop:chairman ?uri . ?x rdf:type onto:SoccerClub}",Orange(huggingface) What is the state of the senator whose successor is Nathaniel P. Hill?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:successor . ?x prop:state ?uri . ?x rdf:type onto:Senator}",Orange(huggingface) Name the stock holders of soccer club whose one of the stockholder is Carl Sanders ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:owner . ?x onto:owner ?uri . ?x rdf:type onto:SoccerClub}",Orange(huggingface) "Which companies makes cars assembled in Karachi, Pakistan?","PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:assembly . ?x prop:parentCompany ?uri . ?x rdf:type onto:Automobile}",Orange(huggingface) What is the stylistic origin of the music genres where the Bass guitar is important?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:instruments . ?x onto:stylisticOrigin ?uri . ?x rdf:type onto:MusicGenre}",Orange(huggingface) Where did the office holder died who is successor to Elmer Burkett ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:successor . ?x prop:deathPlace ?uri . ?x rdf:type onto:OfficeHolder}",Orange(huggingface) Which source country of SamurAbsheron channel is the birth place of Anar Salmanov?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Samur–Absheron_channel onto:sourceCountry ?uri. res:Anar_Salmanov prop:placeOfBirth ?uri}",Orange(huggingface) Name the company whose key person is Raymond Conner and produces Boeing CH-47 Chinook?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:keyPeople . ?uri prop:products . ?uri rdf:type onto:Company}",Orange(huggingface) Who wrote The Times They Are a-Changin?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:musicBy ?uri }",Orange(huggingface) What are other famous works of the writer who created the Sarah Jane Adventures?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:notableworks . ?x onto:notableWork ?uri . ?x rdf:type onto:Writer}",Orange(huggingface) "Where was Ne daj se, Nina first aired ?","PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:firstAired ?uri }",Orange(huggingface) What are the houses of the legislature where the leader is called Pullaiahgaripalli ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:leaderTitle ?x . ?x prop:houses ?uri . ?x rdf:type onto:Legislature}",Orange(huggingface) Give me an estimate of the number of manufacturers whose products are managed by MTR?,"PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:operator . ?x onto:manufacturer ?uri . }",Orange(huggingface) Who developed the programming languages designed by Rob Pike?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:designer . ?x onto:developer ?uri . ?x rdf:type onto:ProgrammingLanguage}",Orange(huggingface) Did Bob Dylan write the lyrics of the times they are a changin'?,"PREFIX res: PREFIX prop: ASK WHERE { prop:lyrics }",Orange(huggingface) Who composed the music for Tonight's the Night ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:music ?uri }",Orange(huggingface) Which royalty's spouse is Ptolemy XIV of Egypt?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:spouse . ?uri rdf:type onto:Royalty}",Orange(huggingface) Which city has radio stations which are Religious ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:format . ?x prop:city ?uri . ?x rdf:type onto:RadioStation}",Orange(huggingface) What is the government type of Ancient Rome?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Ancient_Rome onto:governmentType ?uri }",Orange(huggingface) "Which river flows through Hudson Highlands State park and also through Troy, New york ?","PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:river ?uri. onto:river ?uri}",Orange(huggingface) "Which company is located in Harris County, Texas?","PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:locationCity . ?uri rdf:type onto:Company}",Orange(huggingface) Where was pina Records founded which has also the name of Geography of Puerto Rico?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Geography_of_Puerto_Rico prop:name ?uri. res:Pina_Records prop:founded ?uri}",Orange(huggingface) Who is a famous relative of Aaround Van Heemstra?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:relative . ?uri rdf:type onto:Person}",Orange(huggingface) Tell me the total number of organizations who maintain the bridges made by the malaysian PWD?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:designer . ?x onto:maintainedBy ?uri . ?uri rdf:type onto:Organisation}",Orange(huggingface) What famous work is derived from the one whose lyrics are written by Inma Gonzales?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:lyrics res:Inma_González . ?x onto:basedOn ?uri . }",Orange(huggingface) Where is the football team located in which Josh Bell did his debut?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:debutTeam ?x . ?x onto:locationCity ?uri . }",Orange(huggingface) "List all the locations of the companies whose are also located in Rancho Cucamonga, California ?","PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:locationCountry . ?x onto:locationCountry ?uri . ?x rdf:type onto:Company}",Orange(huggingface) "Who is the architect of Red House, London?","PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:architect ?uri }",Orange(huggingface) What games can be played in schools founded by Fr. Orlando?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:foundedBy . ?x onto:sport ?uri . ?x rdf:type onto:School}",Orange(huggingface) List few authors whose education took place in Saint Petersburg ?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:education . ?uri rdf:type onto:Writer}",Orange(huggingface) who are the managers of england national under 20 football team?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:managerclubs }",Orange(huggingface) What are the albums whose artists have performed with the Tangerine Dream?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:associatedBand . ?uri prop:artist ?x . ?uri rdf:type onto:Album}",Orange(huggingface) Which countries militaries fought the SFOR battle?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:battles . ?x onto:battle ?uri . ?x rdf:type onto:MilitaryPerson}",Orange(huggingface) What are some rivers in Zambia which have a dam on them?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:country . ?x onto:river ?uri . ?x rdf:type onto:Dam}",Orange(huggingface) Name few television shows's anchored by Ryan Seacrest?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:presenter . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) What is the place of birth of the badminton player who is the bronze medalist of Badminton at the 2012 Summer Olympics Women's doubles ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:bronzeMedalist ?x . ?x prop:placeOfBirth ?uri . ?x rdf:type onto:BadmintonPlayer}",Orange(huggingface) Which party does Iqbal Singh and B Shiva Rao currently belong to?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:party ?uri. prop:party ?uri . }",Orange(huggingface) How many people have written for Gangan Comics?,"PREFIX res: PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:magazine . ?x prop:author ?uri . }",Orange(huggingface) Name some local authorities of schools which have a mixed gender education system?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:gender . ?x onto:localAuthority ?uri . ?x rdf:type onto:School}",Orange(huggingface) Which artists trained in San Francisco Art Institute?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:training . ?uri rdf:type onto:Artist}",Orange(huggingface) How many members are there of the organization headquartered at Amstelveen?,"PREFIX res: PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:headquarters . ?x prop:membership ?uri . }",Orange(huggingface) Name the TV show broadcasted by Fox and presented by Ryan Seacrest ?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:presenter . ?uri onto:channel . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) Count the number of religions followed by BJP members.,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:party . ?x onto:religion ?uri . }",Orange(huggingface) What common relegion affiliation exists for udit Raj and Wickramabahu Central College ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:religion ?uri. prop:religiousAffiliation ?uri}",Orange(huggingface) Name some shows whose company is owned by the CBS Corporation?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:owner . ?uri prop:company ?x . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) Which scientist is known for anthrax and has Karl Ewald Hasse as his academic advisor ?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:knownFor . ?uri onto:academicAdvisor . ?uri rdf:type onto:Scientist}",Orange(huggingface) Did Timm Gunn guest in Sunrise (HIMYM)?,"PREFIX res: PREFIX prop: ASK WHERE { prop:guests }",Orange(huggingface) Which video game's artist is Hiroji Kiyotake and computing platform is Virtual Console?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:artist . ?uri onto:computingPlatform . ?uri rdf:type onto:VideoGame}",Orange(huggingface) Does chicago own the washington station on the CTA Blue Line?,"PREFIX res: PREFIX prop: ASK WHERE { prop:owned }",Orange(huggingface) With which musical artist is the music group which sung Mind Blowin' related to ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:musicalArtist ?x . ?x onto:associatedMusicalArtist ?uri . }",Orange(huggingface) In which movies has momoko kochi acted,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:starring res:Momoko_Kōchi }",Orange(huggingface) Through how many labels has Katy B released her singles?,"PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:writer . ?x onto:recordLabel ?uri . }",Orange(huggingface) Tell me the name of the Prime Time Entertainment Network's TV show whose Artist is Christopher Franke ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:artist . ?uri onto:network . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) What is the area of the Tar Heel Sports Network which is official residence of Michael Nichols (photographer)?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:area ?uri. onto:residence ?uri}",Orange(huggingface) Give me a count of movies distributed by Warner Bros?,"PREFIX res: PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:distributor . }",Orange(huggingface) What are the television shows which are in NTSC and 5.1 surround sound?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:format . ?uri onto:format . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) In how many places are Marjas found?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:title . ?x onto:location ?uri . ?uri rdf:type onto:Location}",Orange(huggingface) "In which team was the person drafted who has studied at the Worcester college, Oxford?","PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:almaMater . ?x prop:draftTeam ?uri . ?x rdf:type onto:Person}",Orange(huggingface) What are some dishes from the family of dishes which primarily use flour?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:mainIngredient . ?uri onto:type ?x . ?uri rdf:type onto:Food}",Orange(huggingface) Which sitcoms are made by a company headquartered in NYC?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:headquarter . ?uri onto:company ?x . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) "Which religion do the people follow, whose constituency is Jadavpur?","PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:constituency . ?x prop:religion ?uri . ?x rdf:type onto:Person}",Orange(huggingface) How many shows are made by Larry David?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:creator . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) Name the sharehoders of The National Herald?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:owner ?uri }",Orange(huggingface) Which city near to Elliott Bay was the death place of George F. Moore?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:nearestCity ?uri. prop:placeOfDeath ?uri}",Orange(huggingface) List the state of the universities whose nation is United States ?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:country . ?x onto:state ?uri . ?x rdf:type onto:University}",Orange(huggingface) "List the television shows whose distributors are located at Burbank, California.","PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:locationCity . ?uri prop:distributor ?x . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) How many producers have worked for FremantleMedia productions?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:company . ?x onto:producer ?uri . }",Orange(huggingface) Which former team of Franois Beauchemin does the Nathan Dempsey played for?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Nathan_Dempsey prop:playedFor ?uri. res:François_Beauchemin onto:formerTeam ?uri}",Orange(huggingface) What are the films where at least one cast member died due to colorectal cancer?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:deathCause . ?uri prop:starring ?x . ?uri rdf:type onto:Film}",Orange(huggingface) "What is the country whose administrative centre is Hagta, Guam?","PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:capital . ?uri rdf:type onto:Country}",Orange(huggingface) What are some famous artists who rocked a Les Paul?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:notableInstruments . ?uri rdf:type onto:MusicalArtist}",Orange(huggingface) Give me the count of artist in the company whose Artist is Jean- François Coté ?,"PREFIX res: PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:artist . ?x prop:artist ?uri }",Orange(huggingface) Who is associated with the musical artists from Africa '70 (band) and Tony Allen ?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:associatedMusicalArtist . ?uri onto:associatedMusicalArtist . ?uri rdf:type onto:MusicalArtist}",Orange(huggingface) What are some shareholders of the bridge maintained by the Massachusetts department of transportation?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:maintainedBy . ?x prop:owner ?uri . ?x rdf:type onto:Bridge}",Orange(huggingface) What is the source country of reg Lake ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Üüreg_Lake onto:sourceCountry ?uri }",Orange(huggingface) How many shows belong to the network one of whose sister station is Cartoonite?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:sisterStation . ?uri prop:network ?x . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) "Which officer's final resting place is North Bend, ohio and belongs to Indiana Territory branch?","PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:restingplace . ?uri prop:branch . }",Orange(huggingface) List all the wine regions of the grapes whose one of the wine region is Mississippi ?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:wineRegion . ?x onto:wineRegion ?uri . ?x rdf:type onto:Grape}",Orange(huggingface) How many people played for Newell's Old Boys?,"PREFIX res: PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:youthclubs . }",Orange(huggingface) List the home town of the people who have Ontario as one of it ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:homeTown . ?x prop:homeTown ?uri . ?x rdf:type onto:Person}",Orange(huggingface) Where were some people associated with Steve Winwood employed at?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:associatedMusicalArtist . ?x onto:occupation ?uri . ?x rdf:type onto:Person}",Orange(huggingface) Which writer has childrens named Mother Mary Alphonsa and Julian Hawthorne?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri prop:children . ?uri prop:children . ?uri rdf:type onto:Writer}",Orange(huggingface) Name the other wine region of the grapes whose one of the wine region is Michigan?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:wineRegion . ?x onto:wineRegion ?uri . ?x rdf:type onto:Grape}",Orange(huggingface) "List the base currency of the country whose anthem is Oj, svijetla majska zoro.","PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:anthem . ?x prop:currency ?uri . }",Orange(huggingface) "By what style was Providence Chapel, Charlwood made?","PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:style ?uri }",Orange(huggingface) How many honorary title are there of the scientists who has Australian of the Year award?,"PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:award . ?x onto:award ?uri }",Orange(huggingface) How many artists are signed up with Celluloid Records?,"PREFIX res: PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:label . }",Orange(huggingface) Which home town of PAvel Moroz is the death location of the Yakov Estrin?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Pavel_Moroz prop:hometown ?uri. res:Yakov_Estrin onto:deathPlace ?uri}",Orange(huggingface) In how many different teams have all those who have played as a defenceman been?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:position . ?x prop:playedFor ?uri . ?uri rdf:type onto:SportsTeam}",Orange(huggingface) "WHich region of the Providence Chapel, Charlwood is also the region of the Joseph Case High School","PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:style ?uri. onto:region ?uri}",Orange(huggingface) Name the company whose products is Boeing F/A-18E/F Super Hornet and key person is Raymond Conner?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:products . ?uri onto:keyPerson . ?uri rdf:type onto:Company}",Orange(huggingface) Who appointed Joseph Clay and William Cushing to their office?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:appointer ?uri. onto:appointer ?uri . }",Orange(huggingface) What are the movies whose director of photography is Jordan Cronenweth?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:cinematography . ?uri rdf:type onto:Film}",Orange(huggingface) Which political party got elected in First Legislative Assembly of Uttar Pradesh?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:First_Legislative_Assembly_of_Uttar_Pradesh prop:party ?uri }",Orange(huggingface) Which televion show's theme music was given by Ron Grainer and is broadcasted by BBC HD?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:themeMusicComposer . ?uri onto:network . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) Who commanded the invasion of Buwat and made Fatima bint Sa'd famous?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:commander ?uri. onto:knownFor ?uri . }",Orange(huggingface) List the governors of Jimmie Lou Fisher?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Jimmie_Lou_Fisher prop:governor ?uri }",Orange(huggingface) What is the birthplace of Liudmila Privivkova and Qadir Huseynov?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Liudmila_Privivkova onto:birthPlace ?uri. res:Qadir_Huseynov onto:birthPlace ?uri . }",Orange(huggingface) Count the number of books whose author's were born in Alcal de Henares ?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:birthPlace . ?uri onto:author ?x . ?uri rdf:type onto:Book}",Orange(huggingface) In which races have Tillingdale's horses participated?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:owner . ?x prop:race ?uri . ?x rdf:type onto:Horse}",Orange(huggingface) Count all the things licensed as Software as a service.,"PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:license . }",Orange(huggingface) What are the last two studio albums of Moondog Matinee?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Moondog_Matinee onto:subsequentWork ?uri }",Orange(huggingface) Count the movies in Swedish language?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:language . ?uri rdf:type onto:Film}",Orange(huggingface) Which company owns Evraz?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Evraz onto:owningCompany ?uri }",Orange(huggingface) What are some games availible on nintendo's virtual console?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:computingPlatform . ?uri rdf:type onto:VideoGame}",Orange(huggingface) What is the parent company of the airline whose hub is in Detroit?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:hubs . ?x prop:parent ?uri . ?x rdf:type onto:Airline}",Orange(huggingface) Did John Byrne create Emma Frost?,"PREFIX res: PREFIX prop: ASK WHERE { prop:creators }",Orange(huggingface) What are the books written by the the person who made the Novelas ejemplares?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:notableWork . ?uri onto:author ?x . ?uri rdf:type onto:Book}",Orange(huggingface) Which researchers received fellowship from Royal Society?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:award . ?uri rdf:type onto:Scientist}",Orange(huggingface) WHo gave the lyrcis of Doonesbury ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:lyrics ?uri }",Orange(huggingface) What games are played at institutions affiliated with the international association of universities?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:affiliations . ?x onto:sport ?uri . ?x rdf:type onto:EducationalInstitution}",Orange(huggingface) "What are the movies whose editor died in Westwood, Los Angeles?","PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:deathPlace . ?uri onto:editing ?x . }",Orange(huggingface) What television shows are distributed by Broadcast syndication?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:distributor . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) How many TV shows has distributor located in Burbank California ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:locationCity . ?uri prop:distributor ?x . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) Name the TV show distributed by Broadcast Syndication and is broadcasted by comedy central?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:distributor . ?uri prop:network . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) What are some things people born in Louisiana are famous for?,"PREFIX res: PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:placeOfBirth . ?x prop:knownFor ?uri . }",Orange(huggingface) In how many places did Julian Leow Beng Kim study?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { prop:almaMater ?uri . ?uri rdf:type onto:University}",Orange(huggingface) What is the common affiliation of the Monroe Carell Jr. Children's Hospital at Vanderbilt and alma mater of the Duncan U. Fletcher?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:affiliation ?uri. onto:almaMater ?uri}",Orange(huggingface) Name the office holder with successor as Adrian A Basora and child as Lori Black ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:child . ?uri prop:successor . ?uri rdf:type onto:OfficeHolder}",Orange(huggingface) How many books have been penned by Miguel de Cervantes?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:author . ?uri rdf:type onto:Book}",Orange(huggingface) What are the musicals of the people died in California?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:deathPlace . ?uri prop:music ?x . ?uri rdf:type onto:Musical}",Orange(huggingface) Who hold stocks in the bank which is located at 731 Lexington Avenue?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:locationCity . ?x prop:owner ?uri . ?x rdf:type onto:Bank}",Orange(huggingface) "Who is the founder of Hohenau, Paraguay?","PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:founder ?uri }",Orange(huggingface) What is the district of Fort Heath radar station?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Fort_Heath_radar_station prop:district ?uri }",Orange(huggingface) How many religion's commanders have served in the Royal Thai Army?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { prop:notableCommanders ?x . ?x onto:religion ?uri . }",Orange(huggingface) How many books are there whose author's tomb is in Madrid?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:restingPlace . ?uri onto:author ?x . ?uri rdf:type onto:Book}",Orange(huggingface) Which hockey team is head coached by Bill Peters?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:headCoach . ?uri rdf:type onto:HockeyTeam}",Orange(huggingface) What is the common party of Chandra Shekhar and Govinda?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:otherParty ?uri. onto:party ?uri}",Orange(huggingface) Which magazines were founded by ann Wenner ?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:founder . ?uri rdf:type onto:Magazine}",Orange(huggingface) "What people were born in Ridgewood, New Jersey?","PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:birthPlace . ?uri rdf:type onto:Person}",Orange(huggingface) What is the company which has Raymond Conner and Dennis Muilenburg as key person?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri prop:keyPeople . ?uri prop:keyPeople . ?uri rdf:type onto:Company}",Orange(huggingface) In which city is the sister station of WCSE-LP located?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:sisterStations ?x . ?x prop:city ?uri . }",Orange(huggingface) What is the television show whose cast members are Jeff Conaway and Jason Carter?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:starring . ?uri onto:starring . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) "Which university's affiliation is with Kalpan, Inc. and has campus at Iowa ?","PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:affiliations . ?uri onto:campus . ?uri rdf:type onto:University}",Orange(huggingface) Name few companies founded in Texas?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:foundationPlace . ?uri rdf:type onto:Company}",Orange(huggingface) Which religion is followed by people in the family of Meadow Sopranos?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:family . ?x onto:religion ?uri . ?x rdf:type onto:Person}",Orange(huggingface) Name the TV show whose company is Playtone and written by Graham Yost?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:company . ?uri prop:writer . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) What is the university whose affiliations is Graham Holdings Company?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:affiliations . ?uri rdf:type onto:University}",Orange(huggingface) Does NOAAS Davidson (S 331) have a homeport in Seattle?,"PREFIX res: PREFIX onto: ASK WHERE { onto:homeport }",Orange(huggingface) Which company builds Microsoft Azure and Microsoft Surface?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:product . ?uri onto:product . ?uri rdf:type onto:Company}",Orange(huggingface) Name the company which produces Marionette and has key person as Edwin catmull?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:products . ?uri prop:keyPeople . ?uri rdf:type onto:Company}",Orange(huggingface) Which appliance's CPU is Cell (microprocessor) and predecessor is PlayStation 2?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:cpu . ?uri onto:predecessor . ?uri rdf:type onto:InformationAppliance}",Orange(huggingface) What are the professions of Ralph flanders?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Ralph_Flanders prop:occupation ?uri }",Orange(huggingface) "Janaka Thissakuttiarachchi follows what religion, which once employed Atisa Srijnana too?","PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Janaka_Thissakuttiarachchi prop:religion ?uri. res:AtiÅ›a onto:occupation ?uri . }",Orange(huggingface) Name the scientist who was the winner of Royal Society award and had Georg Meissner as his doctoral advisor ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:prizes . ?uri prop:doctoralAdvisor . ?uri rdf:type onto:Scientist}",Orange(huggingface) What is the draft team of Gene Conley?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Gene_Conley prop:draftTeam ?uri }",Orange(huggingface) In how many different places have US people died?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:placeOfBirth . ?x onto:deathPlace ?uri . ?uri rdf:type onto:Location}",Orange(huggingface) What awards did the cast members of Gods of Egypt win?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:starring ?x . ?x prop:awards ?uri . }",Orange(huggingface) Name the person who was educated at Harvard-Westlake and won the Screen Actor Guild Life Achievement Award ?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:almaMater . ?uri onto:award . ?uri rdf:type onto:Person}",Orange(huggingface) Name the city with leader as Esther Alder and neighboring municipality as Pregny-Chambsy?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:mayor . ?uri onto:neighboringMunicipality . ?uri rdf:type onto:Location}",Orange(huggingface) How many people have coached the players of Middlesbrough FC?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:team . ?x onto:manager ?uri . ?uri rdf:type onto:Person}",Orange(huggingface) Which cities were in the TV Show which came after The Ultimate Fighter: Brazil 2?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:subsequentWork ?x . ?x prop:city ?uri . ?x rdf:type onto:TelevisionShow}",Orange(huggingface) What are the nearest city to the historic places whose one of the nearest city is Wisconsin?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:nearestCity . ?x prop:nearestCity ?uri . ?x rdf:type onto:HistoricPlace}",Orange(huggingface) What relegious affiliation of Josiah Idowu-Fearon was canonized by john of Damasucs ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:canonizedBy ?uri. onto:religion ?uri}",Orange(huggingface) "Name the office holder whose predecessor is Henry E. Catto, Jr. and successor is Adrian A. Basora?","PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:predecessor . ?uri prop:successor . ?uri rdf:type onto:OfficeHolder}",Orange(huggingface) Give me the count of tenants of the stadia whose one of the tenants is Toronto Furies?,"PREFIX res: PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:tenants . ?x prop:tenants ?uri }",Orange(huggingface) Graduates of Somerville College have been in how many political parties?,"PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:almaMater . ?x onto:party ?uri . }",Orange(huggingface) Stockholm is the HQ of how many things?,"PREFIX res: PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:headquarters . }",Orange(huggingface) Which birthplace of Svetlana Gounkina is also the largest city of Union State?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Union_State prop:largestCity ?uri. res:Svetlana_Gounkina onto:birthPlace ?uri}",Orange(huggingface) Count the different genres of music made by Argentinian bands?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:hometown . ?x onto:genre ?uri . ?uri rdf:type onto:MusicGenre}",Orange(huggingface) Chestnut colored horses have won which races?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:colour . ?x onto:honours ?uri . ?x rdf:type onto:Horse}",Orange(huggingface) "Who is the person whose home town is Fairmount, Indiana?","PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:hometown . ?uri rdf:type onto:Person}",Orange(huggingface) What is the Team Name of St Viator High School ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:St._Viator_High_School prop:teamName ?uri }",Orange(huggingface) Count all the books written by an author buried in the Convent of Barefoot Trinitarians?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:restingPlace . ?uri onto:author ?x . ?uri rdf:type onto:Book}",Orange(huggingface) Who were the narrators of the albums which had Ringo Starr as one of the narrator ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:narrated . ?x prop:narrated ?uri . ?x rdf:type onto:Album}",Orange(huggingface) How many have family as Ape and order (taxonomy) is Primate ?,"PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:family . ?uri onto:order }",Orange(huggingface) How many people are buried in the Winchester Cathedral?,"PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:restingPlace . }",Orange(huggingface) List the television shows whose network's executive officer is Steve Burke.,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:keyPerson . ?uri onto:network ?x . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) What writers have nationality as Statelessness?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:nationality . ?uri rdf:type onto:Writer}",Orange(huggingface) Where is the headquarters of the company which runs the Metro Blue Line in minnesota?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:operator ?x . ?x prop:headquarters ?uri . ?x rdf:type onto:Organisation}",Orange(huggingface) "What city in the US was Alfred Phillips born in, and is the resting place of William Smith?","PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:restingPlace ?uri. prop:birthPlace ?uri . }",Orange(huggingface) Which saints were the messengers of Islam?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:veneratedIn . ?uri rdf:type onto:Saint}",Orange(huggingface) "Which office holder's resting place is in Palo Alto, California and was succeeded by Adrian A. Basora ?","PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:restingPlace . ?uri prop:successor . ?uri rdf:type onto:OfficeHolder}",Orange(huggingface) What are the movies whose musicians's home town is Volos?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:hometown . ?uri prop:music ?x . ?uri rdf:type onto:Film}",Orange(huggingface) In which country was Gumus first aired which is also the mouth country of Upper Neretva?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:mouthCountry ?uri. prop:firstAired ?uri}",Orange(huggingface) Which animator of Tommy Tucker's Tooth is also the film director of Alice's Wonderland ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:director ?uri. prop:animator ?uri}",Orange(huggingface) Who discovered Callisto ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:discoverer ?uri }",Orange(huggingface) Which city's foundeer is John Forbes?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:founder . ?uri rdf:type onto:City}",Orange(huggingface) What are the mascots of the teams participating in the Turkish Handball Super League?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:league . ?x prop:mascot ?uri . ?x rdf:type onto:SportsTeam}",Orange(huggingface) In which countries does the sea lie on whose shore is the city of Cumana?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:cities . ?x onto:country ?uri . ?x rdf:type onto:Sea}",Orange(huggingface) List the resting place of the people who served in Norwalk Trainband.,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:militaryUnit . ?x prop:restingplace ?uri . ?x rdf:type onto:Person}",Orange(huggingface) "What are some licensees of the stations playing in Nashville, Tennessee?","PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:area . ?x prop:licensee ?uri . ?x rdf:type onto:RadioStation}",Orange(huggingface) Where did the office holder who has predecessor Marco Aurelio Robles died?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:predecessor . ?x prop:placeOfDeath ?uri . ?x rdf:type onto:OfficeHolder}",Orange(huggingface) What band had Nick Jonas and Kevin Jonas as former members?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri prop:pastMembers . ?uri prop:pastMembers . ?uri rdf:type onto:Band}",Orange(huggingface) "List the significant buildings of the architect whose one of the important work is Government Building, Kiev ?","PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:significantBuilding . ?x onto:significantBuilding ?uri . ?x rdf:type onto:Architect}",Orange(huggingface) Name the island with archipelago as Society Islands and has the largest city named Faaa ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:largestCity . ?uri prop:archipelago . ?uri rdf:type onto:Island}",Orange(huggingface) Who acted in the movies whose music is composed by Walter Scharf?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:musicComposer . ?x prop:artist ?uri . ?x rdf:type onto:Film}",Orange(huggingface) List all the parents of writers coming from the Great Missenden ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:homeTown . ?x onto:parent ?uri . ?x rdf:type onto:Writer}",Orange(huggingface) How many different genres led to other genres where drums are important?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:instruments . ?x onto:stylisticOrigin ?uri . ?uri rdf:type onto:MusicGenre}",Orange(huggingface) Which mascot of Seneca Academy is also the species of The Fox and the Cat ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:The_Fox_and_the_Cat prop:species ?uri. res:Seneca_Academy_and_Circle_School prop:mascot ?uri}",Orange(huggingface) How many scientist became famous for the battle of Occupation of Japan?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:battle . ?uri prop:knownFor ?x . ?uri rdf:type onto:Scientist}",Orange(huggingface) Members of how many political parties have died in Delhi?,"PREFIX res: PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:placeOfDeath . ?x prop:party ?uri . }",Orange(huggingface) Which country's national motto is Truth prevails?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:nationalMotto . ?uri rdf:type onto:Country}",Orange(huggingface) Total number of places where people drafted by the detroit pistons have died?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:draftTeam . ?x prop:placeOfDeath ?uri . ?uri rdf:type onto:Location}",Orange(huggingface) Which books were published by Thomas Egerton?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:publisher . ?uri rdf:type onto:Book}",Orange(huggingface) Who was succeeded by Arthur Gegei as the office holder ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:successor res:Artúr_Görgei . }",Orange(huggingface) Whose famous works are Maniac Magee and Wringer ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?uri prop:notableworks . ?uri prop:notableworks . }",Orange(huggingface) What is the former team of the Athens borned basketball players?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:birthPlace . ?x onto:formerTeam ?uri . ?x rdf:type onto:BasketballPlayer}",Orange(huggingface) Who built the Ford Y-block engine?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:manufacturer ?uri }",Orange(huggingface) Count the wars in which people awarded with the Croix de guerre fought.,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:awards . ?x prop:battles ?uri . ?uri rdf:type onto:MilitaryConflict}",Orange(huggingface) Does nintendo have a division called Nintendo Entertainment Planning & Development?,"PREFIX res: PREFIX prop: ASK WHERE { prop:divisions }",Orange(huggingface) Waddy wachtel did the music for what movies?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:music . ?uri rdf:type onto:Film}",Orange(huggingface) Where can I find companies which originated in Canada?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:foundationPlace . ?x prop:locations ?uri . ?x rdf:type onto:Company}",Orange(huggingface) What is the religion of the person who founded the Emel magazine?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:founder ?x . ?x onto:religion ?uri . ?x rdf:type onto:Person}",Orange(huggingface) Which animator of The Skeleton Dance is also the animator of the Tommy Tucker's Tooth ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:The_Skeleton_Dance onto:animator ?uri }",Orange(huggingface) List the ingredient of Blodpalt?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Blodpalt onto:ingredient ?uri }",Orange(huggingface) What is the name of the person who has relations with Dionne Warwick and Gary Garland?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:relation . ?uri onto:relation . ?uri rdf:type onto:Person}",Orange(huggingface) Which office holder allegiance is Colony of Virginia and has a wife named Dolley Madison?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:spouse . ?uri prop:allegiance . ?uri rdf:type onto:OfficeHolder}",Orange(huggingface) What is the total number of participants in the conflict of SFOR and other conflicts?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:battles . ?x onto:battle ?uri . }",Orange(huggingface) What is the resting place of the person who is the successor of James W. Hyatt?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:successor ?x . ?x onto:restingPlace ?uri . ?x rdf:type onto:Person}",Orange(huggingface) Name the river with source as Columbia Lake and river mouth is located in Clatsop Country ?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:riverMouth . ?uri onto:source . ?uri rdf:type onto:River}",Orange(huggingface) What is the location of the pope whose major shrine is St. Peter's Basilica ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:majorShrine . ?x prop:birthPlace ?uri . ?x rdf:type onto:Pope}",Orange(huggingface) "What is the location town of First Church of Christ, Scientist (Pittsburgh)?","PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:locationTown ?uri }",Orange(huggingface) What are some other products of the banks which makes Postbanken?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:product . ?x prop:products ?uri . ?x rdf:type onto:Bank}",Orange(huggingface) What movies have been written by authors of Monty Python ?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:writer . ?uri rdf:type onto:Film}",Orange(huggingface) What is the country with native language as Languages of Ethiopia?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:language . ?uri rdf:type onto:Country}",Orange(huggingface) Name the commanders of military conflicts where Roundhead was one of the commander ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:commander . ?x onto:commander ?uri . ?x rdf:type onto:MilitaryConflict}",Orange(huggingface) How many have been venerated in Islam and Judaism?,"PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?uri onto:veneratedIn . ?uri onto:veneratedIn }",Orange(huggingface) How many companies have developed cross platformed software?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:operatingSystem . ?x onto:developer ?uri . }",Orange(huggingface) What are Jerry Bock's musicals based upon?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:music . ?x onto:basedOn ?uri . ?x rdf:type onto:Musical}",Orange(huggingface) What are the mammals whose phylum is Chordate?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:phylum . ?uri rdf:type onto:Mammal}",Orange(huggingface) Whose deputy is Neil Brown?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:deputy . }",Orange(huggingface) List all the doctoral student of the scientist who has advised john Bowlby?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:doctoralStudents . ?x prop:doctoralStudents ?uri . ?x rdf:type onto:Scientist}",Orange(huggingface) Which source of broad creek is the Audenried tunnel located?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:source ?uri. onto:location ?uri}",Orange(huggingface) What is the citizenship of Erastus Wiman?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Erastus_Wiman onto:citizenship ?uri }",Orange(huggingface) Who has authored books published by the Perkins school for the Blind?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:publisher . ?x onto:author ?uri . ?x rdf:type onto:WrittenWork}",Orange(huggingface) Name the office holder whose child is Lori Black and predecessor is Henry E Catto Jr?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:children . ?uri onto:predecessor . ?uri rdf:type onto:OfficeHolder}",Orange(huggingface) What is the origin of the musical artist whose associated band is Ziggi Recado?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:associatedBand . ?x prop:origin ?uri . ?x rdf:type onto:MusicalArtist}",Orange(huggingface) How many relatives are there of veterans of operation Barbarossa?,"PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:battle . ?x onto:relation ?uri . }",Orange(huggingface) Name all the soccer players who played in an under 18 club for La Liga?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:league . ?uri prop:youthclubs ?x . ?uri rdf:type onto:SoccerPlayer}",Orange(huggingface) In which religions are both Pope Gregory 1 and Edwin of Northumbria revered?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Pope_Gregory_I prop:veneratedIn ?uri. res:Edwin_of_Northumbria prop:veneratedIn ?uri . }",Orange(huggingface) Give me a count of bridges located in California ?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:locatedInArea . ?uri rdf:type onto:Bridge}",Orange(huggingface) What was the stadium of Panionios G.S.S. in 2014-15 season ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:2014–15_Panionios_G.S.S._season prop:stadium ?uri }",Orange(huggingface) Which serving railway line of the Rostov-Glavny is also the place of birth of Nina Vislova?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:servingRailwayLine ?uri. prop:placeOfBirth ?uri}",Orange(huggingface) Name the Fox TV show judged by Rand Jackson?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:judges . ?uri prop:channel . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) What is the subject of The Prodigal son ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:subject ?uri }",Orange(huggingface) Where does the river flow into which begins in Lebrsnik?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:sourcePlace res:LebrÅ¡nik . ?x onto:riverMouth ?uri . }",Orange(huggingface) Which person belongs to the board of Howard Hughes Medical Institute?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:board . ?uri rdf:type onto:Person}",Orange(huggingface) Who is the headcoach of 2008-09 Marquette Golden Eagles men's basketball team ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:headcoach ?uri }",Orange(huggingface) What is the operating system of the LG Optimus Vu and also the developer of the Dart (programming language),"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:operatingSystem ?uri. prop:developer ?uri}",Orange(huggingface) Who was the architect of the stadium currently run by Brandenton?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:operator . ?x prop:architect ?uri . ?x rdf:type onto:Stadium}",Orange(huggingface) Which maintainer of Cheasty Boulevard South is also the city of Soccer Bowl' 76 ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:city ?uri. onto:maintainedBy ?uri}",Orange(huggingface) Which company released the software RenderMan?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:products . ?uri rdf:type onto:Company}",Orange(huggingface) Count the battles fought by Raoul Magrin-Vernerey?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { prop:battles ?uri . ?uri rdf:type onto:MilitaryConflict}",Orange(huggingface) What sports are played at institutes affiliated by the Association of Southeast Asian Institutes of Higher Learning?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:affiliation . ?x onto:sport ?uri . ?x rdf:type onto:EducationalInstitution}",Orange(huggingface) Who is the maker of Eristoff?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Eristoff prop:manufacturer ?uri }",Orange(huggingface) Who are the associated musical artist of the artists of band Shorty Rogers?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:associatedBand res:Shorty_Rogers . ?x onto:associatedMusicalArtist ?uri . }",Orange(huggingface) To which label did The Producers and I pray on Christmas sign up?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:I_Pray_on_Christmas prop:label ?uri. res:GetTV onto:parentOrganisation ?uri}",Orange(huggingface) Where is the station whose sister channel is the Channel 3 in Thailand?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:sisterStations . ?x prop:city ?uri . ?x rdf:type onto:TelevisionStation}",Orange(huggingface) Which sports are played at both the Polytech uni of Bataan and Taguig?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Polytechnic_University_of_the_Philippines_–_Bataan onto:sport ?uri. res:Polytechnic_University_of_the_Philippines_Taguig onto:sport ?uri . }",Orange(huggingface) Who was the vice president under which elizabeth alexander served?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:vicePresident ?uri . }",Orange(huggingface) What is the state of origin of the president whose alma mater is Hellenic Naval Academy ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:almaMater . ?x onto:stateOfOrigin ?uri . ?x rdf:type onto:President}",Orange(huggingface) Who is the starring of the movies such that music is by Raamlaxman?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:music . ?x onto:starring ?uri . ?x rdf:type onto:Film}",Orange(huggingface) Count the number of members of the organization which have Austria as one of the member ?,"PREFIX res: PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:membership . ?x prop:membership ?uri }",Orange(huggingface) What is the city nearest to the islands in the Northwestern Hawaiian Islands?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:archipelago . ?x prop:nearestCity ?uri . ?x rdf:type onto:Island}",Orange(huggingface) Who is married to Gerard Pique?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:partner res:Gerard_Piqué . }",Orange(huggingface) Is the Vadodara railway junction onwed by Indian Railway Ministry?,"PREFIX res: PREFIX onto: ASK WHERE { onto:owningOrganisation }",Orange(huggingface) What products are made by Tehran based companies?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:location . ?x onto:product ?uri . ?x rdf:type onto:Company}",Orange(huggingface) Was Elton John a chairman of a Watford FC Season?,"PREFIX res: PREFIX onto: ASK WHERE { onto:chairman }",Orange(huggingface) Who all have been a president of educational institutes in Paud?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:location . ?x prop:president ?uri . ?x rdf:type onto:EducationalInstitution}",Orange(huggingface) What is the river whose source is Cowombat Flat and has it's mouth located in Murray Mouth?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:source . ?uri onto:riverMouth . ?uri rdf:type onto:River}",Orange(huggingface) What sports team's arena is The Palace of Auburn Hills,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:arena . ?uri rdf:type onto:SportsTeam}",Orange(huggingface) How many movies did Joel Schumacher direct?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:director . ?uri rdf:type onto:Film}",Orange(huggingface) Among the scientist known for Manhattan Project who had a doctoral student named Charles Ellis ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:doctoralStudents . ?uri prop:knownFor . ?uri rdf:type onto:Scientist}",Orange(huggingface) List the area of radio stations whose sister station is WBCQ-FM?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:sisterStations ?x . ?x prop:area ?uri . }",Orange(huggingface) What is the draft team of the Antoine Bibeau and also had player named Nathan Dempsey?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Antoine_Bibeau prop:draftTeam ?uri. res:Nathan_Dempsey prop:playedFor ?uri}",Orange(huggingface) How many different people hold authority over the members of Balanidae family?,"PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:family . ?x onto:binomialAuthority ?uri . }",Orange(huggingface) Name the musical artists whose label is given by Kobalt Label Services?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:label . ?uri rdf:type onto:MusicalArtist}",Orange(huggingface) Name the person with opponents Ike Clanton and Tom McLaury?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:opponent . ?uri onto:opponent . ?uri rdf:type onto:Person}",Orange(huggingface) Give me a list of all the buildings which are located in districts governed by John Tory.,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:leaderName . ?uri onto:location ?x . ?uri rdf:type onto:Building}",Orange(huggingface) List the first drivers of Grand Prixes where Mika Hakkinen was a pole driver.,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:poleDriver . ?x onto:firstDriver ?uri . ?x rdf:type onto:GrandPrix}",Orange(huggingface) Which video game composed by Hirokazu Tanaka can be played on virtual Console ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:computingPlatform . ?uri prop:composer . ?uri rdf:type onto:VideoGame}",Orange(huggingface) "Which award that has been given to James F Obrien, had used Laemmle Theatres for some service?","PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:service ?uri. onto:award ?uri}",Orange(huggingface) Where has Garbage recorded its singles?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:producer . ?x onto:recordedIn ?uri . ?x rdf:type onto:Single}",Orange(huggingface) How many movies music composers are associated with Demis Roussos ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:associatedActs . ?uri onto:musicComposer ?x . ?uri rdf:type onto:Film}",Orange(huggingface) Who is the producer of the device which is the operating system of Now TV ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:operatingSystem ?x . ?x onto:manufacturer ?uri . }",Orange(huggingface) What is the name of the television show whose company is Paramount Television and theme music composer is Gary Portnoy?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:company . ?uri prop:themeMusicComposer . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) What is the draft team of Dale Mitchell (ice hockey) ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:draftTeam ?uri }",Orange(huggingface) What currencies are circulated in the countries where people speak French?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:officialLanguage . ?x onto:currency ?uri . ?x rdf:type onto:Location}",Orange(huggingface) Name the shows whose theme was composed by a band in which Jay Lane used to be?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:formerBandMember . ?uri prop:themeMusicComposer ?x . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) Count the number of fileds of the scientist whose one of the interest is Chinese poetry?,"PREFIX res: PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:fields . ?x prop:fields ?uri }",Orange(huggingface) Murray Gold has composed music for how many things?,"PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:composer . }",Orange(huggingface) List the current members of Metro Station (band) ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:currentMembers ?uri }",Orange(huggingface) In which cities were the chess grand masters born?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:title . ?x onto:birthPlace ?uri . }",Orange(huggingface) How many famous people are born in Long Island?,"PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:birthPlace . }",Orange(huggingface) How many veterans are buried in the US?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:restingPlace . ?uri rdf:type onto:MilitaryPerson}",Orange(huggingface) How many other important things has the painter of Sarah Jane Adventures done?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { prop:creator ?x . ?x onto:notableWork ?uri . }",Orange(huggingface) "To what other locations does the airlines have flights, who also fly to Birmingham?","PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:targetAirport . ?x prop:destinations ?uri . ?x rdf:type onto:Airline}",Orange(huggingface) How many people are in the band with Juelz Santana?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:currentMembers . ?x onto:bandMember ?uri . ?uri rdf:type onto:Person}",Orange(huggingface) What is the layout of the automobiles designed by Olivier Boulay?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:designer . ?x onto:layout ?uri . ?x rdf:type onto:Automobile}",Orange(huggingface) Name the products of Den norske Bank?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Den_norske_Bank prop:products ?uri }",Orange(huggingface) How many other battles have the military person fought whose one of the battles is World War II ?,"PREFIX res: PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:battles . ?x prop:battles ?uri }",Orange(huggingface) Name the country with currency as Aureus ?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:currency . ?uri rdf:type onto:Country}",Orange(huggingface) Who developed games based on the Cars series?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:series . ?x onto:developer ?uri . ?x rdf:type onto:VideoGame}",Orange(huggingface) For a position in which institution were both Jack Ryan and Robert sarvis both appointed?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:nominee ?uri. onto:nominee ?uri . ?uri rdf:type onto:Organisation}",Orange(huggingface) Which series was written by Eric Jendresen and John Orloff?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri prop:writer . ?uri prop:writer . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) Who is the developer of the software which serves the platform for King's Quest VI?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:computingPlatform ?x . ?x prop:developer ?uri . ?x rdf:type onto:Software}",Orange(huggingface) Name the TV show whose network is NBC and is the subsequent work of Fraiser?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:network . ?uri onto:subsequentWork . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) Joe Hahn is the member of what band?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:currentMembers . ?uri rdf:type onto:Band}",Orange(huggingface) Where was founded the trade union with whom Amalgamated Clothing Workers of America is affiliated?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Amalgamated_Clothing_Workers_of_America onto:affiliation ?x . ?x prop:founded ?uri . }",Orange(huggingface) "Who studied at Harvard-Westlake School and has Henry E. Catto, Jr. as predecessor ?","PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:almaMater . ?uri onto:predecessor . }",Orange(huggingface) What sports are played in schools in the capital region?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:region . ?x onto:sport ?uri . ?x rdf:type onto:School}",Orange(huggingface) Ontario's ice hockey players have been a part of which teams?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:placeOfBirth . ?x onto:team ?uri . ?x rdf:type onto:IceHockeyPlayer}",Orange(huggingface) Name the television show developed by J. Michael Straczynski and distributed by Warner Bros. Television?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:developer . ?uri prop:distributor . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) Name some basketball players who have played for chicago bulls?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:team . ?uri rdf:type onto:BasketballPlayer}",Orange(huggingface) List all the narrators of the albums which had Alan Barzman as one of the narrator ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:narrated . ?x prop:narrated ?uri . ?x rdf:type onto:Album}",Orange(huggingface) Who is the author of Karakuri Dji Ultimo?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Karakuri_Dôji_Ultimo prop:author ?uri }",Orange(huggingface) Who made the singles on the famous album Aida?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:album . ?x onto:musicalArtist ?uri . ?x rdf:type onto:Single}",Orange(huggingface) In how many places were the albums of King Crimson recorded?,"PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:artist . ?x onto:recordedIn ?uri . }",Orange(huggingface) List the home stadiums of the teams in the Russian Premier League?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:league res:2011–12_Russian_Premier_League . ?x onto:homeStadium ?uri . }",Orange(huggingface) Which place is Penobscot Island Air founded and is also the birthplace of Ellei Johndro?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Penobscot_Island_Air prop:founded ?uri. res:Ellei_Johndro onto:birthPlace ?uri}",Orange(huggingface) What are some devices whose manufacturers are in taiwan?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:locationCountry . ?uri onto:manufacturer ?x . ?uri rdf:type onto:Device}",Orange(huggingface) Give me the count of all people who ascended a peak in California?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:locatedInArea . ?x onto:firstAscentPerson ?uri . ?uri rdf:type onto:Person}",Orange(huggingface) How many people have written stuff broadcasted on the Tokyo Broadcasting System?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:network . ?x prop:writer ?uri . ?uri rdf:type onto:Person}",Orange(huggingface) What is the area of the broadcast network which has the affiliation with 9TV?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:affiliation ?x . ?x prop:area ?uri . ?x rdf:type onto:BroadcastNetwork}",Orange(huggingface) What is the basketball team whose President's college is Brockport Golden Eagles?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:college . ?uri prop:president ?x . ?uri rdf:type onto:BasketballTeam}",Orange(huggingface) "Which sucessor of George Madison is the sucessor of levi Lincoln, Sr. ?","PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:relation ?uri. prop:successor ?uri}",Orange(huggingface) "Where are the philosophers from, whose main work is on the matter of feminism in Canada?","PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:mainInterest . ?x prop:region ?uri . ?x rdf:type onto:Philosopher}",Orange(huggingface) How many religions are followed by the group whose architectural style can be seen on Sanggar Agung?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { prop:architecturalStyle ?x . ?x onto:religion ?uri . ?x rdf:type onto:EthnicGroup}",Orange(huggingface) Is Philosophy the academic discipline of Think (journal)?,"PREFIX res: PREFIX onto: ASK WHERE { onto:academicDiscipline }",Orange(huggingface) Who is the fictional character whose relative is Vestigial Peter?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:relative . ?uri rdf:type onto:FictionalCharacter}",Orange(huggingface) What is the birth city of the Salford City F.C players?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:team . ?x onto:birthPlace ?uri . ?x rdf:type onto:SoccerPlayer}",Orange(huggingface) For which teams did the Hawai graduated players play their first game?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:college . ?x onto:debutTeam ?uri . ?x rdf:type onto:Athlete}",Orange(huggingface) What is the television show whose previous work is The Spirit of Christmas (short film)?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:previousWork . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) How many sitcoms are there whose theme music is composed by a New Yorker?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:hometown . ?uri prop:themeMusicComposer ?x . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) Where is Tahual located which is also the country of Ren Romano ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:René_Romano prop:citizenship ?uri. res:Tahual prop:location ?uri}",Orange(huggingface) "Give the name of the river with source place as Australian Alps and has mouth place as Goolwa , a place in Siyuth Australia ?","PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:sourcePlace . ?uri onto:mouthPlace . ?uri rdf:type onto:River}",Orange(huggingface) What magazines are form the Limited liability company?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:company . ?uri rdf:type onto:Magazine}",Orange(huggingface) Which footballers did their high school in west Sacramento california?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:highSchool . ?uri rdf:type onto:AmericanFootballPlayer}",Orange(huggingface) What is the highschool of the american football player who joined the Robert Morris Colonials program?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:school . ?x prop:highschool ?uri . ?x rdf:type onto:AmericanFootballPlayer}",Orange(huggingface) What are some orthonychidae birds?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:family . ?uri rdf:type onto:Bird}",Orange(huggingface) "What place did Edwin Adams die at, which gave birth to William A Purtell?","PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:placeOfDeath ?uri. onto:birthPlace ?uri . }",Orange(huggingface) What religions do politicians in the Korean Minjoo Party follow?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:party . ?x onto:religion ?uri . ?x rdf:type onto:OfficeHolder}",Orange(huggingface) What is the venerated in of the Abraham and religion of the Saima Chowdhury?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Abraham prop:veneratedIn ?uri. res:Saima_Chowdhury prop:religion ?uri}",Orange(huggingface) What is the place of birth of Lauren Briggs?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Lauren_Briggs prop:placeOfBirth ?uri }",Orange(huggingface) Which collaborator of Nice and Smooth wrote Same Song ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:associatedBand ?uri. prop:writer ?uri . }",Orange(huggingface) Who wrote the singles on the Main Course?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:album . ?x prop:writer ?uri . ?x rdf:type onto:Single}",Orange(huggingface) "Where is the county seat of King County, Washington?","PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:countySeat ?uri }",Orange(huggingface) What is the television show whose opening theme is Te Deum (Charpentier)?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:openingTheme . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) Which team of Dan Shamash is also the debut team of John Estes?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:John_Estes onto:debutTeam ?uri. res:Dan_Shamash onto:team ?uri}",Orange(huggingface) List the scientists whose doctoral advisor is Ernest Rutherford and are known for Manhattan Project?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:doctoralAdvisor . ?uri prop:knownFor . ?uri rdf:type onto:Scientist}",Orange(huggingface) List the producers who produced movies starring Michael Jackson.,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:starring . ?x prop:producer ?uri . ?x rdf:type onto:Film}",Orange(huggingface) How many politicians reside in Cape Town?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:residence . ?uri rdf:type onto:OfficeHolder}",Orange(huggingface) Which successor of McDonnell Douglas was built by Delta 3 ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Delta_III onto:manufacturer ?uri. res:McDonnell_Douglas prop:successor ?uri}",Orange(huggingface) Who is the appointer of William Cushing?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:William_Cushing onto:appointer ?uri }",Orange(huggingface) What is the alma mater of the author of Letter to a Christian Nation?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Letter_to_a_Christian_Nation onto:author ?x . ?x prop:almaMater ?uri . }",Orange(huggingface) Which manufacturer of the Boeing B-17 Flying fortress is the manager of burro Flats Painted Caves ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:governingBody ?uri. onto:manufacturer ?uri}",Orange(huggingface) Who is the producer of the single which was the subsequent work of He's a Liar?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:subsequentWork ?x . ?x onto:producer ?uri . }",Orange(huggingface) How many artists have collaborated with famous guitar players?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:notableInstruments . ?x onto:associatedMusicalArtist ?uri . ?uri rdf:type onto:Artist}",Orange(huggingface) what kind of things play on WBIG FM?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:programmeFormat ?uri }",Orange(huggingface) "Which location of INKAS is also the location of T.I. Ahmadiyya Senior High School, Kumasi ?","PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:locations ?uri. onto:denomination ?uri}",Orange(huggingface) In how many countries does the Zurich Affoltern am Albis Zug line go?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:line . ?x onto:country ?uri . ?uri rdf:type onto:Country}",Orange(huggingface) List the movies whose cast member were born in Scotland.,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:birthPlace . ?uri onto:starring ?x . ?uri rdf:type onto:Film}",Orange(huggingface) How many bands collaborated with artists who signed up with EMI?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:recordLabel . ?x onto:associatedMusicalArtist ?uri . ?uri rdf:type onto:Band}",Orange(huggingface) What genre's software are released with a GNU GPL license?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:license . ?x onto:genre ?uri . }",Orange(huggingface) How many people have played for the ones who own the stadium of Bankers Life Fieldhouse?,"PREFIX res: PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:arena . ?uri prop:team ?x . }",Orange(huggingface) List the stadium of the teams which uses Nea Smyrni as one of the stadium?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:stadium res:Nea_Smyrni_Stadium . ?x prop:stadium ?uri . }",Orange(huggingface) How many things are aired on BBC HD?,"PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:network . }",Orange(huggingface) What is the label of the singles whose group is Outlawz?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:musicalArtist . ?x prop:label ?uri . ?x rdf:type onto:Single}",Orange(huggingface) How many people hold important positions alongwith Donna Shalala?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:keyPerson . ?x prop:keyPeople ?uri . }",Orange(huggingface) What are the outflow of the lakes which also has one of the outflow as Congo River?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:outflow res:Congo_River . ?x onto:outflow ?uri . }",Orange(huggingface) List down all the associcated musical artist of the artist of In a Word or 2?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:In_a_Word_or_2 prop:artist ?x . ?x onto:associatedMusicalArtist ?uri . }",Orange(huggingface) Is The Orator in the National Archaeological Museum of Florence?,"PREFIX res: PREFIX prop: ASK WHERE { prop:museum }",Orange(huggingface) Who created the Women in the Garden and also the L'Enfant a la tasse?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:artist ?uri. prop:artist ?uri . }",Orange(huggingface) Where is the residence of the governor of Bangkok?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Bangkok onto:leaderName ?x . ?x prop:residence ?uri . }",Orange(huggingface) Name the rivers which originate from within Pittsburg?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:cities . ?uri onto:source ?x . ?uri rdf:type onto:River}",Orange(huggingface) Which universities are also known as the Tulane Green wave?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:nickname . ?uri rdf:type onto:University}",Orange(huggingface) What do typically NGOs work for?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:type . ?x prop:purpose ?uri . }",Orange(huggingface) Where is the senator from whose successor was James belford?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:successor . ?x onto:region ?uri . ?x rdf:type onto:Senator}",Orange(huggingface) Name the company which provides Outlook.com as service and also has a product named Microsoft Azure?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:services . ?uri onto:product . ?uri rdf:type onto:Company}",Orange(huggingface) In how many different places can I fnd Modern Architectural buildings?,"PREFIX res: PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:architecturalStyle . ?x prop:address ?uri . }",Orange(huggingface) Which sports are played in schools founded by Fr Almeida?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:founder . ?x onto:sport ?uri . ?x rdf:type onto:School}",Orange(huggingface) To which persons is Ron Cyrus a relative?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:relatives . ?uri rdf:type onto:Person}",Orange(huggingface) "Where were the sportsmen born, who started their careers with Homestead Grays?","PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:debutteam . ?x prop:birthDate ?uri . ?x rdf:type onto:Athlete}",Orange(huggingface) What are the nicknames of the schools whose color is royal blue?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:colour . ?x prop:nickname ?uri . ?x rdf:type onto:School}",Orange(huggingface) "What all is produced by companies in Douglas, Isle of Man?","PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:locationCity . ?x onto:product ?uri . ?x rdf:type onto:Company}",Orange(huggingface) What are the bands associated with the artists of My Favorite Girl?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:artist ?x . ?x onto:associatedBand ?uri . }",Orange(huggingface) Name the resting place of Charles Edward Magoon?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Charles_Edward_Magoon prop:restingplace ?uri }",Orange(huggingface) Give me some administrators of bridges over which cars can go?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:carries . ?x onto:maintainedBy ?uri . ?x rdf:type onto:Bridge}",Orange(huggingface) Which president of the United States had vice president as John Adams?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:vicePresident . ?uri rdf:type onto:OfficeHolder}",Orange(huggingface) Name the rive whose mouth is located in Limerick and location is Dowra?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:mouthLocation . ?uri prop:sourceLocation . ?uri rdf:type onto:River}",Orange(huggingface) Was Finding Nemo released before The Incredibles?,"PREFIX res: PREFIX onto: ASK WHERE { onto:previousWork }",Orange(huggingface) Which city is known for the people working in the western penn hospital?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:workInstitutions . ?x onto:knownFor ?uri . ?x rdf:type onto:Person}",Orange(huggingface) List the party of the office holder which also has the affiliation with Congress Socialist party ?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:otherParty . ?x onto:otherParty ?uri . ?x rdf:type onto:OfficeHolder}",Orange(huggingface) Who is the person that first ascentded the Cathedral Peak and Mount Hoffmann?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:firstAscentPerson ?uri. onto:firstAscentPerson ?uri . }",Orange(huggingface) Who is the designer of Saleen S5S Raptor?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Saleen_S5S_Raptor prop:designer ?uri . }",Orange(huggingface) Into which water bodies does Lake Uniamsi outflow?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Lake_Uniamési prop:outflow ?uri }",Orange(huggingface) "What nation is Hornito located in, where Jamie Bateman Cayn died too?","PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:deathPlace ?uri. onto:country ?uri . }",Orange(huggingface) What are the other band member of the Bands whose current members is Hynief?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:currentMembers . ?x onto:bandMember ?uri . ?x rdf:type onto:Band}",Orange(huggingface) Who is the singer of the album which has a song Me and My arrow ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:album ?x . ?x prop:narrated ?uri . ?x rdf:type onto:Album}",Orange(huggingface) Who all have been presenters on shows by the NBC?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:channel . ?x prop:presenter ?uri . ?x rdf:type onto:TelevisionShow}",Orange(huggingface) What is the game platform of Google Cloud Connect?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Google_Cloud_Connect onto:computingPlatform ?uri }",Orange(huggingface) Where was Al-Muzaffar Umar buried ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:placeOfBurial ?uri }",Orange(huggingface) How many shows are made by Playtone?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:company . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) For how many different teams have the players debuted in Houston Astros played?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:debutTeam . ?x onto:team ?uri . ?uri rdf:type onto:SportsTeam}",Orange(huggingface) In which city was the film star of Singhasan Battisi born ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:starring ?x . ?x prop:birthPlace ?uri . }",Orange(huggingface) Which television shows have been produced by Erik Bork?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:producer . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) How many parties have come in power in elections where Y. S. Rajasekhara Reddy won?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:leader . ?x onto:affiliation ?uri . }",Orange(huggingface) Count the number of sports played by university which also plays Taekwondo ?,"PREFIX res: PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:athletics . ?x prop:athletics ?uri }",Orange(huggingface) Name the person who died in Fair Lane ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:deathPlace . ?uri rdf:type onto:Person}",Orange(huggingface) Who are the writers of the singles whose music genre is Rhythm and blues ?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:genre . ?x onto:writer ?uri . ?x rdf:type onto:Single}",Orange(huggingface) Which Tim Birton's movie has a screenplay by Daniel Waters ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:screenplay . ?uri prop:director . }",Orange(huggingface) What is the city of the television station whose affiliations is LATV?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:affiliations . ?x prop:city ?uri . ?x rdf:type onto:TelevisionStation}",Orange(huggingface) What are the awards won by the spouse of Liv Ullmann?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Liv_Ullmann onto:partner ?x . ?x prop:awards ?uri . }",Orange(huggingface) In how many different wars have people graduated from the Army Command and General staff college fought?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:almaMater . ?x prop:battles ?uri . }",Orange(huggingface) Name the office holder who has a child named lori Black and Harvard Westlake school as one of the educational institute ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:children . ?uri onto:almaMater . ?uri rdf:type onto:OfficeHolder}",Orange(huggingface) Who founded the league which was won by Joe McKeehen?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:champion . ?x prop:founded ?uri . ?x rdf:type onto:SportsLeague}",Orange(huggingface) Which team did Dough Acomb played for which is also the draft team of Dale Mitchell ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:draftTeam ?uri. prop:playedFor ?uri}",Orange(huggingface) Who develops the Lao Plaza Hotel?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Lao_Plaza_Hotel prop:developer ?uri }",Orange(huggingface) Which home stadium of 2011-12 FC Spartak Moscow season is also the location of birth of the Svetlana Gounkina ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:2011–12_FC_Spartak_Moscow_season onto:homeStadium ?uri. res:Svetlana_Gounkina onto:birthPlace ?uri}",Orange(huggingface) How many units follow the US Navy Department's command structure?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:commandStructure . ?uri rdf:type onto:MilitaryUnit}",Orange(huggingface) Which baseball team is owned by Robert Nutting?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:owner . ?uri rdf:type onto:BaseballTeam}",Orange(huggingface) List the television shows whose network's owning company is Turner Broadcasting System?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:owningCompany . ?uri prop:network ?x . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) "How many things are located in Ridgewood, New Jersey?","PREFIX res: PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:birthPlace . }",Orange(huggingface) How many people are there whose children died in Indiana?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:deathPlace . ?uri onto:child ?x . ?uri rdf:type onto:Person}",Orange(huggingface) Which country are the players of the Atletico Petroleos de Luanda from?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:club . ?x onto:nationality ?uri . ?x rdf:type onto:Athlete}",Orange(huggingface) Which comic characters are painted by Bill Finger?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:creator . ?uri rdf:type onto:ComicsCharacter}",Orange(huggingface) Is Gutenberg neighbouring with Madiswil?,"PREFIX res: PREFIX prop: ASK WHERE { prop:neighboringMunicipalities }",Orange(huggingface) Which employer of Manu Cornet has also written Google.by ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Manu_Cornet prop:employer ?uri. res:Google.by onto:author ?uri}",Orange(huggingface) Name the constituency of Jonas Gahr where Sverre Krogh was born ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Jonas_Gahr_Støre prop:constituency ?uri. res:Sverre_Krogh_Sundbø prop:birthPlace ?uri}",Orange(huggingface) Which mountains are contained in Inyo National Forest?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:locatedInArea . ?uri rdf:type onto:Mountain}",Orange(huggingface) Who is the stockholder of the road tunnels operated by the Massachusetts Department of Transportation?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:operator . ?x prop:owner ?uri . ?x rdf:type onto:RoadTunnel}",Orange(huggingface) Which governor of Charles Willing byrd fought the battle of Siege of Fort Recovery?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:battle res:Siege_of_Fort_Recovery . ?uri prop:governor res:Charles_Willing_Byrd . }",Orange(huggingface) How many different people have been in any political seat in places which are under the Indian Standard timezone?,"PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:timeZone . ?x onto:leaderName ?uri . }",Orange(huggingface) Name the hockey team which has head coach as Mike babcock and is based in Toronto ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:locationCity . ?uri prop:headCoach . ?uri rdf:type onto:HockeyTeam}",Orange(huggingface) Who is the owner of the South end?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:The_South_End prop:owners ?uri }",Orange(huggingface) What is the religion of the political party which is an international party of Hamas?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:international ?x . ?x onto:religion ?uri . ?x rdf:type onto:PoliticalParty}",Orange(huggingface) How many owners owned the clubs participating in the Premier leagues of '14?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:season . ?x prop:owner ?uri . }",Orange(huggingface) Which musical artist associated with Tony Allen has label with Celluloid Records ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:associatedMusicalArtist . ?uri prop:label . ?uri rdf:type onto:MusicalArtist}",Orange(huggingface) Who had headed the governmental agencies whose admin HQ was in Niederkirchnerstrasse?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:headquarter . ?x onto:leader ?uri . ?x rdf:type onto:GovernmentAgency}",Orange(huggingface) Who was the coach of marquette Golden Eagles men's basketball team 2012-13 season ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:coach ?uri }",Orange(huggingface) "Name the river whose source is located in Itasca State Park and mouth is located in Pilottown, Louisiana?","PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:sourceLocation . ?uri prop:mouthLocation . ?uri rdf:type onto:River}",Orange(huggingface) Is Peter Crouch currently in the Stoke City FC?,"PREFIX res: PREFIX prop: ASK WHERE { prop:currentclub }",Orange(huggingface) In which cities are there american football teams where Matt Snorton played?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:pastteams ?x . ?x onto:locationCity ?uri . ?x rdf:type onto:AmericanFootballTeam}",Orange(huggingface) What are the central characters in spy kids series?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:series . }",Orange(huggingface) How many religion's people have died in Malaysia?,"PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:deathPlace . ?x onto:religion ?uri . }",Orange(huggingface) List the mountains of the range Sierra Nevada (U.S.) located in California?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:mountainRange . ?uri onto:locatedInArea . ?uri rdf:type onto:Mountain}",Orange(huggingface) Name the emplyer for which Manu cornet has worked and also written in Google Web Toolkit ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Manu_Cornet prop:employer ?uri. res:Google_Web_Toolkit onto:author ?uri}",Orange(huggingface) How many cars are the predecessor of cars similar to the Pontiac G8?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { onto:relatedMeanOfTransportation ?x . ?x onto:predecessor ?uri . ?x rdf:type onto:Automobile}",Orange(huggingface) Which person naratted The Incredible Hulk and also the writer of Tales of Suspense?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:narrated ?uri. prop:writers ?uri}",Orange(huggingface) What are some islands in the bahamas?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:archipelago . ?uri rdf:type onto:Island}",Orange(huggingface) Name the river whose source location is Nevado Mismi and region is Arequipa Region?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:sourceLocation . ?uri prop:sourceRegion . ?uri rdf:type onto:River}",Orange(huggingface) Where is the origin of Filbert's Old Time Root Beer?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:origin ?uri }",Orange(huggingface) "List the people residing in Wilton, Connecticut?","PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:residence }",Orange(huggingface) How many sitcoms were produced by the company whose predecessor was the Desilu Productions?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:predecessor . ?uri prop:company ?x . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) To which US states does the roads belong which meet at the East Whiteland Township in Pennsylvania?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:routeJunction . ?x onto:state ?uri . ?x rdf:type onto:Road}",Orange(huggingface) Name the TV show whose producer is Stephen E. Ambrose and company is HBO ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:producer . ?uri onto:company . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) Name the district of Robert William Wilcox?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Robert_William_Wilcox prop:district ?uri }",Orange(huggingface) Which division of Serbia national team is also the region of Dobinsk Ice Cave?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Serbia_national_American_football_team onto:division ?uri. res:DobÅ¡inská_Ice_Cave onto:region ?uri}",Orange(huggingface) In how many places has Garbage recorded their songs?,"PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:producer . ?x onto:recordedIn ?uri . }",Orange(huggingface) How many religions are followed amongst the people who've worked in the Korean army?,"PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:militaryBranch . ?x onto:religion ?uri . }",Orange(huggingface) list the organisation with motive for peace and environmentalism?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri prop:purpose . ?uri prop:purpose . ?uri rdf:type onto:Organisation}",Orange(huggingface) How many things are crossed over by bridges which can carry cars?,"PREFIX res: PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:carries . ?x prop:crosses ?uri . }",Orange(huggingface) What is the religious affiliation of Wickramabahu Central College (National School)?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:religiousAffiliation ?uri }",Orange(huggingface) How many people were opponents of the ones buried in the tower of London?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:restingPlace . ?x onto:opponent ?uri . ?uri rdf:type onto:Person}",Orange(huggingface) "Which are the cities on the river which also flows in Tukwila, Washington ?","PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:city . ?x onto:city ?uri . ?x rdf:type onto:River}",Orange(huggingface) Who was the director of photography of Mickey's Mellerdrammer and the animator of Tommy Tucker's Tooth?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:cinematography ?uri. prop:animator ?uri}",Orange(huggingface) Was Buzz Williams the headcoach of the Marquette Golden Eagles mens team?,"PREFIX res: PREFIX prop: ASK WHERE { prop:headcoach }",Orange(huggingface) How many other schools are there of the rugby players whose school is Michaelhouse ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:school . ?x prop:school ?uri }",Orange(huggingface) How many people have played for a club whose coach is Fred Hoiberg?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:coach . ?uri prop:team ?x . }",Orange(huggingface) What is the country of the Hirth Acrostar and the Cobra missile?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:origin ?uri. onto:origin ?uri . }",Orange(huggingface) Which artist married to Lee Krasner?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:spouse . ?uri rdf:type onto:Artist}",Orange(huggingface) What layout can be found in cars similar to the Subaru Outback?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:related . ?x onto:layout ?uri . ?x rdf:type onto:Automobile}",Orange(huggingface) Who was the designer of john madden Football '92 ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:designer ?uri }",Orange(huggingface) Count the number teams which have former ice hockey players which also included American Hockey League?,"PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:formerTeam . ?x onto:formerTeam ?uri }",Orange(huggingface) "What team were the people drafted to, which are in the National Hockey League?","PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:league . ?x prop:draftTeam ?uri . ?x rdf:type onto:Person}",Orange(huggingface) Which philosophy journal has compiler as Stephen Law ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:editor . ?uri prop:discipline . ?uri rdf:type onto:AcademicJournal}",Orange(huggingface) How many have order (taxonomy) as Bacillales and division as Firmicutes are there?,"PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:order . ?uri onto:division }",Orange(huggingface) Name the stadiums of 2015 Pro Duta FC season?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:2015_Pro_Duta_FC_season prop:stadium ?uri }",Orange(huggingface) Name the largest city in the county where there is a Cy-Fair High School.,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:county ?x . ?x onto:largestCity ?uri . }",Orange(huggingface) Which american football players currently plays for Michigan Wolverines?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:currentteam . ?uri rdf:type onto:AmericanFootballPlayer}",Orange(huggingface) "Name the team for which Hensley Meulens played, which was also the debut team of Steve Ontiveros ?","PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:debutteam ?uri. onto:team ?uri}",Orange(huggingface) What are some products of the company whose parent is BBC?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:parent . ?x prop:products ?uri . ?x rdf:type onto:Company}",Orange(huggingface) Which writer of A streetcar Named Desire is also the author of The Catastrophe of Success?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:writer ?uri. onto:author ?uri}",Orange(huggingface) What are the notable commanders of the army whose one of the notable commanders is Paul Hausser?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:notableCommanders res:Paul_Hausser . ?x prop:notableCommanders ?uri . }",Orange(huggingface) "For how many PMs did the politician work, whose successor was Kingsley Wood?","PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { onto:successor ?x . ?x prop:primeminister ?uri . ?x rdf:type onto:OfficeHolder}",Orange(huggingface) Which race is the Best Mate is also the race of the Martin Molony?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Best_Mate prop:race ?uri. res:Martin_Molony onto:race ?uri}",Orange(huggingface) Is Michael Schumacher the first driver of the 1994 Hungarian grand prix?,"PREFIX res: PREFIX prop: ASK WHERE { res:1994_Hungarian_Grand_Prix prop:firstDriver res:Michael_Schumacher }",Orange(huggingface) What killed John Thompson Mason and Martino Martini?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:deathCause ?uri. onto:deathCause ?uri . }",Orange(huggingface) Which moto of american Classical League is also the academic discipline of Probus?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:motto ?uri. onto:academicDiscipline ?uri}",Orange(huggingface) Who fought in the battle at Tupelo Mississippi?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:place . ?x prop:combatant ?uri . ?x rdf:type onto:MilitaryConflict}",Orange(huggingface) What are the books written by authors who died in Madrid?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:restingPlace . ?uri prop:author ?x . ?uri rdf:type onto:Book}",Orange(huggingface) Gregg Toland cinematographed how many things?,"PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:cinematography . }",Orange(huggingface) What are some countries where companies headquartered in the Klang Valley operate?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:headquarters . ?x prop:country ?uri . ?x rdf:type onto:Company}",Orange(huggingface) How many cities are close to Lake Victoria?,"PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { onto:nearestCity ?uri . }",Orange(huggingface) What is the birthplace of the netball player who is the relative of Rachel Rasmussen ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:relatives ?x . ?x onto:birthPlace ?uri . ?x rdf:type onto:NetballPlayer}",Orange(huggingface) "Which university has affiliations to Graham Holdings and Kaplan, Inc.?","PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri prop:affiliations . ?uri prop:affiliations . ?uri rdf:type onto:University}",Orange(huggingface) List the academic discipline of the journals whose one of the discipline is neuro imaging ?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:academicDiscipline . ?x onto:academicDiscipline ?uri . ?x rdf:type onto:AcademicJournal}",Orange(huggingface) name the home stadium of FC Spartak Moscow season 2011-12,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:2011–12_FC_Spartak_Moscow_season onto:homeStadium ?uri }",Orange(huggingface) Does the white river flow into the connecticut river?,"PREFIX res: PREFIX onto: ASK WHERE { onto:rightTributary }",Orange(huggingface) Which artist was taught by Jos Ruiz y Blasco?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:training . ?uri rdf:type onto:Artist}",Orange(huggingface) List the bacterias whose division is Firmicutes and domain is bacteria?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:division . ?uri prop:domain . ?uri rdf:type onto:Bacteria}",Orange(huggingface) Which composer of Motorpsycho Nitemare has also composed The time are A-Changing?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:composer ?uri. onto:musicBy ?uri}",Orange(huggingface) What is the nationality of the J. T. Krogh which is also the sovereign state of the Camilla Martin?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:J._T._Krogh onto:nationality ?uri. res:Camilla_Martin onto:country ?uri}",Orange(huggingface) Name the river whose source place is Gloucestershire and mouth place is Southend-on-Sea ?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:sourcePlace . ?uri onto:mouthPlace . ?uri rdf:type onto:River}",Orange(huggingface) Who has built the stadiums which were rented by the Central american games of 2013?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:tenant . ?x onto:builder ?uri . ?x rdf:type onto:Stadium}",Orange(huggingface) How many cities are around the sea in which the the fig tree bay meets?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { onto:inflow ?x . ?x prop:cities ?uri . ?x rdf:type onto:Sea}",Orange(huggingface) Who all were venerated in Islam?,"PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:veneratedIn . }",Orange(huggingface) List down the cinematographers of Mickey's Mellerdrammer?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:cinematography ?uri }",Orange(huggingface) "Where is the ground of the soccer club, which has Alan Kusov as a team member?","PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:team ?x . ?x onto:ground ?uri . ?x rdf:type onto:SoccerClub}",Orange(huggingface) Which shows have voices from people signed up with ABC Records?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:label . ?uri prop:voices ?x . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) "How many licensees are there, of the radio stations whose area is Nashville, Tennessee?","PREFIX res: PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:area . ?x prop:licensee ?uri . }",Orange(huggingface) Who was the architect of the stadium currently run by the Pittsburgh Pirates?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:operator . ?x prop:architect ?uri . ?x rdf:type onto:Stadium}",Orange(huggingface) "What is the country where Sergei Ovchinnikov the volleyball player died, and Gumus was first aired ?","PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:firstAired ?uri. prop:placeOfDeath ?uri}",Orange(huggingface) What is the county seat of the county which has an Evergreen High School?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:county ?x . ?x onto:countySeat ?uri . }",Orange(huggingface) List the important people of Maryland Jockey Club ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Maryland_Jockey_Club prop:keyPeople ?uri }",Orange(huggingface) Who founded the Not on our Watch?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:foundedBy ?uri }",Orange(huggingface) Who all have written songs that were then recorded in the Criteria Studios?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:recordedIn . ?x prop:writer ?uri . ?x rdf:type onto:MusicalWork}",Orange(huggingface) "For how many things are people famous, who were born in Nebraska?","PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:birthPlace . ?x onto:knownFor ?uri . }",Orange(huggingface) "Who is the chancellor of the university whose campus is in Woodlane, New Jersey ?","PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:campus . ?x prop:chancellor ?uri . ?x rdf:type onto:University}",Orange(huggingface) Name the rivers originating from an English speaking nation?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:officialLanguage . ?uri onto:sourceCountry ?x . ?uri rdf:type onto:River}",Orange(huggingface) What are some movies whose distributor's CEO is Ted Hartley?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:keyPeople . ?uri prop:distributor ?x . ?uri rdf:type onto:Film}",Orange(huggingface) Which company manufactures cars like the Opel Karl ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:related . ?x prop:parentCompany ?uri . ?x rdf:type onto:Automobile}",Orange(huggingface) What shows are aired on sister channels of BBC Parliaments?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:sisterNames . ?uri onto:network ?x . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) Who are the players whose current clubs have Ferran Soriano as chairman?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:chairman . ?uri prop:currentclub ?x . ?uri rdf:type onto:Person}",Orange(huggingface) "Was Ne Daj Se, Nina first aired in Croatia?","PREFIX res: PREFIX prop: ASK WHERE { prop:firstAired }",Orange(huggingface) Who designed the stadiums which have been rented by Oakland athletics?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:tenant . ?x prop:architect ?uri . ?x rdf:type onto:Stadium}",Orange(huggingface) Who was the silver medalist of Gymnastics at the 2008 Summer Olympics Women's artistic individual all-around?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:silverMedalist ?uri }",Orange(huggingface) Where did Goran Cengic die?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Goran_ÄŒengić prop:deathPlace ?uri }",Orange(huggingface) "Which company assembles its cars in Broadmeadows, Victoria?","PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:assembly . ?x onto:parentCompany ?uri . ?x rdf:type onto:Automobile}",Orange(huggingface) Name the sitcom with theme music composer as Julian Gingell and channel as Fox Broadcasting Company?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:themeMusicComposer . ?uri onto:channel . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) What is the place of birth of the jockey who breeded De La Rose ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:breeder ?x . ?x prop:birthPlace ?uri . ?x rdf:type onto:Jockey}",Orange(huggingface) What is the local authority of Liverpool Institute High School for Boys?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Liverpool_Institute_High_School_for_Boys onto:localAuthority ?uri }",Orange(huggingface) What city has the football team in which Lee Robinson debuted?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:debutTeam ?x . ?x onto:locationCity ?uri . }",Orange(huggingface) How many venues are located in the US?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:address . ?uri rdf:type onto:Venue}",Orange(huggingface) List the Swedish newspaper headquarted in Stockholm ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:language . ?uri prop:headquarters . ?uri rdf:type onto:Newspaper}",Orange(huggingface) Who is the leader of Panki block?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Panki_block onto:leaderName ?uri }",Orange(huggingface) Name the royalty whose mother was Cleopatra V and was married to Ptolemy XIV of Egypt?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:mother . ?uri onto:spouse . ?uri rdf:type onto:Royalty}",Orange(huggingface) What is the device whose successor's CPU is by AMD?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:cpu . ?uri onto:successor ?x . ?uri rdf:type onto:Device}",Orange(huggingface) List the subjects of the books whose one of the topics is Pau Broca ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:subject . ?x prop:subject ?uri . ?x rdf:type onto:Book}",Orange(huggingface) Who first ascended a mountain of Cathedral Peak (California)?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:firstAscentPerson ?uri }",Orange(huggingface) Which famous philosopher died on island Euboea?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:deathDate . ?uri rdf:type onto:Philosopher}",Orange(huggingface) List sports managers who managed Middlesbrough F.C. and England national under-21 football team?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:managerClub . ?uri prop:managerclubs . ?uri rdf:type onto:SportsManager}",Orange(huggingface) Which cover artist of the The Adventures of Tom Sawyer is also the source of inspiration of The Appple Tree ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:The_Adventures_of_Tom_Sawyer onto:coverArtist ?uri. res:The_Apple_Tree onto:basedOn ?uri}",Orange(huggingface) Whose work is in the Musee d'orsay?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:museum . ?x prop:artist ?uri . ?x rdf:type onto:Artwork}",Orange(huggingface) "Name the university whose affiliations's foundation place is Washington, D.C.?","PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:foundationPlace . ?uri prop:affiliations ?x . ?uri rdf:type onto:University}",Orange(huggingface) What is the home town of the Band which is the previous work of Sammy Hagar & Friends ?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:previousWork ?x . ?x onto:hometown ?uri . ?x rdf:type onto:Band}",Orange(huggingface) What is the debut team of Tom O'Malley ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:debutteam ?uri }",Orange(huggingface) "What is the almamater of the successor of F. A. Little, Jr.?","PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:successor ?x . ?x onto:almaMater ?uri . }",Orange(huggingface) Name the mascot of the military branch of William Harper.,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:militaryBranch ?x . ?x prop:mascot ?uri . }",Orange(huggingface) Which team has had both Martin prochzka and garry unger as its players ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Martin_Procházka onto:formerTeam ?uri. res:Garry_Unger onto:formerTeam ?uri . }",Orange(huggingface) Which publisher of Lucifer's hammer is also known for Jo Garcia ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:publisher ?uri. onto:knownFor ?uri}",Orange(huggingface) "What is the residence of the person, who starred in Men Will Be Men ?","PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:starring ?x . ?x prop:residence ?uri . ?x rdf:type onto:Person}",Orange(huggingface) "From how many works is the musical derived, whose lyrics are written by Sheldon Harnick?","PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:lyrics . ?x onto:basedOn ?uri . }",Orange(huggingface) How many other people are in a band with Robert de Niro?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:currentMembers . ?x onto:bandMember ?uri . ?uri rdf:type onto:Person}",Orange(huggingface) Name the movie with narrator as Trevor Peacock and music composer as Christophe Beck?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:narrator . ?uri prop:music . ?uri rdf:type onto:Film}",Orange(huggingface) How many people play for the Dallas Cowboys?,"PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:team . }",Orange(huggingface) What are some famous works of the writer of The Second Coming?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:writer ?x . ?x prop:notableworks ?uri . }",Orange(huggingface) What is the debut team of ngel Escobar?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Ángel_Escobar prop:debutteam ?uri }",Orange(huggingface) What stadium's operator is Stan Kroenke?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:operator . ?uri rdf:type onto:Stadium}",Orange(huggingface) "From how many coutries do companies come, which are headquartered in the Klang Valley?","PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:headquarters . ?x prop:country ?uri . ?uri rdf:type onto:Country}",Orange(huggingface) List the books by the authors buried in the Convent of the Barefoot Trinitarians?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:restingPlace . ?uri onto:author ?x . ?uri rdf:type onto:Book}",Orange(huggingface) Who works at the American Magazine and New York Post?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:employer res:The_American_Magazine . ?uri onto:employer res:New_York_Post . }",Orange(huggingface) Where can i find companies which were started in Toronto?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:foundationPlace . ?x prop:locations ?uri . ?x rdf:type onto:Company}",Orange(huggingface) Name the show whose jury consist of Jennifer Lopez and Randy Jackson?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri prop:judges . ?uri prop:judges . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) For how many different presidents have people in the Continental Army served?,"PREFIX res: PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:branch . ?x prop:president ?uri . }",Orange(huggingface) What is the name of the characters created by Frank Miller?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:creators . ?x prop:characterName ?uri . ?x rdf:type onto:FictionalCharacter}",Orange(huggingface) What television shows's distributor is Eurovision?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:distributor . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) Which company produced the car which was a new version of Daewoo's Tico?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:predecessor . ?x prop:parentCompany ?uri . ?x rdf:type onto:Automobile}",Orange(huggingface) To how many different species does the members of the Animal Kingdom belong?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:kingdom . ?x onto:species ?uri . ?uri rdf:type onto:Species}",Orange(huggingface) What non fiction subjects are covered in books by Doubleday publishers?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:publisher . ?x onto:nonFictionSubject ?uri . ?x rdf:type onto:Book}",Orange(huggingface) List the software developed by Shawn Fanning ?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:developer . ?uri rdf:type onto:Software}",Orange(huggingface) How many nations' volleyball players have played for the Russian women volleyball team?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:nationalteam . ?x prop:placeOfBirth ?uri . ?uri rdf:type onto:Country}",Orange(huggingface) In what movies did Akira Ifukube compose the music?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:music . ?uri rdf:type onto:Film}",Orange(huggingface) Which HBO's television series was produced by Erik Bork?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:distributor . ?uri onto:producer . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) Organization holding stocks of Galician and German wikipedias?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Galician_Wikipedia prop:owner ?uri. res:German_Wikipedia onto:owner ?uri . }",Orange(huggingface) Where was Sino-French War fought ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:territory ?uri }",Orange(huggingface) Which expertise of the Menetries's warbler is the nationality of the Jeyhun Abiyev ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:binomialAuthority ?uri. onto:nationality ?uri}",Orange(huggingface) Name the movie which has music composed by Elliot Goldenthal and screenplay by Akiva Goldsman ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:music . ?uri prop:screenplay . ?uri rdf:type onto:Film}",Orange(huggingface) What territory of Sino French War was the battle of Raoul Magrin-Vernerey fought?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:territory ?uri. prop:battles ?uri}",Orange(huggingface) List the origin of the weapons which were used in the American Revolutionary War.,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:usedInWar . ?x prop:origin ?uri . ?x rdf:type onto:Weapon}",Orange(huggingface) Which statesman is married to Dolley Madison?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:spouse . ?uri rdf:type onto:OfficeHolder}",Orange(huggingface) What kind of music is produced at the record label founded by Andre Bourgeois?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:founder . ?x onto:genre ?uri . ?x rdf:type onto:RecordLabel}",Orange(huggingface) Which television show's theme music composer is Gary Portnoy and subsequent work is Frasier?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:themeMusicComposer . ?uri onto:subsequentWork . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) List the pole drivers in the grand prixes where Williams Grand Prix Engineering was a first team?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:firstTeam . ?x onto:poleDriver ?uri . ?x rdf:type onto:GrandPrix}",Orange(huggingface) How many people are in the militia?,"PREFIX res: PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:branch . }",Orange(huggingface) List the common official language of the ladonia and Empire of Atlantium ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:officialLanguage ?uri. onto:officialLanguage ?uri . }",Orange(huggingface) Which key person of maryland jockey club is the appointer of Joseph Clay ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:appointer ?uri. prop:keyPeople ?uri}",Orange(huggingface) Which battle of Khalid bin Sultan was also the conflict of Steve Buyer?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Khalid_bin_Sultan prop:battles ?uri. res:Steve_Buyer onto:battle ?uri}",Orange(huggingface) Count the number of different religions that field marshals have followed?,"PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:militaryRank . ?x onto:religion ?uri . }",Orange(huggingface) "Which awards did the writer, who is the creator of Creature Comforts, won ?","PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:creator ?x . ?x prop:awards ?uri . ?x rdf:type onto:Writer}",Orange(huggingface) Name the co-founder of the record labels which have one of the founder as Chris DuBois?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:founder . ?x prop:founder ?uri . ?x rdf:type onto:RecordLabel}",Orange(huggingface) Which European sea has Oulu as one of the shore city ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:location . ?uri prop:cities . ?uri rdf:type onto:Sea}",Orange(huggingface) Name an airline with hub airports as Los Angeles International Airport and San Francisco International Airport?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:hubAirport . ?uri prop:hubs . ?uri rdf:type onto:Airline}",Orange(huggingface) Count the number of software which runs on Microsoft Windows and mac OS ?,"PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?uri onto:operatingSystem . ?uri onto:operatingSystem }",Orange(huggingface) Which sitcom's company is Paramount Television and is located in Cheers Beacon hill?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:company . ?uri prop:location . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) "What were the major actions taken by the politicians living in Gales Ferry, Connecticut?","PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:residence . ?x onto:battle ?uri . ?x rdf:type onto:Politician}",Orange(huggingface) Greek writers have won which award?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:ethnicity . ?x onto:award ?uri . ?x rdf:type onto:Writer}",Orange(huggingface) What is the name of the movie whose director of photography was Jordan Cronenweth and music composer was Vangelis?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:cinematography . ?uri onto:musicComposer . ?uri rdf:type onto:Film}",Orange(huggingface) Who is the common manager of Aston Villa 2000-01 season and also the manager of Middlesbrough F.C. season 2009-10,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:name ?uri. onto:manager ?uri}",Orange(huggingface) How many people have played for the NBA?,"PREFIX res: PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:league . }",Orange(huggingface) Which river ends at Thames Estuary and North Sea?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:riverMouth . ?uri onto:riverMouth . ?uri rdf:type onto:River}",Orange(huggingface) who are all the people who have managed the England's under 20 soccer team?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:managerClub }",Orange(huggingface) Is Maldives a member of South Asia Subregional Economic Cooperation?,"PREFIX res: PREFIX prop: ASK WHERE { res:South_Asia_Subregional_Economic_Cooperation prop:membership res:Maldives }",Orange(huggingface) List the movies directed by Stanley Kubrick?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:director . ?uri rdf:type onto:Film}",Orange(huggingface) List the people died in Hyderabad and are a member of political party?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:deathPlace res:Hyderabad . ?x onto:party ?uri . }",Orange(huggingface) Which work of Craig van Tilbury is close to the area of The Chess Monthyl?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:The_Chess_Monthly prop:discipline ?uri. res:Craig_Van_Tilbury onto:occupation ?uri}",Orange(huggingface) Name the cover artist of the adventure of Tom sawyer?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:The_Adventures_of_Tom_Sawyer onto:coverArtist ?uri }",Orange(huggingface) What water bodies have primary inflows as Kemijoki?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:inflow res:Kemijoki }",Orange(huggingface) Count the number of sports team members which have player named Matt Williams ?,"PREFIX res: PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:name . ?x prop:name ?uri }",Orange(huggingface) How many pole drivers have been there in grand prixes where first driver was Damon Hill?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:firstDriver . ?x onto:poleDriver ?uri . ?uri rdf:type onto:FormulaOneRacer}",Orange(huggingface) Which shows are voiced by US citizens?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:stateOfOrigin . ?uri prop:voices ?x . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) What did other artists associated with the Shirelles make?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:associatedBand . ?x onto:occupation ?uri . ?x rdf:type onto:Artist}",Orange(huggingface) Which info. appliance is manufactured by Asus and is the successor of PS 2?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:predecessor . ?uri onto:manufacturer . ?uri rdf:type onto:InformationAppliance}",Orange(huggingface) Count the origin of the beverages which have been originated in england?,"PREFIX res: PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:origin . ?x prop:origin ?uri }",Orange(huggingface) What are the movies directed by Joel Schumacher?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:director . ?uri rdf:type onto:Film}",Orange(huggingface) Count the total number of conflicts people who were part of conflict in afghanisthan ?,"PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:battle . ?x onto:battle ?uri }",Orange(huggingface) which awards have been given to people who fought in the Battle of France?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:battle . ?x onto:award ?uri . ?x rdf:type onto:Person}",Orange(huggingface) Rivers from which countries flow into the Caspian?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:riverMouth . ?x onto:sourceCountry ?uri . ?x rdf:type onto:River}",Orange(huggingface) Which players have represented Los Angeles Angels of Anaheim?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:team . ?uri rdf:type onto:BaseballPlayer}",Orange(huggingface) In which areas can we find the networks owned by the govt of Mauritius?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:owningCompany . ?x prop:broadcastArea ?uri . ?x rdf:type onto:BroadcastNetwork}",Orange(huggingface) List the work edited by Mark Stevens and directed by Joel Schumacher?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:editing . ?uri onto:director . ?uri rdf:type onto:Work}",Orange(huggingface) "What is the number of occupation of the people who died in Tampa, Florida?","PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:deathPlace . ?x onto:occupation ?uri . }",Orange(huggingface) Where do the railroads owned by the Chicago and Northwestern Transportation company begin?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:system . ?x onto:routeStart ?uri . ?x rdf:type onto:RailwayLine}",Orange(huggingface) List the significant building of the architect who also designed Kiev?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:significantBuilding . ?x onto:significantBuilding ?uri . ?x rdf:type onto:Architect}",Orange(huggingface) Which boarder country of Korean Peninsula was the state of Sodagreen?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Korean_Peninsula onto:border ?uri. res:Sodagreen onto:country ?uri}",Orange(huggingface) List the schools of the athlete with Balgowan as one of the school?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:school . ?x prop:school ?uri . ?x rdf:type onto:Athlete}",Orange(huggingface) Who was the bronze medalist of Swimming at the 2008 Summer Olympics Men's 400 metre individual medley?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:bronzeMedalist ?uri }",Orange(huggingface) What is the television show whose related with Doctor Who Confidential?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:related . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) How many wars took place in Israel?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:place . ?uri rdf:type onto:MilitaryConflict}",Orange(huggingface) Which TV show's theme was composed by a band in which Todd Huth used to perform?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:formerBandMember . ?uri prop:themeMusicComposer ?x . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) From which countries are the people from who are an academic authority of the Western pygmy blue species?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:binomialAuthority ?x . ?x onto:citizenship ?uri . ?x rdf:type onto:Person}",Orange(huggingface) Which builder has made concrete bridges?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:material . ?x onto:builder ?uri . ?x rdf:type onto:Bridge}",Orange(huggingface) "List the affiliation of Indian general election, 2004 (Andhra Pradesh) ?","PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:affiliation ?uri }",Orange(huggingface) Who designed the bridge in Oddamavadi?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:locatedInArea . ?x prop:designer ?uri . ?x rdf:type onto:Bridge}",Orange(huggingface) Which countries led by Elizabeth II?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:leaderName . ?uri rdf:type onto:Country}",Orange(huggingface) How many things are made by companies who produce mass media articles?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:products . ?uri onto:manufacturer ?x . }",Orange(huggingface) Who all have been a manager of England under-21 football team?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:managerclubs }",Orange(huggingface) Which founder of sea Gayle Music is also the judge of Rising Star ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:founder ?uri. prop:judges ?uri}",Orange(huggingface) "Which founder of European School, Karlsruhe is also the jurisdiction of the European Border of Coast guard?","PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:jurisdiction ?uri. prop:founder ?uri}",Orange(huggingface) List the primary subjects of A Christian Turn'd Turk?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:subject ?uri }",Orange(huggingface) Which country gave birth to the Lemberger LD20b and Start+Flug H101 aircrafts?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:nationalOrigin ?uri. prop:nationalOrigin ?uri . }",Orange(huggingface) Name the TV shows related to Babylon 5: The Lost Tales and is aired on Prime TIme Entertainment Networks ?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:related . ?uri onto:network . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) What is the parent company of the airline whose hub is in Detroit?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:hubs . ?x onto:parentCompany ?uri . ?x rdf:type onto:Airline}",Orange(huggingface) How many religions are followed by organizations which are internationally known as the muslim brotherhood?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:international . ?x onto:religion ?uri . }",Orange(huggingface) "What all are in the states whose anthem is Ja, vi esker dette landet?","PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:anthem . ?uri onto:country ?x . }",Orange(huggingface) Name the Pole driver of 1994 Spanish Grand Prix ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:1994_Spanish_Grand_Prix prop:poleDriver ?uri }",Orange(huggingface) Who are the managers of clubs participating in the 2014-2015 Football League Championship?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:season res:2014–15_Football_League_Championship . ?uri onto:managerClub ?x . }",Orange(huggingface) Where is the king buried whose predecessor was Iyasu II?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:predecessor . ?x prop:placeOfBurial ?uri . ?x rdf:type onto:Monarch}",Orange(huggingface) "Name the military unit whose garrison is Arlington County, Virginia and command structure is United States Department of Defense?","PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:garrison . ?uri onto:commandStructure . ?uri rdf:type onto:MilitaryUnit}",Orange(huggingface) Name some shows similar to the one whose theme song is made by Murray Gold.,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:themeMusicComposer . ?uri onto:related ?x . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) Name the TV show whose opening theme is Gary Portnoy and the subsequent work is Frasier?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:openingTheme . ?uri onto:subsequentWork . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) Which awards have been given to the horse who sired Triplicate?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Triplicate prop:sire ?x . ?x onto:honours ?uri . }",Orange(huggingface) What city was recorded in Live in detroit which is also the official residence of ken Holland ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:recordedIn ?uri. onto:residence ?uri}",Orange(huggingface) List the Stanley Kubrick's movies which has music by Laurie Johnson ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:director . ?uri prop:music . ?uri rdf:type onto:Film}",Orange(huggingface) Who is the builder of Estadio Nacional de Costa Rica (2011) ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:builder ?uri }",Orange(huggingface) Name a fictional character whose relative is Uncle Henry and species is Human?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:relative . ?uri onto:species . ?uri rdf:type onto:FictionalCharacter}",Orange(huggingface) Give me all magazines whose editors live in Chicago?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:hometown . ?uri prop:editor ?x . ?uri rdf:type onto:Magazine}",Orange(huggingface) what are some neighboring cities of Pregny Chambsy?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:neighboringMunicipality }",Orange(huggingface) Kendall Jenner has how many relatives?,"PREFIX res: PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { prop:relatives ?uri . }",Orange(huggingface) The Other Side has hosted how many guests?,"PREFIX res: PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { prop:guests ?uri . }",Orange(huggingface) "Where is the fictional character from, whose last appearance was in the Avengers, 1998?","PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:last . ?x prop:nationality ?uri . ?x rdf:type onto:FictionalCharacter}",Orange(huggingface) Was Zachary Taylor a commander of the sixth infantry regiment of US?,"PREFIX res: PREFIX onto: ASK WHERE { onto:notableCommander }",Orange(huggingface) What are some products manufactured by Sony?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:manufacturer res:Sony . }",Orange(huggingface) What is the total number of regions served by the companies which also serve Australia?,"PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:regionServed . ?x onto:regionServed ?uri }",Orange(huggingface) Mouse Morris' horses have raced in which races?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:trainer . ?x prop:race ?uri . ?x rdf:type onto:Horse}",Orange(huggingface) The president served by Haqqi al-Azm died where?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:president ?x . ?x prop:placeOfDeath ?uri . }",Orange(huggingface) Which television show's developer is Brian Graden and voices to the character is by Isaac Hayes?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:developer . ?uri prop:voices . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) Does Jean Louis Arcand work for Geneva?,"PREFIX res: PREFIX prop: ASK WHERE { prop:institution }",Orange(huggingface) What is the television show whose theme music is by Primus?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:themeMusicComposer . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) Name a TV show judged by Jennifier Lopez and presented by Brian Dunkleman ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:judges . ?uri prop:presenter . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) How many other wine region are there of the grapes whose one of the wine region is Michigan ?,"PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:wineRegion . ?x onto:wineRegion ?uri }",Orange(huggingface) Name the TV show with distributor as Broadcast syndication and has theme music composed by Primus?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:distributor . ?uri prop:themeMusicComposer . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) Who owns the schools which have a penguin as its mascot?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:mascot . ?x onto:authority ?uri . ?x rdf:type onto:School}",Orange(huggingface) Give me a count of everything owned by the network whose sister name is The CW?,"PREFIX res: PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:sisterNames . ?uri prop:network ?x . }",Orange(huggingface) What are the county seats of the region which operates the Boeing Field?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:operator ?x . ?x onto:countySeat ?uri . ?x rdf:type onto:Region}",Orange(huggingface) Where is the mouth of the river whose tributary is Bjelimićka Rijeka ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:rightTributary res:Bjelimićka_Rijeka . ?x onto:mouthCountry ?uri . }",Orange(huggingface) Is George Lucas the cinematographer of 6-18-67?,"PREFIX res: PREFIX prop: ASK WHERE { prop:cinematography }",Orange(huggingface) List the debut team of the baseball player who born in Houston.,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:birthPlace . ?x onto:debutTeam ?uri . ?x rdf:type onto:BaseballPlayer}",Orange(huggingface) Count the different types of Flatbread ?,"PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:type . }",Orange(huggingface) ITV employes how many people?,"PREFIX res: PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:employer . }",Orange(huggingface) where did Boga originate?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:origin ?uri }",Orange(huggingface) Who wrote the play in which Blanche DuBois is a character?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:characters . ?x prop:writer ?uri . ?x rdf:type onto:Play}",Orange(huggingface) How many people won the Gold Medal of the Royal Astronomical Society?,"PREFIX res: PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:prizes . }",Orange(huggingface) What are the death place of the models whose hair color was Red?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:hairColor . ?x prop:deathPlace ?uri . ?x rdf:type onto:Model}",Orange(huggingface) Under which president did some politicians live in Kensington?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:residence . ?x onto:president ?uri . ?x rdf:type onto:OfficeHolder}",Orange(huggingface) What are some movies written by British writers?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:nationality . ?uri onto:writer ?x . ?uri rdf:type onto:Film}",Orange(huggingface) Whose doctoral student is Etienne Bieler?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:doctoralStudent res:Étienne_Biéler }",Orange(huggingface) Who is the governor of Carl McCall?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Carl_McCall onto:governor ?uri }",Orange(huggingface) Name the veneration of the monarch who is the predecessor of Solomon?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:predecessor ?x . ?x prop:veneratedIn ?uri . ?x rdf:type onto:Monarch}",Orange(huggingface) What is the city whose mayor is Anne Hidalgo?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:mayor . ?uri rdf:type onto:Settlement}",Orange(huggingface) Jeff Munn is the president of which basketball team?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:president . ?uri rdf:type onto:BasketballTeam}",Orange(huggingface) Which person has opponent Ike Clanton?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:opponent . ?uri rdf:type onto:Person}",Orange(huggingface) Give me the count of interests of the philosopher whose primary interest is Metaphysics ?,"PREFIX res: PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:mainInterests . ?x prop:mainInterests ?uri }",Orange(huggingface) Where are the tombs of kings and queens who have died in England?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:placeOfDeath . ?x prop:placeOfBurial ?uri . ?x rdf:type onto:Royalty}",Orange(huggingface) Which famous horserace has seen both Fergie sutherland and the illustrious War of Attrition?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:race ?uri. prop:race ?uri . }",Orange(huggingface) Which team did Michael and Ryan Powell play for?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:team ?uri. onto:team ?uri . }",Orange(huggingface) Name the musical band of Written in the Stars?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:musicalBand ?uri }",Orange(huggingface) How many cars are similar to the ones assembled in the Jefferson North Assembly?,"PREFIX res: PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:assembly . ?x prop:related ?uri . }",Orange(huggingface) Which american football player's current team is Michigan Wolverines and former team was Baltimore Ravens ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:currentteam . ?uri onto:formerTeam . ?uri rdf:type onto:AmericanFootballPlayer}",Orange(huggingface) Which university's graduates have worked in the Quartermaster corps?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:militaryUnit . ?x onto:almaMater ?uri . }",Orange(huggingface) How many companies were founded in places where Dallas is the governing body ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:governingBody . ?uri onto:foundationPlace ?x . ?uri rdf:type onto:Company}",Orange(huggingface) "What team did the players start their careers with, who right now play for Fleisher Yarn?","PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:team . ?x prop:debutteam ?uri . ?x rdf:type onto:Athlete}",Orange(huggingface) What are some cars which came before the ones on a GM B base?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:automobilePlatform . ?x onto:predecessor ?uri . ?x rdf:type onto:Automobile}",Orange(huggingface) Count the number of people who graduated from universities affiliated with the NCAA.,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:athletics . ?uri prop:education ?x . ?uri rdf:type onto:Person}",Orange(huggingface) What award was won by the executive producer of Shaun the Sheep?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Shaun_the_Sheep onto:executiveProducer ?x . ?x onto:award ?uri . }",Orange(huggingface) who owns the ship Victoria?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:owner ?uri }",Orange(huggingface) What is the national origin of Focke-Wulf Fw 260 ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:nationalOrigin ?uri }",Orange(huggingface) Which city's mayor is married to Jean Marc Germain?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:spouse . ?uri prop:mayor ?x . }",Orange(huggingface) In how many nations is Coconut a common food ingredient?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:ingredient . ?x prop:country ?uri . ?uri rdf:type onto:Country}",Orange(huggingface) Count the total number of mammals whose phylum is Chordate and order (taxonomy) is Diprotodontia?,"PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:phylum . ?uri onto:order }",Orange(huggingface) What company made facebook messenger and is the platform where Words of Gold can be played?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:computingPlatform ?uri. prop:developer ?uri . ?uri rdf:type onto:Company}",Orange(huggingface) Who first ascended a mountain of Mount Hoffmann?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Mount_Hoffmann onto:firstAscentPerson ?uri }",Orange(huggingface) Solon Spencer Beman has architected in how many cities?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:architect . ?x prop:locationTown ?uri . ?uri rdf:type onto:City}",Orange(huggingface) Name the champion of National League?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:National_League prop:champion ?uri }",Orange(huggingface) What are the airline hubs of Cascade Airways?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Cascade_Airways prop:hubs ?uri }",Orange(huggingface) How many ideologies do the political party of Boonchu Rojanastien hold?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { prop:party ?x . ?x onto:ideology ?uri . ?x rdf:type onto:PoliticalParty}",Orange(huggingface) Which place of Geography Club is the location of Seattle Great Wheel ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:locationTown ?uri. prop:place ?uri}",Orange(huggingface) Do the asiana airlines fly to Jeju airport?,"PREFIX res: PREFIX onto: ASK WHERE { res:Asiana_Airlines onto:targetAirport res:Jeju_International_Airport }",Orange(huggingface) For how many cities's teams did David Bowens play?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { onto:formerTeam ?x . ?x onto:locationCity ?uri . ?x rdf:type onto:SportsTeam}",Orange(huggingface) Which football players currently have their contracts with Stoke City F.C.?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:currentclub }",Orange(huggingface) Which military unit's garrison is Pentagon and command structure is United States Department of Defense?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:garrison . ?uri onto:commandStructure . ?uri rdf:type onto:MilitaryUnit}",Orange(huggingface) Is Sao Paulo the largest city of Brazil?,"PREFIX res: PREFIX prop: ASK WHERE { res:Brazil prop:largestCity res:São_Paulo }",Orange(huggingface) "Which maintainer of Cheasty Boulevard South is also the county seat of King County, Washington?","PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:maintainedBy ?uri. onto:countySeat ?uri}",Orange(huggingface) How many people have been the first one to scale a peak in the Yosemite Park?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:locatedInArea . ?x onto:firstAscentPerson ?uri . ?uri rdf:type onto:Person}",Orange(huggingface) "To which company is the service ""Nintendo eShop"" associated with?","PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:services . ?uri rdf:type onto:Company}",Orange(huggingface) Name the person whose child is Irne Joliot-Curie?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:children . ?uri rdf:type onto:Person}",Orange(huggingface) Name the F1 racer with relative as Ralf Schumacher and has child named Mick Schumacher?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:relatives . ?uri onto:child . ?uri rdf:type onto:FormulaOneRacer}",Orange(huggingface) "Which famous person is born in Marlboro Township, New Jersey?","PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:homeTown . }",Orange(huggingface) Name the company founded in US and created Visual Studio ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:foundation . ?uri prop:products . ?uri rdf:type onto:Company}",Orange(huggingface) In which city are buildings by Solon Spencer Beman found?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:architect . ?x prop:locationTown ?uri . ?x rdf:type onto:Building}",Orange(huggingface) Was the 2d Command and Control Squadron barracked in Colorado?,"PREFIX res: PREFIX onto: ASK WHERE { res:2d_Command_and_Control_Squadron onto:garrison res:Colorado }",Orange(huggingface) Which nearest city of Jurgens Site is the death place of Jimmie Heuga?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Jurgens_Site prop:nearestCity ?uri. res:Jimmie_Heuga prop:deathPlace ?uri}",Orange(huggingface) Name the presenter of Shirley Temple's Storybook?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:presenter ?uri }",Orange(huggingface) How many people have been trained in an institute located in California?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:city . ?uri prop:training ?x . ?uri rdf:type onto:Person}",Orange(huggingface) Which developer of the Spider-Man: Edge of Time is the successor of PlayStation 2 ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:developer ?uri. onto:successor ?uri}",Orange(huggingface) What is the mouth mountain of Current River (Missouri)?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:mouthMountain ?uri }",Orange(huggingface) "Was Francisco Pizarro of the monarch of Charles 5, of the roman empire?","PREFIX res: PREFIX onto: ASK WHERE { onto:monarch }",Orange(huggingface) What are the border of High Desert (Oregon)?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:border ?uri }",Orange(huggingface) Who rented the stadium where the UFC 152 took place?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:venue ?x . ?x onto:tenant ?uri . ?x rdf:type onto:Stadium}",Orange(huggingface) Who is the common parent of Gettv and hypnotize mind?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:GetTV onto:parentOrganisation ?uri. res:Hypnotize_Minds prop:parent ?uri}",Orange(huggingface) Who are the scientists known for the Manhattan Project?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:knownFor . ?uri rdf:type onto:Scientist}",Orange(huggingface) "Who have children named James Roosevelt and Franklin Delano Roosevelt, Jr.?","PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?uri prop:children . ?uri prop:children . }",Orange(huggingface) What are the movies whose cinematographer is Gregg Toland?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:cinematography . ?uri rdf:type onto:Film}",Orange(huggingface) What is the nation of the speedway league where Ikaros Smederna played?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:league ?x . ?x onto:country ?uri . ?x rdf:type onto:SpeedwayLeague}",Orange(huggingface) "Who manages the operator of Norman Park Branch, CTA?","PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:operator ?x . ?x onto:operatedBy ?uri . }",Orange(huggingface) How many software run on operating system Microsoft Windows?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:operatingSystem . ?uri rdf:type onto:Software}",Orange(huggingface) Name the company whose one of the product is Pixar Image Computer and has one of the key person as Edwin Catmull?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:product . ?uri onto:keyPerson . ?uri rdf:type onto:Company}",Orange(huggingface) What is the denomination of S. H. Kapadia?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:S._H._Kapadia prop:religion ?uri }",Orange(huggingface) In which cities can i find drinks similar to the IBC root beer?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:related . ?x prop:locationCity ?uri . ?x rdf:type onto:Beverage}",Orange(huggingface) Is the College Sainte Marie in Mauritius?,"PREFIX res: PREFIX prop: ASK WHERE { prop:county }",Orange(huggingface) Where did Paul Jones do his highschool?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:highschool ?uri }",Orange(huggingface) Where are Solidus and Aureus used?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:currency . ?uri onto:currency . }",Orange(huggingface) What are the movies with Daniel Waters as screenwriter?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:screenplay . ?uri rdf:type onto:Film}",Orange(huggingface) "What is the job of the George Arceneaux, Jr. which is also the office of the Blanche Bruce?","PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:occupation ?uri. prop:office ?uri}",Orange(huggingface) Name the route start of Saint Petersburg Moscow Railway ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Saint_Petersburg_–_Moscow_Railway onto:routeStart ?uri }",Orange(huggingface) What is the award presented by Downtown Athletic Club and Yale Club NYCity?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri prop:presenter . ?uri prop:presenter . ?uri rdf:type onto:Award}",Orange(huggingface) What is the city of the Maine School of Science and Mathematics is also the resting place of Charles A. Boutelle?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Maine_School_of_Science_and_Mathematics onto:authority ?uri. res:Charles_A._Boutelle prop:restingplace ?uri}",Orange(huggingface) Who wrote the mangas produced by Masahike Minami?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:producer . ?x onto:author ?uri . ?x rdf:type onto:Manga}",Orange(huggingface) Which country's leader is David Johnston?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:leader . ?uri rdf:type onto:Country}",Orange(huggingface) Name the sea whose inflow is Kemijoki and outflow is Danish straits?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:inflow . ?uri prop:outflow . ?uri rdf:type onto:Sea}",Orange(huggingface) "Name the river with source country in Zambia and source region as North-Western Province, Zambia?","PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:sourceCountry . ?uri onto:sourceRegion . ?uri rdf:type onto:River}",Orange(huggingface) List the outflows of the lake which has Benu river as one of it?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:outflow res:Benué_River . ?x prop:outflow ?uri . }",Orange(huggingface) Which contnet license provider of Microsoft Office Picture Manager is also the game platform of Google Clud Connect?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Microsoft_Office_Picture_Manager onto:license ?uri. res:Google_Cloud_Connect onto:computingPlatform ?uri}",Orange(huggingface) Name the movies for which music was given by Geoffrey Burgon and distributed by Cinema International Corporation?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:music . ?uri prop:distributor . ?uri rdf:type onto:Film}",Orange(huggingface) Is the Columbia University chaired by William Campbell?,"PREFIX res: PREFIX onto: ASK WHERE { onto:chairman }",Orange(huggingface) List the leaders of all the cities through which the Ganga river flows ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:city ?x . ?x onto:leaderName ?uri . ?x rdf:type onto:City}",Orange(huggingface) List all the notable work of the screen writer who produced Frasier ?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:notableWork . ?x onto:notableWork ?uri . ?x rdf:type onto:ScreenWriter}",Orange(huggingface) What is the associated band of the musical artist who is the producer of The Trumpet Kings Meet Joe Turner?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:producer ?x . ?x onto:associatedBand ?uri . ?x rdf:type onto:MusicalArtist}",Orange(huggingface) Name the nationalteam of Trn Vit Hng ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Trần_Việt_Hương prop:nationalteam ?uri }",Orange(huggingface) "Which indian party has won the arunachal pradesh elections of 2014, and has been in the 4th legislative assembly?","PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:party ?uri. prop:party ?uri . }",Orange(huggingface) What is the largest city of the country which hosted the 1951 Asian Games?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:hostCity ?x . ?x onto:largestCity ?uri . ?x rdf:type onto:Country}",Orange(huggingface) In how many territories were the wars fought where Fusil Gras Mile 1874 were used?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { onto:usedInWar ?x . ?x onto:territory ?uri . ?x rdf:type onto:MilitaryConflict}",Orange(huggingface) Who created the stadiums who have been rented by the Boston Red Sox?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:tenant . ?x prop:architect ?uri . ?x rdf:type onto:Stadium}",Orange(huggingface) List the leaders of the government agencies whose jurisdiction was German-occupied Europe.,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:jurisdiction . ?x onto:leader ?uri . ?x rdf:type onto:GovernmentAgency}",Orange(huggingface) What is the deathplace of people who have worked in Ethics?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:mainInterests . ?x prop:placeOfDeath ?uri . ?x rdf:type onto:Person}",Orange(huggingface) Cable stayed bridges have been used to cross over how many things?,"PREFIX res: PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:design . ?x prop:crosses ?uri . }",Orange(huggingface) what has been developed by John Fanning?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:developer }",Orange(huggingface) Who is a successor of Kingship whose parent was Julius Caesar?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Mikhail_Pashnin prop:prospectTeam ?uri. res:Bob_MacMillan prop:draftTeam ?uri}",Orange(huggingface) What is the place of birth of the Kira Plastinina and Sergey Ryazansky?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Kira_Plastinina prop:placeOfBirth ?uri. res:Sergey_Ryazansky prop:placeOfBirth ?uri . }",Orange(huggingface) Which fictional character's relative is Clan McDuck and belongs to American Pekin duck?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:relatives . ?uri onto:species . ?uri rdf:type onto:FictionalCharacter}",Orange(huggingface) From how many different places have people gone to the Harward Medical School?,"PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:institution . ?x onto:birthPlace ?uri . }",Orange(huggingface) Namt the fields of Paul Demiville ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Paul_Demiéville prop:fields ?uri }",Orange(huggingface) "List the parts of the settlements which has a part named Seguin, Texas.","PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:part . ?x onto:part ?uri . ?x rdf:type onto:Settlement}",Orange(huggingface) List the software which runs on Microsoft Windows and has license as Software as a service?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:operatingSystem . ?uri onto:license . ?uri rdf:type onto:Software}",Orange(huggingface) What is the name of the information appliance by sony whose predecessor is PlayStation 2?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:manufacturer . ?uri prop:predecessor . ?uri rdf:type onto:InformationAppliance}",Orange(huggingface) Name the company which produces both Boeing F/A-18 E/F Hornet and CH-46 Chinook ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:product . ?uri prop:products . ?uri rdf:type onto:Company}",Orange(huggingface) "List the sports associated with Mariveles, Bataan?","PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:city . ?x onto:sport ?uri . }",Orange(huggingface) Which license provider of MSX basic is also the designer of Language Integrated Query?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Language_Integrated_Query onto:designer ?uri. res:MSX_BASIC prop:license ?uri}",Orange(huggingface) list some companies founded by Jim Harris.,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:foundedBy }",Orange(huggingface) Was Lionel Messi a member of the 2009 FIFA World Cup squads?,"PREFIX res: PREFIX onto: ASK WHERE { res:2009_FIFA_Club_World_Cup_squads onto:currentMember res:Lionel_Messi }",Orange(huggingface) Where does the river end which starts in Mazabuka?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:city . ?x onto:riverMouth ?uri . ?x rdf:type onto:River}",Orange(huggingface) Where is the headquarters of the public transit system which operates Go-To card?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:operator ?x . ?x prop:headquarters ?uri . ?x rdf:type onto:PublicTransitSystem}",Orange(huggingface) What is the constituency of the people who died in Lampedusa?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:deathPlace . ?x prop:constituency ?uri . ?x rdf:type onto:Person}",Orange(huggingface) "Enumerate all the first teams of the GPs which were held in Watkins Glen, NY?","PREFIX res: PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:location . ?x prop:firstTeam ?uri . }",Orange(huggingface) Carl Sagan has penned books on how many matters?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:author . ?x prop:subject ?uri . }",Orange(huggingface) Which players participate in the football seasons headed by Patricia Amorim?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:chairman . ?x prop:name ?uri . ?x rdf:type onto:SportsSeason}",Orange(huggingface) Count the total number of battles fought by the military people which fought in Levant?,"PREFIX res: PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:battles . ?x prop:battles ?uri }",Orange(huggingface) List all areas served by the radio station serving South carolina ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:area . ?x prop:area ?uri . ?x rdf:type onto:RadioStation}",Orange(huggingface) Which wine region of Bogdanua is the Croatian Inline hockey team part of?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:BogdanuÅ¡a onto:wineRegion ?uri. res:Croatian_Inline_Hockey_League onto:country ?uri}",Orange(huggingface) Who composed the episode after which came Butter's Very own Episode?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:subsequentWork . ?x onto:musicComposer ?uri . ?x rdf:type onto:TelevisionEpisode}",Orange(huggingface) Which wars were fought when the commanders involved served under PM Choi Tu Son?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:primeminister . ?uri onto:commander ?x . ?uri rdf:type onto:MilitaryConflict}",Orange(huggingface) Is my truly truly fair from the band of mitch miller?,"PREFIX res: PREFIX onto: ASK WHERE { onto:musicalBand }",Orange(huggingface) The president who was in office when Lee Hyun Jae was the PM followed which religion?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:primeminister . ?x onto:religion ?uri . ?x rdf:type onto:President}",Orange(huggingface) List the destinations of the airlines which also serves Mediterranean Sea?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:destinations . ?x prop:destinations ?uri . ?x rdf:type onto:Airline}",Orange(huggingface) What state has a Brideun School for Exception Children and is the birthplace of B J Crombeen?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Brideun_School_for_Exceptional_Children prop:state ?uri. res:B._J._Crombeen onto:birthPlace ?uri . }",Orange(huggingface) What is the university attended by the baseball player who's known for Olin Corporation?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:knownFor . ?x prop:education ?uri . ?x rdf:type onto:BaseballPlayer}",Orange(huggingface) What are the movies whose cast members are signed up with Point Blank Records?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:label . ?uri prop:starring ?x . ?uri rdf:type onto:Film}",Orange(huggingface) "Which border country of the Korean Peninsula is also the country of Krusty, a musical group ?","PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:border ?uri. onto:country ?uri}",Orange(huggingface) What is the company of Ford Theatre?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Ford_Theatre prop:company ?uri }",Orange(huggingface) "Who are the people which were the influencer of the person, who influenced Costanzo Preve ?","PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:influencedBy ?x . ?x onto:influencedBy ?uri . ?x rdf:type onto:Person}",Orange(huggingface) Bud Adams owns which american football team?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:owner . ?uri rdf:type onto:AmericanFootballTeam}",Orange(huggingface) In how many regions is English American spoken?,"PREFIX res: PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { prop:region ?uri . }",Orange(huggingface) What is the birthplace of Adugna Deyas and the place where Fiq is located?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:country ?uri. prop:birthPlace ?uri . }",Orange(huggingface) List all the faiths that British Columbian politicians follow?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:residence . ?x prop:religion ?uri . ?x rdf:type onto:Politician}",Orange(huggingface) Name the company whose products's predecessor is Boeing Vertol CH-46 Sea Knight?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:predecessor . ?uri prop:products ?x . ?uri rdf:type onto:Company}",Orange(huggingface) Who is the animator of Tommy Tucker's Tooth ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:animator ?uri }",Orange(huggingface) From how many countries have people participated in the Excelsior Stakes?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:race . ?x onto:birthPlace ?uri . }",Orange(huggingface) Is Lloyd Nosler the editor of The Temptress?,"PREFIX res: PREFIX onto: ASK WHERE { res:The_Temptress onto:editing res:Lloyd_Nosler }",Orange(huggingface) How many developers make software for Unix like operating systems?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:operatingSystem . ?x onto:developer ?uri . }",Orange(huggingface) How many universities are there whose country's capital is Oslo?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:capital . ?uri onto:country ?x . ?uri rdf:type onto:University}",Orange(huggingface) Brian Dunkleman is the presenter of what TV show?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:presenter . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) Who operates the railway line which begins in Minneapolis?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:routeStart . ?x onto:operatedBy ?uri . ?x rdf:type onto:RailwayLine}",Orange(huggingface) List the relegion of Otani University which is also the life stance of udit Raj ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:ÅŒtani_University prop:affiliation ?uri. res:Udit_Raj onto:religion ?uri}",Orange(huggingface) Which shows are similar to the ones produced by Phil Collinson?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:executiveProducer . ?uri onto:related ?x . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) England is the origin of how many things?,"PREFIX res: PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:origin . }",Orange(huggingface) What river originates in Kingston Ontario?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:sourceLocation . ?uri rdf:type onto:River}",Orange(huggingface) Which field's journals are edited by Paul Morphy?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:editor . ?x prop:discipline ?uri . ?x rdf:type onto:AcademicJournal}",Orange(huggingface) Where are the shrines of the saints who were beatified by Pope Pius XI?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:beatifiedBy . ?x onto:majorShrine ?uri . ?x rdf:type onto:Saint}",Orange(huggingface) Which television show's company is Paramount Television and is located in Boston?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:company . ?uri onto:location . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) Name the institute of Alton Ochsner?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Alton_Ochsner onto:institution ?uri }",Orange(huggingface) How many countries surround the seas on the banks of which is the city of Cancun?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:cities . ?x onto:country ?uri . }",Orange(huggingface) Is Maria Sharapova the silver medalist of Tennis at the 2012 Summer Olympics Women's singles?,"PREFIX res: PREFIX onto: ASK WHERE { onto:silverMedalist }",Orange(huggingface) "What is the product of the BBC Multimedia and is the theme of Visions, the convention?","PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:product ?uri. prop:genre ?uri}",Orange(huggingface) Name the movie whose screenplay is by Akiva Goldsman and directed by Joel Schumacher ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:editing . ?uri onto:director }",Orange(huggingface) What is the type of Naval Station Bremerton?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Naval_Station_Bremerton prop:type ?uri }",Orange(huggingface) ARM Architecture acts as a game platform for how many things?,"PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:computingPlatform . }",Orange(huggingface) Whose commanders are Colin Powell and Jaber Al-Ahmad Al-Sabah?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:commander . ?uri onto:commander . }",Orange(huggingface) What is the prize received by the one who wrote the screen play of The Postman ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:screenplay ?x . ?x onto:award ?uri . }",Orange(huggingface) Name the television program voiced by Isaac Hayes and aired on Comedy Central?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:voices . ?uri prop:network . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) List the birth city of the politicians of Democratic Party.,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:party . ?x onto:birthPlace ?uri . ?x rdf:type onto:Politician}",Orange(huggingface) Which title of Zaman Shah Durrani is also the nationality of Salahuddin?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Zaman_Shah_Durrani prop:title ?uri. res:Salahuddin_Rabbani onto:nationality ?uri}",Orange(huggingface) Rickenbacker is a musical instrument played by which artists?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:instrument . ?uri rdf:type onto:MusicalArtist}",Orange(huggingface) Which engine's successor's predecessor is BMW M10?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:predecessor . ?uri onto:successor ?x . ?uri rdf:type onto:Engine}",Orange(huggingface) What are the video games composed by Hirokazu Tanaka?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:composer . ?uri rdf:type onto:VideoGame}",Orange(huggingface) What is the city whose mayor is Giorgos Kaminis?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:mayor . ?uri rdf:type onto:AdministrativeRegion}",Orange(huggingface) Name the common distributing label of the Chinga Chang Records and StandBy Records?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Chinga_Chang_Records onto:distributingLabel ?uri. res:StandBy_Records onto:distributingLabel ?uri . }",Orange(huggingface) What cars were built upon the cars which were assembled in Canada?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:assembly . ?x onto:predecessor ?uri . ?x rdf:type onto:Automobile}",Orange(huggingface) Who have John Randolph of Roanoke as predecessor?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:predecessor res:John_Randolph_of_Roanoke . }",Orange(huggingface) What awards did Jos Rivera (playwright) win?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:awards ?uri }",Orange(huggingface) Elizabeth Alexander and Jared Bernstein served under which Vice President?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:vicePresident ?uri. onto:vicePresident ?uri . }",Orange(huggingface) What are the gadgets whose manufacturing company is founded by Terry Gou?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:founder . ?uri onto:manufacturer ?x . ?uri rdf:type onto:Device}",Orange(huggingface) What is the river whose mouth locations are Arctic Ocean and Laptev Sea?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri prop:mouthLocation . ?uri prop:mouthLocation . ?uri rdf:type onto:River}",Orange(huggingface) Which movies's screenplay is written by Akiva Goldsman,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:screenplay . ?uri rdf:type onto:Film}",Orange(huggingface) is ANYway in the Quack album?,"PREFIX res: PREFIX onto: ASK WHERE { onto:album }",Orange(huggingface) Does the north carolina highway 280 end in Arden?,"PREFIX res: PREFIX onto: ASK WHERE { onto:routeEnd }",Orange(huggingface) Which draft team of Dale Mitchell is also the tenant of Master Card center?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:draftTeam ?uri. prop:tenants ?uri}",Orange(huggingface) How many guests have been there on broadway?,"PREFIX res: PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { prop:guests ?uri . }",Orange(huggingface) Which sea is surrounded by Rostock and Kaliningrad?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri prop:cities . ?uri prop:cities . ?uri rdf:type onto:Sea}",Orange(huggingface) Which director of On deadly Ground also released Mojo Priest?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Mojo_Priest prop:artist ?uri. res:On_Deadly_Ground prop:director ?uri . }",Orange(huggingface) Name few TV shows aired by Prime Time Entertainment Network?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:network . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) What belongs to the families of Buccinidae and Buccinoidea?,"PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?uri onto:family . ?uri onto:family }",Orange(huggingface) "In which city is the building, whose part is the Martin AN/FSG1 anti aircraft system?","PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:part . ?x prop:district ?uri . ?x rdf:type onto:Building}",Orange(huggingface) Whose military branches are Colonial troops and Continental Army?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:militaryBranch res:Colonial_troops . ?uri onto:militaryBranch res:Continental_Army . }",Orange(huggingface) What awards did the film director of The Haunted House win?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:director ?x . ?x onto:award ?uri . }",Orange(huggingface) Joe Shuster has created how many comics character ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:creators . ?uri rdf:type onto:ComicsCharacter}",Orange(huggingface) "What is the radio show created by Timoteo Jeffries, about?","PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:creator . ?x prop:format ?uri . ?x rdf:type onto:RadioProgram}",Orange(huggingface) What is the major shrine of Jacques-Dsir Laval ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:majorShrine ?uri }",Orange(huggingface) Radios on what topics can be tuned in to in Washington DC?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:broadcastArea . ?x onto:programmeFormat ?uri . ?x rdf:type onto:RadioStation}",Orange(huggingface) Which operator of New Sanno Hotel is also the governing body of the Oahu Railway and Land Company ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:New_Sanno_Hotel prop:operator ?uri. res:Oahu_Railway_and_Land_Company prop:governingBody ?uri}",Orange(huggingface) In how many nations can I find people related to the feminist movement?,"PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:movement . ?x onto:nationality ?uri . }",Orange(huggingface) How many golf players are there in Arizona State Sun Devils?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:college . ?uri rdf:type onto:GolfPlayer}",Orange(huggingface) What system is both a platform where Nord runs and also distributed The beauty inside?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:computingPlatform ?uri. onto:distributor ?uri . }",Orange(huggingface) List down the schools whose mascot's order is Even-toed ungulate?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:order . ?uri prop:mascot ?x . }",Orange(huggingface) What's the religion of the winner of china election of 2008?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:leader ?x . ?x onto:religion ?uri . }",Orange(huggingface) Which animator of the The Skeleton Dance is also the cinematographer of the Mickey's Mellerdrammer?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:animator ?uri. prop:cinematography ?uri}",Orange(huggingface) Which animator of Tommy Ticker's Tooth is also the director of The Haunted house ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:animator ?uri. onto:director ?uri}",Orange(huggingface) Name the awards that have been given to the writer made famous for Creature Comforts?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:notableWork . ?x onto:award ?uri . ?x rdf:type onto:Writer}",Orange(huggingface) Was Zambezi originate in the north western province of zambia?,"PREFIX res: PREFIX prop: ASK WHERE { prop:sourceRegion }",Orange(huggingface) Name the television show which was developed by Brian Graden and distributed by Comedy Central?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:developer . ?uri prop:distributor . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) Which party won both the general election and the andhra pradesh election in 2004?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:affiliation ?uri. onto:affiliation ?uri . }",Orange(huggingface) Who owns the airport in Paphos?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:city . ?x prop:owner ?uri . ?x rdf:type onto:Airport}",Orange(huggingface) Name the mountain range of Le Giblou?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Le_Gibloux onto:mountainRange ?uri }",Orange(huggingface) What are the other launch site of the rockets which also have been launched from Cape Canaveral Air Force Station Launch Complex 5 ?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:launchSite . ?x onto:launchSite ?uri . ?x rdf:type onto:Rocket}",Orange(huggingface) List the people casted in Betsy's Wedding and 16 candles?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:starring ?uri. prop:starring ?uri . ?uri rdf:type onto:Person}",Orange(huggingface) Which animator of the The Skeleton Dance is also the director of The Haunted House (1929 film) ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:animator ?uri. onto:director ?uri}",Orange(huggingface) Which distributer of Glover (video game) is also the publisher of the Super Mario Adventures ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:distributor ?uri. prop:publisher ?uri}",Orange(huggingface) Give me the count of newspaper whose language is Sweedish and headquartered at stockholm ?,"PREFIX res: PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:language . ?uri prop:headquarters }",Orange(huggingface) Name the alma mater of Ernest de Saisset?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Ernest_de_Saisset onto:almaMater ?uri }",Orange(huggingface) What are the awards won by the film editor of The Search?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:editing ?x . ?x prop:awards ?uri . }",Orange(huggingface) Which football managers managed Middlesbrough F.C.?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:managerClub }",Orange(huggingface) Name the university which has Lieutenaunt general as superintendent and mascot as Gyrfalcon ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:superintendent . ?uri prop:mascot . ?uri rdf:type onto:University}",Orange(huggingface) What is the draft team of Bob MacMillan?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Bob_MacMillan prop:draftTeam ?uri }",Orange(huggingface) How many bands are based in London?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:hometown . ?uri rdf:type onto:Band}",Orange(huggingface) Count the total number of hometown of the gymnasts whose one of the hometown in Russia ?,"PREFIX res: PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:hometown . ?x prop:hometown ?uri }",Orange(huggingface) Name the team for which Cam Plante played for which were also the tenants of MasterCard center?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Cam_Plante prop:playedFor ?uri. res:MasterCard_Centre prop:tenants ?uri}",Orange(huggingface) "In all the places with a stagecoach, where is a Peetz Table Wind Energy Center located too?","PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:location ?uri. prop:location ?uri . }",Orange(huggingface) Which football teams are in a city where Oakland Athletics were the tenants?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:tenant . ?uri onto:locationCity ?x . ?uri rdf:type onto:AmericanFootballTeam}",Orange(huggingface) Who is the compiler of British Gazette whose prime minister is also Peter Thorneycroft?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:British_Gazette prop:editor ?uri. res:Peter_Thorneycroft prop:primeminister ?uri}",Orange(huggingface) Name the key people of the non-profit organisations whose one of the key person is Lesley-Anne knight ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:keyPeople . ?x prop:keyPeople ?uri . }",Orange(huggingface) What is the birth place of the astronaut whose mission was the Vostok programmer?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:mission . ?x onto:birthPlace ?uri . ?x rdf:type onto:Astronaut}",Orange(huggingface) List the fields of the scientists with Sanskrit as one of the interest?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:fields . ?x prop:fields ?uri . ?x rdf:type onto:Scientist}",Orange(huggingface) What is the religion of the leader of South Korean legislative election of 1992 ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:leader ?x . ?x onto:religion ?uri . }",Orange(huggingface) Pointe d'Aveneyre belongs to which mountain range?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:mountainRange ?uri }",Orange(huggingface) Who is the operator of AT&T Park ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:operator ?uri }",Orange(huggingface) Who are the maintainers of the bridges which cross the pandaruan river?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:crosses . ?x onto:maintainedBy ?uri . ?x rdf:type onto:Bridge}",Orange(huggingface) Who is the coach of England national under-21 football team?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:coach ?uri }",Orange(huggingface) Which Monty Python's movie is distributed by Cinema International Corporation ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:writer . ?uri prop:distributor . ?uri rdf:type onto:Film}",Orange(huggingface) Who produced the TV shows for Fremantle Media?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:distributor . ?x onto:producer ?uri . ?x rdf:type onto:TelevisionShow}",Orange(huggingface) What is the record label of the Next Thing and also the label of the The Producers (2005 film)?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:recordLabel ?uri. prop:label ?uri}",Orange(huggingface) How many games have been composed by Hirokazu Tanaka?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:composer . ?uri rdf:type onto:VideoGame}",Orange(huggingface) Count everyone who was in the military unit which is structured like the Marine Aircraft Group 13 ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:commandStructure . ?uri onto:militaryUnit ?x . }",Orange(huggingface) List of people who were the first one to ascend a mountain in the Cathedral range?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:mountainRange . ?x onto:firstAscentPerson ?uri . ?x rdf:type onto:Mountain}",Orange(huggingface) Which TV show's opening theme is The Best of Both Worlds (song) and executive producer is Steven Peterman?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:openingTheme . ?uri prop:executiveProducer . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) Which is the university of Vanderbilt Commodores?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Vanderbilt_Commodores onto:university ?uri }",Orange(huggingface) Which successor of Philippine Ports Authority is the state of origin of Ruben J. Villote?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Philippine_Ports_Authority onto:successor ?uri. res:Ruben_J._Villote onto:stateOfOrigin ?uri}",Orange(huggingface) How many organizations own the website to which Jimmy Wales contributes?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:author . ?x onto:owner ?uri . ?uri rdf:type onto:Organisation}",Orange(huggingface) What is the home stadium of Kenya's women national football team ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:homeStadium ?uri }",Orange(huggingface) What is the scientist whose doctoral students are Erich Bagge and erban ieica?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:doctoralStudent res:Erich_Bagge . ?uri onto:doctoralStudent res:Șerban_ÈšiÈ›eica . }",Orange(huggingface) Does Grand Bahama lie in the achipelago of the bahamas?,"PREFIX res: PREFIX prop: ASK WHERE { res:Grand_Bahama prop:archipelago res:The_Bahamas }",Orange(huggingface) What is the death place of the Elbieta Czartoryska which is also place of birth of the Charles Journet,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:deathPlace ?uri. onto:birthPlace ?uri}",Orange(huggingface) How many universities participate in the NCAA Division I Football Bowl Subdivision?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:athletics . ?uri rdf:type onto:University}",Orange(huggingface) Give me the total number of architect of the buildings whose one of the architect was Louis D. Astorino?,"PREFIX res: PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:architect . ?x prop:architect ?uri }",Orange(huggingface) "Name the fictional character whose relatives are Huey, Dewey, and Louie and belongs to Duck family ?","PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:relatives . ?uri onto:relative . ?uri rdf:type onto:FictionalCharacter}",Orange(huggingface) Which interest of Philip Novak is the religion of Vesak?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Philip_Novak prop:mainInterests ?uri. res:Vesak onto:type ?uri}",Orange(huggingface) Name the common former team of Marv mcFadden and Carlos Emmons ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:pastteams ?uri. onto:formerTeam ?uri}",Orange(huggingface) In which war did Roh Tae Woo and Lee Leffingwell fight?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:battle ?uri. onto:battle ?uri . }",Orange(huggingface) Name the companies which are in cities under Denzil Minnan Wong?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:leaderName . ?uri onto:locationCity ?x . ?uri rdf:type onto:Company}",Orange(huggingface) Which spouse of Ptolemy XIV had a father named Ptolemy XII auletes?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:parent res:Ptolemy_XII_Auletes . ?uri onto:spouse res:Ptolemy_XIV_of_Egypt . }",Orange(huggingface) Name the newspaper owned by Schibsted and headquartered at Stockholm?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:owners . ?uri prop:headquarters . ?uri rdf:type onto:Newspaper}",Orange(huggingface) What is the Nickname of the school where Jeff Hornacek studied ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:highschool ?x . ?x prop:nickname ?uri . ?x rdf:type onto:School}",Orange(huggingface) Current players of Colorado Avalanche have previously played for how many different teams?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:team . ?x onto:formerTeam ?uri . ?uri rdf:type onto:SportsTeam}",Orange(huggingface) In which common territory did Sino French war and the Tonkin campaign take place?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Tonkin_Campaign onto:territory ?uri. res:Théophane_Vénard onto:deathPlace ?uri}",Orange(huggingface) Name the associate acts of Martin Pugh?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Martin_Pugh prop:associatedActs ?uri }",Orange(huggingface) In which countries have the Start + Flug aircrafts originated?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:manufacturer . ?x prop:nationalOrigin ?uri . ?x rdf:type onto:Aircraft}",Orange(huggingface) Who owns the schools which have a penguin as its mascot?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:designer . ?uri prop:programmingLanguage ?x . ?uri rdf:type onto:School}",Orange(huggingface) Who was the narrator in the point?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:narrated ?uri }",Orange(huggingface) What are the srvices of Laemmle Theatres?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Laemmle_Theatres onto:service ?uri }",Orange(huggingface) In which country is Bocas del toro a capital of some region?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:capital . ?x prop:country ?uri . }",Orange(huggingface) How many people used to play in the youthclub of FC Barcelona?,"PREFIX res: PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:youthclubs . }",Orange(huggingface) Name the alma mater of Michael hahn?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Michael_Hahn onto:almaMater ?uri }",Orange(huggingface) Who all have rented the stadium whose architect is Populous?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:architect . ?x onto:tenant ?uri . ?x rdf:type onto:Stadium}",Orange(huggingface) "Give me a count of schools in Reading, Berkshire?","PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:city . ?uri rdf:type onto:School}",Orange(huggingface) Which administrative headquarters of the Pulau Ubin is also the resting place of the Nicole Lai?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Pulau_Ubin onto:capital ?uri. res:Nicole_Lai onto:restingPlace ?uri}",Orange(huggingface) Who are the judges of the television show whose anchor is Josh Groban?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:presenter . ?x prop:judges ?uri . ?x rdf:type onto:TelevisionShow}",Orange(huggingface) Name the television show whose network is TNT (TV channel) and Prime Time Entertainment Network?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:network . ?uri onto:network . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) Which location city of Denver Broncos is the palce of birth of Steven Clark Cunningham ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Denver_Broncos onto:locationCity ?uri. res:Steven_Clark_Cunningham onto:birthPlace ?uri}",Orange(huggingface) Whose youth clubs used to participate in Argentine Primera Division?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:league res:Argentine_Primera_División . ?uri prop:youthclubs ?x . }",Orange(huggingface) Who built the stadium which was rented for the 2013 Copa Centroamericana?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:tenant . ?x onto:builder ?uri . ?x rdf:type onto:Stadium}",Orange(huggingface) Who is the office holder with deputies as Neil Brown and Andrew Peacock?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri prop:deputy . ?uri prop:deputy . ?uri rdf:type onto:OfficeHolder}",Orange(huggingface) How many people are in the England national football team?,"PREFIX res: PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:nationalteam . }",Orange(huggingface) Count the sports played at universities located in Urban Areas?,"PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:campus . ?x onto:sport ?uri . }",Orange(huggingface) what mountains are in sierra nevada?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:mountainRange . }",Orange(huggingface) Which movies have their music composed by someone that signed up with RCA Records?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:recordLabel . ?uri onto:musicComposer ?x . ?uri rdf:type onto:Film}",Orange(huggingface) What are a few molluscas whose family is Buccinidae?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:family . ?uri rdf:type onto:Mollusca}",Orange(huggingface) How many movies did Stanley Kubrick direct?,"PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:director . }",Orange(huggingface) Count all the ethinic group who speaks language which belongs to Anglo-Frisian language family?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:languageFamily . ?uri prop:languages ?x . ?uri rdf:type onto:EthnicGroup}",Orange(huggingface) Which notable commanders of the Army Group Oberrhein (Germany) is the leader of the Kriminalpolizei?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:notableCommanders ?uri. onto:leader ?uri}",Orange(huggingface) Whose military units are VMF-218 and VMF-155?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:militaryUnit . ?uri onto:militaryUnit . }",Orange(huggingface) Where was the Temptation Waits recorded?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Jerry_Tagge prop:highSchool ?uri. res:Temptation_Waits onto:recordedIn ?uri}",Orange(huggingface) Who all have succeeded the kings buried in Rome?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:placeOfBurial . ?x onto:successor ?uri . ?x rdf:type onto:Royalty}",Orange(huggingface) Name the species of Southwest African lion?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Southwest_African_lion onto:species ?uri }",Orange(huggingface) "Which of the continents that Digitalb worked in, was christine rolfes born in?","PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:regionServed ?uri. onto:birthPlace ?uri}",Orange(huggingface) Was the song The Boy is Mine recorded in Atlanta?,"PREFIX res: PREFIX prop: ASK WHERE { prop:recorded }",Orange(huggingface) What are some companies which are founded in Dallas Jurisdiction?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:governingBody . ?uri onto:foundationPlace ?x . ?uri rdf:type onto:Company}",Orange(huggingface) What are some Louisiana based models known for?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:placeOfBirth . ?x prop:knownFor ?uri . ?x rdf:type onto:Model}",Orange(huggingface) Name the common current team of the Avalon biddle and John mcGuinness?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:currentTeam ?uri. prop:currentTeam ?uri . }",Orange(huggingface) What are some cartoons distributed by a subsidiary of Time Warner?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:parentCompany . ?uri prop:distributor ?x . ?uri rdf:type onto:Cartoon}",Orange(huggingface) What is the style of architecture of Pontiac Building?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Pontiac_Building onto:architecturalStyle ?uri }",Orange(huggingface) Which location country of Ennejma Ezzahra is also the origin of Boga ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:origin ?uri. prop:locationCountry ?uri}",Orange(huggingface) "Does the mississippi orignate in the clearwater county, minnesota?","PREFIX res: PREFIX onto: ASK WHERE { onto:sourceRegion }",Orange(huggingface) Where are jockeys in Dubai World Cup from?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:race . ?x prop:birthPlace ?uri . ?x rdf:type onto:Jockey}",Orange(huggingface) Name few movies directed by Tim Burton ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:director . ?uri rdf:type onto:Film}",Orange(huggingface) "Name the river with Readin, Brekshire in its path and mouth place is Sothend-on-sea ?","PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:mouthMountain . ?uri rdf:type onto:River}",Orange(huggingface) Henry McDaniel's trained horses have won which awards?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:trainer . ?x onto:honours ?uri . ?x rdf:type onto:Horse}",Orange(huggingface) "What is the river whose source region is North-Western Province, Zambia and river mouth is Indian Ocean?","PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:sourceRegion . ?uri onto:riverMouth . ?uri rdf:type onto:River}",Orange(huggingface) Which team did Bill Murphy and Jean Segura play for?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:debutTeam ?uri. onto:team ?uri . }",Orange(huggingface) What is the resting place of the politician who succeeded Samuel Hayes?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:successor ?x . ?x onto:restingPlace ?uri . ?x rdf:type onto:Politician}",Orange(huggingface) Which city near Nihoa is the place of death of jim Brady ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:nearestCity ?uri. onto:deathPlace ?uri}",Orange(huggingface) For which teams did Ryan Powell play for?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:team ?uri }",Orange(huggingface) How many sports are played in organizations presided by Emanuel de Guzman?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:president . ?x onto:sport ?uri . ?uri rdf:type onto:Sport}",Orange(huggingface) Give me the total number of television shows whose theme music composer is Julian Gingell and created by Simon Fuller?,"PREFIX res: PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:themeMusicComposer . ?uri prop:creator }",Orange(huggingface) How many universities participate in the NCAA Division I Football Bowl Subdivision?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:mouthMountain . ?uri onto:rightTributary . ?uri rdf:type onto:University}",Orange(huggingface) What is the college of Malik Ausean which is also the college of Kyle Fuller ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:college ?uri. prop:college ?uri}",Orange(huggingface) Which labels have published songs written by Harry Connick Jr?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:writer . ?x prop:label ?uri . ?x rdf:type onto:Song}",Orange(huggingface) In which cities are there stations of SCOLA?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:broadcastNetwork . ?x prop:city ?uri . ?x rdf:type onto:TelevisionStation}",Orange(huggingface) Name the office holder whose spouse is Dolley Madison and belongs to Militia branch ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:spouse . ?uri prop:branch . ?uri rdf:type onto:OfficeHolder}",Orange(huggingface) How many writers worked on the album Main Course?,"PREFIX res: PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:album . ?x prop:writer ?uri . }",Orange(huggingface) "Where are the agencies headquartered at, which are under the Colorado Dept of Natural Resources?","PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:parentOrganisation . ?x prop:headquarters ?uri . ?x rdf:type onto:GovernmentAgency}",Orange(huggingface) Which allegiance of John Kotelawala is also the sovereign state of Sanath Weerakoon ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:John_Kotelawala prop:allegiance ?uri. res:Sanath_Weerakoon onto:country ?uri}",Orange(huggingface) List some people who were opponents of someone who was died by hanging?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:deathCause . ?x onto:opponent ?uri . ?x rdf:type onto:Person}",Orange(huggingface) "Who was the president under whom, a governor participated in Shay's rebellion?","PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:battle . ?x prop:president ?uri . ?x rdf:type onto:Governor}",Orange(huggingface) Which politician's constituency is led by the SF Board of Supervisors?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:leaderTitle . ?uri prop:constituency ?x . ?uri rdf:type onto:OfficeHolder}",Orange(huggingface) Ricky Gervais is the executive producer of the series having how many fictional characters?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:executiveProducer . ?uri onto:series ?x . ?uri rdf:type onto:FictionalCharacter}",Orange(huggingface) What is the television show whose company is Playtone and written by Erik Jendresen?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:company . ?uri prop:writer . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) How many albums did the maker of The Band produce?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:artist . ?x onto:subsequentWork ?uri . ?uri rdf:type onto:Album}",Orange(huggingface) Name the TV show with Simon Fuller as artist and Fox as the channel ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:creator . ?uri prop:channel . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) Which college has been attended by both Mr. Hubert Wiggs and Mr. Alvin Bell?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Hubert_Wiggs onto:college ?uri. res:Alvin_Bell onto:college ?uri . }",Orange(huggingface) Who is the leader of Hackweiser?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Hackweiser prop:leaderName ?uri }",Orange(huggingface) Name the team manger of Middlebrough F.C season 2006-07 ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:manager ?uri }",Orange(huggingface) Name the significant buildings of Ivan Fomin ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Ivan_Fomin onto:significantBuilding ?uri }",Orange(huggingface) Whose academic advisor works at the St George's Hospital?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:workInstitutions . ?uri onto:academicAdvisor ?x . }",Orange(huggingface) Whose constituency is Duboce Triangle?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:constituency . }",Orange(huggingface) Where did the wrestler trained by Ring of Honour get billed?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:trainer . ?x prop:billed ?uri . ?x rdf:type onto:Athlete}",Orange(huggingface) Which country's engineered have studied at Aero Klub in Wroclaw?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:institution res:AeroKlub_WrocÅ‚aw . ?x prop:nationality ?uri . }",Orange(huggingface) Which religion's people are member of BJP?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:party . ?x onto:religion ?uri . ?x rdf:type onto:Person}",Orange(huggingface) Who discovered Europa and Callisto?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:discoverer ?uri. onto:discoverer ?uri}",Orange(huggingface) In which countries are there banks which came after the National Commercial Bank of Mauritius?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:successor ?x . ?x prop:locationCountry ?uri . ?x rdf:type onto:Bank}",Orange(huggingface) Who have rented the stadium operated by Maple Leaf S&E?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:operator . ?x onto:tenant ?uri . ?x rdf:type onto:Stadium}",Orange(huggingface) "To what region is Sukhumbhand Paribatra, a leader?","PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:leaderName . ?uri rdf:type onto:Region}",Orange(huggingface) Give me a count of royalties buried in Rome ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:placeOfBurial . ?uri rdf:type onto:Royalty}",Orange(huggingface) In which countries can i find broadcasted TV in southeast asia?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:broadcastArea . ?x prop:country ?uri . ?x rdf:type onto:TelevisionStation}",Orange(huggingface) What is the mascot of military in Quezon city?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:garrison . ?x prop:mascot ?uri . ?x rdf:type onto:MilitaryUnit}",Orange(huggingface) Where did the spouse of pmare ii die?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:spouse res:Pōmare_II . ?x onto:deathPlace ?uri . }",Orange(huggingface) Which tenant of New Sanno Hotel is the military branch of the Gary Holder-Winfield?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:tenant ?uri. onto:militaryBranch ?uri}",Orange(huggingface) How many companies have built concrete bridges?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:material . ?x onto:builder ?uri . }",Orange(huggingface) List the opponents of the relatives of Thomas Helwys?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:relation . ?x onto:opponent ?uri . ?x rdf:type onto:Person}",Orange(huggingface) Which relative of ralf schumacher is a famous formula one racer?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:relatives . ?uri rdf:type onto:FormulaOneRacer}",Orange(huggingface) What shows used to air on the channel which was earlier known as The Comedy Central?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:predecessor . ?uri prop:distributor ?x . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) List the served region of the organisations of Trade association.,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:type . ?x onto:regionServed ?uri . ?x rdf:type onto:Organisation}",Orange(huggingface) What are the movies written by Nick Castle?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:writer . ?uri rdf:type onto:Film}",Orange(huggingface) What musician is often associated with Tiffany Villarreal and wrote Same Song?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:writer ?uri. onto:associatedMusicalArtist ?uri . }",Orange(huggingface) Name the basketball player who played for Phoenix Suns and Los Angeles Clippers was his draft team?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:team . ?uri prop:draftTeam . ?uri rdf:type onto:BasketballPlayer}",Orange(huggingface) What is the band with previous members Kevin Jonas and Joe Jonas?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri prop:pastMembers . ?uri prop:pastMembers . ?uri rdf:type onto:Band}",Orange(huggingface) What work has been directed by Orson Welles and distributed by RKO Pictures?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:director . ?uri prop:distributor . ?uri rdf:type onto:Work}",Orange(huggingface) Ryan Seacrest has been the presenter of how many things?,"PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:presenter . }",Orange(huggingface) What are the television shows whose network's sister station is BBC Two?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:sisterStation . ?uri onto:network ?x . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) The Prime minister who worked in the Khmer Issarak follows which religion?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:militaryBranch . ?x onto:religion ?uri . ?x rdf:type onto:PrimeMinister}",Orange(huggingface) With which musical artist is the producer of Spotlight associated ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:producer ?x . ?x prop:associatedActs ?uri . ?x rdf:type onto:MusicalArtist}",Orange(huggingface) Which Texas based company was founded by Jim Harris ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:locationCity . ?uri prop:founder . ?uri rdf:type onto:Company}",Orange(huggingface) Who is the maker of the engine of Ford F-Series first generation?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:engine ?x . ?x onto:manufacturer ?uri . }",Orange(huggingface) Where are the burial grounds of Willem Cornelis Janse van Rensburg and Thomas Franois Burgers?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Willem_Cornelis_Janse_van_Rensburg prop:restingplace ?uri. res:Thomas_François_Burgers prop:restingplace ?uri . }",Orange(huggingface) Where did Georges Wolinski and Judson Huss died?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Georges_Wolinski prop:placeOfDeath ?uri. res:Judson_Huss prop:deathPlace ?uri}",Orange(huggingface) How many different things are used as ingredients in Sweden?,"PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:country . ?x onto:ingredient ?uri . }",Orange(huggingface) What magazine published Allal and is the employer of Peter Bergman?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:publisher ?uri. onto:employer ?uri}",Orange(huggingface) "What other destinations do airlines go to, whose flights also come to Glasgow?","PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:targetAirport . ?x prop:destinations ?uri . ?x rdf:type onto:Airline}",Orange(huggingface) List the country of Tokaj wine region?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Tokaj_wine_region prop:country ?uri }",Orange(huggingface) Who has fought in the conflicts around the Mississippi river?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:place . ?x prop:combatant ?uri . ?x rdf:type onto:MilitaryConflict}",Orange(huggingface) Which politicians died in cities built by the Roman emperor Charles 5?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:builder . ?uri onto:deathPlace ?x . ?uri rdf:type onto:OfficeHolder}",Orange(huggingface) Which movies have someone on their cast from Shelby County in Tennessee?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:hometown . ?uri prop:starring ?x . ?uri rdf:type onto:Film}",Orange(huggingface) Who are the people which ITV(TV network) has employed?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:employer . }",Orange(huggingface) List all the nicknames of the city which has Torun gingerbread as one of it?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:nickname res:ToruÅ„_gingerbread . ?x prop:nickname ?uri . }",Orange(huggingface) Which city is the resting place of the Martin Ragaway and Chuck Connors ?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:restingPlace ?uri. onto:restingPlace ?uri . ?uri rdf:type onto:City}",Orange(huggingface) Who is the office holder whose resting place is Monticello?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:restingPlace . ?uri rdf:type onto:OfficeHolder}",Orange(huggingface) In which states does the river flow whose left tributary is Toms Creek?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:leftTributary ?x . ?x onto:state ?uri . }",Orange(huggingface) Which fictional character portrayed in Terminator 2: Judgment Day is painted by Josh Friedman?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:portrayer . ?uri onto:creator . ?uri rdf:type onto:FictionalCharacter}",Orange(huggingface) Find the total number of ingredients of the recepies whose ingredient is common Mushroom ?,"PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:ingredient . ?x onto:ingredient ?uri }",Orange(huggingface) Which newspapers are owned by companies which are under Rolv Erik Ryssdal?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:keyPerson . ?uri prop:owners ?x . ?uri rdf:type onto:Newspaper}",Orange(huggingface) "Which office holder's resting place is Alta Mesa Memorial Park and has Henry E. Catto, Jr. as predecessor ?","PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:restingPlace . ?uri prop:predecessor . ?uri rdf:type onto:OfficeHolder}",Orange(huggingface) Who owns the newspaper which was founded by Nehru?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:founder . ?x onto:owner ?uri . ?x rdf:type onto:Newspaper}",Orange(huggingface) Which cities have the river one of whose Tributary is the Missouri's big spring?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:rightTributary . ?x onto:city ?uri . ?x rdf:type onto:River}",Orange(huggingface) Count the different religions followed by Second Lieutenants in military.,"PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:militaryRank . ?x onto:religion ?uri . }",Orange(huggingface) Name the species of Liger?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Liger onto:species ?uri }",Orange(huggingface) What are some movies whose distributors are led by Kevin Tsujihara?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:keyPerson . ?uri prop:distributor ?x . ?uri rdf:type onto:Film}",Orange(huggingface) Which key person of Clinton Foundation is also the president of Jim Sasser?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Clinton_Foundation prop:keyPeople ?uri. res:Jim_Sasser onto:president ?uri}",Orange(huggingface) How many writers speak a language belonging to the Germanic kind of languages?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:languageFamily . ?uri prop:language ?x . ?uri rdf:type onto:Writer}",Orange(huggingface) What are some other services of the company whose service is Onedrive?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:service . ?x prop:services ?uri . ?x rdf:type onto:Company}",Orange(huggingface) What are some musicians who have worked with Dean Ambrose?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:associatedMusicalArtist . ?uri rdf:type onto:MusicalArtist}",Orange(huggingface) Name the company with product lines like Visual studio and Surface ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:products . ?uri onto:product . ?uri rdf:type onto:Company}",Orange(huggingface) What is the baseball team whose club manager's debut team is Houston Astros?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:debutTeam . ?uri onto:manager ?x . ?uri rdf:type onto:BaseballTeam}",Orange(huggingface) Name the movies writtten by the group Monty Python?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:writer . ?uri rdf:type onto:Film}",Orange(huggingface) Who is the head coach of the teams in Middlesbrough FC?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:club . ?x onto:manager ?uri . }",Orange(huggingface) What is the television show whose vocals are performed by April Stewart and Mona Marshall?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri prop:voices . ?uri prop:voices . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) Which basketball players have played in the league of National Basketball Association?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:league . ?uri rdf:type onto:BasketballPlayer}",Orange(huggingface) Rivers which end in Arkansas go through which cities?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:mouthMountain . ?x onto:city ?uri . ?x rdf:type onto:River}",Orange(huggingface) What basketball league's champion is Golden State Warriors?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:champion . ?uri rdf:type onto:BasketballLeague}",Orange(huggingface) From how many different places did the weapons used in the American Indian wars originate?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:usedInWar . ?x prop:origin ?uri . ?uri rdf:type onto:Place}",Orange(huggingface) For which team does Ramiro Pea play?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Ramiro_Peña onto:team ?uri }",Orange(huggingface) How many people are buried in Arlington National Cemetery?,"PREFIX res: PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:placeofburial . }",Orange(huggingface) How many architects are there who have made something used by Oakland athletics?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:tenant . ?x prop:architect ?uri . }",Orange(huggingface) Name the president who has relations with Clinton family and had a lieutenant named Winston Bryant?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:relation . ?uri onto:lieutenant . ?uri rdf:type onto:President}",Orange(huggingface) What are some bands out to texarkana?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:origin . ?uri rdf:type onto:Band}",Orange(huggingface) Which licensee of EXXV-TV is also the licensee of WXXV-DT2 ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:licensee ?uri. prop:licensee ?uri . }",Orange(huggingface) In which places can we find the people won the Project Runaway Canada?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:award . ?x onto:residence ?uri . ?x rdf:type onto:Person}",Orange(huggingface) "Which band had the members of The Conglomerate, and has made 'Before I let you go'?","PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:pastMembers ?uri. onto:musicalArtist ?uri}",Orange(huggingface) What is the religion of the ethnic group to which the relatives of Waxiang people belong?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:related ?x . ?x onto:religion ?uri . ?x rdf:type onto:EthnicGroup}",Orange(huggingface) "Under which common jurisdiction do Trinity School, Brentwood and Buckhurst Hill County High School fall?","PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:localAuthority ?uri. onto:localAuthority ?uri . }",Orange(huggingface) What is the mascot of the unit whose garrison is Canberra ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:garrison . ?x prop:mascot ?uri . ?x rdf:type onto:MilitaryUnit}",Orange(huggingface) Which route start of Moscow-Kazan high-speed railway is the home stadium of 2011-12 FC Spartak Moscow ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:routeStart ?uri. onto:homeStadium ?uri}",Orange(huggingface) Was Gumus TV series first aired in Albania?,"PREFIX res: PREFIX prop: ASK WHERE { prop:firstAired }",Orange(huggingface) What river originates in the Connecticut Lakes?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:source . ?uri rdf:type onto:River}",Orange(huggingface) Where is the person from whose military rank is Airman first class?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:militaryRank . ?x prop:state ?uri . ?x rdf:type onto:Person}",Orange(huggingface) Whose work is in the Musee d'orsay?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:museum . ?x prop:artist ?uri . ?uri rdf:type onto:Artist}",Orange(huggingface) "What is the television show whose theme music composer's home town is El Sobrante, California?","PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:hometown . ?uri prop:themeMusicComposer ?x . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) What musicians are signed up with colpix records?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:label . ?uri rdf:type onto:MusicalArtist}",Orange(huggingface) Was Stephanie Rice the flagbearer of Australia at the 2008 Summer Olympics?,"PREFIX res: PREFIX prop: ASK WHERE { res:Australia_at_the_2008_Summer_Olympics prop:flagbearer res:Stephanie_Rice }",Orange(huggingface) In which city are the schools whose district is Mumbai Suburban?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:district . ?x onto:city ?uri . ?x rdf:type onto:School}",Orange(huggingface) What is the municipality of Patterson Houses?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Patterson_Houses onto:municipality ?uri }",Orange(huggingface) In which city was Saleen Raptor designed and is also the birth location of Jimmy Diggs ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Saleen_S5S_Raptor prop:designer ?uri. res:Jimmy_Diggs onto:birthPlace ?uri}",Orange(huggingface) What kind of things are on the radio stations affiliated with the Baltimore Ravens?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:affiliations . ?x onto:programmeFormat ?uri . ?x rdf:type onto:RadioStation}",Orange(huggingface) Who has manufactured vehicles designed originally by NASA?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:designCompany . ?x onto:manufacturer ?uri . ?x rdf:type onto:Automobile}",Orange(huggingface) How many food items have an ingredient from the Sapindales family?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:order . ?uri onto:ingredient ?x . ?uri rdf:type onto:Food}",Orange(huggingface) List all the mebers of Mekong River Commission?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Mekong_River_Commission prop:membership ?uri }",Orange(huggingface) What are the names of the casualties of Eric Harris and Dylan Klebold?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:deathCause . ?uri rdf:type onto:Person}",Orange(huggingface) In which fields are pupils of Edouard Chavannes working?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:academicAdvisor res:Édouard_Chavannes . ?x prop:fields ?uri . }",Orange(huggingface) List the outflows of the lake whose one of the outflows is Benu rive?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:outflow res:Benué_River . ?x onto:outflow ?uri . }",Orange(huggingface) Count the number of first drivers in all the GPs where Mika Hakkinen was a pole driver?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:poleDriver . ?x onto:firstDriver ?uri . ?uri rdf:type onto:RacingDriver}",Orange(huggingface) Count all the shows whose music composers are in Oysterhead.,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:associatedMusicalArtist . ?uri prop:themeMusicComposer ?x . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) Count the different number of academic areas covered by publications of SAGE?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:publisher . ?x onto:academicDiscipline ?uri . }",Orange(huggingface) Who all have been in bands which have recorded their work in the Electric Lady Studios?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:recordedIn . ?uri prop:associatedActs ?x . ?uri rdf:type onto:Person}",Orange(huggingface) Did Jerry Rice study in Oktoc Mississippi?,"PREFIX res: PREFIX prop: ASK WHERE { prop:highSchool }",Orange(huggingface) Give me the total number of membership of the organisations which have memebers as Azerbaijan?,"PREFIX res: PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:membership . ?x prop:membership ?uri }",Orange(huggingface) "Where was Live in Detroit, MI recorded?","PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:recordedIn ?uri }",Orange(huggingface) What tv show is created by Brian Graden?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:developer . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) "Name the fictional character whose relatives are Huey, Dewey, and Louie and is of species American Pekin duck?","PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:relatives . ?uri onto:species . ?uri rdf:type onto:FictionalCharacter}",Orange(huggingface) Who wrote the musical based on Mary Poppins?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:basedOn . ?x onto:author ?uri . ?x rdf:type onto:Musical}",Orange(huggingface) Which predecessor of the PlayStation 4 is also the developer of Oddworld: Munch's Oddysee?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:predecessor ?uri. onto:developer ?uri}",Orange(huggingface) Which motion picture stories were edited by Ishir Honda?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:writer . ?uri rdf:type onto:Film}",Orange(huggingface) where did soccer bowl take place in 76?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:city ?uri }",Orange(huggingface) Bridges over which rivers are made of Wrought Iron?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:material . ?x onto:river ?uri . ?x rdf:type onto:Bridge}",Orange(huggingface) On which subjects does the author of the novel Thud! delve?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:nonFictionSubject ?uri }",Orange(huggingface) Name all sitcoms whose theme music is made by Miley Cyrus?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:musicalBand . ?uri onto:openingTheme ?x . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) What religion's politicians are in the Malaysian Chinese association?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:party . ?x onto:religion ?uri . ?x rdf:type onto:Politician}",Orange(huggingface) What softwares were created by Apple Productivity Experience Group?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Apple_Productivity_Experience_Group onto:product ?uri }",Orange(huggingface) What artists are associated with the members of the Catalin Maruta?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:associatedBand res:Cătălin_Măruță . ?x onto:associatedMusicalArtist ?uri . }",Orange(huggingface) How many scientists are known for the Manhatten Project?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:knownFor . ?uri rdf:type onto:Scientist}",Orange(huggingface) Give me the list of cars which are the predecessor of Full Sized Cars?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:class . ?x onto:predecessor ?uri . ?x rdf:type onto:Automobile}",Orange(huggingface) Which clubs play in the La Liga?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:league . ?x prop:name ?uri . ?x rdf:type onto:SoccerClub}",Orange(huggingface) What is the layout of Subaru Legacy (second generation) ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:layout ?uri }",Orange(huggingface) How many different products are there of the companies located in the US?,"PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:location . ?x onto:product ?uri . }",Orange(huggingface) "Give me all office holders who finally retired in Montpelier, Orange, Virgina?","PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:restingplace . ?uri rdf:type onto:OfficeHolder}",Orange(huggingface) Who were the american football players who played for Dallas Cowboys?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:team . ?uri rdf:type onto:AmericanFootballPlayer}",Orange(huggingface) Name the TV show which has judge as harry Connick and is broadcasted on Fox Broadcasting Company?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:channel . ?uri prop:judges . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) What is the genre of the Band whose home town is County Westmeath?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:hometown . ?x prop:genre ?uri . ?x rdf:type onto:Band}",Orange(huggingface) How many movies did Michael Deeley produce?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:producer . ?uri rdf:type onto:Film}",Orange(huggingface) Name the scientist who was awarded a position in Royal Society and has academic advisor as Franz Brentano?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:awards . ?uri onto:academicAdvisor . ?uri rdf:type onto:Scientist}",Orange(huggingface) The pope whose shrine is in St Peter's Basilica was venerated in which sects?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:majorShrine . ?x prop:veneratedIn ?uri . ?x rdf:type onto:Pope}",Orange(huggingface) List the people who are in the board of an organization kickstarted in New York.,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:foundation . ?uri onto:board ?x . ?uri rdf:type onto:Person}",Orange(huggingface) How many islands belong to archipelagos located in the pacific?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:location . ?uri prop:archipelago ?x . ?uri rdf:type onto:Island}",Orange(huggingface) Which assembly of the Plymouth Savoy is the route end of the NorthSouth Transport Corridor?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Plymouth_Savoy onto:assembly ?uri. res:North–South_Transport_Corridor onto:routeEnd ?uri}",Orange(huggingface) Name the artist who made Dream Dancing and is often associated with Joe Pass?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:associatedBand ?uri. prop:artist ?uri . }",Orange(huggingface) Name the fictional character who was in Terminator and portrayer is Terminator 2: Judgment Day?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:series . ?uri onto:portrayer . ?uri rdf:type onto:FictionalCharacter}",Orange(huggingface) Which artist of Madagascar: Operation Penguin is also the writer of He's a Pirate ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:artist ?uri. prop:writer ?uri}",Orange(huggingface) Which organizations have Jimmy Wales on board?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Jimmy_Wales onto:board ?uri }",Orange(huggingface) List the awards won by the writer of Face to Face?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:writer ?x . ?x prop:awards ?uri . }",Orange(huggingface) Who was the editor of the newspaper owned by the the UK government?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:owners . ?x prop:editor ?uri . ?x rdf:type onto:Newspaper}",Orange(huggingface) List some leaders of regions in the Indian Standard Time Zone?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:timeZone . ?x onto:leaderName ?uri . ?x rdf:type onto:Place}",Orange(huggingface) How many other important work has been done by the writers of Sarah Jane Adventures?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:notableworks . ?x onto:notableWork ?uri . }",Orange(huggingface) Which country did the prime minister belong to who was served by Thanong Bidaya?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Thanong_Bidaya prop:primeminister ?x . ?x onto:nationality ?uri . }",Orange(huggingface) What are the Languages of Zabbaleen?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Zabbaleen prop:languages ?uri }",Orange(huggingface) What is the home stadium of the soccer club seasons whose chairman is Merritt Paulson?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:chairman . ?x onto:homeStadium ?uri . ?x rdf:type onto:SoccerClubSeason}",Orange(huggingface) What is the death location of the scientist who is the known authority of Hallopus ?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:binomialAuthority ?x . ?x onto:deathPlace ?uri . ?x rdf:type onto:Scientist}",Orange(huggingface) Name a queen whose parent is Ptolemy XII Auletes and consort is Ptolemy XIII Theos Philopator?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:parent . ?uri prop:spouse . ?uri rdf:type onto:Royalty}",Orange(huggingface) Give me an estimate number of races where horses grandsired by the Wild Risk have raced in?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:grandsire . ?x prop:race ?uri . ?uri rdf:type onto:HorseRace}",Orange(huggingface) "Name the river whose mouth place is Old Lyme, Connecticut?","PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:mouthPlace . ?uri rdf:type onto:River}",Orange(huggingface) Musical artists who are associated with Ren & Angela were born where ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:associatedActs . ?x prop:birthPlace ?uri . ?x rdf:type onto:MusicalArtist}",Orange(huggingface) "In which region is the rival school of Somerset, Massachusetts located?","PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:rival . ?x onto:region ?uri . ?x rdf:type onto:School}",Orange(huggingface) Count everyone who lives in a place where Indian English is an official language?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:officialLanguage res:Indian_English . ?uri onto:residence ?x . }",Orange(huggingface) What newspapers's owners is Schibsted,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:owners . ?uri rdf:type onto:Newspaper}",Orange(huggingface) How many politicians are in the US Senate?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:order . ?uri rdf:type onto:OfficeHolder}",Orange(huggingface) Which label released the movie written by Thomas Meehan?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:writer . ?x prop:label ?uri . ?x rdf:type onto:Film}",Orange(huggingface) Among the countries using Aureus as currency which had Nicomedia as an important place?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:capital . ?uri onto:currency . ?uri rdf:type onto:Country}",Orange(huggingface) Which company of Ford Theatre is the owning organization of Ford Kansa City Assemply Plant?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Ford_Kansas_City_Assembly_Plant onto:owningOrganisation ?uri. res:Ford_Theatre prop:company ?uri}",Orange(huggingface) What are some people working for the New York Post?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:employer . ?uri rdf:type onto:Person}",Orange(huggingface) What is an airport inside ontario?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:cityServed . ?uri rdf:type onto:Airport}",Orange(huggingface) Who all have developed a cross platform software?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:operatingSystem . ?x onto:developer ?uri . ?x rdf:type onto:Software}",Orange(huggingface) Name the broadcast area of Radio Philippines Network ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Radio_Philippines_Network prop:area ?uri }",Orange(huggingface) What are the shows whose creator has worked as a screenwriter?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:occupation . ?uri onto:creator ?x . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) Where are INKAS located which is also the state of origin for Jojo Chintoh?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Jojo_Chintoh onto:stateOfOrigin ?uri. res:INKAS prop:locations ?uri}",Orange(huggingface) Pennsylvania has how many american football teams?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:city . ?uri rdf:type onto:AmericanFootballTeam}",Orange(huggingface) Which content license of the MSX BASIC is also the profession of the Laura K. Ipsen?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:MSX_BASIC prop:license ?uri. res:Laura_K._Ipsen onto:occupation ?uri}",Orange(huggingface) What are the television shows whose voices is given by Mona Marshall?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:voices . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) Name the HBO TV show written by Erik jendresen?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:company . ?uri prop:writer . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) Which nation's engineers have graduated in Poland?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:education . ?x prop:nationality ?uri . ?x rdf:type onto:Engineer}",Orange(huggingface) Where were sverre krogh sundbo and havard vad petersson born?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Sverre_Krogh_Sundbø prop:birthPlace ?uri. res:HÃ¥vard_Vad_Petersson prop:placeOfBirth ?uri}",Orange(huggingface) How many fictional characters are there in a series in which Craig Robinson acted?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:starring . ?uri onto:series ?x . ?uri rdf:type onto:FictionalCharacter}",Orange(huggingface) Name a writer who was educated in Saint Petersburg and had a son named Lyubov Dostoyevskaya ?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:education . ?uri onto:child . ?uri rdf:type onto:Writer}",Orange(huggingface) List the border of the admin region which shares border with North Korea ?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:border . ?x onto:border ?uri . ?x rdf:type onto:AdministrativeRegion}",Orange(huggingface) What currencies are used in the countries which have been governed by Francois Hollande?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:leader . ?x onto:currency ?uri . ?x rdf:type onto:Country}",Orange(huggingface) Which show's theme music was composed by Primus and voiced by Isaac Hayes?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:themeMusicComposer . ?uri prop:voices . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) What are the airlines whose hub airport is operated by the Los Angeles World Airports?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:operator . ?uri onto:hubAirport ?x . ?uri rdf:type onto:Airline}",Orange(huggingface) Which magazine's editor's official residence is Playboy Mansion?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:residence . ?uri prop:editor ?x . ?uri rdf:type onto:Magazine}",Orange(huggingface) Name the movie written by Monty Python and distributed by Cinema International Corporation?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:distributor . ?uri prop:writer . ?uri rdf:type onto:Film}",Orange(huggingface) Who were the producers of the tenderfoot?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:producer ?uri }",Orange(huggingface) List all the record label distributed by the distributor of Zune?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:distributor . ?x prop:distributor ?uri . ?x rdf:type onto:RecordLabel}",Orange(huggingface) What is the country whose leader name is Gerard Larcher?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:leaderName . ?uri rdf:type onto:Country}",Orange(huggingface) Where can I find some buildings of modern architecture?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:architecturalStyle . ?x prop:address ?uri . ?x rdf:type onto:Building}",Orange(huggingface) How many utopian and dystopian fiction books are there?,"PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:literaryGenre . }",Orange(huggingface) Which company founded by Fusajiro Yamauchi also provides services of Nintendo eShop ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:foundedBy . ?uri prop:services . ?uri rdf:type onto:Company}",Orange(huggingface) What is the location of death of the skier who was the bronze medalist of Alpine skiing at the 1964 Winter Olympics Men's slalom ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:bronzeMedalist ?x . ?x prop:deathPlace ?uri . ?x rdf:type onto:Skier}",Orange(huggingface) Count the water bodies that flow into the North Sea?,"PREFIX res: PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { prop:inflow ?uri . }",Orange(huggingface) Where was the person born whose successor was Le Hong Phong?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:successor res:Lê_Hồng_Phong . ?x prop:birthPlace ?uri . }",Orange(huggingface) Name the office holder who was married to Dolley Madison and has resting palce as Montpelier ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:spouse . ?uri prop:restingplace . ?uri rdf:type onto:OfficeHolder}",Orange(huggingface) List the soccer players whose current team has the ground Stoke-on-Trent.,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:ground . ?uri prop:currentclub ?x . ?uri rdf:type onto:SoccerPlayer}",Orange(huggingface) To which party do the politicians who died in Delhi belong?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:placeOfDeath . ?x prop:party ?uri . ?x rdf:type onto:OfficeHolder}",Orange(huggingface) What is the award which is presented by Swedish Academy?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:presenter . ?uri rdf:type onto:Award}",Orange(huggingface) Who was the narrator of the show who's music is composed by John Douglas?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:composer . ?x prop:narrated ?uri . ?x rdf:type onto:TelevisionShow}",Orange(huggingface) Where does the rivers ending in lake washington begin?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:riverMouth . ?x prop:sourceLocation ?uri . ?x rdf:type onto:River}",Orange(huggingface) How many fictional characters were humans?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:species . ?uri rdf:type onto:FictionalCharacter}",Orange(huggingface) Count the territories of the wars where the QF Hotchkiss was used.,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { onto:usedInWar ?x . ?x onto:territory ?uri . ?x rdf:type onto:MilitaryConflict}",Orange(huggingface) List the newspapers whose offices are situated in 1211 Avenue of the Americas?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:headquarter . ?uri rdf:type onto:Newspaper}",Orange(huggingface) Which political party of Chandra Shekhar is also the political party of Datl Satyanarayana Raju?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Chandra_Shekhar onto:otherParty ?uri. res:Datla_Satyanarayana_Raju onto:party ?uri}",Orange(huggingface) "Name the company founded by Jim Harris and located in Harris County, Texas ?","PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:foundedBy . ?uri onto:locationCity . ?uri rdf:type onto:Company}",Orange(huggingface) List the team for which Doug Acomb played?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Doug_Acomb prop:playedFor ?uri }",Orange(huggingface) List the movies whose editors are born in London.,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:placeOfBirth . ?uri onto:editing ?x . ?uri rdf:type onto:Film}",Orange(huggingface) How many TV shows were made by someone who was associated with Lewis Hamilton?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:associatedBand . ?uri prop:creator ?x . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) What is a common nickname given to both Lyons Township high school and the wheaton college in massachusetts?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:nickname ?uri. prop:nickname ?uri . }",Orange(huggingface) Where did the office holder died who also have faith in Episcopal Church ?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:religion . ?x onto:deathPlace ?uri . ?x rdf:type onto:OfficeHolder}",Orange(huggingface) Is the chestnut white bellied rat a mammal?,"PREFIX res: PREFIX onto: ASK WHERE { onto:class }",Orange(huggingface) Does the Toyota Verossa have the front engine design platform?,"PREFIX res: PREFIX onto: ASK WHERE { onto:automobilePlatform . }",Orange(huggingface) Who is the owner of Chelsea F.C. ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:owningCompany ?uri. prop:owner ?uri}",Orange(huggingface) Count the journals in the field of Philosophy.,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:discipline . ?uri rdf:type onto:AcademicJournal}",Orange(huggingface) Count the total number of cast member of the television shows whose actress is Joey McIntyre?,"PREFIX res: PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:starring . ?x prop:starring ?uri }",Orange(huggingface) How many shows are aired on Comedy Central?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:network . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) Where are the National Academy Museum and School award winners buried?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:training res:National_Academy_Museum_and_School . ?x onto:restingPlace ?uri . }",Orange(huggingface) Momoko Kochi has acted in which movie ?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:starring . ?uri rdf:type onto:Film}",Orange(huggingface) List the actors of Lucy Sullivan Is Getting Married?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Lucy_Sullivan_Is_Getting_Married prop:starring ?uri }",Orange(huggingface) Count me all the video game distributor whose parent company is Warner Bros ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:parent . ?uri prop:distributor ?x . ?uri rdf:type onto:VideoGame}",Orange(huggingface) Name the scientist who is known for inventing Anthrax and was a member of Royal Society?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:knownFor . ?uri prop:prizes . ?uri rdf:type onto:Scientist}",Orange(huggingface) Eric roth wrote how many screenplays?,"PREFIX res: PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:screenplay . }",Orange(huggingface) "In which areas are the radio stations of Monticello, Maine available too?","PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:city . ?x prop:area ?uri . ?x rdf:type onto:RadioStation}",Orange(huggingface) Name the TV show whose cast member is Companion (Doctor Who) and is related to The Sarah Jane Adventures?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:related . ?uri prop:themeMusicComposer . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) Which offices were held by the politicians who held their allegiance to the union of american civil war?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:allegiance . ?x prop:office ?uri . ?x rdf:type onto:OfficeHolder}",Orange(huggingface) What is the river whose mouth is in deadsea?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:riverMouth . ?uri rdf:type onto:River}",Orange(huggingface) Give me the places where people who worked in Church of England died in?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:occupation res:Church_of_England . ?x onto:deathPlace ?uri . }",Orange(huggingface) Which president of Lance Adams-Schneider had nickname Daniel O'Regan?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:president ?uri. prop:nickname ?uri}",Orange(huggingface) What are the television shows whose network is Prime Time Entertainment Network?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:network . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) In which military conflict were Phm Vn ng and John McEwen commanders ?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:commander . ?uri onto:commander . ?uri rdf:type onto:MilitaryConflict}",Orange(huggingface) List the academic discipline of the journals whose publisher is SAGE Publications.,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:publisher . ?x onto:academicDiscipline ?uri . ?x rdf:type onto:AcademicJournal}",Orange(huggingface) Count all the awards which were presented by something located in California.,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:headquarter . ?uri onto:presenter ?x . ?uri rdf:type onto:Award}",Orange(huggingface) What are the awards won by the person who is an authority of Latania verschaffeltii?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:binomialAuthority ?x . ?x prop:awards ?uri . ?x rdf:type onto:Person}",Orange(huggingface) Whose associate is Publius Servilius Vatia Isauricus and has predecessor as Lucius Cornelius Lentulus Crus?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:associate . ?uri onto:predecessor . }",Orange(huggingface) Which settelment area is the home town of the Danny Felice and Cline Buckens?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:hometown ?uri. onto:hometown ?uri . ?uri rdf:type onto:Settlement}",Orange(huggingface) How many have been awarded by the Royal Society?,"PREFIX res: PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:awards . }",Orange(huggingface) Hugh Hefner is editor of which magazine?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:editor . ?uri rdf:type onto:Magazine}",Orange(huggingface) Name the office holder whose constituency is Haight-Ashbury?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:constituency . ?uri rdf:type onto:OfficeHolder}",Orange(huggingface) List the total number of board members who share board with Creative commons ?,"PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:board . ?x onto:board ?uri }",Orange(huggingface) What is the fictional character whose voice over is done by the animator of Dick Lundy ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:animator . ?uri onto:voice ?x . ?uri rdf:type onto:FictionalCharacter}",Orange(huggingface) Which city located on Mediterranean Sea is also the stadium of Panionios G.S.S. season ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:2014–15_Panionios_G.S.S._season prop:stadium ?uri. res:Mediterranean_Sea prop:cities ?uri}",Orange(huggingface) "Which countries were the first to play Gumus and Ne daj se, Nina?","PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:firstAired ?uri. prop:firstAired ?uri . }",Orange(huggingface) For how many movies are there whose musicians home town is in Volos ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:hometown . ?uri prop:music ?x . ?uri rdf:type onto:Film}",Orange(huggingface) Name a scientist whose official residence is Cape Town and also won a gold medal at the Royal Astronomical Society ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:prizes . ?uri prop:residence . ?uri rdf:type onto:Scientist}",Orange(huggingface) What is the common nationality of Funny Face a comedian and that of Georgina Theodora Wood?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:nationality ?uri. onto:nationality ?uri}",Orange(huggingface) Where did the members of judge advocate general corps study?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:militaryRank . ?x onto:almaMater ?uri . }",Orange(huggingface) What cities are around the valley bordering Lake Mead?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:border . ?x onto:city ?uri . ?x rdf:type onto:Valley}",Orange(huggingface) Foxconn makes how many things?,"PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:manufacturer . }",Orange(huggingface) What country provides a citizenship to Newin Chidchob and Seni Pramoj?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Newin_Chidchob prop:nationality ?uri. res:Seni_Pramoj onto:nationality ?uri}",Orange(huggingface) In how many places are the companies founded in Canada operating?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:foundationPlace . ?x prop:locations ?uri . }",Orange(huggingface) Name the TV show with artist Christopher Franke and cast member Jason Carter ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:artist . ?uri onto:starring . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) "What is the successor of the governors whose child is Levi Lincoln, Jr.?","PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:children . ?x prop:successor ?uri . ?x rdf:type onto:Governor}",Orange(huggingface) Which US state gave us Brian Deegan and Harold Lyold?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:birthPlace ?uri. prop:birthPlace ?uri . }",Orange(huggingface) Which TV show distributed by Warner Bros. has Christopher Franke as one of the artist?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:distributor . ?uri prop:artist . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) What are some mammals whose phylum is Chordate?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:phylum . ?uri rdf:type onto:Mammal}",Orange(huggingface) How many soccer manager have been in the Spain nation football team?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:nationalteam . ?uri rdf:type onto:SoccerManager}",Orange(huggingface) How many people have been the head coach for Middlesbrough FC?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:club . ?x onto:manager ?uri . ?uri rdf:type onto:Person}",Orange(huggingface) In how many places did the Schutzstaffels die?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:militaryRank . ?x prop:placeOfDeath ?uri . ?uri rdf:type onto:Place}",Orange(huggingface) Name a company with key person as Dennis Muilenburg and Raymond Conner ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:keyPeople . ?uri onto:keyPerson . ?uri rdf:type onto:Company}",Orange(huggingface) What is Bob Adams (American football) known for?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:knownFor ?uri }",Orange(huggingface) List the former team of the american football players born in Pennsylvania ?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:birthPlace . ?x onto:formerTeam ?uri . ?x rdf:type onto:AmericanFootballPlayer}",Orange(huggingface) What is the total number of companies who use a language designed by Bjarne Stroustrup?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:designer . ?uri prop:programmingLanguage ?x . ?uri rdf:type onto:Company}",Orange(huggingface) tonle sap flows into which river?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:rightTributary res:Tonlé_Sap }",Orange(huggingface) What awards have been given to the dude who made Shaun the Sheep?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:notableworks . ?x onto:award ?uri . ?x rdf:type onto:Person}",Orange(huggingface) How many times has Jeff Conaway been casted?,"PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:starring . }",Orange(huggingface) "What borders the valley which falls under Lake County, Oregon?","PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:municipality . ?x onto:border ?uri . ?x rdf:type onto:Valley}",Orange(huggingface) Was the USS Tillamook built in Seattle?,"PREFIX res: PREFIX prop: ASK WHERE { prop:shipBuilder }",Orange(huggingface) "Naval station mobile and naval support activity, naples are under which branch of Us military?","PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:type ?uri. onto:type ?uri . ?uri rdf:type onto:MilitaryUnit}",Orange(huggingface) "How many companies were founded in Menlo Park, California?","PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:foundation . ?uri rdf:type onto:Company}",Orange(huggingface) "Which tennis players live in Kenthurst, new south wales?","PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:residence . ?uri rdf:type onto:TennisPlayer}",Orange(huggingface) In which areas is the radio station broadcasted which is a sister station of WXME ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:sisterStations ?x . ?x prop:area ?uri . ?x rdf:type onto:RadioStation}",Orange(huggingface) What would be a common border of Siberia and the shimsa plateau?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Shimōsa_Plateau onto:border ?uri. res:Siberia onto:border ?uri . }",Orange(huggingface) What is the total number of relgions followed by people born in Bangkok?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:birthPlace . ?x onto:religion ?uri . }",Orange(huggingface) Who wrote the subsequent work of One Day at a Time (Em's Version) ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:subsequentWork ?x . ?x onto:writer ?uri . }",Orange(huggingface) Name all the hubs of the airlines whose one of the hubs is Selangir ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:hubs . ?x prop:hubs ?uri . ?x rdf:type onto:Airline}",Orange(huggingface) "For how many teams have the league players of Czech Extraliga, previously played?","PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:league . ?x onto:formerTeam ?uri . }",Orange(huggingface) Who developed the software which is used as operating system of Magic Trackpad ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:operatingSystem ?x . ?x prop:developer ?uri . ?x rdf:type onto:Software}",Orange(huggingface) Which job of Irving Chernev is the non-fiction subject of the Thud ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:occupation ?uri. onto:nonFictionSubject ?uri}",Orange(huggingface) How many movies have been directed by Orson Welles ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:director . ?uri rdf:type onto:Film}",Orange(huggingface) Count the number of schools which are in a city governed by the West Berkshire Council?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:leaderName . ?uri prop:city ?x . ?uri rdf:type onto:School}",Orange(huggingface) Which university has chancellor as Nicholas S. Zeppos?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:chancellor . ?uri rdf:type onto:University}",Orange(huggingface) Which division of the Runewaker Entertainment is also the destinations of the Airtours International Airways?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Runewaker_Entertainment onto:division ?uri. res:Airtours_International_Airways prop:destinations ?uri}",Orange(huggingface) Who is the successor of McDonnell Douglas?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:McDonnell_Douglas prop:successor ?uri }",Orange(huggingface) Name the sea located near Europe and has a nearby city as Rostock ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:cities . ?uri onto:location . ?uri rdf:type onto:Sea}",Orange(huggingface) Which football team is in a city where A J Clark was a builder?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:builder . ?uri prop:city ?x . ?uri rdf:type onto:AmericanFootballTeam}",Orange(huggingface) How many people were drafted by the LA Clippers?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:draftTeam . ?uri rdf:type onto:Person}",Orange(huggingface) Who was in youth clubs of FC Barcelona and Newell's Old Boys?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?uri prop:youthclubs . ?uri prop:youthclubs . }",Orange(huggingface) How many head of agencies were there in Nazi Germany?,"PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:jurisdiction . ?x onto:leader ?uri . }",Orange(huggingface) Give me a count of all the producers of all the movies whose music was done by James Horner?,"PREFIX res: PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:music . ?x prop:producer ?uri . }",Orange(huggingface) How many people work in the Massachusetts house of Representatives?,"PREFIX res: PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:office . }",Orange(huggingface) "Which TV show had a judge named Harry Connick, Jr. and was presented by Ryan Seacrest?","PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:judges . ?uri onto:presenter . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) Who is the writer of Neverwhere (radio play) ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:writer ?uri }",Orange(huggingface) What is the party of the politicians whose children is Sanjay Gandhi ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:children . ?x onto:party ?uri . ?x rdf:type onto:OfficeHolder}",Orange(huggingface) How many characters are there in The Office?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:series . ?uri rdf:type onto:FictionalCharacter}",Orange(huggingface) Which shows' opening themes was used to make If We Were a Movie?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:subsequentWork . ?uri onto:openingTheme ?x . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) Name some islands in a pacific archipelago?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:location . ?uri prop:archipelago ?x . ?uri rdf:type onto:Island}",Orange(huggingface) How many battles have involved commanders of 1st Free French Division?,"PREFIX res: PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { prop:notableCommanders ?x . ?x prop:battles ?uri . }",Orange(huggingface) Who is the Pole driver of 1992 Canadian Grand Prix?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:1992_Canadian_Grand_Prix prop:poleDriver ?uri }",Orange(huggingface) What are the houses of legislature in the political leader's seat of Medininagar?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:leaderTitle ?x . ?x prop:houses ?uri . ?x rdf:type onto:Legislature}",Orange(huggingface) "What is the serving railway line of Warwick railway station, Perth ?","PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:servingRailwayLine ?uri }",Orange(huggingface) Which rivers start from the Provinces of Zambia?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:settlementType . ?uri onto:sourceRegion ?x . ?uri rdf:type onto:River}",Orange(huggingface) Count the PhD students whose thesis are supervised by National Medal of Science winners?,"PREFIX res: PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:prizes . ?x prop:doctoralStudents ?uri . }",Orange(huggingface) Who is the former partner of the figure skater which was the former partner of Brynn Carman?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:formerPartner ?x . ?x onto:formerPartner ?uri . ?x rdf:type onto:FigureSkater}",Orange(huggingface) How many developers have worked on games of the Oddworld series?,"PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:series . ?x onto:developer ?uri . }",Orange(huggingface) What are some journals of academic Philosophy?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:discipline res:Philosophy }",Orange(huggingface) What is the home stadium of the club coached by Justine Omojong?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:coach . ?x prop:homeStadium ?uri . ?x rdf:type onto:SoccerClub}",Orange(huggingface) Name the rivers whose mouth mountain is Essex and river mouth is North Sea?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:mouthMountain . ?uri onto:riverMouth . ?uri rdf:type onto:River}",Orange(huggingface) List the tomb of the royalties whose burial place is Little Easton?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:placeOfBurial . ?x prop:placeOfBurial ?uri . ?x rdf:type onto:Royalty}",Orange(huggingface) What kind of games are made by Interplay Entertainment?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:developer res:Interplay_Entertainment . ?x onto:genre ?uri . }",Orange(huggingface) For which team did both Butch Metzger and Brian Horwitz debuted ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Butch_Metzger onto:debutTeam ?uri. res:Brian_Horwitz onto:debutTeam ?uri . }",Orange(huggingface) Where can I find people whose hometown is Ann Arbour in Michigan?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:homeTown . ?x onto:residence ?uri . ?x rdf:type onto:Person}",Orange(huggingface) What is the local authority of the Buckhurst Hill County High School is also the birth palce of Sarah hampion ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:localAuthority ?uri. prop:birthPlace ?uri}",Orange(huggingface) List the saints venerated in Islam having major shrine as Tomb of Joshua ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:majorShrine . ?uri onto:veneratedIn . ?uri rdf:type onto:Saint}",Orange(huggingface) In which state is Dorchester Bay (Boston Harbor)?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:state ?uri }",Orange(huggingface) Name the children of the person who is the star of The Weathered Underground ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:starring ?x . ?x prop:children ?uri . ?x rdf:type onto:Person}",Orange(huggingface) Which nickname of Lyons Township High school is also the mascot of Galatasaray Handball Team ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Galatasaray_Handball_Team prop:mascot ?uri. res:Lyons_Township_High_School prop:nickname ?uri}",Orange(huggingface) Which NASA astronaut was on mission Gemini 8?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:type . ?uri prop:mission . ?uri rdf:type onto:Astronaut}",Orange(huggingface) What municipalities are adjacent to Chne-Bougeries?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:neighboringMunicipalities . }",Orange(huggingface) Count all the band members who are in Bands which have signed up with Entertainment One Music?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:label . ?x onto:bandMember ?uri . }",Orange(huggingface) "Who has a child named Lori Black and is resting place as Palo Alto, California?","PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:children . ?uri prop:restingPlace . }",Orange(huggingface) Whay common comic is written by Karakuri Dji Ultimo and narrated by The Incredible Hulk ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:author ?uri. prop:narrated ?uri}",Orange(huggingface) "The sports team which played at the American Basketball League championship (1996-1998), have which stadiums?","PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:league . ?x onto:stadium ?uri . ?x rdf:type onto:SportsTeam}",Orange(huggingface) How many movies have their music signed up with Sony Music Entertainment.,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:recordLabel . ?uri onto:musicComposer ?x . ?uri rdf:type onto:Film}",Orange(huggingface) In which country can I find the State Academic Opera and Ballet Theater and Baku Puppet Theatre?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:locationCountry ?uri. onto:locationCountry ?uri . ?uri rdf:type onto:Country}",Orange(huggingface) Who has official residences at Beverly Hills and Colts Neck Township ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:residence . ?uri onto:residence . }",Orange(huggingface) What are the movies whose music composer uses a Hammond organ?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:instrument . ?uri onto:musicComposer ?x . ?uri rdf:type onto:Film}",Orange(huggingface) Who is the mfr. of the engine used in Ford Transit?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:engine ?x . ?x onto:manufacturer ?uri . ?x rdf:type onto:Engine}",Orange(huggingface) Is National Archaeological Museum (Florence) the museum of Chimera of Arezzo?,"PREFIX res: PREFIX prop: ASK WHERE { prop:museum }",Orange(huggingface) List the awards given to the important people of Aardman Animations?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:awards . ?x onto:award ?uri . ?uri rdf:type onto:Award}",Orange(huggingface) Who is the fictional character whose family member is Padme Amidala?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:family . ?uri rdf:type onto:FictionalCharacter}",Orange(huggingface) Is GIMP written in C?,"PREFIX res: PREFIX onto: ASK WHERE { onto:programmingLanguage }",Orange(huggingface) What is the mascot of the military unit of David Prowse?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:branch ?x . ?x prop:mascot ?uri . }",Orange(huggingface) Who is the developer of the software which distributes Batman: Arkham City Lockdown ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:distributor ?x . ?x prop:developer ?uri . ?x rdf:type onto:Software}",Orange(huggingface) Name a person who was educated in Humes High School?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:education . ?uri rdf:type onto:Person}",Orange(huggingface) Which company founded by Fusajiro Yamauchi gives service as Nintendo Network?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:foundedBy . ?uri prop:services . ?uri rdf:type onto:Company}",Orange(huggingface) What is the publisher of Lucifer's Hammer ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:publisher ?uri }",Orange(huggingface) Which countries were led by Pietro Parolin?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:leader . ?uri rdf:type onto:Country}",Orange(huggingface) How many relatives are there of people fought in the Battle of the Bulge?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:battles . ?x onto:relation ?uri . }",Orange(huggingface) List education institute of the engineers whose alma mater is ChristChurch ?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:education . ?x onto:education ?uri . ?x rdf:type onto:Engineer}",Orange(huggingface) What are the cities around the sea which flows into the Atlantic?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:inflow . ?x prop:cities ?uri . ?x rdf:type onto:Sea}",Orange(huggingface) Where is Jimmy Wales a board member which also owns Latvian Wikipedia?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Jimmy_Wales onto:board ?uri. res:Latvian_Wikipedia onto:owner ?uri}",Orange(huggingface) Which operator of ganz UV is also the nationality of the Gza Horvth ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Ganz_UV onto:operator ?uri. res:Géza_Horváth onto:nationality ?uri}",Orange(huggingface) What are the important buildings of the architect whose one of the significant building is Krasnye Vorota?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:significantBuilding . ?x onto:significantBuilding ?uri . ?x rdf:type onto:Architect}",Orange(huggingface) "What television show is magistrated by Harry Connick, Jr.?","PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:judges . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) How many people are famous for the Gibson Les Paul?,"PREFIX res: PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:notableInstruments . }",Orange(huggingface) In which country does the Auckland rugby union team play?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Auckland_rugby_union_team onto:league ?x . ?x onto:country ?uri . }",Orange(huggingface) Name the television show directed by Simon Fuller and judged by Jennifier Lopez?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:creator . ?uri prop:judges . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) Where are the homestadiums of the seasons chaired by Merritt Paulson?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:chairman . ?x onto:homeStadium ?uri . ?x rdf:type onto:SoccerClubSeason}",Orange(huggingface) Which movies did Mark Steven edit?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:editing . ?uri rdf:type onto:Film}",Orange(huggingface) What is the relegious affiliations of Katyayana ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:religion ?uri }",Orange(huggingface) List the services provided by the company which provides Microsoft azure as one of the service ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:services . ?x prop:services ?uri . ?x rdf:type onto:Company}",Orange(huggingface) What products do US companies make?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:location . ?x onto:product ?uri . ?x rdf:type onto:Company}",Orange(huggingface) Who is the prime minister of Michael Jeffery who is also the minister of Williuam Deane?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Michael_Jeffery prop:primeminister ?uri. res:William_Deane onto:primeMinister ?uri}",Orange(huggingface) Who is a religious figure titled superior general?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:title . ?uri rdf:type onto:Religious}",Orange(huggingface) How many things are manufactured by the company whose subsidiary is Sony Corporation shareholders and subsidiaries?,"PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:subsidiary . ?uri onto:manufacturer ?x . }",Orange(huggingface) "What are the schools whose city is Reading, Berkshire?","PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:city }",Orange(huggingface) In which country is the Duong river?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Đuống_River onto:sourceCountry ?uri . }",Orange(huggingface) Where is Temenos Group founded?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Temenos_Group prop:foundation ?uri }",Orange(huggingface) "Who won the general elections in India in 2009, and had also won the AP elections in 2004 ?","PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:affiliation ?uri. onto:affiliation ?uri . }",Orange(huggingface) What is the religion of the person who is in the cast of Master's Sun?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:starring ?x . ?x prop:religion ?uri . ?x rdf:type onto:Person}",Orange(huggingface) Which artists have co-starred with Kris Kristofferson?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:associatedActs . ?uri rdf:type onto:Artist}",Orange(huggingface) How many countries surround the sea into which the Upper Neratva flow?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { onto:riverMouth ?x . ?x onto:country ?uri . ?x rdf:type onto:Sea}",Orange(huggingface) Count the number of artists in the Cirque du Soleil discography?,"PREFIX res: PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { prop:artist ?uri . }",Orange(huggingface) Count me the number of people whose military unit is involved with Close air support?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:role . ?uri onto:militaryUnit ?x . ?uri rdf:type onto:MilitaryPerson}",Orange(huggingface) Was Ganymede discovered by Galileo Galilei?,"PREFIX res: PREFIX prop: ASK WHERE { prop:discoverer }",Orange(huggingface) How many people have led agencies in German occupied Europe?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:jurisdiction . ?x onto:leader ?uri . }",Orange(huggingface) Which televison shows have location as Massachusetts ?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:location . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) List the mascot of the universities which are a part of National Collegiate Athletic Association?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:athletics . ?x prop:mascot ?uri . ?x rdf:type onto:University}",Orange(huggingface) Count the number of things people who know linguistics are known for ?,"PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:knownFor . ?x onto:knownFor ?uri }",Orange(huggingface) Who all are starring in the movies where director of photography is John Derek ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:cinematography . ?x prop:starring ?uri . ?x rdf:type onto:Film}",Orange(huggingface) What is the headquarters of the public transit system which is the section of Red Ahead ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:isPartOf ?x . ?x prop:headquarters ?uri . ?x rdf:type onto:PublicTransitSystem}",Orange(huggingface) Who was once married to both Kelly Brook and Rosie Huntington-Whiteley?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:partner ?uri. onto:partner ?uri . }",Orange(huggingface) Which municipality is neighbored by Cologny and Chne-Bougeries?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?uri prop:neighboringMunicipalities . ?uri prop:neighboringMunicipalities . }",Orange(huggingface) Which associate of Thomas bryan Martin is also the president of Carmichael?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:associate ?uri. prop:president ?uri}",Orange(huggingface) Which religions are followed by people in England?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:residence . ?x prop:religion ?uri . ?x rdf:type onto:Person}",Orange(huggingface) Which country of Montanas Mayas Chiquibul is the birth place of Jos Bernardo Escobar?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Montañas_Mayas_Chiquibul prop:country ?uri. res:José_Bernardo_Escobar prop:birthPlace ?uri . }",Orange(huggingface) Name presidents of the schools which have queen noor of Jordan as one of them ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:president . ?x prop:president ?uri . ?x rdf:type onto:School}",Orange(huggingface) Which Stanley Kubrick's movie has music by Laurie Johnson?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:director . ?uri prop:music . ?uri rdf:type onto:Film}",Orange(huggingface) Who was the prime minister under which the predecessor of Derick Heathcoat Amory served?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:successor . ?x prop:primeminister ?uri . }",Orange(huggingface) Does Walt Disney Studio have a subsidiary called Pixar?,"PREFIX res: PREFIX onto: ASK WHERE { onto:subsidiary }",Orange(huggingface) What is the predecessor of the car engine which was succeeded by BMW M43?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:successor . ?x prop:predecessor ?uri . ?x rdf:type onto:Engine}",Orange(huggingface) In how many places airlines that go to the mediterranean sea go?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:destinations . ?x onto:destination ?uri . }",Orange(huggingface) What is the president whose lieutenants are Winston Bryant and Joe Purcell?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:lieutenant . ?uri onto:lieutenant . ?uri rdf:type onto:President}",Orange(huggingface) Who is the former partner of Chris Knierim?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Chris_Knierim onto:formerPartner ?uri }",Orange(huggingface) Is Seattle the Ship builder of USS Marmora (IX-189)?,"PREFIX res: PREFIX prop: ASK WHERE { prop:shipBuilder }",Orange(huggingface) What is the owning company of the bank whose parent is Sony Financial ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:parent . ?x onto:owningCompany ?uri . ?x rdf:type onto:Company}",Orange(huggingface) Which TV shows distributor is Broadcast syndication and developed by Brian Graden?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:developer . ?uri onto:distributor . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) Is Dave Schulz a band member of Berlin?,"PREFIX res: PREFIX onto: ASK WHERE { onto:bandMember }",Orange(huggingface) Through how many cities does the river flowing into Arkansas go?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:mouthMountain . ?x onto:city ?uri . ?uri rdf:type onto:City}",Orange(huggingface) Who developed the software for the operating system of Macintosh Quadra 660AV ?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:operatingSystem ?x . ?x onto:developer ?uri . ?x rdf:type onto:Software}",Orange(huggingface) What is the type of Vesak?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Vesak onto:type ?uri }",Orange(huggingface) "What is the country which lies on the European route E8, and where Ragnhild Jolson was born?","PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:European_route_E8 onto:county ?uri. res:Ragnhild_Jølsen prop:birthplace ?uri}",Orange(huggingface) In which city is the distributor of Jeevan Mrityu located?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Jeevan_Mrityu prop:distributor ?x . ?x onto:locationCity ?uri . }",Orange(huggingface) Who owns the broadcast network founded by CNN?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:foundedBy . ?x prop:owner ?uri . ?x rdf:type onto:BroadcastNetwork}",Orange(huggingface) Who owns the radio stations in Alabama?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:city . ?x onto:owner ?uri . ?x rdf:type onto:RadioStation}",Orange(huggingface) What is the region of Tom Perriello?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Tom_Perriello onto:region ?uri }",Orange(huggingface) Name some Texas based companies ?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:locationCity . ?uri rdf:type onto:Company}",Orange(huggingface) What is the television show which has cast member as Jason Carter and network is TNT (TV channel)?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:starring . ?uri prop:network . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) How many scientist have won an award by the society led by Venkatraman Ramakrishnan?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:leaderName . ?uri prop:prizes ?x . ?uri rdf:type onto:Scientist}",Orange(huggingface) Who coached the marquet golden eagels during 2013,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:coach ?uri }",Orange(huggingface) What is the base currency of the Benelux which can be used in Republic of Montenegro?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:currency ?uri. prop:currency ?uri . }",Orange(huggingface) Which partner of Tim Mathieson is also the primeminister of Mike Kelly (Australian politician) ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:partner ?uri. prop:primeminister ?uri}",Orange(huggingface) What is the television show whose opening theme's album is Cheers?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:album . ?uri onto:openingTheme ?x . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) Count all american football players whose former team owns Lucas Oil Stadium ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:city . ?uri onto:formerTeam ?x . ?uri rdf:type onto:AmericanFootballPlayer}",Orange(huggingface) What are some awards given to people who were born in sweden?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:birthPlace . ?x prop:awards ?uri . ?x rdf:type onto:Person}",Orange(huggingface) Name the river with source as Shannon Pot and its mouth is located in Limerick?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:source . ?uri prop:mouthLocation . ?uri rdf:type onto:River}",Orange(huggingface) What ethnicity do people in British Columbia belong to?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:residence . ?x onto:ethnicity ?uri . ?x rdf:type onto:Person}",Orange(huggingface) What are some other destinations covered by the airlines whose flights go to the Mediterranean sea?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:destinations . ?x onto:destination ?uri . ?x rdf:type onto:Airline}",Orange(huggingface) Which associate of Martin Pugh is also married to Alana Stewert?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Martin_Pugh prop:associatedActs ?uri. res:Alana_Stewart onto:spouse ?uri}",Orange(huggingface) Which part of the US political framework did Arthur P Bagby and Thomas Holliday Hicks both serve?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Arthur_P._Bagby prop:order ?uri. res:Thomas_Holliday_Hicks prop:order ?uri . }",Orange(huggingface) Who is the commander of Battle of Brownstown?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Battle_of_Brownstown onto:commander ?uri }",Orange(huggingface) What are the television shows telecasted on the network which has headquarters at Atlanta?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:headquarters . ?uri prop:network ?x . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) How many companies have manufactured the rockets launched from the Cape Canaveral Air Force Station?,"PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:launchSite . ?x onto:manufacturer ?uri . }",Orange(huggingface) Name the fictional character painted by Josh Friedman and portrayed in Terminator Genisys ?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:creator . ?uri onto:portrayer . ?uri rdf:type onto:FictionalCharacter}",Orange(huggingface) How many people have voiced characters sculpted by Clamp?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:creator . ?x onto:voice ?uri . }",Orange(huggingface) "What cities does the river goes through, whose tributary is the little black river in Arkansas?","PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:leftTributary . ?x onto:city ?uri . ?x rdf:type onto:River}",Orange(huggingface) How many people have fought wars where Arthur St. Clair was a commander?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:commander . ?x prop:combatant ?uri . }",Orange(huggingface) How many have former teams as Indianapolis Colts and Carolina Panthers?,"PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?uri onto:formerTeam . ?uri onto:formerTeam }",Orange(huggingface) Which president had lieutenants whose governor was Bill Clinton?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:governor . ?uri onto:lieutenant ?x . ?uri rdf:type onto:President}",Orange(huggingface) Who employed the person famous for the Boeing fa18ef Super Hornet?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:knownFor . ?x prop:employer ?uri . ?x rdf:type onto:Person}",Orange(huggingface) Give me a count of musical artists collaborating with Waylon Jennings?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:associatedMusicalArtist . ?uri rdf:type onto:MusicalArtist}",Orange(huggingface) Name the office holder whose final resting place is North Bend and was part of Siege of fort recovery conflict ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:battle . ?uri prop:restingplace . ?uri rdf:type onto:OfficeHolder}",Orange(huggingface) Name the river whose source is located in Ikelenge District and mouth in Mozambique?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:sourceLocation . ?uri prop:mouthCountry . ?uri rdf:type onto:River}",Orange(huggingface) Count all the places where companies located in Ontario operate.,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:locationCity . ?x prop:locations ?uri . }",Orange(huggingface) Which awards have been given to scientists that graduated from NKU athens?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:almaMater . ?x onto:award ?uri . ?x rdf:type onto:Scientist}",Orange(huggingface) In which common territory did Sino French war and the Tonkin campaign take place?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:territory ?uri. onto:territory ?uri . }",Orange(huggingface) What continent of the world has Baja California peninsula and also has WEPG in one of its cities?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:location ?uri. prop:city ?uri . ?uri rdf:type onto:Continent}",Orange(huggingface) Which ship builder built the USS Camp and Sturtevant?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:shipBuilder ?uri. prop:shipBuilder ?uri . }",Orange(huggingface) What sports are played at Vishwajyot High School?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Battle_Chess prop:genre ?uri. res:Vishwajyot_High_School onto:sport ?uri}",Orange(huggingface) Which software uses GTK+ as programming language?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:programmingLanguage . ?uri rdf:type onto:Software}",Orange(huggingface) Count all the TV shows which are related to the ones produced by Julie Gardner.,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:executiveProducer . ?uri onto:related ?x . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) Which currency of Republic of Montenegro is also the currency of the French Southern and Antarctic Lands ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:currency ?uri. prop:currency ?uri}",Orange(huggingface) What is the common university of vanderbilt Commodores and also the college of hubert Wiggs?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Vanderbilt_Commodores onto:university ?uri. res:Hubert_Wiggs onto:college ?uri}",Orange(huggingface) Did stan lee narrate the incredible hulk tv show?,"PREFIX res: PREFIX onto: ASK WHERE { onto:narrator }",Orange(huggingface) List the institute of Robert hall ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:institution ?uri }",Orange(huggingface) What are some relatives of the spouse of Uncle henry from Oz?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:spouse . ?uri onto:relative ?x . }",Orange(huggingface) Count the number of characters in Batman Live?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { prop:characters ?uri . ?uri rdf:type onto:ComicsCharacter}",Orange(huggingface) Where did the plays written by Robert Schenkkan take place?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:writer . ?x prop:place ?uri . ?x rdf:type onto:Play}",Orange(huggingface) "Does the St lawrence river start in Kingston, Ontario?","PREFIX res: PREFIX onto: ASK WHERE { onto:sourceMountain }",Orange(huggingface) Where was the movie after Khiladi 786 recorded?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:nextAlbum ?x . ?x prop:recorded ?uri . ?x rdf:type onto:Film}",Orange(huggingface) "What is the architecture of First National Bank and Trust Building (Lima, Ohio) ?","PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:architecturalStyle ?uri }",Orange(huggingface) Which publisher of Stone Canoe is also the university for which Michael Powell plays for?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:publisher ?uri. onto:team ?uri}",Orange(huggingface) Count the number of battles fought by the military person involved in Morocco?,"PREFIX res: PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:battles . ?x prop:battles ?uri }",Orange(huggingface) Which office of Walter Evans Edge is also the part of Atlantic seaboard fall lines ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Atlantic_Seaboard_fall_line onto:part ?uri. res:Walter_Evans_Edge prop:office ?uri}",Orange(huggingface) Which river originate from limerick?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:mouthLocation . ?uri rdf:type onto:River}",Orange(huggingface) How many corporations were founded in Texas?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:foundationPlace . ?uri rdf:type onto:Company}",Orange(huggingface) How many teams have used the stadium which hosted the WCW mayhem?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { prop:venue ?x . ?x onto:tenant ?uri . ?x rdf:type onto:Stadium}",Orange(huggingface) Name the fictional character whose species is American Pekin duck and has relatives named Ludwig Von Drake?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:species . ?uri prop:relatives . ?uri rdf:type onto:FictionalCharacter}",Orange(huggingface) How many different currencies are used in the places governed by the president of France?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:leaderTitle . ?x onto:currency ?uri . }",Orange(huggingface) what kind of games can I find for PC 9800?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:computingPlatform . ?x prop:genre ?uri . ?x rdf:type onto:VideoGame}",Orange(huggingface) How many theme musics have been composed by Julian Gingell?,"PREFIX res: PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:themeMusicComposer . }",Orange(huggingface) List the cast member of the movies whose producer is Mark Johnson.,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:producer . ?x onto:starring ?uri . ?x rdf:type onto:Film}",Orange(huggingface) Where was the engineer born who manufactured EP R.E.P. 1?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:manufacturer ?x . ?x onto:birthPlace ?uri . }",Orange(huggingface) Where was James H. Fields buried?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:James_H._Fields prop:placeofburial ?uri }",Orange(huggingface) "Where is the VP buried, which was served by Frederick Cooke?","PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:vicePresident ?x . ?x onto:restingPlace ?uri . }",Orange(huggingface) List down all the cast members of Tony n' Tina's Wedding ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:starring ?uri }",Orange(huggingface) On what subject does WTJC-LP air?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:format ?uri }",Orange(huggingface) How many artists have their works in the Sao Paolo Museum of Art?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:museum . ?x prop:artist ?uri . ?uri rdf:type onto:Artist}",Orange(huggingface) Who were the pole drivers in GP when Damon hill was the first driver?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:firstDriver . ?x onto:poleDriver ?uri . ?x rdf:type onto:GrandPrix}",Orange(huggingface) Who served as a governor of Indiana Territory?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:branch res:Indiana_Territory }",Orange(huggingface) What is the common nickname given both to Harding academy and Lyons township high school?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:nickname ?uri. prop:nickname ?uri . }",Orange(huggingface) Who is the president of Carl Stokes and Wyche Fowler ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Carl_Stokes prop:president ?uri. res:Wyche_Fowler onto:president ?uri}",Orange(huggingface) How many bands are signed up with Kobalt Label Services?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:recordLabel . ?uri rdf:type onto:Band}",Orange(huggingface) Which leader of United States House of Representatives was the appointer of John Drayton?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:leader ?uri. prop:appointer ?uri}",Orange(huggingface) List the total number of regions of the building which are located in Grand Forks Air Force Base?,"PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:region . ?x onto:region ?uri }",Orange(huggingface) What is the largest city of the birthplace of Pat Kirkwood?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:birthplace ?x . ?x onto:largestCity ?uri . }",Orange(huggingface) Name the musician who was given label by Celluloid Records and has been associated with Africa'70 ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:label . ?uri onto:associatedMusicalArtist . ?uri rdf:type onto:MusicalArtist}",Orange(huggingface) Who are the relatives of the character after which Quagmire's Quagmire was made?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:subsequentWork . ?uri onto:relative ?x . }",Orange(huggingface) With whom is the institution of David Charles affiliated?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:workInstitutions ?x . ?x prop:affiliation ?uri . }",Orange(huggingface) What is the total number of other destinations of the airlines whose one of the destinations is Mediterranean Sea?,"PREFIX res: PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:destinations . ?x prop:destinations ?uri }",Orange(huggingface) How many companies serve the Australian region?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:regionServed . ?uri rdf:type onto:Company}",Orange(huggingface) What is the capital of the region which maintains the South Park Bridge ?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:maintainedBy ?x . ?x onto:countySeat ?uri . ?x rdf:type onto:Region}",Orange(huggingface) What is the total number of fictional characters whose created by Greg Daniels and series is The Office (U.S. TV series)?,"PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:creator . ?uri onto:series }",Orange(huggingface) "Through which important cities the does the river originating from the Duwamish, flow?","PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:source . ?x onto:city ?uri . ?x rdf:type onto:River}",Orange(huggingface) What is the municipality of Liberty Bell?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Liberty_Bell onto:municipality ?uri }",Orange(huggingface) Name the university with mascot as Aubie and president as jay Gogue ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:mascot . ?uri onto:president . ?uri rdf:type onto:University}",Orange(huggingface) Which software uses windows as it's operating system and is written in C++?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:operatingSystem . ?uri onto:programmingLanguage . ?uri rdf:type onto:Software}",Orange(huggingface) Name some basketball players whose team is coached by Fred Hoiberg?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:coach . ?uri prop:team ?x . ?uri rdf:type onto:BasketballPlayer}",Orange(huggingface) How many other home stadium are there of the soccer club whose home stadium is Luzhniki Stadium?,"PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:homeStadium . ?x onto:homeStadium ?uri }",Orange(huggingface) Count everyone who lives in a place where Indian English is an official language?,"PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:officialLanguage . ?uri onto:residence ?x . }",Orange(huggingface) Was Jack Ryan a nominee of US Senate?,"PREFIX res: PREFIX onto: ASK WHERE { onto:nominee }",Orange(huggingface) In how many countries do the rivers start which end at the Caspian Sea?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:riverMouth . ?x onto:sourceCountry ?uri . ?uri rdf:type onto:Country}",Orange(huggingface) Which awards are presented by Swedish Academy?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:presenter . ?uri rdf:type onto:Award}",Orange(huggingface) Count the total number of academic discipline of the journals whose one of the academic discipline is Neuroimaging ?,"PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:academicDiscipline . ?x onto:academicDiscipline ?uri }",Orange(huggingface) Which house has published books about Jazz?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:nonFictionSubject . ?x onto:publisher ?uri . ?x rdf:type onto:Book}",Orange(huggingface) How many services does 21Vianet provide?,"PREFIX res: PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { prop:services ?uri . }",Orange(huggingface) Where is the stadium of west Papus football team?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:West_Papua_football_team onto:stadium ?uri }",Orange(huggingface) What is the drafted team of the people expected to join toronto marlies?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:prospectTeam . ?x prop:draftTeam ?uri . ?x rdf:type onto:Person}",Orange(huggingface) What team is famous for Robert Nederlander and also the debuting team of Gary Sanchez?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:knownFor ?uri. onto:debutTeam ?uri . ?uri rdf:type onto:SportsTeam}",Orange(huggingface) "Where is the tombstone of the parliament members who served with James Roberts as the Vice President, US?","PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:vicePresident . ?x onto:restingPlace ?uri . ?x rdf:type onto:MemberOfParliament}",Orange(huggingface) What award has been given to Roy Walker as well as Walt Disney?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:award ?uri. onto:award ?uri . }",Orange(huggingface) Which people are known for appearing on the television show Dragon's Den?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:knownFor . ?uri rdf:type onto:Person}",Orange(huggingface) "How many teams was Garry Unger in, previously?","PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { onto:formerTeam ?uri . ?uri rdf:type onto:SportsTeam}",Orange(huggingface) Was the Army Air Corps honored for the battle of Iraq?,"PREFIX res: PREFIX prop: ASK WHERE { prop:battleHonours }",Orange(huggingface) Which Tv series led to Frasier?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:subsequentWork . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) In how many places have the companies started in Newcastle worked?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:foundationPlace . ?x onto:regionServed ?uri . ?uri rdf:type onto:Place}",Orange(huggingface) "Who founded the city where First Church of Christ, Scientist is located?","PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:locationTown ?x . ?x onto:founder ?uri . }",Orange(huggingface) Which is the largest city of Union State ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Union_State prop:largestCity ?uri. res:Nina_Vislova prop:placeOfBirth ?uri}",Orange(huggingface) Who are the people who influenced the writers of Evenor?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:author ?x . ?x onto:influenced ?uri . }",Orange(huggingface) What is the allegiance of the Albert Kwesi Ocran and state of origin of the Jojo Chintoh?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Albert_Kwesi_Ocran prop:allegiance ?uri. res:Jojo_Chintoh onto:stateOfOrigin ?uri}",Orange(huggingface) Is Tenzing Norgay the first person to scale Mt. Everest?,"PREFIX res: PREFIX onto: ASK WHERE { res:Mount_Everest onto:firstAscentPerson res:Tenzing_Norgay }",Orange(huggingface) Which body governs over the place made by the chumash people?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:architect . ?x onto:governingBody ?uri . ?x rdf:type onto:Place}",Orange(huggingface) List down the prime ministers of Peter Thorneycroft?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Peter_Thorneycroft onto:primeMinister ?uri }",Orange(huggingface) List the uni. having affiliation with Graham Holding Company and have a campus in Iowa ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:affiliations . ?uri onto:campus . ?uri rdf:type onto:University}",Orange(huggingface) Which football players have Newell's Old Boys as youthclub?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:youthclubs }",Orange(huggingface) What location country of AH141 is also the nation of malaysia Junior hockey league?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:AH141 onto:county ?uri. res:Malaysia_Junior_Hockey_League onto:country ?uri}",Orange(huggingface) Does Ronaldinho play in the brazil's under 23 team?,"PREFIX res: PREFIX prop: ASK WHERE { prop:nationalteam }",Orange(huggingface) What are the awards won by the producer of Elizabeth: The Golden Age?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:producer ?x . ?x prop:awards ?uri . }",Orange(huggingface) Under which scientist did doctoral students erban ieica and Erich Bagge study?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:doctoralStudents . ?uri rdf:type onto:Scientist}",Orange(huggingface) Who is the distributor of Rev (drink) ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:distributor ?uri }",Orange(huggingface) What awards were presented to the person who produced Paradise place?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:producer ?x . ?x prop:awards ?uri . ?x rdf:type onto:Person}",Orange(huggingface) Who develops the computation platform of Microsoft Expression Encoder?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Microsoft_Expression_Encoder onto:computingPlatform ?x . ?x onto:developer ?uri . }",Orange(huggingface) Give me some shows related to the ones created by Russell Davies,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:creator . ?uri onto:related ?x . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) Name the actors of the TV show which has an episode named The Five ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:series ?x . ?x prop:starring ?uri . ?x rdf:type onto:TelevisionShow}",Orange(huggingface) Which musical artist collaborated with Tony Allen (musician) and label is Victor Entertainment?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:associatedMusicalArtist . ?uri prop:label . ?uri rdf:type onto:MusicalArtist}",Orange(huggingface) What is the city of the 2015 MLS All-Star Game and birthplace of the The Okee Dokee Brothers?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:city ?uri. onto:birthPlace ?uri}",Orange(huggingface) Which religion is prevalent in the schools of the Ashanti region?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:region . ?x prop:denomination ?uri . ?x rdf:type onto:School}",Orange(huggingface) Name the university with affiliations as Graham Holdings Company and campus at Indiana?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:affiliations . ?uri onto:campus . ?uri rdf:type onto:University}",Orange(huggingface) "Where did the graduates of Memphis, Tenessee continue their education?","PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:highschool . ?x onto:school ?uri . }",Orange(huggingface) Who are the trainers of Candice Michelle?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Candice_Michelle onto:trainer ?uri }",Orange(huggingface) Give me some nominees of politicians in the US?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:residence . ?x onto:nominee ?uri . ?x rdf:type onto:OfficeHolder}",Orange(huggingface) List the comic characters created by Joe Shuster?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:creators . ?uri rdf:type onto:ComicsCharacter}",Orange(huggingface) In which municipalities does the NYC housing authority own buildings?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:owningOrganisation . ?x onto:municipality ?uri . ?x rdf:type onto:Building}",Orange(huggingface) How many races has Best Mate won?,"PREFIX res: PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { prop:race ?uri . }",Orange(huggingface) What is the programme format of WWTR?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:WWTR onto:programmeFormat ?uri }",Orange(huggingface) Count the different alma maters of people employed by the CNN?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:employer . ?x onto:almaMater ?uri . }",Orange(huggingface) List the work institutions of the medicians who has also worked at University of Miami?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:workInstitutions . ?x prop:workInstitutions ?uri . ?x rdf:type onto:Medician}",Orange(huggingface) Name some cars similar to the ones which are assembled at the Jefferson North Assembly?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:assembly . ?x prop:related ?uri . ?x rdf:type onto:Automobile}",Orange(huggingface) Name whose youth club was FC Barcelona?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:youthclubs res:FC_Barcelona . }",Orange(huggingface) How many important works have been done by Russel Davies?,"PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { onto:notableWork ?uri . }",Orange(huggingface) How many factions were fighting in the wars where Blue Jacket was a commander?,"PREFIX res: PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:commander . ?x prop:combatant ?uri . }",Orange(huggingface) List all the major shrines of the saints which has one of the shrines as Debre Libanos ?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:majorShrine . ?x onto:majorShrine ?uri . ?x rdf:type onto:Saint}",Orange(huggingface) Which TV show developed by J. Michael Stracznski has artist as Christopher Franke ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:artist . ?uri onto:developer . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) What do the banks owned by Norwegian ministry of finance produce?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:parentCompany . ?x prop:products ?uri . ?x rdf:type onto:Bank}",Orange(huggingface) What rivers originate from Australian Alps?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:sourcePlace . ?uri rdf:type onto:River}",Orange(huggingface) What foundation place of Temenos Group is the death place of jerzy Jzef Poocki ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Temenos_Group prop:foundation ?uri. res:Jerzy_Józef_Potocki prop:placeOfDeath ?uri}",Orange(huggingface) Which sports are played in schools affiliated with the Harvest Christian Center?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:religiousAffiliation . ?x onto:sport ?uri . ?x rdf:type onto:School}",Orange(huggingface) What is the style of architecture of South Loop Printing House District?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:South_Loop_Printing_House_District onto:architecturalStyle ?uri }",Orange(huggingface) What is the division of the companies who make Runes of Magic?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:products . ?x onto:division ?uri . ?x rdf:type onto:Company}",Orange(huggingface) Which official residence of Nikos Pateras is also the stadium of anionios G.S.S. season 2014-15 ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:2014–15_Panionios_G.S.S._season prop:stadium ?uri. res:Nikos_Pateras onto:residence ?uri}",Orange(huggingface) Who made the engine whose predecessor is the SHO V6?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:predecessor . ?x onto:manufacturer ?uri . ?x rdf:type onto:Engine}",Orange(huggingface) What academic discipline of the Journal of Cerebral Blood Flow & Metabolism is also the record label of the Double Diamond (album)?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:academicDiscipline ?uri. onto:recordLabel ?uri}",Orange(huggingface) What is the currency of the government type of Kerguelen Islands?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Kerguelen_Islands onto:governmentType ?x . ?x onto:currency ?uri . }",Orange(huggingface) "The Information: A History, a Theory, a Flood is a work of Isaac Newton?","PREFIX res: PREFIX onto: ASK WHERE { onto:previousWork }",Orange(huggingface) What is the layout of the cars similar to that of the Subaru Outback?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:relatedMeanOfTransportation . ?x onto:layout ?uri . ?x rdf:type onto:Automobile}",Orange(huggingface) "Where does the railway tracks start, which ends in Kazan?","PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:routeEnd . ?x onto:routeStart ?uri . ?x rdf:type onto:RailwayLine}",Orange(huggingface) List all the former partners of the figure skater whose one of the former partner was Andrea poapst ?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:formerPartner . ?x onto:formerPartner ?uri . ?x rdf:type onto:FigureSkater}",Orange(huggingface) "Which person constituency is Duboce Triangle, San Francisco and military unit is USS Kittiwake (ASR-13)?","PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:constituency . ?uri onto:militaryUnit . ?uri rdf:type onto:Person}",Orange(huggingface) "How many tenats have been there, of the constructions of PCL constructures?","PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:builder . ?x onto:tenant ?uri . }",Orange(huggingface) Which awards did the parents of Anna Bergman win?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Anna_Bergman onto:parent ?x . ?x prop:awards ?uri . }",Orange(huggingface) What is the location of Sam Sen Railway Station?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Sam_Sen_Railway_Station prop:other ?uri }",Orange(huggingface) What are some devices made by Taiwanese companies?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:locationCity . ?uri onto:manufacturer ?x . ?uri rdf:type onto:Device}",Orange(huggingface) What is the debut team of the football player whose college is UCLA Bruins football?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:college . ?x onto:debutTeam ?uri . ?x rdf:type onto:GridironFootballPlayer}",Orange(huggingface) Which developer of Go was also the predecssor of X compnay?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:developer ?uri. prop:predecessor ?uri}",Orange(huggingface) "Where do the people, famous for the Panathinaikos FC reside?","PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:knownFor . ?x prop:residence ?uri . ?x rdf:type onto:Person}",Orange(huggingface) List the science fiction shows broadcasted on BBC HD?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:genre . ?uri onto:network . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) How many bands have members currently playing the Fender Stratocaster?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:notableInstruments . ?uri prop:currentMembers ?x . ?uri rdf:type onto:Band}",Orange(huggingface) Was Heinrich Himmler ever a commanders of Army Group Oberrhein?,"PREFIX res: PREFIX prop: ASK WHERE { prop:notableCommanders }",Orange(huggingface) Which genre of books are published by Random House?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:publisher . ?x prop:subject ?uri . ?x rdf:type onto:Book}",Orange(huggingface) To which places do the flights go by airlines headquartered in the UK?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:headquarters . ?x prop:destinations ?uri . ?x rdf:type onto:Airline}",Orange(huggingface) Who is the builder of Atamurat-Kerkichi Bridge?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:builder ?uri }",Orange(huggingface) How many broadcast area of the television stations exists whose broadcast area is Rodrigues?,"PREFIX res: PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:broadcastArea . ?x prop:broadcastArea ?uri }",Orange(huggingface) What is the awards given to the horse whose grandson is the famous Counterpoint?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:grandsire ?x . ?x onto:honours ?uri . ?x rdf:type onto:Horse}",Orange(huggingface) Who were the head of government agencies working in the German occupied Europe?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:jurisdiction . ?x onto:leader ?uri . ?x rdf:type onto:GovernmentAgency}",Orange(huggingface) How many rivers end in the Indian Ocean?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:riverMouth . ?uri rdf:type onto:River}",Orange(huggingface) How many other key people are there of the non-profit organisations whose key people is Hillary Clinton ?,"PREFIX res: PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:keyPeople . ?x prop:keyPeople ?uri }",Orange(huggingface) Scientists at the University of Queensland have won which awards?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:almaMater . ?x prop:awards ?uri . ?x rdf:type onto:Scientist}",Orange(huggingface) How many people currently play for the NYC FC?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:currentclub res:New_York_City_FC . ?uri prop:nationalteam res:Spain_national_football_team . }",Orange(huggingface) What river is it whose source is Dowra?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:sourceLocation . ?uri rdf:type onto:River}",Orange(huggingface) Whose relatives are Uncle Henry (Oz) and Aunt Em?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:relative . ?uri onto:relative . }",Orange(huggingface) How many TV shows are similar to the ones belonging to fantasy genre?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:genre . ?uri onto:related ?x . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) Which educational institutes have campuses at Iowa and Indiana ?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:campus . ?uri onto:campus . ?uri rdf:type onto:EducationalInstitution}",Orange(huggingface) When did Aghasalim Childagh die?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Aghasalim_Childagh prop:deathDate ?uri }",Orange(huggingface) Has the Frank R Lillie House the Chicago architecture?,"PREFIX res: PREFIX onto: ASK WHERE { res:Frank_R._Lillie_House onto:architecturalStyle res:Chicago }",Orange(huggingface) "Name the river with Readin, Brekshire in its path and mouth place is Sothend-on-sea ?","PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:city . ?uri onto:mouthPlace . ?uri rdf:type onto:River}",Orange(huggingface) Name the people whose academic advisor has also mentored the thesis of Alexius Meinong?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:doctoralStudents . ?uri onto:academicAdvisor ?x . ?uri rdf:type onto:Person}",Orange(huggingface) What are the movies whose music is composed by Vangelis?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:musicComposer . ?uri rdf:type onto:Film}",Orange(huggingface) What is the birth name of Putri Raemawasti ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Putri_Raemawasti prop:birthName ?uri }",Orange(huggingface) What is the draft team of the ice hockey players whose position is Centre ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:position . ?x onto:draftTeam ?uri . ?x rdf:type onto:IceHockeyPlayer}",Orange(huggingface) What is the total number of other restingplace of the politicians whose one of the restingplace is East Norwalk Historical Cemetery?,"PREFIX res: PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:restingplace . ?x prop:restingplace ?uri }",Orange(huggingface) What are some magazines whose publishers are themselves Rock and Roll Hall of Fame members?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:award . ?uri onto:publisher ?x . ?uri rdf:type onto:Magazine}",Orange(huggingface) Did Stan Lee create the Iceman comics?,"PREFIX res: PREFIX prop: ASK WHERE { prop:creators }",Orange(huggingface) Who has rented the stadiums owned by Toronto?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:owner . ?x prop:tenants ?uri . ?x rdf:type onto:Stadium}",Orange(huggingface) What is the area of ITV (Thailand) ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:area ?uri }",Orange(huggingface) In which country did Philippe tesnire and judson huss die?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Philippe_Tesnière prop:placeOfDeath ?uri. res:Judson_Huss prop:placeOfDeath ?uri . }",Orange(huggingface) What is the title of Kakae?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Kakae prop:title ?uri }",Orange(huggingface) Name the mammals which are primate and belongs to family of ape?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:order . ?uri onto:family . ?uri rdf:type onto:Mammal}",Orange(huggingface) List the movies produced by Michael Deeley ?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:producer . ?uri rdf:type onto:Film}",Orange(huggingface) Who is the Artist of the singles whose film genre is Country music ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:genre . ?x prop:artist ?uri . ?x rdf:type onto:Single}",Orange(huggingface) Count the participants of the NBA?,"PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:league . }",Orange(huggingface) Which sports are played at institues in Taguig?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:city . ?x onto:sport ?uri . ?x rdf:type onto:EducationalInstitution}",Orange(huggingface) Who appointed the governor under whom Richard Winn works?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:lieutenant . ?x prop:appointer ?uri . ?x rdf:type onto:Governor}",Orange(huggingface) Count the number of cities on the Mediterranean Sea?,"PREFIX res: PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { prop:cities ?uri . }",Orange(huggingface) Is Serbian Titieca a doctoral student of Werner Heisenberg,"PREFIX res: PREFIX onto: ASK WHERE { res:Werner_Heisenberg onto:doctoralStudent res:Șerban_ÈšiÈ›eica }",Orange(huggingface) Give me a count of movies whose producer is Larry J. Franco?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:producer . ?uri rdf:type onto:Film}",Orange(huggingface) Is the song Only the Good Die Young from The Stranger?,"PREFIX res: PREFIX prop: ASK WHERE { prop:fromAlbum }",Orange(huggingface) How many awards have been given to the founder of Grameen Bank?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { prop:founder ?x . ?x onto:award ?uri . }",Orange(huggingface) Who has allegiance is Colony of Virginia and buried in Montpelier?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:allegiance . ?uri prop:restingplace . }",Orange(huggingface) In which series do I find Minbari species' characters?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:species . ?x onto:series ?uri . ?x rdf:type onto:FictionalCharacter}",Orange(huggingface) People in the royal Thai army follow which religion?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:branch . ?x onto:religion ?uri . ?x rdf:type onto:Person}",Orange(huggingface) Is the Journal of Cerebral Blood Flow and Metabolism about Brains?,"PREFIX res: PREFIX onto: ASK WHERE { onto:academicDiscipline }",Orange(huggingface) Which models were featured in Playboy Playmates 1954?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:succeeded . ?uri rdf:type onto:PlayboyPlaymate}",Orange(huggingface) Give me all martial artists trained by Joe Schilling.,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:trainer . ?uri rdf:type onto:MartialArtist}",Orange(huggingface) Who are some basketball players who played for Phoenix Suns?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:team . ?uri rdf:type onto:BasketballPlayer}",Orange(huggingface) Who is the chancellor of the university which affiliates the Dartington College of Arts?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:affiliations . ?x prop:chancellor ?uri . ?x rdf:type onto:University}",Orange(huggingface) "In which sects was the aristocrat venerated, whose parent is Thelred the Unready?","PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:parent . ?x prop:veneratedIn ?uri . ?x rdf:type onto:Royalty}",Orange(huggingface) Count all the scientologists.,"PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:religion . }",Orange(huggingface) How many other families of the mammals exists whose one family is also Hominidae?,"PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:family . ?x onto:family ?uri }",Orange(huggingface) The authors of Zhorstoke nebo was influenced by whom?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Zhorstoke_nebo onto:author ?x . ?x onto:influencedBy ?uri . }",Orange(huggingface) Name the founders of the record labels whose one of the founders is Frank Rogers?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:founder . ?x prop:founder ?uri . ?x rdf:type onto:RecordLabel}",Orange(huggingface) Which past members of the The Conglomerate (American group) also sang Take Me There (Blackstreet & Ma song)?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:pastMembers ?uri. onto:musicalBand ?uri}",Orange(huggingface) Where common region are soylent and bannock sold?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:region ?uri. onto:region ?uri . }",Orange(huggingface) What is the university whose campus is Mount Moosilauke?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:campus . ?uri rdf:type onto:University}",Orange(huggingface) What is the origin of the grape whose wine region is the Troodos Mountains ?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:wineRegion . ?x onto:origin ?uri . ?x rdf:type onto:Grape}",Orange(huggingface) What is the university whose campus are Indiana and Iowa?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:campus . ?uri onto:campus . ?uri rdf:type onto:University}",Orange(huggingface) What are the academic interests of the advisor of Paul Demiville ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Paul_Demiéville onto:academicAdvisor ?x . ?x prop:fields ?uri . }",Orange(huggingface) Which share holder of outlook is also the content license of the MSX Basics?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:MSX_BASIC prop:license ?uri. res:Outlook_on_the_web prop:owner ?uri}",Orange(huggingface) Count the number of religions followed by Janta Dal members.,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:party . ?x onto:religion ?uri . }",Orange(huggingface) Martin Ferguson and Mike Kelly served under which aussie PM?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:primeminister ?uri. prop:primeminister ?uri . }",Orange(huggingface) Which government agency is run by Supachai Somcharoen?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:leader . ?x prop:agencyName ?uri . ?x rdf:type onto:GovernmentAgency}",Orange(huggingface) return some players who have played in the NBA?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:league res:National_Basketball_Association }",Orange(huggingface) What kind of buildings were designed by Pyusawhti?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:architect . ?x onto:type ?uri . ?x rdf:type onto:Building}",Orange(huggingface) How many different organizations own the railway lines which are a part of Norfolk Southern Railway?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:system . ?x prop:owner ?uri . ?uri rdf:type onto:Organisation}",Orange(huggingface) Where did the aristocrats die whose mother was Maria Ludwika Krasinska?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:mother . ?x prop:deathPlace ?uri . ?x rdf:type onto:Royalty}",Orange(huggingface) Name the console whose successor is PlayStation 4 and predecessor is PlayStation 2?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:successor . ?uri prop:predecessor . ?uri rdf:type onto:InformationAppliance}",Orange(huggingface) How many destinations are covered by the airlines which also serves Europe?,"PREFIX res: PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:destinations . ?x prop:destinations ?uri }",Orange(huggingface) What are the airlines whose hub airport is Los Angeles International Airport?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:hubAirport . ?uri rdf:type onto:Airline}",Orange(huggingface) Katharevousa writers have been given which awards?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:movement . ?x onto:award ?uri . ?x rdf:type onto:Writer}",Orange(huggingface) What is the Nickname of Daniel O'Regan?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:nickname ?uri }",Orange(huggingface) Which TV show whose theme is composed by someone signed up with ATO records?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:recordLabel . ?uri prop:themeMusicComposer ?x . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) How many other important things have been written by the creator of Stuart Alan Jones?,"PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { onto:creator ?x . ?x onto:notableWork ?uri . }",Orange(huggingface) Count the band members of Skull Gang?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { onto:bandMember ?uri . ?uri rdf:type onto:Person}",Orange(huggingface) Which owner of the national Herald india is the leader of Kumta?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:owner ?uri. prop:governmentType ?uri}",Orange(huggingface) What is the alma mater of Marshall Fletcher McCallie and has affiliation with Vanderbilt University Medical Center?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Marshall_Fletcher_McCallie prop:almaMater ?uri. res:Vanderbilt_University_Medical_Center prop:affiliation ?uri}",Orange(huggingface) Who directed the haunted house and alice in wonderland?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:director ?uri. onto:director ?uri . }",Orange(huggingface) Which series has an episode called The lost special and also a character named Sherlock Holmes ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:series ?uri. prop:characters ?uri}",Orange(huggingface) Through which label has Katy B released her singles?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:writer . ?x onto:recordLabel ?uri . ?x rdf:type onto:Single}",Orange(huggingface) What is the common party of the Manthena Venkata Raju and B. Shiva Rao?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Manthena_Venkata_Raju onto:party ?uri. res:B._Shiva_Rao prop:party ?uri}",Orange(huggingface) How many titles have been won by the beauty queens which had brown hair?,"PREFIX res: PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:hairColor . ?x prop:title ?uri . }",Orange(huggingface) What are the television shows whose company is Playtone?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:company . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) Jerry Bock's musicals has been adapted from how many things?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:music . ?x onto:basedOn ?uri . }",Orange(huggingface) List the battles fought by Ali Habib Mahmud?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Ali_Habib_Mahmud prop:battles ?uri }",Orange(huggingface) What is the occupation of the people who are born in Iowa?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:birthPlace . ?x onto:occupation ?uri . ?x rdf:type onto:Person}",Orange(huggingface) "Who won the ohio house of representatives, 2010?","PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:incumbent ?uri }",Orange(huggingface) Josef Buhler belongs to which political party?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Josef_Bühler onto:occupation ?uri }",Orange(huggingface) What is the location country of the bank whose successor is Mauritius Bank ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:successor . ?x prop:locationCountry ?uri . ?x rdf:type onto:Bank}",Orange(huggingface) "In which ice hockey league, did the team coached by Joel Quenneville win?","PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:headCoach . ?uri prop:champion ?x . ?uri rdf:type onto:IceHockeyLeague}",Orange(huggingface) What is the common battle fought by Stephen Urban and Ali Habib Mahmud?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Stephen_Urban onto:battle ?uri. res:Ali_Habib_Mahmud prop:battles ?uri}",Orange(huggingface) How many parties are there of the office holders whose one of the party is Janata Dal ?,"PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:otherParty . ?x onto:otherParty ?uri }",Orange(huggingface) What mascot of the Galatasaray Handball Team is also the team name of Cristo Rey Jesuit high School ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:teamName ?uri. prop:mascot ?uri}",Orange(huggingface) What is the Recorded of the Kaptaan is also the headquarters of the Orient News?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Kaptaan prop:recorded ?uri. res:Orient_News prop:headquarters ?uri}",Orange(huggingface) What is the residence of the bronze medalist of Alpine skiing at the women's downhill competition at the 1972 Winter Olympics?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:bronzeMedalist ?x . ?x prop:birthPlace ?uri . }",Orange(huggingface) What is the television show whose channel's parent organisation is Fox Sports?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:parentOrganisation . ?uri onto:channel ?x . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) Where are the politicians buried who succeeded George Whitefield Davis?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:predecessor . ?x prop:restingplace ?uri . ?x rdf:type onto:OfficeHolder}",Orange(huggingface) Which line of the Vadodara Junction railway station is the route end of Mumbai Vadodara Expressway?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Mumbai_Vadodara_Expressway onto:routeEnd ?uri. res:Vadodara_Junction_railway_station prop:line ?uri}",Orange(huggingface) List all the co-founders of the non-profit organisations which have founding member as David pressman?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:foundedBy . ?x onto:foundedBy ?uri . ?x rdf:type onto:Non-ProfitOrganisation}",Orange(huggingface) What railway lines go through the stations maintained by Western Australian Public Transport Authority?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:owningOrganisation . ?x onto:servingRailwayLine ?uri . ?x rdf:type onto:Station}",Orange(huggingface) How many owners are there of lines starting at the South Station?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:routeStart . ?x prop:owner ?uri . }",Orange(huggingface) Give me a count of mammals whose family is Canidae?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:family . ?uri rdf:type onto:Mammal}",Orange(huggingface) What are the television shows whose company is European Broadcasting Union?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:company . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) People from how many political parties exist in Maharashtra?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:placeOfBirth . ?x onto:party ?uri . }",Orange(huggingface) Where is the school which is the rival of Somerset Berkley Regional High?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:rival ?x . ?x onto:region ?uri . ?x rdf:type onto:School}",Orange(huggingface) Who are the politicians whose death place is Ontario?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:deathPlace . ?uri rdf:type onto:Politician}",Orange(huggingface) "How many home stadium are there, of the soccer club seasons whose chairman is Merritt Paulson?","PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:chairman . ?x onto:homeStadium ?uri . }",Orange(huggingface) What is the military unit whose command structures are United States Department of the Navy and United States Department of Defense?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:commandStructure . ?uri onto:commandStructure . ?uri rdf:type onto:MilitaryUnit}",Orange(huggingface) In which cities can the beverage related to Barq's be found?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:related ?x . ?x prop:locationCity ?uri . }",Orange(huggingface) Which soccer players are currently playing for NYC FC?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:currentclub . ?uri rdf:type onto:SoccerPlayer}",Orange(huggingface) How many shows are made by the channel whose predecessor was the Comedy Channel?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:predecessor . ?uri prop:network ?x . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) Which license of the Microsoft Office Picture Manager is also the product of the Apple Productivity Experience Group,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Microsoft_Office_Picture_Manager onto:license ?uri. res:Apple_Productivity_Experience_Group onto:product ?uri}",Orange(huggingface) List the shows whose network is run by BBC.,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:owningCompany . ?uri onto:network ?x . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) Count the number of region of AN/FSQ-7 Combat Direction Central?,"PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { onto:region ?uri . }",Orange(huggingface) Does fox belong to the phylum of Chordate?,"PREFIX res: PREFIX onto: ASK WHERE { res:Fox onto:phylum res:Chordate }",Orange(huggingface) What is the total number of office holders who preceded the people working under president bill clinton?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:president . ?uri prop:successor ?x . ?uri rdf:type onto:OfficeHolder}",Orange(huggingface) "Who currently operates the railway lines one of whose stockholder is Chicago, St Paul, Minneapolis and Omaha railway?","PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:owner . ?x onto:operatedBy ?uri . ?x rdf:type onto:RailwayLine}",Orange(huggingface) How many movies were directed by the graduate of Burbank High School ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:education . ?uri prop:director ?x . ?uri rdf:type onto:Film}",Orange(huggingface) What is the show which opens with Gary Portnoy and Where Everybody Knows Your Name?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:openingTheme . ?uri onto:openingTheme . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) What are some cars similar to luxury cars?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:class . ?x prop:related ?uri . ?x rdf:type onto:Automobile}",Orange(huggingface) Who is the owner of Saumarez?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:owner ?uri }",Orange(huggingface) What are some music artists whose bands have signed up with Entertainment One Music?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:label . ?x onto:bandMember ?uri . ?x rdf:type onto:Band}",Orange(huggingface) What is the title of the successor of Kaulahea I?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Kaulahea_I prop:successor ?x . ?x prop:title ?uri . }",Orange(huggingface) Which governing body of the Oahu Railway and Land Company is also the military branch of the Jimmy Quillen?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Oahu_Railway_and_Land_Company prop:governingBody ?uri. res:Jimmy_Quillen onto:militaryBranch ?uri}",Orange(huggingface) Did nokia 215 has the series 30+ OS?,"PREFIX res: PREFIX prop: ASK WHERE { prop:os }",Orange(huggingface) State the religion of the person known for People's Bank (Sri Lanka) ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:knownFor . ?x onto:religion ?uri . }",Orange(huggingface) Which fictional character's portrayer was edited by Roger Barton?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:editing . ?uri onto:portrayer ?x . ?uri rdf:type onto:FictionalCharacter}",Orange(huggingface) Name the TV show whose cast member is Companion (Doctor Who) and is related to The Sarah Jane Adventures?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:starring . ?uri onto:related . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) How many groups speak the English Language?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:languages . ?uri rdf:type onto:EthnicGroup}",Orange(huggingface) How many other ingredient are there in the foods which have one of the ingredient as Potato ?,"PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:ingredient . ?x onto:ingredient ?uri }",Orange(huggingface) Which river's source mountain is Baikal Mountains and is located in Laptev Sea ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:sourceMountain . ?uri prop:mouthLocation . ?uri rdf:type onto:River}",Orange(huggingface) List few musical artist whose notable instruments are Ludwig Drums and Remo?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:notableInstruments . ?uri onto:instrument . ?uri rdf:type onto:MusicalArtist}",Orange(huggingface) List the places where the relatives of Mark Donaldson died ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:relatives ?x . ?x onto:deathPlace ?uri . }",Orange(huggingface) "From where does the river start, which flows into the Conowingo dam?","PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:riverMouth . ?x onto:source ?uri . ?x rdf:type onto:River}",Orange(huggingface) What faith of Buddhist Tai Hung College is also the acadmeic interest of Paul Demiville ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Paul_Demiéville prop:fields ?uri. res:Buddhist_Tai_Hung_College prop:religion ?uri}",Orange(huggingface) Which television show is the subsequent work of Frasier and the opening theme is Gary Portnoy?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:subsequentWork . ?uri onto:openingTheme . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) "Who was the opponent of Robert Carr, 1st Earl of Somerset?","PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:opponent ?uri }",Orange(huggingface) What are the awards won by the producer of Puss in Boots (film)?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:producer ?x . ?x onto:award ?uri . }",Orange(huggingface) Which sitcom is broadcasted by FOX and presented by Brian Dunkleman?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:channel . ?uri prop:presenter . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) What are some video games whose music is composed by an employ of the company Creatures?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:occupation . ?uri prop:composer ?x . ?uri rdf:type onto:VideoGame}",Orange(huggingface) What is the region of the successor of Mr. Jerome B. Chaffee?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Jerome_B._Chaffee onto:successor ?x . ?x onto:region ?uri . }",Orange(huggingface) Who are the tenants of the stadium where the UFC 140 is located?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:location ?x . ?x onto:tenant ?uri . ?x rdf:type onto:Stadium}",Orange(huggingface) What are some shows by Comedy Central?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:network . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) Who is the operator of FedExField?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:FedExField onto:operator ?uri }",Orange(huggingface) Which driver had the pole position in 1994 Spanish Grand Prix?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:1994_Spanish_Grand_Prix onto:poleDriver ?uri }",Orange(huggingface) What shows are on the networks which are from the United States?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:locationCountry . ?uri prop:network ?x . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) Which region of Bannock is the origin of Spaghetti squash ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:origin ?uri. onto:region ?uri}",Orange(huggingface) In which places do companies founded in Newcastle operate?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:foundationPlace . ?x onto:regionServed ?uri . ?x rdf:type onto:Company}",Orange(huggingface) Who is the incumbent of Al Gore presidential campaign of 2000 ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:incumbent ?uri }",Orange(huggingface) How many albums were released under the Victor Entertainment label?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:label . ?uri rdf:type onto:Album}",Orange(huggingface) Who are the players whose former teams are Carolina Panthers and Indianapolis Colts?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:formerTeam res:Carolina_Panthers . ?uri onto:formerTeam res:Indianapolis_Colts . }",Orange(huggingface) Who did Bruce Bochy play for?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Bruce_Bochy onto:team ?uri }",Orange(huggingface) Semani languages are spoken in which countries?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:languages . ?uri rdf:type onto:Country}",Orange(huggingface) In which place is the company which is known for Barbara bestor located ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:knownFor ?x . ?x onto:location ?uri . ?x rdf:type onto:Company}",Orange(huggingface) Which band's past member are Joe Jonas and Nick Jonas?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri prop:pastMembers . ?uri prop:pastMembers . ?uri rdf:type onto:Band}",Orange(huggingface) Give me a count of movies whose editor is Mark Stevens?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:editing . ?uri rdf:type onto:Film}",Orange(huggingface) What is the destinations of the airline whose headquarters is in Manchester?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:headquarters . ?x prop:destinations ?uri . ?x rdf:type onto:Airline}",Orange(huggingface) Who was the parent of person whose child is William C P breckinridge?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:children . ?x onto:parent ?uri . ?x rdf:type onto:Person}",Orange(huggingface) Name the street address of Rhodes-Haverty Building ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:address ?uri }",Orange(huggingface) Which company has a product named Visual Studio and One Drive as service ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:services . ?uri prop:products . ?uri rdf:type onto:Company}",Orange(huggingface) Who all were involved in the wars fought by the commander Blue Jacket?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:commander . ?x prop:combatant ?uri . ?x rdf:type onto:MilitaryConflict}",Orange(huggingface) What is the total number of religions that politicians have followed?,"PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:profession . ?x onto:religion ?uri . }",Orange(huggingface) How many mammals are in the Chordate phylum?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:phylum . ?uri rdf:type onto:Mammal}",Orange(huggingface) "Which companies make cars with a front engine, rear wheel drive layout?","PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:automobilePlatform . ?x onto:parentCompany ?uri . ?x rdf:type onto:Automobile}",Orange(huggingface) What is the product of the BBC Multimedia and series of the The Last Resort (Doctor Who)?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:products ?uri. onto:series ?uri}",Orange(huggingface) How many other architect are there of the historic places whose architect is also Stanford White ?,"PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:architect . ?x onto:architect ?uri }",Orange(huggingface) What all are written in the C programming language?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:programmingLanguage }",Orange(huggingface) Give me a count of airlines whose hub airport is Los Angeles International Airport?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:hubAirport . ?uri rdf:type onto:Airline}",Orange(huggingface) Name the parent company of Ford Air Transport Service?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Ford_Air_Transport_Service onto:parentCompany ?uri }",Orange(huggingface) Who is the writer of mark twain Tonight?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Mark_Twain_Tonight prop:writer ?uri }",Orange(huggingface) Who is the artist of the album which has the song I Can't Change the World ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:album ?x . ?x prop:artist ?uri . }",Orange(huggingface) Count the number of shows whose creators are Jerry Seinfeld and Larry David?,"PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?uri onto:creator . ?uri onto:creator }",Orange(huggingface) Where do the airlines garrisoned at Manchester airport fly to?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:headquarter . ?x prop:destinations ?uri . ?x rdf:type onto:Airline}",Orange(huggingface) Count the number of offices held by people who have their allegiances with the american civil war union?,"PREFIX res: PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:allegiance . ?x prop:office ?uri . }",Orange(huggingface) Does Sonny Bill Williams belong in the Canterbury Bankstown Bulldogs club?,"PREFIX res: PREFIX prop: ASK WHERE { prop:club }",Orange(huggingface) List the judges of Rising Star which is also the artist of Brad Paisley discography?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:judges ?uri. prop:artist ?uri}",Orange(huggingface) Name the TV shows owned by divisions of CBS?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:parent . ?uri prop:company ?x . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) "Count the different places where the people died, who were born in England?","PREFIX res: PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:placeOfBirth . ?x prop:placeOfDeath ?uri . }",Orange(huggingface) Where does the network cofounded by Seewoosagur Ramgoolam air its shows?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:founder . ?x prop:broadcastArea ?uri . ?x rdf:type onto:BroadcastNetwork}",Orange(huggingface) "Where do the politicians, Blanche Bruce and John Franklin Miller work?","PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:office ?uri. prop:office ?uri . }",Orange(huggingface) From how many different institutes have the members of Judge Advocate General's Corps graduated?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:militaryRank . ?x onto:almaMater ?uri . ?uri rdf:type onto:EducationalInstitution}",Orange(huggingface) Who is the parent of FD Roosevelt JR?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:children . }",Orange(huggingface) List some songwriters whose work has been recorded in Miami?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:recordedIn . ?x prop:writer ?uri . ?x rdf:type onto:Work}",Orange(huggingface) How many other Guests are there of the television episodes whose Guests is Brian d'Arcy James?,"PREFIX res: PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:guests . ?x prop:guests ?uri }",Orange(huggingface) Guggenheim family is the cofounder of a company that invested stocks in which baseball teams?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:founder . ?uri prop:owner ?x . ?uri rdf:type onto:BaseballTeam}",Orange(huggingface) Is the national anthem of Mauritius motherland?,"PREFIX res: PREFIX onto: ASK WHERE { onto:anthem }",Orange(huggingface) Where was the company who is the operator of Harihar Airport founded ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:operator ?x . ?x prop:foundation ?uri . ?x rdf:type onto:Company}",Orange(huggingface) Name the movie who has screenplay by Akiva Goldsman and is edited by Mark Stevens ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:screenplay . ?uri prop:editing . ?uri rdf:type onto:Film}",Orange(huggingface) How many basketball players studied in the Midland College?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:college . ?uri rdf:type onto:BasketballPlayer}",Orange(huggingface) How many games are played at universities affiliated with the Association of Southeast Asian Institutions of Higher Learning?,"PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:affiliation . ?x onto:sport ?uri . }",Orange(huggingface) What is the address of Federal Reserve Bank Building?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:address ?uri }",Orange(huggingface) Who made the Y block engine and the SHO V8 engine?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:manufacturer ?uri. onto:manufacturer ?uri . }",Orange(huggingface) Which country's people have graduated from Ghana School of Law?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:almaMater . ?x onto:nationality ?uri . ?x rdf:type onto:Person}",Orange(huggingface) Who has recorded their singles in London?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:recordedIn . ?x onto:writer ?uri . ?x rdf:type onto:Single}",Orange(huggingface) Where did the music genre of Harry and the Potters originate?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:genre ?x . ?x onto:stylisticOrigin ?uri . }",Orange(huggingface) "Which political party of kumta had affiliation with Indian general election, 2004 (Andhra Pradesh)?","PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:governmentType ?uri. onto:affiliation ?uri}",Orange(huggingface) What is the name of Mary's divine child?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:parent . }",Orange(huggingface) Who is the leader of the town where the Myntdu river originates?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:origin ?x . ?x onto:leaderName ?uri . ?x rdf:type onto:Town}",Orange(huggingface) What is the total number of other characters of the plays whose characters is Robin (comics)?,"PREFIX res: PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:characters . ?x prop:characters ?uri }",Orange(huggingface) What is the nationality of the chancellor who was served by Michael Mayr?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:deputy ?x . ?x onto:nationality ?uri . ?x rdf:type onto:Chancellor}",Orange(huggingface) Moscow-Kazan high speed railway starts from which station?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:routeStart ?uri }",Orange(huggingface) How many different kinds of games are published by Interplay Entertainment?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:publisher . ?x prop:genre ?uri . }",Orange(huggingface) Who is the developer of Montecito Inn?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Montecito_Inn prop:developer ?uri }",Orange(huggingface) Which administrative region leader is Sukhumbhand Paribatra and was founded by Rama I?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:leaderName . ?uri onto:founder . ?uri rdf:type onto:AdministrativeRegion}",Orange(huggingface) In which wars did commanders born in Indochina fight?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:birthPlace . ?uri onto:commander ?x . ?uri rdf:type onto:MilitaryConflict}",Orange(huggingface) Name the common current team of the Shaun Thong and Kaan Onder?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Shaun_Thong prop:currentTeam ?uri. res:Kaan_Önder prop:currentTeam ?uri . }",Orange(huggingface) Cologny and Lancy are the neighboring municipalities of which place ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri prop:neighboringMunicipalities . ?uri prop:neighboringMunicipalities . ?uri rdf:type onto:Place}",Orange(huggingface) What are the regions served by Toll Global Express which is also the country of LPGA?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Toll_Global_Express onto:regionServed ?uri. res:LPGA onto:country ?uri}",Orange(huggingface) Through which cities do the rivers starting at the Montauk State Park flow?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:sourcePlace . ?x onto:city ?uri . ?x rdf:type onto:River}",Orange(huggingface) What is the television show with presenter as Ryan Seacrest and theme music composer as Julian Gingell?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:presenter . ?uri prop:themeMusicComposer . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) Whose provides the service of Outlook and also products such as Visual Studio?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:services res:Outlook.com . ?uri prop:products res:Microsoft_Visual_Studio . }",Orange(huggingface) How many TV shows are of the company which has the subsidiary Big Ticket Entertainment?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:subsidiary . ?uri prop:company ?x . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) What is the home town of Rolando Gomez and is also the place of death of Clyde McNeal?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Rolando_Gomez prop:homeTown ?uri. res:Clyde_McNeal prop:deathDate ?uri}",Orange(huggingface) Who has starred in the amusement park attractions where Jim Dooley was performing?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:music . ?x prop:starring ?uri . ?x rdf:type onto:AmusementParkAttraction}",Orange(huggingface) Who built the stadiums where 2014 FIFA under 17 woman's world cup took place?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:tenant . ?x onto:builder ?uri . }",Orange(huggingface) "Which music band made Take Me There, and to which Tedd Riley was associated?","PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:associatedBand ?uri. onto:musicalBand ?uri}",Orange(huggingface) "Where did the genres originate, which were in the Harry and the Potters album?","PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { onto:genre ?x . ?x onto:stylisticOrigin ?uri . }",Orange(huggingface) How many cities are around the sea in which the ionian sea flows?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { onto:outflow ?x . ?x prop:cities ?uri . ?x rdf:type onto:Sea}",Orange(huggingface) What genre's software are released with a GNU GPL license?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:license res:GNU_General_Public_License . ?x prop:genre ?uri . }",Orange(huggingface) In how many different highschools have people schooled in Penn State Nittany Lions football studied?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:school . ?x prop:highschool ?uri . ?uri rdf:type onto:EducationalInstitution}",Orange(huggingface) Who is the cover artist of Doctor Mirabilis (novel)?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:coverArtist ?uri }",Orange(huggingface) Which newspaper owned by Schibsted is published in Swedish?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:language . ?uri prop:owners . ?uri rdf:type onto:Newspaper}",Orange(huggingface) How many groups have fought in wars where Richard Taylor fought too?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { prop:battles ?x . ?x prop:combatant ?uri . ?x rdf:type onto:MilitaryConflict}",Orange(huggingface) Which appliance has cpu from Freescale Semiconductor and Marvell Technology Group?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:cpu . ?uri onto:cpu . ?uri rdf:type onto:InformationAppliance}",Orange(huggingface) "Name the office holder whose predecessor is Henry E. Catto, Jr. and won Screen Actors Guild Life Achievement Award?","PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:predecessor . ?uri onto:award . ?uri rdf:type onto:OfficeHolder}",Orange(huggingface) List the interest of the scientists whose one of the field is Chinese poetry ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:fields . ?x prop:fields ?uri . ?x rdf:type onto:Scientist}",Orange(huggingface) Which co founder of Sea gayle Music is also the artist of Brad Paisley Discography?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Brad_Paisley_discography prop:artist ?uri. res:Sea_Gayle_Music prop:founder ?uri}",Orange(huggingface) In how many different places do Starwood hotels and resorts worldwide operate?,"PREFIX res: PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:operator . ?x prop:address ?uri . }",Orange(huggingface) Which purpose of the Maharashtra Chess Association is Abhijit kunte is also know for?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Maharashtra_Chess_Association prop:purpose ?uri. res:Abhijit_Kunte prop:knownFor ?uri}",Orange(huggingface) What are the awards won by the film editor of World of Tomorrow ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:editing ?x . ?x onto:award ?uri . }",Orange(huggingface) In how many different fields people are alumini of the University of Oxford working?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:almaMater . ?x onto:field ?uri . }",Orange(huggingface) Who owns the bridge which crosses the Orange Line of MBTA?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:crosses . ?x prop:owner ?uri . ?x rdf:type onto:Bridge}",Orange(huggingface) Give me the total number of employer of the engineers whose one of the employer is McDonnell Aircraft?,"PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:employer . ?x onto:employer ?uri }",Orange(huggingface) Count number of people who follow a religion which has an important office in Gold Base?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:headquarters . ?uri onto:religion ?x . ?uri rdf:type onto:Person}",Orange(huggingface) Was Walt Disney the cinematographer of Mickey's Mellerdrammer?,"PREFIX res: PREFIX prop: ASK WHERE { prop:cinematography }",Orange(huggingface) How many politicians are there from the city of Ganges?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { prop:city ?x . ?x onto:leaderName ?uri . }",Orange(huggingface) Name the president served by a lieutenant who succeeded Bob C Riley.,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:predecessor . ?uri onto:lieutenant ?x . ?uri rdf:type onto:President}",Orange(huggingface) How many TV shows' networks are headquarterd in NY?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:headquarters . ?uri prop:network ?x . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) Who is the owner of Latvian Wikipedia and Wiktionary?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Latvian_Wikipedia onto:owner ?uri. res:Wiktionary onto:owner ?uri . }",Orange(huggingface) Which shows had their creators born in England?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:birthPlace . ?uri onto:creator ?x . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) "What is the debut team of the baseball player who was born in Williamsburg, Kansas ?","PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:birthPlace . ?x prop:debutteam ?uri . ?x rdf:type onto:BaseballPlayer}",Orange(huggingface) What is the label of the album whose previous work is Waterfall?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:previousWork . ?x prop:label ?uri . ?x rdf:type onto:Album}",Orange(huggingface) What are the movies produced by Michael Deeley?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:producer . ?uri rdf:type onto:Film}",Orange(huggingface) Which tv series have a score composed by judy hard angelo?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:composer . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) "Where did the president study, who's the president of Besiktas JK?","PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:president ?x . ?x prop:almaMater ?uri . }",Orange(huggingface) Who all have been canonized by Pope Paul VI?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:canonizedBy res:Pope_Paul_VI }",Orange(huggingface) Was Stephanie Rice the flagbearer of Australia at the 2008 Summer Olympics?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Australia_at_the_2008_Summer_Olympics prop:flagbearer ?uri }",Orange(huggingface) "What religion do the politicians follow, who graduated from the Yokkohama Nationaal University?","PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:almaMater . ?x onto:religion ?uri . ?x rdf:type onto:Politician}",Orange(huggingface) In which continent do Air 2000 and Novair International airways operate?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:destinations ?uri. prop:destinations ?uri . ?uri rdf:type onto:Continent}",Orange(huggingface) Which wine region of Bogdanua is the mouth country of Upper Neretva?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:BogdanuÅ¡a onto:wineRegion ?uri. res:Upper_Neretva onto:mouthCountry ?uri}",Orange(huggingface) Which continents can be reached by flight companies available on Gatwick Airport?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:targetAirport . ?x prop:destinations ?uri . ?x rdf:type onto:Airline}",Orange(huggingface) How many bands began in Birmingham?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:origin . ?uri rdf:type onto:Band}",Orange(huggingface) What is the predecessor of PlayStation 4?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:successor res:PlayStation_4 . }",Orange(huggingface) What religion did the president follow which was served by Kang Young-hoon?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:president ?x . ?x onto:religion ?uri . }",Orange(huggingface) On what subjects was Broca's Brain written?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:subject ?uri }",Orange(huggingface) Which musical band produced the subsequent work of City of New Orleans ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:subsequentWork ?x . ?x onto:musicalBand ?uri . }",Orange(huggingface) What is the hometown of the volleyball player whose club is VC Lokomotiv Novosibirsk ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:club . ?x prop:hometown ?uri . ?x rdf:type onto:VolleyballPlayer}",Orange(huggingface) What are some families of mammals in the animal kingdom?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:kingdom . ?x onto:family ?uri . ?x rdf:type onto:Mammal}",Orange(huggingface) What are the things Eric Schiller known for?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Eric_Schiller onto:knownFor ?uri }",Orange(huggingface) Which is the nearest city to Elliott Bay?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Elliott_Bay onto:nearestCity ?uri }",Orange(huggingface) Name the people who were in a youth club managed by Luis Enrique ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:manager . ?uri prop:youthclubs ?x . }",Orange(huggingface) List the agencies located someplace lead by Alex Chalk.,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:leaderName . ?uri onto:location ?x . ?uri rdf:type onto:GovernmentAgency}",Orange(huggingface) Name the river with mouth as Thames Estuary and passes through Reading Berkshire ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:riverMouth . ?uri prop:city . ?uri rdf:type onto:River}",Orange(huggingface) Which are the comics characters painted by Bruce Timm and created by Paul Dini?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:creator . ?uri prop:creators . ?uri rdf:type onto:ComicsCharacter}",Orange(huggingface) What is the label of things produced by the band If?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:artist . ?x prop:label ?uri . }",Orange(huggingface) Count the birthplaces of recepients of the National Museum of Racing and Hall of Fame.,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:honours . ?x onto:birthPlace ?uri . ?uri rdf:type onto:Place}",Orange(huggingface) "Which units are garrisoned at Arlington County, Virginia?","PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:garrison }",Orange(huggingface) "Where did the wrestler die who was billed in Norman, Oklahoma?","PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:billed . ?x onto:deathPlace ?uri . ?x rdf:type onto:Wrestler}",Orange(huggingface) Name the software whose operating system is Mac OS and programming language is C++ ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:operatingSystem . ?uri prop:programmingLanguage . ?uri rdf:type onto:Software}",Orange(huggingface) Who originally wrote the manga which was later illustrated by Tamon Ohta?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:illustrator . ?x prop:author ?uri . ?x rdf:type onto:Manga}",Orange(huggingface) Where was Girls (The Prodigy song) recorded ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:recorded ?uri }",Orange(huggingface) Who has been the tenant of the stadium built by PCL construction firm?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:builder . ?x onto:tenant ?uri . ?x rdf:type onto:Stadium}",Orange(huggingface) What is the county seat of the district through which the Beckler River flows?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:district ?x . ?x onto:countySeat ?uri . ?x rdf:type onto:AdministrativeRegion}",Orange(huggingface) Which company is the parent company of Chevrolet Spark?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Chevrolet_Spark prop:parentCompany ?uri }",Orange(huggingface) Who is the person who are on the board of Freedom of the City?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:board . ?uri rdf:type onto:Person}",Orange(huggingface) Is James Wong Howe the cinematographer of Behave Yourself?,"PREFIX res: PREFIX prop: ASK WHERE { prop:cinematography }",Orange(huggingface) Which Fox show is presented by Ryan Seacrest?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:presenter . ?uri prop:channel . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) "Is the song Killing is Out, School is in belong in the The Next Step?","PREFIX res: PREFIX prop: ASK WHERE { prop:album }",Orange(huggingface) Name the common institute of Robert hall and Erica Frank ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:institution ?uri. onto:institution ?uri . }",Orange(huggingface) "For everyone who died in paris, count their different fields of work.","PREFIX res: PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:deathPlace . ?x prop:fields ?uri . }",Orange(huggingface) Count the total number of launch site of the rockets which have been launched form Cape Canaveral Air Force Station ?,"PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:launchSite . ?x onto:launchSite ?uri }",Orange(huggingface) List down the important people of The Elders?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:keyPeople ?uri }",Orange(huggingface) Who influenced the author of The Shooting of Dan McGrew?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:writer ?x . ?x prop:influences ?uri . }",Orange(huggingface) Name the band atleast one of whose members is famous for playing the Fender Stratocaster?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:notableInstruments . ?uri prop:currentMembers ?x . ?uri rdf:type onto:Band}",Orange(huggingface) "Through which states does the road go, which has a junction on Keningston Maryland?","PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:routeJunction . ?x onto:state ?uri . ?x rdf:type onto:Road}",Orange(huggingface) Who is the builder of Estadio Nacional de Costa Rica and also location of Xianren Cave?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:builder ?uri. onto:country ?uri}",Orange(huggingface) Name the saint whose major shrine is in Canada and was canonized by Pope Benedict XVI?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:majorShrine . ?uri prop:canonizedBy . ?uri rdf:type onto:Saint}",Orange(huggingface) What is the academic discipline of the Journal of Cerebral Blood Flow & Metabolism and also an ingredient of the Ragout fin ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:academicDiscipline ?uri. onto:ingredient ?uri}",Orange(huggingface) Count the awards given to the recepients of the Becket fund for religious liberty.,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:award . ?x prop:awards ?uri . }",Orange(huggingface) How many prime ministers did the predecessor of Duncan Sandys serve?,"PREFIX res: PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { prop:successor ?x . ?x prop:primeminister ?uri . }",Orange(huggingface) How many local authorities manage mixed gender schools?,"PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:gender . ?x onto:localAuthority ?uri . }",Orange(huggingface) Name the person whose daughter is Rohan Marley and also another children named Sharon Marley ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:child . ?uri prop:children . ?uri rdf:type onto:Person}",Orange(huggingface) To which company does Raymond Conner is critical to?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:keyPeople . ?uri rdf:type onto:Company}",Orange(huggingface) Give me some shows owned by BBC one and BBC hd?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:network . ?uri onto:network . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) Which American football player is a former team player of Indianapolis Colts and current team is Michigan Wolverines?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:formerTeam . ?uri prop:currentteam . ?uri rdf:type onto:AmericanFootballPlayer}",Orange(huggingface) Who is the founder of the trade union which affiliates with Amalgamated Association of Iron and Steel Workers?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:affiliation ?x . ?x prop:founded ?uri . ?x rdf:type onto:TradeUnion}",Orange(huggingface) What kind of games are made by Interplay Entertainment?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:publisher . ?x prop:genre ?uri . ?x rdf:type onto:VideoGame}",Orange(huggingface) Who produces the trains operated by the MTR?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:operator . ?x onto:manufacturer ?uri . ?x rdf:type onto:Train}",Orange(huggingface) Give me a count of bacterias which belongs to Bacilli class?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:class . ?uri rdf:type onto:Bacteria}",Orange(huggingface) List all the tenants of the stadium where the WWF Summer Slam 2004 took place.,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:venue ?x . ?x onto:tenant ?uri . }",Orange(huggingface) Count the number of people became famous for when Andrew Jackson was a commander ?,"PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:commander . ?uri onto:knownFor ?x . }",Orange(huggingface) What is the former partner of the figure skaters whose current partner is Alexa Scimeca?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:currentPartner . ?x onto:formerPartner ?uri . ?x rdf:type onto:FigureSkater}",Orange(huggingface) "In how many areas do the networks broadcast, which also broadcasts in North Carolina?","PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:broadcastArea . ?x prop:area ?uri . ?uri rdf:type onto:Place}",Orange(huggingface) Where was James McClure born ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:birthPlace ?uri }",Orange(huggingface) Who directed the albums recorded in Anaheim?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:recordedIn . ?x prop:director ?uri . ?x rdf:type onto:Album}",Orange(huggingface) "What is the incumbent of the Al Gore presidential campaign, 2000 and also the president of the Ann Lewis ?","PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:incumbent ?uri. onto:president ?uri}",Orange(huggingface) Georg Meissner was doctoral supervisor of which scientist ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:doctoralAdvisor . ?uri rdf:type onto:Scientist}",Orange(huggingface) What is the river that falls into North Sea and Thames Estuary?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:riverMouth . ?uri onto:riverMouth . ?uri rdf:type onto:River}",Orange(huggingface) From which party is the politician who was selected in Barasat constituency?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:constituency . ?x onto:party ?uri . ?x rdf:type onto:OfficeHolder}",Orange(huggingface) Which royal people are buried in Rome?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:placeOfBurial . ?uri rdf:type onto:Royalty}",Orange(huggingface) Which stockholder of yale Repertory Theatre was training center of William Anthony ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:training ?uri. prop:owner ?uri}",Orange(huggingface) What is the country whose speaker of the Dewan Rakyat is Pandikar Amin Mulia?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:leaderName . ?uri rdf:type onto:Country}",Orange(huggingface) Which soccer clubs are in the Liga Divisi Utama?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:season . ?x prop:name ?uri . ?x rdf:type onto:SoccerClub}",Orange(huggingface) How many cities are around the sea into which the aegean sea flows?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { onto:outflow ?x . ?x prop:cities ?uri . ?x rdf:type onto:Sea}",Orange(huggingface) Name an American football player who debuted in Chicago Bears and former team is 1998 Baltimore Ravens season?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:debutteam . ?uri onto:formerTeam . ?uri rdf:type onto:AmericanFootballPlayer}",Orange(huggingface) What show has theme music composer as Ron Grainer and at the same time is related to Class (2016 TV series)?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:themeMusicComposer . ?uri onto:related . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) Which party won the elections when Y.S. Rajasekhara Reddy was in power?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:leader . ?x onto:affiliation ?uri . ?x rdf:type onto:Election}",Orange(huggingface) What is the television show whose subsequent work is Crusade (TV series) and developed by J. Michael Straczynski?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:subsequentWork . ?uri onto:developer . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) What genre of games are made by Blizzard Entertainment studios?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:developer . ?x prop:genre ?uri . ?x rdf:type onto:VideoGame}",Orange(huggingface) Name the fictional character whose relative are Duck family and Clan McDuck?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:relative . ?uri prop:relatives . ?uri rdf:type onto:FictionalCharacter}",Orange(huggingface) Name the origins of the river with Quich Department as one of the origin ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:origin res:Quiché_Department . ?x onto:origin ?uri . }",Orange(huggingface) "Which parent comapny of hypnotize Minds is the label of the Producers, a 2005 film?","PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:parent ?uri. prop:label ?uri}",Orange(huggingface) What is the nationality of the entomologist who is a renowned authority of Smerinthus saliceti ?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:binomialAuthority ?x . ?x onto:citizenship ?uri . ?x rdf:type onto:Entomologist}",Orange(huggingface) List the governers of Winston Bryant?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Winston_Bryant prop:governor ?uri }",Orange(huggingface) Name all the doctoral student of the scientist who also supervised Mary Ainsworth ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:doctoralStudents . ?x prop:doctoralStudents ?uri . ?x rdf:type onto:Scientist}",Orange(huggingface) Name the mountain whose parent peak is located in Mexico.,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:locatedInArea . ?uri onto:parentMountainPeak ?x . ?uri rdf:type onto:Mountain}",Orange(huggingface) "List presidents of the school whose one of the president is Charles, Prince of Wales?","PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:president . ?x prop:president ?uri . ?x rdf:type onto:School}",Orange(huggingface) What are the movies whose director's daughter is Luke Scott?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:child . ?uri prop:director ?x . ?uri rdf:type onto:Film}",Orange(huggingface) "Name the office holders whose successor died in Morristown, New Jersey?","PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:deathPlace . ?uri onto:successor ?x . ?uri rdf:type onto:OfficeHolder}",Orange(huggingface) Who are the major stockholders of the bank which is the company of Bloomberg Markets?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:company ?x . ?x prop:owner ?uri . ?x rdf:type onto:Bank}",Orange(huggingface) "Who are the parent of the people that has POD as Redding, Connecticut ?","PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:deathPlace . ?x onto:parent ?uri . }",Orange(huggingface) What is the name of the homeground of football team Panionios G.S.S.?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:2013–14_Panionios_G.S.S._season onto:ground ?uri }",Orange(huggingface) "In which sects were the aristocrats included, who were buried in Westminister abbey?","PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:majorShrine . ?x prop:veneratedIn ?uri . ?x rdf:type onto:Royalty}",Orange(huggingface) How many mountain are there in Sierra Nevada range?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:mountainRange . ?uri rdf:type onto:Mountain}",Orange(huggingface) Name the notable commanders of Army Group Oberrhein ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:notableCommanders ?uri }",Orange(huggingface) Copley Medal has been awarded to which scientists?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:awards . ?uri rdf:type onto:Scientist}",Orange(huggingface) "How many awards have been awarded to people who are buried in Glendale, California?","PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:restingPlace . ?x onto:award ?uri . }",Orange(huggingface) In which state does the valley bordering the Modoc plateau lie?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:border . ?x onto:state ?uri . ?x rdf:type onto:Valley}",Orange(huggingface) Give me the total number of Guests of the television episodes whose one of the Guests is Michael Cristofer?,"PREFIX res: PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:guests . ?x prop:guests ?uri }",Orange(huggingface) List down all the baseball teams whose team manager was a Catcher?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:position . ?uri onto:manager ?x . ?uri rdf:type onto:BaseballTeam}",Orange(huggingface) For how many other teams have the members of Atlant Moscow Oblast played?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:playedFor . ?x onto:formerTeam ?uri . }",Orange(huggingface) Which were the philosophers whose primary interest was Natural philosophy?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:mainInterests . ?uri rdf:type onto:Philosopher}",Orange(huggingface) Which program was on NBC network with executive producer as Glen and Les Charles?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:network . ?uri onto:executiveProducer . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) List the colonel with branch as Militia?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:branch . ?uri prop:rank . }",Orange(huggingface) What is the common religious affiliation of the Wickramabahu Central College (National School) and that of Vesak?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:religiousAffiliation ?uri. onto:type ?uri}",Orange(huggingface) Who wrote the play in which a character called Stella Kowalski exists?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:characters . ?x prop:writer ?uri . ?x rdf:type onto:Play}",Orange(huggingface) Name a movie with actor as Momoko Kochi and music by Akira Ifukube?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:starring . ?uri prop:music . ?uri rdf:type onto:Film}",Orange(huggingface) Name some software as a service?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:license . ?uri rdf:type onto:Software}",Orange(huggingface) How many shows is Russell Davies known for?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { prop:notableworks ?uri . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) Name the office holder with predecessor as Mark Latham and partner Tim Mathieson?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:predecessor . ?uri onto:partner . ?uri rdf:type onto:OfficeHolder}",Orange(huggingface) In how many places have people canonized by John Paul II died?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:canonizedBy . ?x prop:deathPlace ?uri . ?uri rdf:type onto:Place}",Orange(huggingface) Which things are Breann McGregor known for?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Breann_McGregor prop:knownFor ?uri }",Orange(huggingface) Name the movies directed by Stanley Kubrick and edited by Anthony Harvey?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:director . ?uri prop:editing . ?uri rdf:type onto:Film}",Orange(huggingface) What is the military conflict whose commanders are John McEwen and Phm Vn ng?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:commander . ?uri onto:commander . ?uri rdf:type onto:MilitaryConflict}",Orange(huggingface) How many dishes are made with an ingredient belonging to the flowering plant species?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:division . ?uri onto:ingredient ?x . ?uri rdf:type onto:Food}",Orange(huggingface) Name the rivers who originate from Essex?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:mouthPlace . ?uri rdf:type onto:River}",Orange(huggingface) Who is the editor of Hearth and Home?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Hearth_and_Home onto:editor ?uri }",Orange(huggingface) List the fields of Sylvain Lvi ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Sylvain_Lévi prop:fields ?uri }",Orange(huggingface) Matthew kane and Park rankin are citizens of which country?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:citizenship ?uri. onto:citizenship ?uri . }",Orange(huggingface) Does KOMC play Gospel Music?,"PREFIX res: PREFIX onto: ASK WHERE { onto:programmeFormat }",Orange(huggingface) Count the awards received by Immunologists?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:fields . ?x onto:award ?uri . ?uri rdf:type onto:Award}",Orange(huggingface) What is the total number of guests on the show whose theme music is Let me be your star?,"PREFIX res: PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:music . ?x prop:guests ?uri . }",Orange(huggingface) Where are Aureus and Solidus used as currency?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:currency . ?uri onto:currency . }",Orange(huggingface) What is the television show whose executive producer is Steven Peterman?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:executiveProducer . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) To which label did The Producers and I pray on Christmas sign up?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:label ?uri. prop:label ?uri . }",Orange(huggingface) Journals of how many fields can be found in US?,"PREFIX res: PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:country . ?x prop:discipline ?uri . }",Orange(huggingface) What is the college of the basketball player who lives in Ashton Historic district?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:birthPlace . ?x prop:college ?uri . ?x rdf:type onto:BaseballPlayer}",Orange(huggingface) How many non fiction topics does Thud! deals with?,"PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { onto:nonFictionSubject ?uri . }",Orange(huggingface) Which parent company of the Cornell University Press is also the alma mater of the Mario Garca Menocal?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Cornell_University_Press onto:parentCompany ?uri. res:Mario_García_Menocal onto:almaMater ?uri}",Orange(huggingface) Count the number of ingredient of the foods which have one of the ingredient is Pork ?,"PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:ingredient . ?x onto:ingredient ?uri }",Orange(huggingface) How many currencies are used in places where people speak French?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:officialLanguage . ?x onto:currency ?uri . ?uri rdf:type onto:Currency}",Orange(huggingface) in which country does the river end which originates in Lebrsnik?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:sourcePlace res:LebrÅ¡nik . ?x onto:mouthCountry ?uri . }",Orange(huggingface) What are the movies whose music is given by Laurie Johnson?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:music . ?uri rdf:type onto:Film}",Orange(huggingface) What sports are played at universities affiliated by States Colleges and Universities athletic association?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:affiliation . ?x onto:sport ?uri . ?x rdf:type onto:University}",Orange(huggingface) Who all have been a commander during the battles of Ohio?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:place . ?x onto:commander ?uri . ?x rdf:type onto:MilitaryConflict}",Orange(huggingface) What is the leader of the government agency which is the military unit of Erich Kempka?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Erich_Kempka onto:militaryUnit ?x . ?x onto:leader ?uri . }",Orange(huggingface) What are the party of the politicians whose deputy was Chaudhary Devi Lal?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:deputy . ?x onto:otherParty ?uri . ?x rdf:type onto:OfficeHolder}",Orange(huggingface) List the battles fought by Roh Tae-woo?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:battles ?uri }",Orange(huggingface) Who is the office holder for constituencies Castro District and Haight-Ashbury?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri prop:constituency . ?uri prop:constituency . ?uri rdf:type onto:OfficeHolder}",Orange(huggingface) What is the common region of the broadcast area of ITV and nationality of Ajahn Thate?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:broadcastArea ?uri. onto:nationality ?uri}",Orange(huggingface) List all the bands which have members of the band Guy in them?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:bandMember ?x . ?x onto:associatedBand ?uri . }",Orange(huggingface) Who has Saint Joseph and Mary as parents?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:parent . ?uri onto:parent . }",Orange(huggingface) Name the scientist whose supervisor was John Robert Woodyard and has won Norbert Wiener Award for Social and Professional Responsibility?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:doctoralAdvisor . ?uri prop:prizes . ?uri rdf:type onto:Scientist}",Orange(huggingface) Saores de costa built a bridge over which river?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:builder . ?x onto:crosses ?uri . ?x rdf:type onto:Bridge}",Orange(huggingface) Count the number of families of the Animal kingdom.,"PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:kingdom . ?x onto:family ?uri . }",Orange(huggingface) "Who did the person whose predecessor is Arthur Slaght, play for?","PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:predecessor . ?x prop:playedFor ?uri . ?x rdf:type onto:Person}",Orange(huggingface) What are some party leaders of the parties which have had a seat in Berlin?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:headquarter . ?x onto:leader ?uri . ?x rdf:type onto:PoliticalParty}",Orange(huggingface) Who owns Ivanpah Solar Power Facility?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:owner ?uri. onto:developer ?uri}",Orange(huggingface) What is debut team of the baseball players who died in Los Angeles?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:deathPlace . ?x prop:debutteam ?uri . ?x rdf:type onto:BaseballPlayer}",Orange(huggingface) Name the president who had relatives in Clinton family and lieutenant named Joe Purcell?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:relation . ?uri onto:lieutenant . ?uri rdf:type onto:President}",Orange(huggingface) What companies are located in toronto?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:locationCity . ?uri rdf:type onto:Company}",Orange(huggingface) Which basketball team's president studied in the Brockport Golden Eagles?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:college . ?uri prop:president ?x . ?uri rdf:type onto:BasketballTeam}",Orange(huggingface) "What are the source of the streams whose one of the source is Calera, Oklahoma?","PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:source . ?x onto:source ?uri . ?x rdf:type onto:Stream}",Orange(huggingface) Name the movie whose screenplay is by Akiva Goldsman and directed by Joel Schumacher ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:screenplay . ?uri onto:director . ?uri rdf:type onto:Film}",Orange(huggingface) What is the mascot of the handball teams in the Turkish Handball Super League?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:league . ?x prop:mascot ?uri . ?x rdf:type onto:HandballTeam}",Orange(huggingface) What are the products of the company who published Robot Wars: Metal Mayhem ?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:publisher ?x . ?x onto:product ?uri . ?x rdf:type onto:Company}",Orange(huggingface) Which sports exist in the universities whose president is Emanuel de Guzman?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:president . ?x onto:sport ?uri . ?x rdf:type onto:University}",Orange(huggingface) Name a colonel whose resting place is Montpelier ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:rank . ?uri prop:restingplace . }",Orange(huggingface) "Where is the headquarters of the public transit system which owns Target Field, a Metro Transit Station ?","PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:owningOrganisation ?x . ?x prop:headquarters ?uri . }",Orange(huggingface) To which political party does Virendra Kataria belongs?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Virendra_Kataria prop:party ?uri }",Orange(huggingface) List all the artist of albums which have been produced by Stephen Kozmeniuk ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:producer . ?x prop:artist ?uri . ?x rdf:type onto:Album}",Orange(huggingface) Which builder of Ford Straight-6 engine is also the automobile platform provider of Chiva bus?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:automobilePlatform ?uri. onto:manufacturer ?uri}",Orange(huggingface) Which awards did the narrator of Oscar and Lucinda win?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:narrator ?x . ?x prop:awards ?uri . }",Orange(huggingface) Which office holder's resting place is Alta Mesa Memorial park and has adrian A. Basora as successor?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:successor . ?uri prop:restingPlace . ?uri rdf:type onto:OfficeHolder}",Orange(huggingface) Laozi has authored which books?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:author . ?uri rdf:type onto:Book}",Orange(huggingface) Name the mascot of Austin College?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Austin_College prop:mascot ?uri }",Orange(huggingface) What are the binomial authority of Menetries's warbler?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:binomialAuthority ?uri }",Orange(huggingface) "In which of the parties that have governed over Rishikesh, does Govinda belong too?","PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:party ?uri. onto:leaderName ?uri}",Orange(huggingface) How many bacterias have taxonomy as Bacillales and domain as Bacteria?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:order . ?uri prop:domain }",Orange(huggingface) Where was William anthony trained ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:education ?uri. onto:training ?uri}",Orange(huggingface) What are the artists that are associated with the Framptons camel album?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:associatedActs . ?uri rdf:type onto:Artist}",Orange(huggingface) Under which US president was a politician in opposition of John G Schmitz?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:opponent . ?x onto:incumbent ?uri . ?x rdf:type onto:Politician}",Orange(huggingface) Which wars were fought by the commander whose deputy was Robert T. Herres?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:deputy . ?uri onto:commander ?x . ?uri rdf:type onto:MilitaryConflict}",Orange(huggingface) Who is the scientist whose academic advisor is Franz Brentano?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:academicAdvisor . ?uri rdf:type onto:Scientist}",Orange(huggingface) What is the common citizenship between JSM Hopoer and Robert Valentine ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:citizenship ?uri. onto:country ?uri}",Orange(huggingface) Which settlement's neighboring municipalities are Cologny and Pregny-Chambsy?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:neighboringMunicipalities . ?uri onto:neighboringMunicipality . ?uri rdf:type onto:Settlement}",Orange(huggingface) Bridges over what can carry vehicles?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:carries . ?x prop:crosses ?uri . ?x rdf:type onto:Bridge}",Orange(huggingface) Who is the person opposed by Tom McLaury and Ike Clanton?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:opponent . ?uri onto:opponent . ?uri rdf:type onto:Person}",Orange(huggingface) How many airlines have a hub at an airport run by LA World Airports?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:operator . ?uri onto:hubAirport ?x . ?uri rdf:type onto:Airline}",Orange(huggingface) How many kinds of games can be played on the Amiga?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:computingPlatform . ?x prop:genre ?uri . }",Orange(huggingface) How many movies have been cinematographed by Jordan Cronenweth?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:cinematography . ?uri rdf:type onto:Film}",Orange(huggingface) Count the different genres of games published by Titus Software,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:publisher . ?x onto:genre ?uri . }",Orange(huggingface) What is the appliance which uses the central processing unit manufactured by Marvell Technology Group?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:cpu . ?uri rdf:type onto:InformationAppliance}",Orange(huggingface) Name the sport league of Hampton Roads Rhinos?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Hampton_Roads_Rhinos prop:league ?uri }",Orange(huggingface) What sport activities are available at Polytechnic University of the Philippines Bataan?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Polytechnic_University_of_the_Philippines_–_Bataan onto:sport ?uri }",Orange(huggingface) Which military battles are associated with Israel?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:place . ?uri rdf:type onto:MilitaryConflict}",Orange(huggingface) "Whose relatives are Clan McDuck and Huey, Dewey, and Louie?","PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?uri prop:relatives . ?uri prop:relatives . }",Orange(huggingface) Name the mountain whose range is Sierra Nevada (U.S.) and parent mountain peak is Nevado de Toluca?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:mountainRange . ?uri onto:parentMountainPeak . ?uri rdf:type onto:Mountain}",Orange(huggingface) What is the religion of the ethnic group to which Clara Ng belongs?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:ethnicity ?x . ?x onto:religion ?uri . ?x rdf:type onto:EthnicGroup}",Orange(huggingface) Name the sea into which Danish Straits flows and has Kaliningrad as one of the city on the shore ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:cities . ?uri prop:outflow . ?uri rdf:type onto:Sea}",Orange(huggingface) Which local authority of Buckhurst Hill County High School is the palce of burial of Elizabeth Rhuddlan ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Buckhurst_Hill_County_High_School onto:localAuthority ?uri }",Orange(huggingface) How many TV shows have executive producer as Steven Moffat ?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:executiveProducer . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) What program is presented by Brian Dunkleman and has artist as Simon Fuller?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:presenter . ?uri prop:creator . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) Which university has a sports team member called Micheal Powell and also owns Syracuse University Press ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:team ?uri. prop:parent ?uri}",Orange(huggingface) What is the sovereign state of the Dafydd Benfras where Jasmine Lowson is also citizen of?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Dafydd_Benfras onto:country ?uri. res:Jasmine_Lowson onto:citizenship ?uri}",Orange(huggingface) Which birthplace of Liliya Lobanova is also the location of the Snake Island?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:birthplace ?uri. prop:locationCountry ?uri}",Orange(huggingface) Which TV show's writer is Erik Jendresen and distributor is HBO?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:writer . ?uri prop:distributor . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) How many members are there in the European Go Federation?,"PREFIX res: PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { prop:membership ?uri . }",Orange(huggingface) In what battles did president Park Chung-hee participate?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:commander . ?uri rdf:type onto:MilitaryConflict}",Orange(huggingface) Which predecessor of Alexander Downer was deputy to Neil Brown ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:predecessor . ?uri prop:deputy . }",Orange(huggingface) Who owns Chelsea F.C.?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:occupation . }",Orange(huggingface) How many schools have a bison as their mascot?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:mascot . ?uri rdf:type onto:School}",Orange(huggingface) How many genres gave birth to other genres which emphasize Bass Guitars?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:instruments . ?x onto:stylisticOrigin ?uri . ?uri rdf:type onto:MusicGenre}",Orange(huggingface) List the program genres of the sister stations of WASH FM?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:sisterStations ?x . ?x onto:programmeFormat ?uri . }",Orange(huggingface) Who is the writer of the singles whose producer is Peter-John Vettese?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:producer . ?x onto:writer ?uri . ?x rdf:type onto:Single}",Orange(huggingface) How many people have worked in the band one of whose current member is Hynief?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:currentMembers . ?x onto:bandMember ?uri . ?uri rdf:type onto:Person}",Orange(huggingface) Among the companies who has product named Chinook who has a key person as Dennis Muilenburg ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:keyPeople . ?uri prop:products . ?uri rdf:type onto:Company}",Orange(huggingface) Was John Boehner the winner of the US House of Representatives elections in Ohio in 2010?,"PREFIX res: PREFIX prop: ASK WHERE { prop:incumbent }",Orange(huggingface) What are some wars fought when Chung Il Kwon as the country's prime minister?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:primeminister . ?uri onto:commander ?x . ?uri rdf:type onto:MilitaryConflict}",Orange(huggingface) In how many different places can I find companies which were founded in toronto?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:foundationPlace . ?x prop:locations ?uri . ?uri rdf:type onto:Place}",Orange(huggingface) List the destinations to which the airlines headquartered at the Gatwick Airport fly to?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:headquarters . ?x onto:destination ?uri . ?x rdf:type onto:Airline}",Orange(huggingface) How many railway lines go through the station maintained by Public transport authority of western australia?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:owningOrganisation . ?x onto:servingRailwayLine ?uri . ?uri rdf:type onto:RailwayLine}",Orange(huggingface) What organisations purpose is Peace?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:purpose . ?uri rdf:type onto:Organisation}",Orange(huggingface) Name the battle fought by the people which also fought in Levant ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:battles . ?x prop:battles ?uri . ?x rdf:type onto:Person}",Orange(huggingface) What actor starred in Splash and is married to Rita Wilson?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:starring ?uri. prop:spouse ?uri . }",Orange(huggingface) "Name the local authority of Trinity School, Brentwood ?","PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:localAuthority ?uri }",Orange(huggingface) What are the TV shows whose network is also known as the CW?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:sisterNames . ?uri prop:network ?x . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) Who was member of boards at Royal Society and Trinity House?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:board res:Freedom_of_the_City . ?uri onto:board res:Trinity_House . }",Orange(huggingface) Whose commanders are John Mc Ewen and Park Chunghee?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:commander . ?uri onto:commander . }",Orange(huggingface) What is the base currency of the country which operates the Marion Dufresne?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:operator ?x . ?x onto:currency ?uri . }",Orange(huggingface) For how many other teams have the former players of Boston Bruins played?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:formerTeam . ?x prop:playedFor ?uri . ?uri rdf:type onto:SportsTeam}",Orange(huggingface) "What is the state of the settlement, which is the sub assembly of Mohamedia, Tunisia ?","PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:isPartOf ?x . ?x onto:country ?uri . }",Orange(huggingface) Who is the owner of the bank where Thomas Secunda works?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:occupation ?x . ?x prop:owner ?uri . ?x rdf:type onto:Bank}",Orange(huggingface) Which country's leader is Giuseppe Bertello?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:leader . ?uri rdf:type onto:Country}",Orange(huggingface) Name some people who are buried in a place governed by the US Department of the Interior?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:governingBody . ?uri prop:restingplace ?x . ?uri rdf:type onto:Person}",Orange(huggingface) How many genres of games can I find on the commodore CDTV?,"PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:computingPlatform . ?x onto:genre ?uri . }",Orange(huggingface) Name the alma mater of the scientist famous for Email filtering ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:knownFor . ?x prop:almaMater ?uri . ?x rdf:type onto:Scientist}",Orange(huggingface) Which TNT show has Christopher Franke as artist?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:artist . ?uri prop:network . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) How many maintainers are there of the bridges that can carry motor vehicles over them?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:carries . ?x onto:maintainedBy ?uri . }",Orange(huggingface) Name a royalty whose one of the child is Augustus and is associated with Publius Servilius Vatia Isauricus?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:children . ?uri onto:associate . }",Orange(huggingface) To which company is Michael Dell a father company?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:owningCompany . ?uri rdf:type onto:Company}",Orange(huggingface) What is the currency of Kerguelen Islands?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Kerguelen_Islands onto:currency ?uri }",Orange(huggingface) Count the different causes of death of Christians.,"PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:religion . ?x onto:deathCause ?uri . }",Orange(huggingface) Who gave guest appearances on the show which is the next episode after the Bombshell one?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:previousWork . ?x prop:guests ?uri . ?x rdf:type onto:TelevisionEpisode}",Orange(huggingface) Which producer of the Eristoff is also the distributor of Bombay Sapphire?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Eristoff prop:manufacturer ?uri. res:Bombay_Sapphire prop:distributor ?uri}",Orange(huggingface) "List all the movies whose directors were born in Kenosha, Wisconsin?","PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:birthPlace . ?uri prop:director ?x . }",Orange(huggingface) Name the nearest city to Lake Victoria?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Lake_Victoria onto:nearestCity ?uri }",Orange(huggingface) How many different writers have written for Jump Square?,"PREFIX res: PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:magazine . ?x prop:author ?uri . }",Orange(huggingface) Name the television show whose voice is given by April Stewart and it's distributor is Broadcast syndication?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:voices . ?uri onto:distributor . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) In which countries were the Russian volleyball team players born?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:nationalteam . ?x prop:placeOfBirth ?uri . ?x rdf:type onto:Athlete}",Orange(huggingface) Where is the sister station of Al Arabiya 99 located?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:sisterStations . ?x prop:location ?uri . ?x rdf:type onto:RadioStation}",Orange(huggingface) What is the home town of the musical artist who is the current members of Slapstick?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:currentMembers ?x . ?x onto:hometown ?uri . ?x rdf:type onto:MusicalArtist}",Orange(huggingface) What are some tv shows created by Simon Fuller?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:creator . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) Which fictional character portrayed by Roger barton has Padm Amidala as family ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:portrayer . ?uri prop:family . ?uri rdf:type onto:FictionalCharacter}",Orange(huggingface) What are some famous companies founded in the US?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:foundationPlace . ?uri rdf:type onto:Company}",Orange(huggingface) "List the people educated at Harvard-Westlake School and has resting place as Palo Alto, California?","PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:almaMater . ?uri prop:restingPlace . ?uri rdf:type onto:Person}",Orange(huggingface) To which students did Ernest Rutherford advise to?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:doctoralAdvisor res:Ernest_Rutherford . }",Orange(huggingface) How many games are released for virtual consoles?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:computingPlatform . ?uri rdf:type onto:VideoGame}",Orange(huggingface) Which company developed the language designed by Lars Bak?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:designer . ?x prop:developer ?uri . ?x rdf:type onto:Language}",Orange(huggingface) "Which famous political figure appointed william cushing, and also founded Pittsburgh","PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Pittsburgh onto:founder ?uri. res:William_Cushing onto:appointer ?uri}",Orange(huggingface) How many games have a composer who worked for the Creatures?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:occupation . ?uri prop:composer ?x . ?uri rdf:type onto:VideoGame}",Orange(huggingface) Name the city whose province is Metropolitan City of Venice and has leader as Luigi Brugnaro?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:province res:Metropolitan_City_of_Venice . ?uri onto:leaderName res:Luigi_Brugnaro . }",Orange(huggingface) Name the movie whose director is Ridley Scott and it's music composer is Vangelis?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:director . ?uri onto:musicComposer . ?uri rdf:type onto:Film}",Orange(huggingface) In how many places can I find tombs of people who fought in the Norwalk Trainband?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:militaryUnit . ?x prop:restingplace ?uri . }",Orange(huggingface) List all important people of the non profit organization which has Hilary Clinton as a key person ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:keyPeople . ?x prop:keyPeople ?uri . ?x rdf:type onto:Non-ProfitOrganisation}",Orange(huggingface) Name the scientist whose doctoral supervisor's doctoral student is John Bowlby?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:doctoralStudent . ?uri prop:doctoralAdvisor ?x . ?uri rdf:type onto:Scientist}",Orange(huggingface) Give me a count of musicians who play an instrument developed by George Beauchamp?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:keyPeople . ?uri onto:instrument ?x . ?uri rdf:type onto:MusicalArtist}",Orange(huggingface) Name the basketball players drafted by Los Angeles Clippers ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:draftTeam . ?uri rdf:type onto:BasketballPlayer}",Orange(huggingface) "List the alma mater of the congressmen who attended Nashville, Tennessee ?","PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:almaMater . ?x onto:almaMater ?uri . ?x rdf:type onto:Congressman}",Orange(huggingface) How many games have a publisher based in US?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:location . ?uri onto:publisher ?x . ?uri rdf:type onto:VideoGame}",Orange(huggingface) List all the layouts of the automobile whose one of the layout is four-wheel-drive layout ?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:layout . ?x onto:layout ?uri . ?x rdf:type onto:Automobile}",Orange(huggingface) Did Annie Leibovitz do the cover of The Road Ahead?,"PREFIX res: PREFIX onto: ASK WHERE { onto:coverArtist }",Orange(huggingface) Name books with publisher as Francisco de Robles and writer as Miguel de Cervantes ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:publisher . ?uri prop:author . ?uri rdf:type onto:Book}",Orange(huggingface) In which state can I find Burr Truss styled bridges?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:style . ?x onto:state ?uri . ?x rdf:type onto:Bridge}",Orange(huggingface) Was christina crawford trained by Booker T?,"PREFIX res: PREFIX prop: ASK WHERE { prop:trainer }",Orange(huggingface) Name the river whose mouth mountain is Southend-on-Sea and mouth place is Essex?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:mouthMountain . ?uri onto:mouthPlace . ?uri rdf:type onto:River}",Orange(huggingface) What is the sea connected to Oulu and Turku?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri prop:cities . ?uri prop:cities . ?uri rdf:type onto:Sea}",Orange(huggingface) "What is the american football league whose champion is from Kansas City, Missouri?","PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:city . ?uri prop:champion ?x . ?uri rdf:type onto:AmericanFootballLeague}",Orange(huggingface) Which officers fought in the war of Siege of Fort Recovery?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:battle . ?uri rdf:type onto:OfficeHolder}",Orange(huggingface) Name the TV shows with network as NBC and company as Paramount Television ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:network . ?uri prop:company . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) In which states can I find Truss bridges?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:style . ?x onto:state ?uri . ?x rdf:type onto:Bridge}",Orange(huggingface) What ethinicity of Linda Hogan is also the state of origin of Holmes Colbert?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Linda_Hogan onto:ethnicity ?uri. res:Holmes_Colbert onto:stateOfOrigin ?uri}",Orange(huggingface) Who is the writer of The Sandman (Vertigo) ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:writers ?uri }",Orange(huggingface) Which science fiction show has Steven Moffat as executive producer ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:executiveProducer . ?uri prop:genre . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) Count all that was built by a company whose leader is Kazuo Hirai?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:keyPeople . ?uri onto:manufacturer ?x . }",Orange(huggingface) Who has given guest appearances on the TV Episodes whose music was done by Mama Makes 3?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:music . ?x prop:guests ?uri . ?x rdf:type onto:TelevisionEpisode}",Orange(huggingface) What is the purpose of Maharashtra Chess Association ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Maharashtra_Chess_Association prop:purpose ?uri. res:PyChess onto:genre ?uri}",Orange(huggingface) Where did the 2015 MLS All-Star Game take place?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:city ?uri }",Orange(huggingface) Name the sitcoms whose network's owning company is Chris-Craft Industries?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:owningCompany . ?uri onto:network ?x . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) Name the television show whose creator is Simon Fuller and presented by Ryan Seacrest?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:creator . ?uri onto:presenter . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) Who owns the bank where Fabio Mercurio works?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:institution ?x . ?x prop:owner ?uri . ?x rdf:type onto:Bank}",Orange(huggingface) Count the number of movies whose distributor is RKO Pictures and director of photography is Gregg Toland?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:distributor . ?uri onto:cinematography }",Orange(huggingface) Name the mountain located in California and has parent peak as Nevado de Toluca ?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:locatedInArea . ?uri onto:parentMountainPeak . ?uri rdf:type onto:Mountain}",Orange(huggingface) Name some dishes made with flowering plants.,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:division . ?uri onto:ingredient ?x . ?uri rdf:type onto:Food}",Orange(huggingface) "Count the units garrisoned at Arlington County, Virginia.","PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:garrison . ?uri rdf:type onto:MilitaryUnit}",Orange(huggingface) Who all have been judges on CTV Network's shows?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:network . ?x prop:judges ?uri . ?x rdf:type onto:TelevisionShow}",Orange(huggingface) Which fictional character portrayed by Roger barton has Darth Vader as family member ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:family . ?uri prop:portrayer . ?uri rdf:type onto:FictionalCharacter}",Orange(huggingface) How many thesis were supervised by Ernest Rutherford?,"PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:doctoralAdvisor . }",Orange(huggingface) Name a river starting from arequipa region?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:sourceRegion . ?uri rdf:type onto:River}",Orange(huggingface) What sports are played in schools in Vashi?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:city . ?x onto:sport ?uri . ?x rdf:type onto:School}",Orange(huggingface) Which source of Water resources management in El Salvador is also the nation of the Sierra del Merendn?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Water_resources_management_in_El_Salvador prop:sourceCountry ?uri. res:Sierra_del_Merendón onto:country ?uri}",Orange(huggingface) Which serving railway line of the Daund Junction railway station was also the place where 99 (2009 film) was recorded?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:servingRailwayLine ?uri. prop:recorded ?uri}",Orange(huggingface) Who wrote the musical whose composer is Emil Dean Zoghby?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:musicBy . ?x onto:author ?uri . ?x rdf:type onto:Musical}",Orange(huggingface) Give me the sitcoms where Eliza Schneider and Isaac Hayes gave voice?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri prop:voices . ?uri prop:voices . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) Name the fictional character whose voice's animator is Hardie Gramatky?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:animator . ?uri onto:voice ?x . ?uri rdf:type onto:FictionalCharacter}",Orange(huggingface) List the awards won by the fashion designer which have been recognized by Tennessee State Museum ?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:award . ?x onto:award ?uri . ?x rdf:type onto:FashionDesigner}",Orange(huggingface) How many services are there of the companies whose services is Web hosting service ?,"PREFIX res: PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:services . ?x prop:services ?uri }",Orange(huggingface) How many famous people are from the Filipinos?,"PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:stateOfOrigin . }",Orange(huggingface) List everything in which saxophone players have been cast.,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:instrument res:Saxophone . ?uri prop:starring ?x . }",Orange(huggingface) Which river's source place is Gloucestershire and has mouth in North Sea?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:sourcePlace . ?uri onto:riverMouth . ?uri rdf:type onto:River}",Orange(huggingface) From what american football teams did Carlos Emmons play?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:formerTeam ?uri }",Orange(huggingface) Which BBC's TV show is related with the Sarah Jane Adventures?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:network . ?uri onto:related . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) Which university is led by Jay Gogue?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:president . ?uri rdf:type onto:University}",Orange(huggingface) Where does the river end which starts in Richmond Park?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:sourcePlace . ?x prop:mouthLocation ?uri . ?x rdf:type onto:Stream}",Orange(huggingface) Which Harris County based company is a subsidiary of Tandem Computers?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:locationCity . ?uri onto:subsidiary . ?uri rdf:type onto:Company}",Orange(huggingface) "Who is the child of John Tyler, Sr.?","PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:child ?uri }",Orange(huggingface) Which city's neighboring municipalities are Lancy and Pregny-Chambsy?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:neighboringMunicipalities . ?uri onto:neighboringMunicipality . ?uri rdf:type onto:Location}",Orange(huggingface) Where was the battle fought where 2nd Foreign Infantry Regiment participated?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:battle ?x . ?x onto:territory ?uri . ?x rdf:type onto:MilitaryConflict}",Orange(huggingface) Who narrated the albums in which Harry Nilsson performed?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:artist . ?x prop:narrated ?uri . ?x rdf:type onto:Album}",Orange(huggingface) What are on the borders of Shimsa Plateau?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Shimōsa_Plateau onto:border ?uri }",Orange(huggingface) Who all did their high school in Denbigh high School?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:highSchool }",Orange(huggingface) What are all the countires where food related to tuna salad is consumed?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:related res:Tuna_salad . ?x prop:country ?uri . }",Orange(huggingface) What are some relatives of the people who fought in Operation Barbarossa?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:battle . ?x onto:relation ?uri . ?x rdf:type onto:Person}",Orange(huggingface) Which comic characters were created by Paul Dini?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:creators . ?uri rdf:type onto:ComicsCharacter}",Orange(huggingface) What is the place of birth of the stars of Auto Shankar ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:starring ?x . ?x onto:birthPlace ?uri . }",Orange(huggingface) Name the military units whose command structure's headquarters is The Pentagon?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:headquarters . ?uri onto:commandStructure ?x . ?uri rdf:type onto:MilitaryUnit}",Orange(huggingface) In how many places has Don R. Berlin worked?,"PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { onto:employer ?uri . }",Orange(huggingface) Name the TV shows whose developer is J. Michael Straczynski and executive producer is Douglas Netter?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:developer . ?uri onto:executiveProducer . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) How many books are written by the author who is famous for Novelas Ejemplares?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:notableWork . ?uri onto:author ?x . ?uri rdf:type onto:Book}",Orange(huggingface) Did the New Way party merge in the One Israel party?,"PREFIX res: PREFIX onto: ASK WHERE { onto:mergedIntoParty }",Orange(huggingface) From which country is Lawrence Okoye's nationality?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Lawrence_Okoye prop:nationality ?uri }",Orange(huggingface) List some pupils of National Science Medal winning scientists?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:prizes . ?x prop:doctoralStudents ?uri . ?x rdf:type onto:Scientist}",Orange(huggingface) Count the number of sports played by the school which also plays Association football ?,"PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:sport . ?x onto:sport ?uri }",Orange(huggingface) In which fields are both Paul Demiville and Sylvain levi experts?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Paul_Demiéville prop:fields ?uri. res:Sylvain_Lévi prop:fields ?uri . }",Orange(huggingface) "For all the senators who once studied in Sturm College of Law, give their burial place?","PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:almaMater . ?x prop:restingplace ?uri . ?x rdf:type onto:Senator}",Orange(huggingface) List the people who were born in Gelnhausen and graduated from Pepperdine University?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:birthPlace . ?uri prop:education . ?uri rdf:type onto:Person}",Orange(huggingface) Who starred in Awakening and fifety five days at peknig ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:starring ?uri. onto:starring ?uri . }",Orange(huggingface) Name the movies distributed by Warner Bros. and directed by Ridley Scott?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:distributor . ?uri prop:director . ?uri rdf:type onto:Film}",Orange(huggingface) Where are the tombs of alumni of national academy museum and school?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:award res:National_Academy_Museum_and_School . ?x onto:restingPlace ?uri . }",Orange(huggingface) What is the appliance build jointly by Sony and Asus?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:manufacturer . ?uri onto:manufacturer . ?uri rdf:type onto:InformationAppliance}",Orange(huggingface) Name the profession of Oamr D Conger for which Jack Ryan was also nominated?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:nominee ?uri. prop:order ?uri}",Orange(huggingface) Name the TV show whose composer is Judy Hart Angelo and company as Paramount Television ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:composer . ?uri prop:company . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) Where did the people die who were known for Young Life?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:knownFor . ?x onto:deathPlace ?uri . ?x rdf:type onto:Person}",Orange(huggingface) What religion are the characters of Absolutely Fabulous from?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:series . ?x onto:religion ?uri . ?x rdf:type onto:FictionalCharacter}",Orange(huggingface) Which politician's son is buried in Metairie Cementery?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:placeofburial . ?uri onto:child ?x . ?uri rdf:type onto:OfficeHolder}",Orange(huggingface) what are some devices made by asus?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:manufacturer . ?uri rdf:type onto:InformationAppliance}",Orange(huggingface) What is the largest city of Pulau Ubin?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Pulau_Ubin onto:largestCity ?uri }",Orange(huggingface) "Who are some american football players whose high school is Oktoc, Mississippi?","PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:highSchool . ?uri rdf:type onto:AmericanFootballPlayer}",Orange(huggingface) "Where does the road starting from Madison, Wisconsin end?","PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:routeEnd . ?x onto:routeStart ?uri . ?x rdf:type onto:Road}",Orange(huggingface) what are the nicknames of the people who are in Ekstraliga?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:league . ?x prop:nickname ?uri . }",Orange(huggingface) Does Cohoes a junction on the NY State Route 470?,"PREFIX res: PREFIX onto: ASK WHERE { onto:routeJunction }",Orange(huggingface) Is GIMP written in GTK+?,"PREFIX res: PREFIX prop: ASK WHERE { prop:programmingLanguage }",Orange(huggingface) Who is the fictional character who starred in The Dognapper?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:voice . ?uri rdf:type onto:FictionalCharacter}",Orange(huggingface) How many different layouts do cars designed by Oliver Boulay have?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:designer . ?x onto:layout ?uri . }",Orange(huggingface) Who is the writer of He's a Pirate ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:writer ?uri }",Orange(huggingface) "List the primeministers of Victor Hope, 2nd Marquess of Linlithgow ?","PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:primeminister ?uri }",Orange(huggingface) In how many countries are people born who play cricket?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:occupation . ?x onto:stateOfOrigin ?uri . ?uri rdf:type onto:Country}",Orange(huggingface) Give me a count of mammals which have their order as Primate?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:order . ?uri rdf:type onto:Mammal}",Orange(huggingface) Give me a count of movies whose music composer is Bernard Herrmann?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:musicComposer . ?uri rdf:type onto:Film}",Orange(huggingface) "What was the book that lead to Sagan's Cosmos, about?","PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:subsequentWork . ?x prop:subject ?uri . ?x rdf:type onto:Book}",Orange(huggingface) Which hockey team is coached by mike babcock?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:headCoach . ?uri rdf:type onto:HockeyTeam}",Orange(huggingface) List the Sci-fi TV shows with theme music given by Ron Grainer?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:genre . ?uri prop:themeMusicComposer . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) In what tv shows did Jason Carter act?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:starring . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) Where is the rival school of Somerset Berkeley Regional High school?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:rival . ?x onto:region ?uri . ?x rdf:type onto:School}",Orange(huggingface) Through which counties does the road go which starts at the Port Klang?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:routeStart . ?x onto:county ?uri . ?x rdf:type onto:Road}",Orange(huggingface) What awards are won by the screenwriter of Lucky You?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:screenplay ?x . ?x onto:award ?uri . }",Orange(huggingface) How many kings and queens have died in the Arabian Peninsula?,"PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:deathPlace . }",Orange(huggingface) What team has players born in Dominican Republic?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:birthPlace res:Dominican_Republic . ?x onto:team ?uri . }",Orange(huggingface) Does the hudson river flow into the lower manhattan?,"PREFIX res: PREFIX onto: ASK WHERE { res:Hudson_River onto:mouthMountain res:Lower_Manhattan }",Orange(huggingface) Which country were the people from who became famous for the Ramon Mangsaysay Award?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:knownFor . ?x onto:stateOfOrigin ?uri . ?x rdf:type onto:Person}",Orange(huggingface) Who is the relative of Jim Farley?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:relatives ?uri }",Orange(huggingface) List the starring of the movies whose label is T-Series ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:label . ?x prop:starring ?uri . ?x rdf:type onto:Film}",Orange(huggingface) Name a person who works in Open Society Foundation and has wife named Susan Weber Soros ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:employer . ?uri prop:spouse . ?uri rdf:type onto:Person}",Orange(huggingface) Which team's players have played in the national hockey league?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:league . ?x onto:team ?uri . ?x rdf:type onto:Athlete}",Orange(huggingface) Who trained the wrestlers who are billed in Wisconsin?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:billed . ?x onto:trainer ?uri . ?x rdf:type onto:Wrestler}",Orange(huggingface) What is the deathplace of the Anatoly Kharlampiyev which is also the death place of Lyudmila Buldakova?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Anatoly_Kharlampiyev prop:deathPlace ?uri. res:Lyudmila_Buldakova prop:deathPlace ?uri . }",Orange(huggingface) "Name the common architecture of the Grand Serail of Aleppo and Shaheed Minar, Kolkata ?","PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:architecturalStyle ?uri. onto:architecturalStyle ?uri . }",Orange(huggingface) Was Let it Be written by Ringo Starr?,"PREFIX res: PREFIX onto: ASK WHERE { onto:musicBy }",Orange(huggingface) What are shows whose theme music composer's home town is New York?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:hometown . ?uri prop:themeMusicComposer ?x . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) List the birthplace of the medicians who studied in Harvard.,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:institution . ?x onto:birthPlace ?uri . ?x rdf:type onto:Medician}",Orange(huggingface) Who acted in the work written by Colin Brake?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:writer . ?x prop:starring ?uri . ?x rdf:type onto:Work}",Orange(huggingface) How many mountain ranges are located in the Canton of Fribourg?,"PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:locatedInArea . ?x onto:mountainRange ?uri . }",Orange(huggingface) What are the airlines whose hub is San Francisco International Airport?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:hubs . ?uri rdf:type onto:Airline}",Orange(huggingface) What is the predecessor of the automobile which is the related of Cadillac Fleetwood?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:related ?x . ?x onto:predecessor ?uri . ?x rdf:type onto:Automobile}",Orange(huggingface) What is the official residence of the Christopher Daz Figuero which is also the state of the Cruce a Nado Internacional,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Christopher_Díaz_Figueroa prop:residence ?uri. res:Cruce_a_Nado_Internacional onto:country ?uri}",Orange(huggingface) Count everyone who studied at an institute which are in Suburbs?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:campus . ?uri prop:education ?x . }",Orange(huggingface) List the awards won by the cinematographer of Mickey's Mellerdrammer?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:cinematography ?x . ?x onto:award ?uri . }",Orange(huggingface) Who is the player who plays for the team that has the Michigan Stadium?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:stadium . ?uri prop:currentteam ?x . ?uri rdf:type onto:Athlete}",Orange(huggingface) What is the television show whose sculptor is C. E. Webber and composed by Murray Gold?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:creator . ?uri onto:composer . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) What is the birthplace of the Ferrel Harris which is also resting palce of Green Wix Unthank?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Ferrel_Harris prop:birthplace ?uri. res:Green_Wix_Unthank onto:restingPlace ?uri}",Orange(huggingface) Which battles were fought under the president when Chung Won Shik was the prime minister?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:primeminister . ?x prop:battles ?uri . ?x rdf:type onto:President}",Orange(huggingface) Who are the golf players whose college is Arizona State Sun Devils?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:college . ?uri rdf:type onto:GolfPlayer}",Orange(huggingface) "How many awards have been received by graduates of University of Melbourne, Faculty of VCA & MCM?","PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:training . ?x onto:award ?uri . }",Orange(huggingface) "Name the nearest city to the historic place which has Englewood, Colorado as one of them ?","PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:nearestCity . ?x onto:nearestCity ?uri . ?x rdf:type onto:HistoricPlace}",Orange(huggingface) List the people who were the first one to climb a mountain in California?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:locatedInArea . ?x onto:firstAscentPerson ?uri . ?x rdf:type onto:Mountain}",Orange(huggingface) List the judge of the TV show whose one of the judge is Ludacris ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:judges . ?x prop:judges ?uri . ?x rdf:type onto:TelevisionShow}",Orange(huggingface) Is Nikolai Morozov the former coach of Stanislav Morozov?,"PREFIX res: PREFIX onto: ASK WHERE { onto:formerCoach }",Orange(huggingface) Which writer of the Snaman is also the writer of Neverwher ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:writers ?uri. onto:writer ?uri}",Orange(huggingface) Which creator of Theme Time Radio Hour has also given the musical score of the The Times They Are a-Changin' (musical)?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:creator ?uri. onto:musicBy ?uri}",Orange(huggingface) name the races where bobby beasley took part?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Bobby_Beasley onto:race ?uri }",Orange(huggingface) Where is Oskar Blues located?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Oskar_Blues_Brewery prop:location ?uri }",Orange(huggingface) What is the city nearest to the historic place whose architect is Joseph Dion?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:architect . ?x onto:nearestCity ?uri . ?x rdf:type onto:HistoricPlace}",Orange(huggingface) Name the scientist whose supervisor also supervised Mary Ainsworth?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:doctoralStudents . ?uri prop:doctoralAdvisor ?x . ?uri rdf:type onto:Scientist}",Orange(huggingface) Which TV show's producer is Stephen E. Ambrose and company is DreamWorks Television?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:producer . ?uri onto:company . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) List bacteria whose order (taxonomy) is Bacillales and domain is Bacteria?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:order . ?uri prop:domain . ?uri rdf:type onto:Bacteria}",Orange(huggingface) List the shrines of the saint whose one of the shrine is Ponza?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:majorShrine . ?x onto:majorShrine ?uri . ?x rdf:type onto:Saint}",Orange(huggingface) "Name the people whose residence is Beverly Hills, California?","PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:residence . ?uri rdf:type onto:Person}",Orange(huggingface) "Who is the opponent of United States House of Representatives elections in Ohio, 2010 ?","PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:opponent ?uri }",Orange(huggingface) "Where did the athlete start his career, who did his highschool in Red Lion Area School District?","PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:highschool . ?x prop:debutteam ?uri . ?x rdf:type onto:Athlete}",Orange(huggingface) In how many different places are Brown haired models living?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:hairColor . ?x onto:residence ?uri . }",Orange(huggingface) Name the military conflict whose commander was Colin Powell and took place in israel ?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:commander . ?uri onto:place . ?uri rdf:type onto:MilitaryConflict}",Orange(huggingface) What are some books whose cover illustration is designed by Marshall Arisman?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:coverArtist . ?uri rdf:type onto:Book}",Orange(huggingface) What is the fictional character which has Clan McDuck and Ludwig Von Draken as relatives?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri prop:relatives . ?uri prop:relatives . ?uri rdf:type onto:FictionalCharacter}",Orange(huggingface) Who is the distributer of Rev ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:distributor ?uri }",Orange(huggingface) List the series of the books whose author is K. W. Jeter.,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:author . ?x onto:series ?uri . ?x rdf:type onto:Book}",Orange(huggingface) Which coach of England national under 21 footbal team is also the coach of Aston Villa F.C season ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:coach ?uri. prop:name ?uri}",Orange(huggingface) List all the operators of the train who operates in Budapest ?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:operator . ?x onto:operator ?uri . ?x rdf:type onto:Train}",Orange(huggingface) What is the leader name of the settlements whose governing body is Municipal council?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:governingBody . ?x onto:leaderName ?uri . ?x rdf:type onto:Settlement}",Orange(huggingface) Give me some series whose network's owning company is Warner Bros. Television?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:owningCompany . ?uri onto:network ?x . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) What are the towns who have Thesaban system?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:settlementType . ?uri rdf:type onto:Town}",Orange(huggingface) "Which political party of Arunachal Pradesh Legislative Assembly election, 2014 was the leader of Rishikesh ?","PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:party ?uri. onto:leaderName ?uri}",Orange(huggingface) What is used as money for French Southern and Antarctic Lands is also the product of the Karafarin Bank ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:French_Southern_and_Antarctic_Lands onto:currency ?uri. res:Karafarin_Bank onto:product ?uri}",Orange(huggingface) Where did chancellor served by Rudolf Kirchschlger die?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Rudolf_Kirchschläger prop:chancellor ?x . ?x onto:deathPlace ?uri . }",Orange(huggingface) Who produced the TV shows for Fremantle Media?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:company . ?x onto:producer ?uri . ?x rdf:type onto:TelevisionShow}",Orange(huggingface) Which company's cars are assembled in Iran?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:assembly . ?x prop:parentCompany ?uri . ?x rdf:type onto:Automobile}",Orange(huggingface) Whose mayors are affiliated with Christen-Democratisch en Vlaams?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:affiliation . ?uri onto:leaderName ?x . }",Orange(huggingface) What fictional characters are American Pekin duck species?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:species res:American_Pekin_duck }",Orange(huggingface) Give me the name of the organization hqed at Chaeng Watthana Govt Complex?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:headquarter . ?x prop:agencyName ?uri . ?x rdf:type onto:Organisation}",Orange(huggingface) How many awards have graduates from the University of Queensland earned?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:almaMater . ?x prop:awards ?uri . }",Orange(huggingface) What are the movies whose distributor's headquarters is New York?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:headquarters . ?uri prop:distributor ?x . ?uri rdf:type onto:Film}",Orange(huggingface) To which families does the Koolakamba belong?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Koolakamba onto:family ?uri }",Orange(huggingface) Which uni did Joshua A. Siegel attend ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Joshua_A._Siegel prop:education ?uri }",Orange(huggingface) Who owns the tunnels operated by the Massachusetts Department of Transportation?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:operatedBy . ?x prop:owner ?uri . ?x rdf:type onto:RoadTunnel}",Orange(huggingface) Which new Mexico based company produces Surface ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:foundation . ?uri onto:product . ?uri rdf:type onto:Company}",Orange(huggingface) Count the number of judges who've come on CTV network shows.,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:network . ?x prop:judges ?uri . }",Orange(huggingface) What is the sea whose cities are Gdansk and Oulu?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri prop:cities . ?uri prop:cities . ?uri rdf:type onto:Sea}",Orange(huggingface) How many cities are around the sea which flows into the Atlantic?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:inflow . ?x prop:cities ?uri . ?uri rdf:type onto:City}",Orange(huggingface) Count the number of musical work which were sold by Sony Music?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:label . ?uri prop:music ?x . ?uri rdf:type onto:MusicalWork}",Orange(huggingface) Who holds stock in the railway lines ending in Washington DC?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:routeEnd . ?x prop:owner ?uri . ?x rdf:type onto:RailwayLine}",Orange(huggingface) Count the movies directed by Tim Burton and music composer Danny Elfman ?,"PREFIX res: PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:music . ?uri prop:director }",Orange(huggingface) "Name the river whose source region is North-Western Province, Zambia and source location is Ikelenge District?","PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:sourceRegion . ?uri prop:sourceLocation . ?uri rdf:type onto:River}",Orange(huggingface) Which first driver of the European Grand Prix 1993 has also finished first in the 1985 Portuguese Grand Prix?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:1993_European_Grand_Prix prop:firstDriver ?uri. res:1985_Portuguese_Grand_Prix prop:firstDriver ?uri . }",Orange(huggingface) What is the debut team of the gridiron football player who coached the 1931 Staten Island Stapletons season ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:coach ?x . ?x prop:debutteam ?uri . ?x rdf:type onto:GridironFootballPlayer}",Orange(huggingface) Who is the producer of the song which is the previous work of He's a Liar ?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:previousWork ?x . ?x onto:producer ?uri . ?x rdf:type onto:Song}",Orange(huggingface) Which animator of The Skeleton Dance is also the animator of the Tommy Tucker's Tooth ?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:animator ?uri. prop:animator ?uri}",Orange(huggingface) What is the largest city of the country where P. Sathyanarayanan was born?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:birthplace ?x . ?x onto:largestCity ?uri . ?x rdf:type onto:Country}",Orange(huggingface) Which television show's network is BBC HD and is related to Doctor Who Confidential?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:network . ?uri onto:related . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) Name the debut team of Dan Otero?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Dan_Otero onto:debutTeam ?uri }",Orange(huggingface) How many states does the Pioneer corporation operate in?,"PREFIX res: PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { prop:country ?uri . }",Orange(huggingface) For whom did Michael Springer palyed for which also had a former student named Donald Brooks?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { res:Michael_Springer prop:team ?uri. res:Donald_Brooks prop:education ?uri}",Orange(huggingface) Where is the predecessor of john waldo from?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:successor res:John_B._Waldo . ?x prop:state ?uri . }",Orange(huggingface) Which countries have the members of Ukrainian ministry of internal affairs swore their oath?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { ?x prop:branch . ?x prop:allegiance ?uri . }",Orange(huggingface) How many races have the horses bred by Jacques Van't Hart participated in?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:breeder . ?x prop:race ?uri . }",Orange(huggingface) How many different mascots are there of the NCAA teams?,"PREFIX res: PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:athletics . ?x prop:mascot ?uri . }",Orange(huggingface) Name the university whose teams have been managed by Albertin Montoya?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:managerclubs ?x . ?x onto:university ?uri . ?x rdf:type onto:SportsTeam}",Orange(huggingface) "Where was Henri, Duke of Rohan laid to rest?","PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:placeOfBurial ?uri }",Orange(huggingface) What is the nationality of the David King-Wood and John Steed ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:nationality ?uri. prop:nationality ?uri . }",Orange(huggingface) List the awards given to the race horses bred by Willis Sharpe Kilmer.,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:breeder . ?x onto:honours ?uri . ?x rdf:type onto:RaceHorse}",Orange(huggingface) What are the regions in which the distributor of Secrets and Lies serves ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:distributor ?x . ?x onto:regionServed ?uri . }",Orange(huggingface) What is the ethnicity of Ted Falon?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Ted_Failon onto:ethnicity ?uri }",Orange(huggingface) What novels belong to the genre of Utopian and dystopian fiction?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:literaryGenre res:Utopian_and_dystopian_fiction }",Orange(huggingface) In which state does the ambassador who is related with J Bennett Johnston live?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:J._Bennett_Johnston onto:relation ?x . ?x prop:state ?uri . }",Orange(huggingface) Who is the scientist whose doctoral student is Erich Bagge?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:doctoralStudent . ?uri rdf:type onto:Scientist}",Orange(huggingface) Who is the narrator of The Price of Beauty?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:The_Price_of_Beauty onto:narrator ?uri }",Orange(huggingface) What is the alma mater of the senator who is the successor of Warren Magnuson ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:successor ?x . ?x prop:almaMater ?uri . ?x rdf:type onto:Senator}",Orange(huggingface) In which country does the publishing house exist which was cofounded by Panos Loannides?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:founder . ?x prop:country ?uri . ?x rdf:type onto:Publisher}",Orange(huggingface) Enumerate the cars related to the ones assembled in Toluca?,"PREFIX res: PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:assembly . ?x prop:related ?uri . }",Orange(huggingface) Which animal is the mascot of the 1502nd Infantry Brigade (Ready Reserve) and Galatasaray Handball Team ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:mascot ?uri. prop:mascot ?uri . ?uri rdf:type onto:Animal}",Orange(huggingface) Who is known for the War of 1812 and Battle of the Thames?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:knownFor res:War_of_1812 . ?uri onto:knownFor res:Battle_of_the_Thames . }",Orange(huggingface) "What has been founded in the state that Denton county, Texas is a part of?","PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:part . ?uri onto:foundationPlace ?x . }",Orange(huggingface) "Name the team Ramiro Pea played for, which was also the first team of Steve Ontiveros?","PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:debutteam ?uri. onto:team ?uri}",Orange(huggingface) List all the members of the organization whose one of the members is Bangladesh ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:membership . ?x prop:membership ?uri . ?x rdf:type onto:Organisation}",Orange(huggingface) List the subsequent work of the albums whose one of the subsequent work is Planet Waves?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:subsequentWork . ?x onto:subsequentWork ?uri . ?x rdf:type onto:Album}",Orange(huggingface) Name the television show distributed by Broadcast syndication and voiced by Eliza Schneider?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:distributor . ?uri prop:voices . ?uri rdf:type onto:TelevisionShow}",Orange(huggingface) How many awards have been given to Italians?,"PREFIX res: PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:birthPlace . ?x prop:awards ?uri . }",Orange(huggingface) Which current players once played for Toronto argonauts?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:formerTeam . ?uri rdf:type onto:AmericanFootballPlayer}",Orange(huggingface) Who is the developer of the software which is produced by Claris ?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:products ?x . ?x onto:developer ?uri . ?x rdf:type onto:Software}",Orange(huggingface) "Who has his resting place at Plymouth, Vermont and office at Massachusetts House of Representatives?","PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri onto:restingPlace . ?uri prop:office . }",Orange(huggingface) How many labels sign up progressive rock artists?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:genre . ?x onto:recordLabel ?uri . }",Orange(huggingface) How many people currently play for the NYC FC?,"PREFIX res: PREFIX prop: SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:currentclub . }",Orange(huggingface) Name presidents of the schools which have queen noor of Jordan as one of them ?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:president . ?x onto:president ?uri . ?x rdf:type onto:School}",Orange(huggingface) What is the birth place of the children of Miguel Garca Granados?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Miguel_García_Granados prop:children ?x . ?x onto:birthPlace ?uri . }",Orange(huggingface) What was the university of the rugby player who coached the Stanford rugby teams during 1906-1917?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:1906–17_Stanford_rugby_teams prop:headcoach ?x . ?x onto:university ?uri . }",Orange(huggingface) Who composed the lyrics of Holler If Ya Hear Me ?,"PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE { prop:lyrics ?uri }",Orange(huggingface) Michael Deeley produce how many movies?,"PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:producer . }",Orange(huggingface) How many rivers start in an English speaking country?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:officialLanguage . ?uri onto:sourceCountry ?x . ?uri rdf:type onto:River}",Orange(huggingface) How many people used to play for Toronto Argonauts?,"PREFIX res: PREFIX onto: SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:formerTeam . }",Orange(huggingface) In which state does the university which is the alma mater of Mateusz Morawiecki lie?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:almaMater ?x . ?x prop:state ?uri . ?x rdf:type onto:University}",Orange(huggingface) What is the location city of the Denver Broncos which is also place of birth of the William C. Cramer?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Denver_Broncos onto:locationCity ?uri. res:William_C._Cramer prop:placeOfBirth ?uri}",Orange(huggingface) "What does the bridge go over, which is in Katima Mulilo?","PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:locatedInArea . ?x prop:crosses ?uri . ?x rdf:type onto:Bridge}",Orange(huggingface) Which newspapers are owned by organizations located in Oslo?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x onto:location res:Oslo . ?uri prop:owners ?x . }",Orange(huggingface) Who is venerated in Judaism and Islam?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?uri onto:veneratedIn res:Judaism . ?uri onto:veneratedIn res:Islam . }",Orange(huggingface) What is the color of Xocolatlite ?,"PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { res:Xocolatlite onto:colour ?uri }",Orange(huggingface) Who is the builder of the Stadium of Costa Rica women's national football team?,"PREFIX rdf: PREFIX res: PREFIX onto: SELECT DISTINCT ?uri WHERE { onto:stadium ?x . ?x onto:builder ?uri . ?x rdf:type onto:Stadium}",Orange(huggingface) Name the billed states of the wrestlers who have also billed state Georgia?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:billed . ?x prop:billed ?uri . ?x rdf:type onto:Wrestler}",Orange(huggingface) "What are some employees of Uni of California, santa cruz?","PREFIX res: PREFIX prop: SELECT DISTINCT ?uri WHERE {?uri prop:employer . }",Orange(huggingface) What awards have been given to people schooled in the Everton park state high?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?x prop:education . ?x prop:awards ?uri . ?x rdf:type onto:Person}",Orange(huggingface) Did Chant Mas originate in West Africa?,"PREFIX res: PREFIX onto: ASK WHERE { res:Chanté_mas onto:stylisticOrigin res:West_Africa }",Orange(huggingface) List books authored by Miguel de Cervantes and published by Francisco de Robles?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:author . ?uri onto:publisher . ?uri rdf:type onto:Book}",Orange(huggingface) What band made The trial and One of these days song?,"PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE { prop:artist ?uri. onto:musicalArtist ?uri . }",Orange(huggingface) Which military people served their allegiance to Union (American Civil War)?,"PREFIX rdf: PREFIX res: PREFIX prop: PREFIX onto: SELECT DISTINCT ?uri WHERE {?uri prop:allegiance . ?uri rdf:type onto:MilitaryPerson}",Orange(huggingface)