[{"qid": 148, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Which universities in the Association of American Universities have more staff than the University of Chicago?", "answer": [["name"], []], "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": [], "topic_level": true, "sql": "SELECT name FROM AssociationofAmericanUniversities WHERE staffnumber > (SELECT staffnumber FROM AssociationofAmericanUniversities WHERE name = 'University of Chicago');"}, {"qid": 149, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest university in the Association of American Universities?", "answer": [["name"], []], "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": [], "topic_level": true, "sql": "SELECT name FROM AssociationofAmericanUniversities ORDER BY startyear ASC LIMIT 1;"}, {"qid": 150, "topic": "Association of American Universities", "type": "Aggregation", "category": "Statistical Reasoning", "question": "How many universities in the Association of American Universities were founded before 1900?", "answer": [["COUNT(*)"], [[0]]], "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": [], "topic_level": true, "sql": "SELECT COUNT(*) FROM AssociationofAmericanUniversities WHERE startyear < 1900;"}, {"qid": 151, "topic": "Association of American Universities", "type": "Distribution Compliance", "category": "Statistical Reasoning", "question": "How many universities in the Association of American Universities are located in California?", "answer": [["COUNT(*)"], [[0]]], "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": [], "topic_level": true, "sql": "SELECT COUNT(*) FROM AssociationofAmericanUniversities WHERE location LIKE '%California%';"}, {"qid": 152, "topic": "Association of American Universities", "type": "Correlation Analysis", "category": "Statistical Reasoning", "question": "Is there a correlation between the number of staff and the founding year of the universities in the Association of American Universities?", "answer": [], "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": [], "topic_level": true, "sql": "SELECT CORR(staffnumber, startyear) FROM AssociationofAmericanUniversities;"}, {"qid": 153, "topic": "Association of American Universities", "type": "Variance Analysis", "category": "Statistical Reasoning", "question": "What is the variance in the number of staff among the universities in the Association of American Universities?", "answer": [], "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": [], "topic_level": true, "sql": "SELECT VARIANCE(staffnumber) FROM AssociationofAmericanUniversities;"}, {"qid": 154, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Which universities have a younger president than Harvard University within the Association of American Universities?", "answer": [["name"], []], "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": [], "topic_level": true, "sql": "SELECT name FROM AssociationofAmericanUniversities WHERE startyear > (SELECT startyear FROM AssociationofAmericanUniversities WHERE name = 'Harvard University');"}, {"qid": 155, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which university in the Association of American Universities has the highest number of staff?", "answer": [["name"], []], "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": [], "topic_level": true, "sql": "SELECT name FROM AssociationofAmericanUniversities ORDER BY staffnumber DESC LIMIT 1;"}, {"qid": 156, "topic": "Association of American Universities", "type": "Aggregation", "category": "Statistical Reasoning", "question": "What is the total number of staff across all universities in the Association of American Universities?", "answer": [["SUM(staffnumber)"], [[null]]], "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": [], "topic_level": true, "sql": "SELECT SUM(staffnumber) FROM AssociationofAmericanUniversities;"}, {"qid": 157, "topic": "Association of American Universities", "type": "Distribution Compliance", "category": "Statistical Reasoning", "question": "How many universities in the Association of American Universities were established in the 20th century?", "answer": [["COUNT(*)"], [[0]]], "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": [], "topic_level": true, "sql": "SELECT COUNT(*) FROM AssociationofAmericanUniversities WHERE startyear BETWEEN 1901 AND 2000;"}, {"qid": 158, "topic": "Association of American Universities", "type": "Correlation Analysis", "category": "Statistical Reasoning", "question": "Is there a correlation between the start year of the university and its staff number in the Association of American Universities?", "answer": [], "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": [], "topic_level": true, "sql": "SELECT CORR(startyear, staffnumber) FROM AssociationofAmericanUniversities;"}, {"qid": 159, "topic": "Association of American Universities", "type": "Variance Analysis", "category": "Statistical Reasoning", "question": "What is the variance in start years among the universities in the Association of American Universities?", "answer": [], "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": [], "topic_level": true, "sql": "SELECT VARIANCE(startyear) FROM AssociationofAmericanUniversities;"}, {"qid": 160, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Which universities have fewer staff than MIT in the Association of American Universities?", "answer": [["name"], []], "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": [], "topic_level": true, "sql": "SELECT name FROM AssociationofAmericanUniversities WHERE staffnumber < (SELECT staffnumber FROM AssociationofAmericanUniversities WHERE name = 'MIT');"}, {"qid": 161, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which university in the Association of American Universities has the most recent founding year?", "answer": [["name"], []], "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": [], "topic_level": true, "sql": "SELECT name FROM AssociationofAmericanUniversities ORDER BY startyear DESC LIMIT 1;"}, {"qid": 162, "topic": "Association of American Universities", "type": "Aggregation", "category": "Statistical Reasoning", "question": "How many universities in the Association of American Universities have a president who started after 2000?", "answer": [["COUNT(*)"], [[0]]], "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": [], "topic_level": true, "sql": "SELECT COUNT(*) FROM AssociationofAmericanUniversities WHERE startyear > 2000;"}, {"qid": 163, "topic": "Association of American Universities", "type": "Distribution Compliance", "category": "Statistical Reasoning", "question": "How many universities in the Association of American Universities are located in New York?", "answer": [["COUNT(*)"], [[0]]], "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": [], "topic_level": true, "sql": "SELECT COUNT(*) FROM AssociationofAmericanUniversities WHERE location LIKE '%New York%';"}, {"qid": 164, "topic": "Association of American Universities", "type": "Correlation Analysis", "category": "Statistical Reasoning", "question": "What is the relationship between the university's location and the number of staff in the Association of American Universities?", "answer": [[], []], "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": [], "topic_level": true, "sql": "-- This query cannot be directly represented in SQL without further specifics as SQL does not perform text correlation in this manner."}, {"qid": 165, "topic": "Association of American Universities", "type": "Variance Analysis", "category": "Statistical Reasoning", "question": "How much does the staff number vary in universities within the Association of American Universities that were founded before 1950?", "answer": [], "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": [], "topic_level": true, "sql": "SELECT VARIANCE(staffnumber) FROM AssociationofAmericanUniversities WHERE startyear < 1950;"}, {"qid": 166, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Which universities in the Association of American Universities have a start year earlier than Stanford University?", "answer": [["name"], []], "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": [], "topic_level": true, "sql": "SELECT name FROM AssociationofAmericanUniversities WHERE startyear < (SELECT startyear FROM AssociationofAmericanUniversities WHERE name = 'Stanford University');"}, {"qid": 167, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the smallest university in terms of staff number in the Association of American Universities?", "answer": [["name"], []], "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": [], "topic_level": true, "sql": "SELECT name FROM AssociationofAmericanUniversities ORDER BY staffnumber ASC LIMIT 1;"}, {"qid": 168, "topic": "Association of American Universities", "type": "Aggregation", "category": "Statistical Reasoning", "question": "What is the average number of staff across universities in the Association of American Universities?", "answer": [["AVG(staffnumber)"], [[null]]], "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": [], "topic_level": true, "sql": "SELECT AVG(staffnumber) FROM AssociationofAmericanUniversities;"}, {"qid": 169, "topic": "Association of American Universities", "type": "Distribution Compliance", "category": "Statistical Reasoning", "question": "How many universities in the Association of American Universities are located in Texas?", "answer": [["COUNT(*)"], [[0]]], "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": [], "topic_level": true, "sql": "SELECT COUNT(*) FROM AssociationofAmericanUniversities WHERE location LIKE '%Texas%';"}, {"qid": 170, "topic": "Association of American Universities", "type": "Correlation Analysis", "category": "Statistical Reasoning", "question": "Is there a correlation between the number of staff and the university's location in terms of east coast versus west coast within the Association of American Universities?", "answer": [[], []], "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": [], "topic_level": true, "sql": "-- This query requires additional data or categorization to distinguish between east coast and west coast locations, which cannot be directly represented in SQL without preprocessing."}, {"qid": 171, "topic": "Association of American Universities", "type": "Variance Analysis", "category": "Statistical Reasoning", "question": "What is the variance in the founding years of universities within the Association of American Universities?", "answer": [], "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": [], "topic_level": true, "sql": "SELECT VARIANCE(startyear) FROM AssociationofAmericanUniversities;"}, {"qid": 172, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Which universities in the Association of American Universities were founded after Yale University but have more staff?", "answer": [["name"], []], "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": [], "topic_level": true, "sql": "SELECT name FROM AssociationofAmericanUniversities WHERE startyear > (SELECT startyear FROM AssociationofAmericanUniversities WHERE name = 'Yale University') AND staffnumber > (SELECT staffnumber FROM AssociationofAmericanUniversities WHERE name = 'Yale University');"}, {"qid": 173, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which university in the Association of American Universities has the youngest president?", "answer": [["name"], []], "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": [], "topic_level": true, "sql": "SELECT name FROM AssociationofAmericanUniversities ORDER BY startyear DESC LIMIT 1;"}, {"qid": 174, "topic": "Association of American Universities", "type": "Aggregation", "category": "Statistical Reasoning", "question": "How many universities in the Association of American Universities have staff numbers greater than 5000?", "answer": [["COUNT(*)"], [[0]]], "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": [], "topic_level": true, "sql": "SELECT COUNT(*) FROM AssociationofAmericanUniversities WHERE staffnumber > 5000;"}, {"qid": 175, "topic": "Association of American Universities", "type": "Distribution Compliance", "category": "Statistical Reasoning", "question": "How many universities in the Association of American Universities were founded in the 18th century?", "answer": [["COUNT(*)"], [[0]]], "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": [], "topic_level": true, "sql": "SELECT COUNT(*) FROM AssociationofAmericanUniversities WHERE startyear BETWEEN 1701 AND 1800;"}, {"qid": 176, "topic": "Association of American Universities", "type": "Correlation Analysis", "category": "Statistical Reasoning", "question": "Is there a correlation between the start year of the president and the staff number in the Association of American Universities?", "answer": [], "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": [], "topic_level": true, "sql": "SELECT CORR(startyear, staffnumber) FROM AssociationofAmericanUniversities;"}, {"qid": 177, "topic": "Association of American Universities", "type": "Variance Analysis", "category": "Statistical Reasoning", "question": "How much does the start year of presidents vary among universities in the Association of American Universities?", "answer": [], "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": [], "topic_level": true, "sql": "SELECT VARIANCE(startyear) FROM AssociationofAmericanUniversities;"}, {"qid": 2209, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of Columbia University compare with the founding year of Harvard University?", "answer": " Columbia University was founded in 1754, which is 138 years after Harvard University was established in 1636.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Columbia University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Columbia University"}, {"qid": 2210, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest institution of higher education in New York?", "answer": " Columbia University", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Columbia University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Columbia University"}, {"qid": 2211, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What was the original name of Columbia University?", "answer": " King's College", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Columbia University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Columbia University"}, {"qid": 2212, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Columbia University decided to move its main campus from New York City, how might this impact its historical significance?", "answer": " It could potentially diminish its historical significance as the oldest institution of higher education in New York and its deep historical ties to the city.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Columbia University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Columbia University"}, {"qid": 2213, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the staff number at Columbia University compare to the staff number at Yale University?", "answer": " This would require current data for an accurate comparison, which is not provided.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Columbia University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Columbia University"}, {"qid": 2214, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Who was the first president of Columbia University?", "answer": " Samuel Johnson", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Columbia University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Columbia University"}, {"qid": 2215, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Where was Columbia University originally located?", "answer": " On the grounds of Trinity Church in Manhattan", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Columbia University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Columbia University"}, {"qid": 2216, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would happen if Columbia University became a public institution instead of remaining private?", "answer": " It would likely undergo significant changes in funding, governance, and potentially its admission process.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Columbia University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Columbia University"}, {"qid": 2217, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does Columbia University's age compare to Princeton University's age?", "answer": " Columbia University, founded in 1754, is 9 years younger than Princeton University, which was founded in 1746.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Columbia University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Columbia University"}, {"qid": 2218, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the fifth-oldest institution of higher education in the United States?", "answer": " Columbia University", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Columbia University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Columbia University"}, {"qid": 2219, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the significance of the location of Columbia University's original campus?", "answer": " It signifies its historical roots and establishment as the oldest institution of higher education in New York.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Columbia University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Columbia University"}, {"qid": 2220, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Columbia University had not changed its name from King's College, how might its identity and recognition be different today?", "answer": " It might have a different level of recognition and possibly a stronger association with its colonial origins, potentially affecting its brand and international reputation.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Columbia University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Columbia University"}, {"qid": 2221, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest institution of higher learning in the United States?", "answer": " Harvard University", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harvard University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Harvard University"}, {"qid": 2222, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "For whom is Harvard University named?", "answer": " John Harvard", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harvard University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Harvard University"}, {"qid": 2223, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "In which city is Harvard University located?", "answer": " Cambridge, Massachusetts", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harvard University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Harvard University"}, {"qid": 2224, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What type of university is Harvard University?", "answer": " Private Ivy League research university", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harvard University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Harvard University"}, {"qid": 2225, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which university has one of the most prestigious reputations in the world?", "answer": " Harvard University", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harvard University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Harvard University"}, {"qid": 2226, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What was the original name of Harvard University when it was founded?", "answer": " Harvard College", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harvard University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Harvard University"}, {"qid": 2227, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the primary focus of Harvard University?", "answer": " Research", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harvard University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Harvard University"}, {"qid": 2228, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If John Harvard had not been the first benefactor, what might Harvard University have been named?", "answer": " The name would likely have been different, but it is hypothetical and not specified.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harvard University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Harvard University"}, {"qid": 2229, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of Harvard University compare to other Ivy League schools?", "answer": " Harvard University is the oldest, founded in 1636.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harvard University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Harvard University"}, {"qid": 2230, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is considered the most prestigious university in the United States?", "answer": " Harvard University", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harvard University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Harvard University"}, {"qid": 2231, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What was the profession of Harvard University's first benefactor, John Harvard?", "answer": " Puritan clergyman", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harvard University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Harvard University"}, {"qid": 2232, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Harvard University decided to relocate, how might this affect its prestige?", "answer": " It is hypothetical, but the prestige might be affected depending on various factors such as the new location, reasons for moving, and how it is perceived.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harvard University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Harvard University"}, {"qid": 2233, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest Ivy League institution of higher education in the United States?", "answer": " Harvard University", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Princeton University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Princeton University"}, {"qid": 2234, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which Ivy League university became a university first, Harvard or Princeton?", "answer": " Harvard", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Princeton University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Princeton University"}, {"qid": 2235, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Among the Ivy League universities, where does Princeton rank in terms of age?", "answer": " Fourth", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Princeton University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Princeton University"}, {"qid": 2236, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What was the original name of Princeton University when it was founded in 1746?", "answer": " College of New Jersey", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Princeton University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Princeton University"}, {"qid": 2237, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "In which city was Princeton University originally founded before moving to its current location?", "answer": " Elizabeth", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Princeton University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Princeton University"}, {"qid": 2238, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How many times has Princeton University changed its location since its founding?", "answer": " Two", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Princeton University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Princeton University"}, {"qid": 2239, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "In what year did Princeton University officially become known by its current name?", "answer": " 1896", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Princeton University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Princeton University"}, {"qid": 2240, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Princeton University had not moved from Newark, in which city would it currently be located?", "answer": " Newark", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Princeton University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Princeton University"}, {"qid": 2241, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Princeton University was not renamed in 1896, what would it be called today?", "answer": " College of New Jersey", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Princeton University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Princeton University"}, {"qid": 2242, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Is Princeton University older or younger than Yale University?", "answer": " Younger", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Princeton University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Princeton University"}, {"qid": 2243, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Between Princeton University and University of Pennsylvania, which institution was established first?", "answer": " University of Pennsylvania", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Princeton University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Princeton University"}, {"qid": 2244, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Who was founded first, Princeton University or Columbia University?", "answer": " Columbia University", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Princeton University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Princeton University"}, {"qid": 2245, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest institution of higher education in the United States?", "answer": " Harvard University", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Yale University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Yale University"}, {"qid": 2246, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which university is considered one of the most prestigious in the world?", "answer": " Yale University", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Yale University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Yale University"}, {"qid": 2247, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Is Yale University older than Princeton University?", "answer": " Yes", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Yale University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Yale University"}, {"qid": 2248, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Does Yale University have a higher ranking than Cornell University?", "answer": " Yes, generally speaking, Yale is ranked higher than Cornell in most global university rankings.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Yale University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Yale University"}, {"qid": 2249, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What city is Yale University located in?", "answer": " New Haven, Connecticut", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Yale University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Yale University"}, {"qid": 2250, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "In what year was Yale University founded?", "answer": " 1701", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Yale University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Yale University"}, {"qid": 2251, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does Yale University's founding year compare to the start of the American Revolution?", "answer": " Yale was founded in 1701, which is before the American Revolution started in 1775.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Yale University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Yale University"}, {"qid": 2252, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Yale University was founded after the American Revolution, in what century would it have been established?", "answer": " The 19th century or later", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Yale University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Yale University"}, {"qid": 2253, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Yale University decided to relocate, which state could it potentially move to while staying in the United States?", "answer": " Massachusetts", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Yale University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Yale University"}, {"qid": 2254, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the third-oldest institution of higher education in the United States?", "answer": " Yale University", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Yale University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Yale University"}, {"qid": 2255, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What type of university is Yale University classified as?", "answer": " Private Ivy League research university", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Yale University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Yale University"}, {"qid": 2256, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is Yale University's rank among the institutions of higher education in the United States by age?", "answer": " Third oldest", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Yale University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Yale University"}, {"qid": 2257, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of Brown University compare to Harvard University?", "answer": " Brown University was founded in 1764, making it younger than Harvard University which was founded in 1636.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brown University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Brown University"}, {"qid": 2258, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest Ivy League institution of higher education in the United States?", "answer": " Harvard University is the oldest Ivy League institution, founded in 1636.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brown University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Brown University"}, {"qid": 2259, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Why is Brown University considered a pioneer in college admissions?", "answer": " Brown University was the first U.S. college to codify that admission and instruction of students was to be equal regardless of the religious affiliation of students.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brown University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Brown University"}, {"qid": 2260, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Brown University decided to exclusively admit students from Rhode Island, how would this change its historical admission policy?", "answer": " It would contradict its historical admission policy of equal consideration for students regardless of religious affiliation, by adding a geographical restriction.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brown University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Brown University"}, {"qid": 2261, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to Yale University, how does the staff number at Brown University differ?", "answer": " This requires specific, current staff numbers for both universities, which can vary year by year. Generally, Yale University has a larger staff due to its bigger size and wider range of programs.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brown University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Brown University"}, {"qid": 2262, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which Ivy League university is located the furthest north?", "answer": " Dartmouth College is the Ivy League university located the furthest north.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brown University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Brown University"}, {"qid": 2263, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How did the location of Brown University influence its development in the early years?", "answer": " Located in Providence, Rhode Island, its early development was influenced by the city's status as a center for commerce, education, and culture, allowing it to attract students and faculty from various regions.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brown University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Brown University"}, {"qid": 2264, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Brown University had been founded after the American Revolution, how might its founding principles have been different?", "answer": " If founded after the American Revolution, its founding principles might have been more aligned with the ideals of independence and freedom, potentially influencing its stance on religious affiliation and admission policies differently.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brown University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Brown University"}, {"qid": 2265, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the location of Brown University compare to Columbia University in terms of city size?", "answer": " Brown University is in Providence, Rhode Island, a smaller city compared to New York City, where Columbia University is located.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brown University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Brown University"}, {"qid": 2266, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which Ivy League university was founded first?", "answer": " Harvard University was the first Ivy League university founded in 1636.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brown University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Brown University"}, {"qid": 2267, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does Brown University's approach to religious affiliation in admissions distinguish it from other colonial colleges?", "answer": " Brown University distinguished itself by being the first U.S. college to codify equal admission and instruction for students regardless of religious affiliation, unlike other colonial colleges which often had religious requirements.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brown University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Brown University"}, {"qid": 2268, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Brown University were to relocate to another state, what would be the potential impacts on its identity and historical significance?", "answer": " Relocating to another state could impact its identity by distancing it from its historical roots in Rhode Island and the New England region, possibly affecting its tradition, legacy, and relationships built over centuries.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brown University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Brown University"}, {"qid": 2269, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest Ivy League university compared to Cornell University's founding year?", "answer": " The University of Pennsylvania, founded in 1740, is older than Cornell University which was founded in 1865.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cornell University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Cornell University"}, {"qid": 2270, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Who served for the longest term as president of Cornell University?", "answer": " Cornell University has had several presidents since its founding, but without specific term lengths available up to 2023, it's not possible to accurately determine who served the longest.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cornell University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Cornell University"}, {"qid": 2271, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the student population at Cornell University compare to Harvard University?", "answer": " As of fall 2023, Cornell University had over 16,000 undergraduate and 10,000 graduate students. Comparatively, Harvard University's student population might differ; details would need current enrollment figures for a precise comparison.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cornell University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Cornell University"}, {"qid": 2272, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does Cornell University's status as a land-grant institution influence its research and academic programs?", "answer": " As a land-grant institution, Cornell University is mandated to focus on agricultural, engineering, and military science research and education, influencing its academic programs to include practical, societal needs alongside traditional academics.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cornell University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Cornell University"}, {"qid": 2273, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would happen if Cornell University decided to become a sectarian institution?", "answer": " If Cornell University decided to become a sectarian institution, it would likely alter its admissions policies, curriculum focus, and possibly its funding sources, potentially impacting its nonsectarian and diverse community ethos.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cornell University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Cornell University"}, {"qid": 2274, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Cornell University doubled its staff number, how would that affect the student to faculty ratio?", "answer": " Doubling the staff number at Cornell University would potentially lower the student to faculty ratio, leading to smaller class sizes and possibly more personalized attention for students, assuming the additional staff includes faculty.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cornell University"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "Cornell University"}, {"qid": 2275, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does Cornell University's location in Ithaca, New York, impact its campus culture?", "answer": " Cornell University's location in Ithaca, New York, envelops the campus in a vibrant, natural setting that fosters a close-knit community culture, promotes outdoor activities, and influences the university's emphasis on environmental sustainability.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cornell University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Cornell University"}, {"qid": 2276, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compare the diversity of student nationalities at Cornell University to that of a public university.", "answer": " Cornell University, with students from all 50 U.S. states and 130 countries, likely exhibits a higher degree of diversity in student nationalities compared to many public universities, which may have a larger proportion of in-state students.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cornell University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Cornell University"}, {"qid": 2277, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most popular undergraduate major at Cornell University?", "answer": " Without specific enrollment figures up to fall 2023, it's not possible to definitively say which undergraduate major is the most popular at Cornell University.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cornell University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Cornell University"}, {"qid": 2278, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Cornell University were to establish a new campus abroad, how might this affect its global presence?", "answer": " Establishing a new campus abroad would likely enhance Cornell University's global presence, expanding its international student body, fostering global partnerships, and increasing its influence in international education and research.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cornell University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Cornell University"}, {"qid": 2279, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What role does Cornell University's nonsectarian stance play in its admissions process?", "answer": " Cornell University's nonsectarian stance ensures that admissions decisions are made without regard to religious affiliation, promoting a diverse and inclusive student body.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cornell University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Cornell University"}, {"qid": 2280, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the number of countries represented in Cornell University's student body compare to the international diversity at MIT?", "answer": " As of fall 2023, Cornell University's student body includes students from 130 countries. This level of international diversity might be comparable to or differ from MIT's, depending on MIT's current international student statistics.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cornell University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Cornell University"}, {"qid": 2281, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between Eleazar Wheelock and Dartmouth College?", "answer": " Eleazar Wheelock is the founder of Dartmouth College.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Dartmouth College"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Dartmouth College"}, {"qid": 2282, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "When was Dartmouth College established compared to other Ivy League schools?", "answer": " Dartmouth College, established in 1769, is one of the oldest Ivy League schools.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Dartmouth College"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Dartmouth College"}, {"qid": 2283, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Where does Dartmouth College rank among undergraduate colleges in the United States in terms of prestige?", "answer": " Dartmouth College is considered among the most prestigious undergraduate colleges in the United States.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Dartmouth College"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Dartmouth College"}, {"qid": 2284, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is Dartmouth College's primary focus in terms of academic research?", "answer": " Dartmouth College is a research university with a primary focus on undergraduate education.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Dartmouth College"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Dartmouth College"}, {"qid": 2285, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the student-faculty ratio at Dartmouth College compare to other Ivy League universities?", "answer": " Dartmouth College likely has a low student-faculty ratio compared to other Ivy League universities, emphasizing personalized education.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Dartmouth College"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Dartmouth College"}, {"qid": 2286, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Dartmouth College were to open a new research institute, what academic field might it focus on based on current trends?", "answer": " It might focus on fields like artificial intelligence, sustainability, or health sciences based on current academic and research trends.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Dartmouth College"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Dartmouth College"}, {"qid": 2287, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What makes Dartmouth College unique among the Ivy League schools in terms of its founding history?", "answer": " Dartmouth College's unique aspect is that it was chartered before the American Revolution and founded by Eleazar Wheelock, making it one of the nine colonial colleges.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Dartmouth College"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Dartmouth College"}, {"qid": 2288, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does Dartmouth College's location in Hanover, New Hampshire, influence its campus culture?", "answer": " The location in Hanover, New Hampshire, likely contributes to a close-knit community atmosphere and opportunities for outdoor activities, influencing its campus culture.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Dartmouth College"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Dartmouth College"}, {"qid": 2289, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to its Ivy League counterparts, how does Dartmouth College's focus on undergraduate education distinguish it?", "answer": " Dartmouth College's strong emphasis on undergraduate education distinguishes it from its Ivy League counterparts, many of which are also known for their graduate and professional programs.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Dartmouth College"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Dartmouth College"}, {"qid": 2290, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Dartmouth College were to double its staff number, how might that impact the student-to-staff ratio?", "answer": " Doubling its staff number would significantly improve the student-to-staff ratio, likely leading to smaller class sizes and more personalized attention for students.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Dartmouth College"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Dartmouth College"}, {"qid": 2291, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is Dartmouth College's rank in terms of age among the Ivy League schools?", "answer": " Dartmouth College, founded in 1769, is among the oldest of the Ivy League schools, though not the very oldest.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Dartmouth College"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Dartmouth College"}, {"qid": 2292, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What role does Dartmouth College play in the Ivy League's history and tradition?", "answer": " Dartmouth College plays a significant role as one of the nine colonial colleges chartered before the American Revolution, contributing to the Ivy League's history and tradition of academic excellence and historical significance.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Dartmouth College"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Dartmouth College"}, {"qid": 2293, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest Ivy League research university in Philadelphia, Pennsylvania?", "answer": " The University of Pennsylvania", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pennsylvania"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Pennsylvania"}, {"qid": 2294, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Who was the founder and first president of the University of Pennsylvania?", "answer": " Benjamin Franklin", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pennsylvania"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Pennsylvania"}, {"qid": 2295, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of the University of Pennsylvania compare to the signing of the U.S. Declaration of Independence?", "answer": " The University of Pennsylvania was chartered before the U.S. Declaration of Independence.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pennsylvania"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Pennsylvania"}, {"qid": 2296, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Benjamin Franklin had not advocated for the establishment of the University of Pennsylvania, what might be the impact on the Ivy League?", "answer": " If Benjamin Franklin had not advocated for its establishment, the Ivy League might lack an institution that specifically aimed to train leaders in academia, commerce, and public service from its inception.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pennsylvania"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Pennsylvania"}, {"qid": 2297, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the ranking of the University of Pennsylvania in terms of its age among institutions of higher education in the United States?", "answer": " The University of Pennsylvania identifies as the fourth-oldest institution of higher education in the United States.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pennsylvania"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Pennsylvania"}, {"qid": 2298, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "In what city is the University of Pennsylvania located?", "answer": " Philadelphia, Pennsylvania", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pennsylvania"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Pennsylvania"}, {"qid": 2299, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding purpose of the University of Pennsylvania compare to that of other Ivy League universities?", "answer": " The University of Pennsylvania was founded with the purpose of training leaders in academia, commerce, and public service, a founding purpose that emphasizes practical education alongside traditional academia, which may differ from the founding purposes of other Ivy League universities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pennsylvania"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Pennsylvania"}, {"qid": 2300, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What if the University of Pennsylvania had been established after the U.S. Declaration of Independence, how would its historical significance be different?", "answer": " If the University of Pennsylvania had been established after the U.S. Declaration of Independence, its historical significance as one of the colonial colleges and its role in early American education might be different, potentially affecting its prestige and legacy as an early advocate for higher education in America.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pennsylvania"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Pennsylvania"}, {"qid": 2301, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which Ivy League university in Philadelphia is the oldest?", "answer": " The University of Pennsylvania", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pennsylvania"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Pennsylvania"}, {"qid": 2302, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What role did Benjamin Franklin play in the founding of the University of Pennsylvania?", "answer": " Benjamin Franklin was the founder and first president of the University of Pennsylvania.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pennsylvania"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Pennsylvania"}, {"qid": 2303, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the age of the University of Pennsylvania compare with that of other colonial colleges?", "answer": " The University of Pennsylvania is one of the nine colonial colleges and identifies as the fourth-oldest institution of higher education in the United States, though this ranking is challenged by other universities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pennsylvania"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Pennsylvania"}, {"qid": 2304, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Pennsylvania had not been located in Philadelphia, Pennsylvania, how might its development and influence be altered?", "answer": " If the University of Pennsylvania had not been located in Philadelphia, its development and influence might have been significantly altered due to differences in geographical, historical, and socio-economic factors that have shaped its role as a leading academic and research institution in the United States.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pennsylvania"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Pennsylvania"}, {"qid": 2305, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of the University of Oxford compare to the University of Cambridge?", "answer": " The University of Oxford was founded earlier, with evidence of teaching as early as 1096, while the University of Cambridge was established in 1209.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Oxford"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Oxford"}, {"qid": 2306, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest university in the English-speaking world?", "answer": " The University of Oxford.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Oxford"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Oxford"}, {"qid": 2307, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Why did the University of Oxford grow rapidly from 1167?", "answer": " It grew rapidly from 1167 after Henry II banned English students from attending the University of Paris.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Oxford"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Oxford"}, {"qid": 2308, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What if Henry II had not banned English students from attending the University of Paris?", "answer": " If Henry II had not banned English students from attending the University of Paris, the University of Oxford might not have grown as rapidly in its early years.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Oxford"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Oxford"}, {"qid": 2309, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the staff number at the University of Oxford compare to the University of Cambridge?", "answer": " This information requires current data for both universities, which is not provided in the text.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Oxford"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Oxford"}, {"qid": 2310, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Where is the world's second-oldest university in continuous operation located?", "answer": " The University of Oxford, England.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Oxford"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Oxford"}, {"qid": 2311, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What led to the establishment of the University of Cambridge?", "answer": " Disputes between students and Oxford townsfolk led some Oxford academics to flee northeast to Cambridge, where they established the University of Cambridge in 1209.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Oxford"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Oxford"}, {"qid": 2312, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What might have happened if the University of Oxford had not been the oldest university in the English-speaking world?", "answer": " If the University of Oxford had not been the oldest university in the English-speaking world, another institution would hold this title, potentially altering the historical and academic prestige associated with Oxford.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Oxford"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Oxford"}, {"qid": 2313, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to other ancient universities around the world, where does the University of Oxford rank in terms of age?", "answer": " The University of Oxford is the world's second-oldest university in continuous operation.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Oxford"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Oxford"}, {"qid": 2314, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most significant reason for the rapid growth of the University of Oxford in the late 12th century?", "answer": " The most significant reason for the rapid growth of the University of Oxford in the late 12th century was Henry II's ban on English students attending the University of Paris.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Oxford"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Oxford"}, {"qid": 2315, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How did the relationship between the University of Oxford and the town of Oxford affect the University of Cambridge's founding?", "answer": " Disputes between students and Oxford townsfolk led some academics to flee and establish the University of Cambridge.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Oxford"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Oxford"}, {"qid": 2316, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What if the University of Oxford had not been established in the early 12th century?", "answer": " If the University of Oxford had not been established in the early 12th century, it would not be known as the oldest university in the English-speaking world, and the academic landscape in England might have developed differently.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Oxford"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Oxford"}, {"qid": 2317, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of the University of Cambridge compare to that of the University of Oxford?", "answer": " The University of Cambridge was founded in 1209, after the University of Oxford, making Oxford the older of the two.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Cambridge"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Cambridge"}, {"qid": 2318, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest university in continuous operation in the world?", "answer": " The University of Bologna is considered the oldest university in continuous operation in the world, with the University of Cambridge being the third-oldest.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Cambridge"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Cambridge"}, {"qid": 2319, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Why was the University of Cambridge founded?", "answer": " The University of Cambridge was founded following the arrival of scholars who left the University of Oxford for Cambridge after a dispute with local townspeople.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Cambridge"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Cambridge"}, {"qid": 2320, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What might have happened if the scholars had not left Oxford for Cambridge in 1209?", "answer": " If the scholars had not left Oxford for Cambridge in 1209, the University of Cambridge might not have been founded at that time.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Cambridge"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Cambridge"}, {"qid": 2321, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Between the University of Cambridge and the University of Oxford, which has a larger number of staff members?", "answer": " Specific staff numbers vary over time, but traditionally, both universities have large numbers of staff, with the exact numbers fluctuating due to various factors such as funding, expansion, and academic needs.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Cambridge"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Cambridge"}, {"qid": 2322, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the location of the third-oldest university in continuous operation?", "answer": " Cambridge, England, is the location of the University of Cambridge, the third-oldest university in continuous operation.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Cambridge"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Cambridge"}, {"qid": 2323, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How has the rivalry between the University of Cambridge and the University of Oxford influenced the development of higher education in England?", "answer": " The rivalry between the University of Cambridge and the University of Oxford, often referred to as Oxbridge, has significantly influenced the development of higher education in England by setting high academic standards, fostering competitive excellence, and contributing to cultural, scientific, and academic advancements.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Cambridge"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Cambridge"}, {"qid": 2324, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Cambridge had not been founded as a result of a dispute, how might English academic history have been different?", "answer": " If Cambridge had not been founded due to a dispute, English academic history might have been significantly different, with possibly less competition driving academic excellence, potentially affecting the development and spread of education and ideas in England and beyond.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Cambridge"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Cambridge"}, {"qid": 2325, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the research output of the University of Cambridge compare to that of modern universities founded in the 20th century?", "answer": " The University of Cambridge, with its long history of research and academic excellence, generally has a higher research output and more established academic reputation compared to most modern universities founded in the 20th century.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Cambridge"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Cambridge"}, {"qid": 2326, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which university has the longest history of continuous operation in England?", "answer": " The University of Oxford has the longest history of continuous operation in England, with the University of Cambridge being the second oldest.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Cambridge"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Cambridge"}, {"qid": 2327, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What led to the establishment of the University of Cambridge as a separate institution from the University of Oxford?", "answer": " The establishment of the University of Cambridge as a separate institution from the University of Oxford was led by the arrival of scholars in Cambridge, who left Oxford after a dispute with local townspeople.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Cambridge"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Cambridge"}, {"qid": 2328, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would be the global impact on academia if the University of Cambridge had not maintained continuous operation since its founding?", "answer": " If the University of Cambridge had not maintained continuous operation since its founding, the global impact on academia could include a loss of historical academic traditions, diminished research contributions, and possibly a different landscape for the development of various academic disciplines.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Cambridge"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Cambridge"}, {"qid": 2329, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the University of Southampton's founding year compare to the University of Oxford's?", "answer": " The University of Southampton was founded in 1862, much later than the University of Oxford, which was founded in 1096.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Southampton"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Southampton"}, {"qid": 2330, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest research university in the Russell Group, including the University of Southampton?", "answer": " The University of Oxford is the oldest, having been established in 1096, whereas the University of Southampton was founded in 1862.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Southampton"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Southampton"}, {"qid": 2331, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What role does the University of Southampton have within the Russell Group?", "answer": " The University of Southampton is a founding member of the Russell Group, which represents research-intensive universities in the UK.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Southampton"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Southampton"}, {"qid": 2332, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Southampton decided to open a new research facility, how might its status within the Russell Group influence its focus?", "answer": " Given its status as a founding member of the Russell Group, the University of Southampton might focus the new research facility on areas that are highly research-intensive and aligned with national and international priorities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Southampton"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Southampton"}, {"qid": 2333, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the student population at the University of Southampton compare to that of the University of Cambridge?", "answer": " As of the last available data, the University of Southampton has a smaller student population compared to the University of Cambridge.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Southampton"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Southampton"}, {"qid": 2334, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which university in the Russell Group is located furthest south?", "answer": " The University of Southampton is the southernmost university in the Russell Group.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Southampton"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Southampton"}, {"qid": 2335, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the University of Southampton contribute to research in the UK?", "answer": " As a founding member of the Russell Group, the University of Southampton contributes significantly to research in the UK through its intensive research activities and innovations in various fields.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Southampton"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Southampton"}, {"qid": 2336, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Southampton were to lead a collaborative research project with other Russell Group universities, what might be a potential focus area based on its strengths?", "answer": " A potential focus area could be marine biology and oceanography, considering the University of Southampton's notable strengths in these fields.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Southampton"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Southampton"}, {"qid": 2337, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to other Russell Group universities, how does the University of Southampton rank in terms of research output?", "answer": " The University of Southampton is highly regarded for its research output, often ranking among the top Russell Group universities in terms of research quality and impact.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Southampton"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Southampton"}, {"qid": 2338, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most research-intensive subject at the University of Southampton?", "answer": " Engineering and physical sciences are among the most research-intensive subjects at the University of Southampton.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Southampton"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Southampton"}, {"qid": 2339, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the University of Southampton's location influence its research focus?", "answer": " The University of Southampton's coastal location influences its research focus towards marine and oceanographic sciences, leveraging its geographical position for research in these areas.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Southampton"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Southampton"}, {"qid": 2340, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Southampton received a large donation specifically for sustainability research, how might this impact its research priorities?", "answer": " The donation would likely result in an increased emphasis on sustainability and environmental research, potentially leading to the establishment of new research centers or projects focused on sustainable technologies and practices.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Southampton"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Southampton"}, {"qid": 2341, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest university in continuous operation in the English-speaking world that is located in Scotland?", "answer": " The University of Edinburgh", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Edinburgh"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Edinburgh"}, {"qid": 2342, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How was the University of Edinburgh founded?", "answer": " The University of Edinburgh was founded by the town council under the authority of a royal charter from King James VI in 1582.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Edinburgh"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Edinburgh"}, {"qid": 2343, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What role did the University of Edinburgh play during the Scottish Enlightenment?", "answer": " The University of Edinburgh played a crucial role in Edinburgh becoming a leading intellectual centre during the Scottish Enlightenment.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Edinburgh"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Edinburgh"}, {"qid": 2344, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to other ancient universities in Scotland, where does the University of Edinburgh rank in terms of its founding year?", "answer": " The University of Edinburgh is one of Scotland's four ancient universities and the sixth-oldest university in continuous operation in the English-speaking world, making it one of the earliest founded among Scotland's ancient universities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Edinburgh"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Edinburgh"}, {"qid": 2345, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What nickname was given to the city of Edinburgh due to the influence of the University of Edinburgh?", "answer": " Athens of the North", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Edinburgh"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Edinburgh"}, {"qid": 2346, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Under whose authority was the University of Edinburgh founded?", "answer": " King James VI", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Edinburgh"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Edinburgh"}, {"qid": 2347, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What might have happened if the University of Edinburgh had not played a significant role during the Scottish Enlightenment?", "answer": " Edinburgh might not have become a leading intellectual centre or received the nickname \"Athens of the North\".", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Edinburgh"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Edinburgh"}, {"qid": 2348, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "When was the University of Edinburgh officially opened?", "answer": " 1583", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Edinburgh"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Edinburgh"}, {"qid": 2349, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Where is the University of Edinburgh based?", "answer": " Edinburgh, Scotland", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Edinburgh"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Edinburgh"}, {"qid": 2350, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of the University of Edinburgh compare to other universities in the English-speaking world?", "answer": " The University of Edinburgh is the sixth-oldest university in continuous operation in the English-speaking world.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Edinburgh"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Edinburgh"}, {"qid": 2351, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What was the role of the town council in the founding of the University of Edinburgh?", "answer": " The town council founded the University of Edinburgh under the authority of a royal charter from King James VI.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Edinburgh"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Edinburgh"}, {"qid": 2352, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What led to Edinburgh being nicknamed the \"Athens of the North\"?", "answer": " The contribution of the University of Edinburgh to the city becoming a leading intellectual centre during the Scottish Enlightenment led to Edinburgh being nicknamed the \"Athens of the North\".", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Edinburgh"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Edinburgh"}, {"qid": 2353, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between the London School of Economics and the University of London?", "answer": " The London School of Economics is a member institution of the University of London.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["London School of Economics"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "London School of Economics"}, {"qid": 2354, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Who were the first founders of the London School of Economics?", "answer": " Sidney Webb, Beatrice Webb, Graham Wallas, and George Bernard Shaw.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["London School of Economics"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "London School of Economics"}, {"qid": 2355, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How did the degree awarding process change at the London School of Economics in 2008?", "answer": " LSE began awarding its degrees in its own name in 2008, prior to which it awarded degrees of the University of London.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["London School of Economics"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "London School of Economics"}, {"qid": 2356, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the London School of Economics had not joined the University of London in 1900, what might have been a possible impact on its degree courses?", "answer": " It might not have been able to establish its first degree courses under the auspices of the University of London in 1901.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["London School of Economics"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "London School of Economics"}, {"qid": 2357, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the London School of Economics' specialization compare to other member institutions of the University of London?", "answer": " The London School of Economics specializes in the social sciences, which may differ from the specializations of other member institutions.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["London School of Economics"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "London School of Economics"}, {"qid": 2358, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the founding year of the London School of Economics?", "answer": " 1895.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["London School of Economics"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "London School of Economics"}, {"qid": 2359, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What significant change occurred at the London School of Economics in 2022?", "answer": " It became a university in its own right within the University of London.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["London School of Economics"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "London School of Economics"}, {"qid": 2360, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the founders had not established the London School of Economics in 1895, what would have been the impact on social sciences education in London?", "answer": " There might have been fewer opportunities for specialized education in social sciences in London.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["London School of Economics"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "London School of Economics"}, {"qid": 2361, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to its founding, how has the London School of Economics' degree awarding status changed by 2008?", "answer": " By 2008, LSE started awarding degrees in its own name, unlike at its founding when it awarded degrees of the University of London.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["London School of Economics"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "London School of Economics"}, {"qid": 2362, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Who were the key figures in founding the London School of Economics?", "answer": " Sidney Webb, Beatrice Webb, Graham Wallas, and George Bernard Shaw.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["London School of Economics"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "London School of Economics"}, {"qid": 2363, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What was the London School of Economics' degree awarding capability before 2008?", "answer": " Before 2008, LSE awarded degrees of the University of London.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["London School of Economics"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "London School of Economics"}, {"qid": 2364, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What if the London School of Economics had not specialized in social sciences, how might its reputation differ today?", "answer": " Its reputation might differ significantly, potentially lacking its current prominence in social sciences education.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["London School of Economics"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "London School of Economics"}, {"qid": 2365, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between Imperial College London and the Royal Albert Hall?", "answer": " The relationship stems from Prince Albert's vision, which included the creation of a cultural area in South Kensington that encompasses museums, colleges, and the Royal Albert Hall.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Imperial College London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Imperial College London"}, {"qid": 2366, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "When was the earliest founding institution of Imperial College London established?", "answer": " The earliest founding institution of Imperial College London was established in 1907 when the Royal College of Science, the Royal School of Mines, and the City and Guilds of London Institute merged.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Imperial College London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Imperial College London"}, {"qid": 2367, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of Imperial College London compare to that of the University of Oxford?", "answer": " Imperial College London was founded in 1907, which is significantly later than the University of Oxford, which was established in 1096.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Imperial College London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Imperial College London"}, {"qid": 2368, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How did the Imperial College School of Medicine come into existence?", "answer": " The Imperial College School of Medicine was formed in 1988 through a merger with St Mary's Hospital Medical School.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Imperial College London"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Imperial College London"}, {"qid": 2369, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What significant event related to Imperial College London occurred in 2004?", "answer": " In 2004, Queen Elizabeth II opened the Imperial College Business School.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Imperial College London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Imperial College London"}, {"qid": 2370, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Imperial College London had not merged with St Mary's Hospital Medical School, how would its medical education landscape differ today?", "answer": " Without the merger, Imperial College London's medical education would lack the integration and resources that came from combining with St Mary's Hospital Medical School, potentially affecting its reputation and the breadth of medical programs offered.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Imperial College London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Imperial College London"}, {"qid": 2371, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What vision did Prince Albert have for South Kensington that included Imperial College London?", "answer": " Prince Albert envisioned a cultural area in South Kensington that included museums, colleges, and the Royal Albert Hall, with Imperial College London being a part of this educational and cultural hub.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Imperial College London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Imperial College London"}, {"qid": 2372, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest constituent college that merged to form Imperial College London?", "answer": " The Royal School of Mines is one of the oldest constituent colleges that merged to form Imperial College London in 1907.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Imperial College London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Imperial College London"}, {"qid": 2373, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to Cambridge University, how does the founding year of Imperial College London align?", "answer": " Compared to Cambridge University, which was founded in 1209, Imperial College London was founded much later, in 1907.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Imperial College London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Imperial College London"}, {"qid": 2374, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What led to the opening of the Imperial College Business School by Queen Elizabeth II in 2004?", "answer": " The opening of the Imperial College Business School by Queen Elizabeth II in 2004 was a significant expansion of Imperial College London's academic offerings, marking its establishment as a new faculty within the university.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Imperial College London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Imperial College London"}, {"qid": 2375, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Imperial College London had not been located in South Kensington, how might its development and influence in the area differ?", "answer": " If Imperial College London had not been located in South Kensington, its development and influence would likely be diminished, as it wouldn't be part of the area's rich cultural and educational ecosystem envisioned by Prince Albert.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Imperial College London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Imperial College London"}, {"qid": 2376, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most recent significant addition to Imperial College London prior to 2023?", "answer": " The most recent significant addition to Imperial College London prior to 2023 is the opening of the Imperial College Business School in 2004 by Queen Elizabeth II.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Imperial College London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Imperial College London"}, {"qid": 2377, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest university in the English-speaking world that the University of Glasgow ranks fourth amongst?", "answer": " University of Oxford", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Glasgow"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Glasgow"}, {"qid": 2378, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship of the University of Glasgow to the Scottish Enlightenment?", "answer": " The University of Glasgow was part of the Scottish Enlightenment during the 18th century.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Glasgow"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Glasgow"}, {"qid": 2379, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the total enrolment of the University of Glasgow compare to the University of Edinburgh?", "answer": " The University of Glasgow is the largest university in Scotland by total enrolment, making it larger than the University of Edinburgh.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Glasgow"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "University of Glasgow"}, {"qid": 2380, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the University of Glasgow's rank by postgraduate enrolment in the United Kingdom?", "answer": " The University of Glasgow has the second-largest postgraduate enrolment in the United Kingdom.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Glasgow"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Glasgow"}, {"qid": 2381, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What was the founding basis of the University of Glasgow?", "answer": " The University of Glasgow was founded by papal bull.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Glasgow"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Glasgow"}, {"qid": 2382, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Glasgow was not part of the Scottish Enlightenment, how might its historical significance differ?", "answer": " It would likely be less significant in the context of 18th-century intellectual history.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Glasgow"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Glasgow"}, {"qid": 2383, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which university in Scotland has the largest total enrolment?", "answer": " The University of Glasgow", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Glasgow"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Glasgow"}, {"qid": 2384, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What title is used for graduates of the University of Glasgow in post-nominal abbreviations?", "answer": " Glas.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Glasgow"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Glasgow"}, {"qid": 2385, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the number of staff at the University of Glasgow compare to the University of Aberdeen?", "answer": " This would depend on current figures, but historically, the University of Glasgow is one of the largest in terms of enrolment, which may imply a larger staff, but specific numbers are needed for an accurate comparison.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Glasgow"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Glasgow"}, {"qid": 2386, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Glasgow had been founded one century earlier, how would its place in history as an ancient university change?", "answer": " It would be ranked as an older institution among the ancient universities, potentially altering its historical and academic significance.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Glasgow"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Glasgow"}, {"qid": 2387, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What year was the University of Glasgow established, making it the fourth-oldest in the English-speaking world?", "answer": " 1451", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Glasgow"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Glasgow"}, {"qid": 2388, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What significant academic movement was the University of Glasgow a part of in the 18th century?", "answer": " The Scottish Enlightenment", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Glasgow"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Glasgow"}, {"qid": 2389, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest university in London?", "answer": " University College London", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University College London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University College London"}, {"qid": 2390, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which university has the largest postgraduate enrollment in the UK?", "answer": " University College London", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University College London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University College London"}, {"qid": 2391, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Is University College London larger by total enrollment than Imperial College London?", "answer": " Yes", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University College London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University College London"}, {"qid": 2392, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How is University College London related to the University of London?", "answer": " It is a member institution of the federal University of London.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University College London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University College London"}, {"qid": 2393, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Who was the founding president of University College London?", "answer": " Henry Brougham", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University College London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University College London"}, {"qid": 2394, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the primary function of University College London?", "answer": " It is a public research university.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University College London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University College London"}, {"qid": 2395, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Does University College London have more staff than Queen Mary University of London?", "answer": " Yes", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University College London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University College London"}, {"qid": 2396, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If University College London were to merge with another university, would it still be part of the University of London?", "answer": " Yes", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University College London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University College London"}, {"qid": 2397, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If University College London decided to focus only on undergraduate education, would it still be the largest university by postgraduate enrollment in the UK?", "answer": " No", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University College London"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University College London"}, {"qid": 2398, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Where is University College London located?", "answer": " London, England", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University College London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University College London"}, {"qid": 2399, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "When was University College London founded?", "answer": " 1826", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University College London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University College London"}, {"qid": 2400, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to the start year of King's College London, which institution was founded first?", "answer": " University College London", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University College London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University College London"}, {"qid": 2401, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Is Queen Mary University of London older or newer than University College London?", "answer": " Queen Mary University of London is newer than University College London.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen Mary University of London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Queen Mary University of London"}, {"qid": 2402, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Which has a larger staff number, Queen Mary University of London or Imperial College London?", "answer": " Imperial College London has a larger staff number than Queen Mary University of London.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen Mary University of London"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Queen Mary University of London"}, {"qid": 2403, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest faculty at Queen Mary University of London?", "answer": " The Faculty of Medicine and Dentistry is one of the oldest faculties at Queen Mary University of London.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen Mary University of London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Queen Mary University of London"}, {"qid": 2404, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Who was the first president of Queen Mary University of London?", "answer": " The information about the first president of Queen Mary University of London is not explicitly provided in the provided text.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen Mary University of London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Queen Mary University of London"}, {"qid": 2405, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does Queen Mary University of London relate to the University of London?", "answer": " Queen Mary University of London is a member institution of the federal University of London.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen Mary University of London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Queen Mary University of London"}, {"qid": 2406, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Why is Queen Mary University of London located in Mile End, East London?", "answer": " The specific reasons for the location choice are not provided, but it might be due to historical developments and the availability of land at the time of establishment.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen Mary University of London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Queen Mary University of London"}, {"qid": 2407, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What impact does Queen Mary University of London have on the local community in East London?", "answer": " Queen Mary University of London contributes to the local community through educational opportunities, employment, research collaborations, and cultural enrichment.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen Mary University of London"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Queen Mary University of London"}, {"qid": 2408, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would happen if Queen Mary University of London decided to become an independent university separate from the University of London?", "answer": " If Queen Mary University of London became an independent university, it would operate autonomously, potentially leading to changes in governance, degree certifications, and possibly its name and branding.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen Mary University of London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Queen Mary University of London"}, {"qid": 2409, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Queen Mary University of London doubled its staff number, how might this affect its ranking among UK universities?", "answer": " Doubling its staff number could potentially improve Queen Mary University of London's ranking among UK universities if it leads to increased research output, teaching quality, and student support services.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen Mary University of London"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Queen Mary University of London"}, {"qid": 2410, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would be the implications for student housing if Queen Mary University of London increased its student population by 50%?", "answer": " Increasing the student population by 50% would likely intensify the demand for student housing, potentially leading to shortages, higher rents in the surrounding area, and the need for the university to expand its accommodation facilities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen Mary University of London"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Queen Mary University of London"}, {"qid": 2411, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most popular course at Queen Mary University of London?", "answer": " The specific most popular course at Queen Mary University of London is not provided, but traditionally, programmes in Medicine, Law, and Engineering are highly sought after.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen Mary University of London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Queen Mary University of London"}, {"qid": 2412, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What role does Queen Mary University of London play in the University of London federation?", "answer": " Queen Mary University of London contributes to the federation by participating in collaborative research, sharing resources, and offering joint programmes, enhancing the academic and cultural diversity of the University of London.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen Mary University of London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Queen Mary University of London"}, {"qid": 2413, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest constituent college of the University of Birmingham?", "answer": " Queen's College, Birmingham", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Birmingham"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Birmingham"}, {"qid": 2414, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "When did the University of Birmingham receive its royal charter, making it the first English civic university to do so?", "answer": " 1900", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Birmingham"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Birmingham"}, {"qid": 2415, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How did the University of Birmingham originate in relation to Queen's College and Mason Science College?", "answer": " The University of Birmingham received its royal charter in 1900 as a successor to Queen's College, Birmingham, and Mason Science College.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Birmingham"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Birmingham"}, {"qid": 2416, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the significance of the University of Birmingham's royal charter in the context of English civic universities?", "answer": " It marks the University of Birmingham as the first English civic or 'red brick' university to receive its own royal charter.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Birmingham"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Birmingham"}, {"qid": 2417, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the University of Birmingham's founding year compare to other Russell Group universities?", "answer": " The University of Birmingham, founded in 1900, is one of the earlier members of the Russell Group, with some members being founded both before and after this date.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Birmingham"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Birmingham"}, {"qid": 2418, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Birmingham never received its royal charter, could it still have become a founding member of the Russell Group?", "answer": " It is speculative, but the royal charter might have played a significant role in establishing its reputation and eligibility for founding membership in the Russell Group.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Birmingham"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Birmingham"}, {"qid": 2419, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What might have been the impact on the University of Birmingham's research partnerships if it had not been a founding member of Universitas 21?", "answer": " Not being a founding member of Universitas 21 could have potentially limited its early international research collaborations and opportunities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Birmingham"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Birmingham"}, {"qid": 2420, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which college affiliated with the University of Birmingham was founded first?", "answer": " Queen's College, Birmingham", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Birmingham"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Birmingham"}, {"qid": 2421, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What founding principle distinguishes the University of Birmingham as a 'red brick' university?", "answer": " Its establishment with a royal charter as a civic university marks its distinction as a 'red brick' university.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Birmingham"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Birmingham"}, {"qid": 2422, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the University of Birmingham's role in founding Universitas 21 compare to its membership in the Russell Group?", "answer": " The University of Birmingham's founding role in Universitas 21 emphasizes its commitment to international research collaboration, paralleling its membership in the research-focused Russell Group.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Birmingham"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Birmingham"}, {"qid": 2423, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Birmingham had not been established as a successor to Queen's College and Mason Science College, what might have been its impact on the city's educational landscape?", "answer": " The absence of the University of Birmingham could have left a significant gap in the educational and research opportunities available in the city, potentially affecting its development as a center for learning and innovation.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Birmingham"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Birmingham"}, {"qid": 2424, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the University of Birmingham's status as the first English unitary university reflect on its educational model?", "answer": " Being the first English unitary university highlights its pioneering approach to higher education, consolidating faculties and resources under a single institution rather than a collegiate system.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Birmingham"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Birmingham"}, {"qid": 2425, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What cultural assets does the University of Manchester own and operate?", "answer": " The Manchester Museum, The Whitworth art gallery, the John Rylands Library, the Tabley House Collection, and the Jodrell Bank Observatory.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Manchester"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Manchester"}, {"qid": 2426, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which cultural asset of the University of Manchester is a UNESCO World Heritage Site?", "answer": " The Jodrell Bank Observatory.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Manchester"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Manchester"}, {"qid": 2427, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the University of Manchester compare to other universities in terms of its foundation year?", "answer": " The University of Manchester, in its current form, was founded in 2004, making it younger in its restructured form compared to many other traditional universities but older than universities established in the 21st century.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Manchester"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Manchester"}, {"qid": 2428, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the main campus location of the University of Manchester?", "answer": " South of Manchester City Centre on Oxford Road.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Manchester"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Manchester"}, {"qid": 2429, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What led to the formation of the current University of Manchester in 2004?", "answer": " The merger of the University of Manchester Institute of Science and Technology (UMIST) and the Victoria University of Manchester.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Manchester"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Manchester"}, {"qid": 2430, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Manchester decided to open a new cultural asset, based on its current collection, what type of institution might it be?", "answer": " It might be a new museum, art gallery, library, or an observatory, considering its current collection includes similar types of cultural assets.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Manchester"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Manchester"}, {"qid": 2431, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to other red brick universities, when was the University of Manchester established in its current form?", "answer": " In 2004, which might be later than some other red brick universities that were established in the late 19th and early 20th centuries.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Manchester"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Manchester"}, {"qid": 2432, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What type of university is the University of Manchester considered to be?", "answer": " A red brick university.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Manchester"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Manchester"}, {"qid": 2433, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What movement is the University of Manchester a product of?", "answer": " The civic university movement of the late 19th century.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Manchester"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Manchester"}, {"qid": 2434, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Manchester had not merged in 2004, how might its academic offerings differ today?", "answer": " Without the merger, the University of Manchester might have had a more limited range of academic offerings and resources, lacking the combined strengths and specialties of UMIST and the Victoria University of Manchester.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Manchester"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Manchester"}, {"qid": 2435, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the location of the University of Manchester's main campus compare to other universities in Manchester?", "answer": " The main campus of the University of Manchester is south of Manchester City Centre on Oxford Road, which may be more centrally located compared to campuses of other universities in Greater Manchester that might be situated further from the city center.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Manchester"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Manchester"}, {"qid": 2436, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the significance of the Jodrell Bank Observatory owned by the University of Manchester?", "answer": " It is a UNESCO World Heritage Site.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Manchester"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Manchester"}, {"qid": 2437, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the staff number of King's College London compare to that of Imperial College London?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["King's College London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "King's College London"}, {"qid": 2438, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Is the start year of King's College London earlier than that of University College London?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["King's College London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "King's College London"}, {"qid": 2439, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest department at King's College London?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["King's College London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "King's College London"}, {"qid": 2440, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Who was the first president of King's College London?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["King's College London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "King's College London"}, {"qid": 2441, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the location of King's College London influence its academic collaborations?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["King's College London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "King's College London"}, {"qid": 2442, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What impact has King's College London had on the local community in its location?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["King's College London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "King's College London"}, {"qid": 2443, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If King's College London were to open a new campus, how might that affect its staff numbers?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["King's College London"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "King's College London"}, {"qid": 2444, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would be the impact on King's College London if it were to merge with another university?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["King's College London"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "King's College London"}, {"qid": 2445, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the student population at King's College London compare to that at the London School of Economics?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["King's College London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "King's College London"}, {"qid": 2446, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which research field at King's College London has received the most international awards?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["King's College London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "King's College London"}, {"qid": 2447, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How has the presidency of King's College London evolved over the years in terms of academic focus?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["King's College London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "King's College London"}, {"qid": 2448, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If King's College London were to significantly expand its research facilities, what impact would that have on its collaboration with industry partners?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["King's College London"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "King's College London"}, {"qid": 2449, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the foundation year of Durham University compare to that of Oxford and Cambridge?", "answer": " Durham University was founded in 1832, after Oxford and Cambridge. Oxford University dates back to at least 1096, and Cambridge University was founded in 1209, making Durham the third-oldest university in England.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Durham University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Durham University"}, {"qid": 2450, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest university in England?", "answer": " Oxford University is the oldest university in England, dating back to at least 1096.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Durham University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Durham University"}, {"qid": 2451, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the collegiate system at Durham University impact the roles of its academic departments and colleges?", "answer": " In Durham University, the academic departments are responsible for performing research and providing teaching, while the colleges manage domestic arrangements and student welfare, showcasing a division of responsibilities within the collegiate system.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Durham University"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "Durham University"}, {"qid": 2452, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Durham University were to open another college, how would this affect the total number of colleges within the university?", "answer": " If Durham University were to open another college, the total number of colleges would increase from 17 to 18.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Durham University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Durham University"}, {"qid": 2453, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the student welfare approach at Durham University compare to non-collegiate universities?", "answer": " At Durham University, student welfare is primarily managed by its colleges, unlike non-collegiate universities where student welfare might be directly managed by the university's central administration or student services.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Durham University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Durham University"}, {"qid": 2454, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which university was the first to open in England after more than 600 years, following Oxford and Cambridge?", "answer": " Durham University was the first university to open in England after more than 600 years, following Oxford and Cambridge.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Durham University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Durham University"}, {"qid": 2455, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between the number of colleges and the academic departments at Durham University?", "answer": " The relationship is that Durham University divides its main functions between the academic departments, which are responsible for research and teaching, and its 17 colleges, which handle domestic arrangements and welfare, indicating a structural collaboration but with distinct roles.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Durham University"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "Durham University"}, {"qid": 2456, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Durham University were to significantly increase its staff number, how might this impact the student-to-staff ratio?", "answer": " If Durham University were to significantly increase its staff number, this would likely decrease the student-to-staff ratio, potentially leading to smaller class sizes and more personalized attention for students.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Durham University"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "Durham University"}, {"qid": 2457, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to other collegiate universities, how does Durham's approach to dividing functions between colleges and departments stand out?", "answer": " Durham University's approach involves a clear division where academic departments focus on research and teaching, while colleges are responsible for domestic and welfare aspects, a structure that may be more or similarly defined compared to other collegiate universities, depending on their specific organizational strategies.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Durham University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Durham University"}, {"qid": 2458, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What makes Durham University unique in the context of its foundation history among English universities?", "answer": " Durham University's uniqueness lies in being the first recognized university to open in England for more than 600 years after Oxford and Cambridge, making it the third-oldest university in the country.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Durham University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Durham University"}, {"qid": 2459, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the research output of Durham University's academic departments complement the collegiate system?", "answer": " The research output of Durham University's academic departments complements the collegiate system by enhancing the academic reputation and resources of the university, which benefits the colleges and their students by providing high-quality education and research opportunities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Durham University"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "Durham University"}, {"qid": 2460, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would be the impact on Durham University's research capabilities if it incorporated an additional academic department focused on emerging technologies?", "answer": " Incorporating an additional academic department focused on emerging technologies would likely enhance Durham University's research capabilities, potentially leading to new areas of study, attracting additional funding, and fostering innovation within its collegiate system.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Durham University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Durham University"}, {"qid": 2461, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What historical connection does the University of Bristol have with the Merchant Venturers' school?", "answer": " The University of Bristol can trace its roots back to a Merchant Venturers' school founded in 1595.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Bristol"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Bristol"}, {"qid": 2462, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How is University College, Bristol related to the University of Bristol?", "answer": " University College, Bristol, which had been in existence since 1876, is part of the University of Bristol's historical background.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Bristol"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Bristol"}, {"qid": 2463, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "When was the University of Bristol officially granted its royal charter, making it one of the older universities in England?", "answer": " 1909", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Bristol"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Bristol"}, {"qid": 2464, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What distinguishes the University of Bristol in terms of its research group affiliation in England?", "answer": " It is a member of the Russell Group.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Bristol"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Bristol"}, {"qid": 2465, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of the University of Bristol compare to that of other Russell Group universities?", "answer": " The University of Bristol, founded with a royal charter in 1909, is younger than some Russell Group universities like the University of Cambridge or the University of Oxford, but older than others.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Bristol"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Bristol"}, {"qid": 2466, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "In terms of location, how does the University of Bristol's setting compare to other universities in England?", "answer": " The University of Bristol is located in Bristol, England, making it more urban and possibly more centrally located compared to universities in more rural or secluded settings.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Bristol"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Bristol"}, {"qid": 2467, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Bristol decided to open a new campus, how might its historical roots influence the choice of location?", "answer": " Considering its historical roots with the Merchant Venturers' school and University College, Bristol, a new campus might be opened in a location that reflects its heritage and connection to Bristol or areas with historical significance to education and trade.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Bristol"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Bristol"}, {"qid": 2468, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What might be the impact on staff numbers if the University of Bristol were to significantly expand its research facilities?", "answer": " The staff numbers at the University of Bristol would likely increase to accommodate the expansion in research activities and support needed for additional facilities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Bristol"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Bristol"}, {"qid": 2469, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the University of Bristol's status as a red brick university relate to its founding and historical significance?", "answer": " Being a red brick university, the University of Bristol's founding in 1909 and its historical significance is tied to the rise of civic universities in the industrial cities of the late 19th and early 20th centuries, reflecting its long-standing tradition in education and research.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Bristol"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Bristol"}, {"qid": 2470, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What role does the University of Bristol's location in Bristol, England play in its classification as a red brick university?", "answer": " The location in Bristol, a significant industrial and maritime city, underscores its classification as a red brick university, emphasizing its origins and development in response to the educational needs of a growing urban and industrial society.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Bristol"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Bristol"}, {"qid": 2471, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to other universities founded in the 19th and early 20th centuries, how does the University of Bristol's affiliation with the Russell Group highlight its research focus?", "answer": " Compared to other similarly aged universities, the University of Bristol's affiliation with the Russell Group highlights its strong emphasis on research and academic excellence, setting it apart as a leading research institution.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Bristol"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Bristol"}, {"qid": 2472, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Bristol were to lead a global research consortium, how would its Russell Group membership and historical focus on research play into its leadership role?", "answer": " Its Russell Group membership and historical focus on research would position the University of Bristol as a key leader in the consortium, leveraging its reputation for high-quality research and academic excellence to guide collaborative efforts and innovative projects.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Bristol"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Bristol"}, {"qid": 2473, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between University College Nottingham and The University of Nottingham?", "answer": " University College Nottingham was the original name of The University of Nottingham before it was granted a royal charter in 1948 and became The University of Nottingham.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Nottingham"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Nottingham"}, {"qid": 2474, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How did The University of Nottingham acquire its status as a university?", "answer": " The University of Nottingham was granted a royal charter in 1948, which elevated it from University College Nottingham to its current status as a university.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Nottingham"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Nottingham"}, {"qid": 2475, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the earliest founding year of an entity that eventually became The University of Nottingham?", "answer": " 1881", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Nottingham"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Nottingham"}, {"qid": 2476, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Is the founding year of The University of Nottingham earlier than 1900?", "answer": " Yes", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Nottingham"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Nottingham"}, {"qid": 2477, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Does The University of Nottingham have a longer history than Nottingham Trent University?", "answer": " Yes", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Nottingham"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Nottingham"}, {"qid": 2478, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What was the first name of The University of Nottingham when it was established?", "answer": " University College Nottingham", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Nottingham"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Nottingham"}, {"qid": 2479, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would have happened if The University of Nottingham had not been granted a royal charter in 1948?", "answer": " It might have remained University College Nottingham and not achieved full university status.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Nottingham"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Nottingham"}, {"qid": 2480, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "In what city is The University of Nottingham located?", "answer": " Nottingham, England", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Nottingham"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Nottingham"}, {"qid": 2481, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most significant milestone in the history of The University of Nottingham that marked its transition to a university?", "answer": " Being granted a royal charter in 1948", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Nottingham"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Nottingham"}, {"qid": 2482, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If The University of Nottingham decided to change its name, what was its original name it could revert to?", "answer": " University College Nottingham", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Nottingham"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Nottingham"}, {"qid": 2483, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to its founding, has the staff number at The University of Nottingham increased over the years?", "answer": " Yes", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Nottingham"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Nottingham"}, {"qid": 2484, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What distinguishes The University of Nottingham as a public research university?", "answer": " Its focus on research and being publicly funded.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Nottingham"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Nottingham"}, {"qid": 2485, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the founding year of the University of Liverpool?", "answer": " 1881", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Liverpool"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Liverpool"}, {"qid": 2486, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What type of university is the University of Liverpool and where is it located?", "answer": " It is a public research university located in Liverpool, England.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Liverpool"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Liverpool"}, {"qid": 2487, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Is the University of Liverpool the first university to be referred to as The Original Red Brick?", "answer": " Yes", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Liverpool"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Liverpool"}, {"qid": 2488, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What significant status did the University of Liverpool achieve in 1903?", "answer": " It gained its Royal Charter with the ability to award degrees.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Liverpool"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Liverpool"}, {"qid": 2489, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How is the University of Liverpool organized in terms of its academic structure?", "answer": " It comprises three faculties organized into 35 departments and schools.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Liverpool"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "University of Liverpool"}, {"qid": 2490, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What prestigious groups is the University of Liverpool a founding member of?", "answer": " The Russell Group and the N8 Group for research collaboration.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Liverpool"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Liverpool"}, {"qid": 2491, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the university management school's accreditation at the University of Liverpool compare to other business schools worldwide?", "answer": " The university management school is triple crown accredited, placing it among the top business schools worldwide.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Liverpool"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Liverpool"}, {"qid": 2492, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is a unique characteristic of the University of Liverpool among the 'red brick' universities?", "answer": " It is known to be the first university to be referred to as The Original Red Brick.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Liverpool"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Liverpool"}, {"qid": 2493, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Liverpool were to expand its number of departments, how might this affect its organizational structure?", "answer": " It would likely require reorganization or expansion of its current faculties to accommodate new departments.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Liverpool"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Liverpool"}, {"qid": 2494, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What might happen to the University of Liverpool's status in the Russell Group if it significantly increased its research output?", "answer": " Its status within the Russell Group could be enhanced, potentially leading to greater influence and collaboration opportunities within the group.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Liverpool"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Liverpool"}, {"qid": 2495, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Liverpool lost its triple crown accreditation for its management school, what impact could this have?", "answer": " It could potentially impact the school's reputation, student enrollment, and attractiveness to prospective faculty members.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Liverpool"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Liverpool"}, {"qid": 2496, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What year did the University of Liverpool gain the ability to award degrees?", "answer": " 1903", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Liverpool"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Liverpool"}, {"qid": 2497, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the historical relationship between the University of Leeds and the Yorkshire College of Science?", "answer": " The University of Leeds was established in 1874 as the Yorkshire College of Science before it went through a series of mergers and name changes, eventually becoming the University of Leeds in 1904 after receiving a royal charter from King Edward VII.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Leeds"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Leeds"}, {"qid": 2498, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How did the University of Leeds evolve from its initial establishment to receiving a royal charter in 1904?", "answer": " Initially established as the Yorkshire College of Science in 1874, it merged with the Leeds School of Medicine in 1884, became part of the federal Victoria University in 1887, and finally received a royal charter to become the University of Leeds in 1904.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Leeds"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Leeds"}, {"qid": 2499, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest constituent part of the University of Leeds?", "answer": " The Leeds School of Medicine, established in 1831, is the oldest constituent part of the University of Leeds.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Leeds"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Leeds"}, {"qid": 2500, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of the University of Leeds compare to the founding year of the University of Manchester?", "answer": " The University of Leeds was established in 1904, whereas the University of Manchester has its roots in Owens College founded in 1851, making Owens College (the precursor to the University of Manchester) older than the University of Leeds.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Leeds"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Leeds"}, {"qid": 2501, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What was the first name of the University of Leeds upon its establishment?", "answer": " The first name of the University of Leeds upon its establishment was the Yorkshire College of Science.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Leeds"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Leeds"}, {"qid": 2502, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the Leeds School of Medicine had not merged with the Yorkshire College of Science, how might the University of Leeds be different today?", "answer": " Without the merger with the Leeds School of Medicine, the University of Leeds might have had a different academic and research focus, potentially lacking its current strengths in medical and health sciences.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Leeds"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Leeds"}, {"qid": 2503, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What led to the University of Leeds being granted a royal charter in 1904?", "answer": " The University of Leeds was granted a royal charter in 1904 after evolving from the Yorkshire College of Science, merging with the Leeds School of Medicine, and becoming part of the federal Victoria University, signifying its establishment as a prestigious institution.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Leeds"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Leeds"}, {"qid": 2504, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which component of the University of Leeds was established first, the Yorkshire College of Science or the Leeds School of Medicine?", "answer": " The Leeds School of Medicine was established first in 1831, predating the Yorkshire College of Science which was established in 1874.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Leeds"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Leeds"}, {"qid": 2505, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to the University of Liverpool, which institution became independent first?", "answer": " The University of Leeds became an independent institution in 1904, while the University of Liverpool became an independent institution in 1903, making the University of Liverpool independent first.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Leeds"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Leeds"}, {"qid": 2506, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would have been the impact on Leeds' academic landscape if the University of Leeds had not been granted a royal charter in 1904?", "answer": " If the University of Leeds had not been granted a royal charter in 1904, it might not have achieved its current status as a leading research and academic institution, potentially impacting its development, reputation, and the variety of courses offered.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Leeds"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Leeds"}, {"qid": 2507, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the size of the University of Leeds' staff compare to that of similar institutions?", "answer": " The University of Leeds, with its significant staff number, is one of the largest employers among UK universities, indicating it likely has a larger staff than many similar institutions, although specific comparisons would depend on the institution in question.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Leeds"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Leeds"}, {"qid": 2508, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What year marked the beginning of the entity that would eventually become the University of Leeds?", "answer": " The year that marked the beginning of the entity that would eventually become the University of Leeds was 1831, with the establishment of the Leeds School of Medicine.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Leeds"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Leeds"}, {"qid": 2509, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between Sheffield Medical School, Firth College, and Sheffield Technical School in the formation of the University of Sheffield?", "answer": " Sheffield Medical School, Firth College, and Sheffield Technical School were amalgamated to form the University College of Sheffield in 1897, which later became the University of Sheffield in 1905.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Sheffield"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Sheffield"}, {"qid": 2510, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "When was the University of Sheffield officially granted its royal charter, making it one of the earliest institutions to be recognized as a university in the 20th century in England?", "answer": " 1905", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Sheffield"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Sheffield"}, {"qid": 2511, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the foundation year of the University of Sheffield compare to the foundation years of other Russell Group universities?", "answer": " The University of Sheffield, with its roots tracing back to 1828 and officially becoming a university in 1905, is among the older members of the Russell Group, with universities in this group having been founded across various dates from the 12th century to the 20th century.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Sheffield"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Sheffield"}, {"qid": 2512, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How did King Edward VII contribute to the establishment of the University of Sheffield?", "answer": " King Edward VII granted a royal charter to the University College of Sheffield in 1905, officially recognizing it as the University of Sheffield.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Sheffield"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "University of Sheffield"}, {"qid": 2513, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the earliest founding institution that contributed to the formation of the University of Sheffield?", "answer": " Sheffield Medical School, founded in 1828.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Sheffield"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Sheffield"}, {"qid": 2514, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Sheffield decided to establish a new campus, what precedent in its history might it follow in terms of institutional amalgamation?", "answer": " It might follow the precedent of amalgamating existing institutions or colleges to form a new faculty or campus, similar to how it was formed through the amalgamation of Sheffield Medical School, Firth College, and Sheffield Technical School.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Sheffield"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Sheffield"}, {"qid": 2515, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to other universities in South Yorkshire, where does the University of Sheffield stand in terms of its founding year?", "answer": " The University of Sheffield, with its historical roots dating back to 1828 and officially becoming a university in 1905, is one of the oldest universities in South Yorkshire.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Sheffield"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Sheffield"}, {"qid": 2516, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which King of England granted the royal charter that officially recognized the University of Sheffield?", "answer": " King Edward VII", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Sheffield"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Sheffield"}, {"qid": 2517, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What led to the transformation of University College of Sheffield into the University of Sheffield?", "answer": " The granting of a royal charter by King Edward VII in 1905 transformed University College of Sheffield into the University of Sheffield.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Sheffield"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Sheffield"}, {"qid": 2518, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Sheffield Medical School had not been founded in 1828, how might the formation of the University of Sheffield been affected?", "answer": " The formation of the University of Sheffield might have been delayed or altered significantly, as Sheffield Medical School was a foundational institution that contributed to its establishment.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Sheffield"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Sheffield"}, {"qid": 2519, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the staff number at the University of Sheffield compare to that of other Russell Group universities?", "answer": " The staff number at the University of Sheffield is competitive with other Russell Group universities, with each institution varying in size and staff numbers based on their faculties, departments, and research capabilities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Sheffield"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "University of Sheffield"}, {"qid": 2520, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most significant historical event in the establishment of the University of Sheffield?", "answer": " The granting of a royal charter by King Edward VII in 1905 is the most significant event, officially recognizing it as the University of Sheffield.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Sheffield"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Sheffield"}, {"qid": 2521, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the primary location of Newcastle University?", "answer": " Newcastle upon Tyne, North East England", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Newcastle University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Newcastle University"}, {"qid": 2522, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "In which countries does Newcastle University have overseas campuses?", "answer": " Singapore and Malaysia", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Newcastle University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Newcastle University"}, {"qid": 2523, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "When was Newcastle University founded, making it one of the historical universities in the UK?", "answer": " 1834", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Newcastle University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Newcastle University"}, {"qid": 2524, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the staff number at Newcastle University compare to other Russell Group universities?", "answer": " The specific staff number is required for a direct comparison, but Newcastle University is a significant employer within the group.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Newcastle University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Newcastle University"}, {"qid": 2525, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What distinguishes Newcastle University as a member of the Russell Group?", "answer": " Its status as a research-intensive university.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Newcastle University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Newcastle University"}, {"qid": 2526, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Who is the president of Newcastle University?", "answer": " The university is led by a Vice-Chancellor, not a president.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Newcastle University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Newcastle University"}, {"qid": 2527, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Newcastle University were to open another overseas campus, which continent might it consider based on current trends?", "answer": " This is speculative, but possibly in Asia or Africa given current expansion trends in global education.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Newcastle University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Newcastle University"}, {"qid": 2528, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What type of university is Newcastle University categorized as, based on its founding characteristics?", "answer": " Red brick university", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Newcastle University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Newcastle University"}, {"qid": 2529, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest part of Newcastle University's history?", "answer": " Its establishment in 1834 as the School of Medicine and Surgery.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Newcastle University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Newcastle University"}, {"qid": 2530, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to newer universities, how does Newcastle University's foundation year stand?", "answer": " It is one of the older institutions, founded in 1834.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Newcastle University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Newcastle University"}, {"qid": 2531, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Newcastle University were to increase its staff number significantly, how might this affect its standing within the Russell Group?", "answer": " Increasing staff numbers, especially in research, could potentially enhance its research output and reputation within the Russell Group.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Newcastle University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Newcastle University"}, {"qid": 2532, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the significance of Newcastle University being a member of the Russell Group?", "answer": " It signifies the university's commitment to high-quality research and teaching.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Newcastle University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Newcastle University"}, {"qid": 2533, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What was the reason behind the foundation of the University of Warwick in 1965?", "answer": " The University of Warwick was founded as part of a government initiative to expand higher education.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Warwick"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Warwick"}, {"qid": 2534, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which school was established first at the University of Warwick?", "answer": " Warwick Business School, established in 1967.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Warwick"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Warwick"}, {"qid": 2535, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the latest addition to the University of Warwick's specialized schools?", "answer": " Warwick Medical School, established in 2000.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Warwick"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Warwick"}, {"qid": 2536, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How did the University of Warwick expand its scope in 1979?", "answer": " Warwick incorporated Coventry College of Education in 1979.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Warwick"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Warwick"}, {"qid": 2537, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What significant addition did the University of Warwick make in 2004?", "answer": " Warwick incorporated Horticulture Research International in 2004.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Warwick"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Warwick"}, {"qid": 2538, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What was the first specialized school established by the University of Warwick after its foundation?", "answer": " Warwick Business School, established in 1967.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Warwick"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Warwick"}, {"qid": 2539, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Which was established earlier, Warwick Law School or Warwick Manufacturing Group (WMG)?", "answer": " Warwick Law School, established in 1968.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Warwick"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Warwick"}, {"qid": 2540, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the establishment of Warwick Medical School reflect the University of Warwick's expansion strategy?", "answer": " The establishment of Warwick Medical School in 2000 indicates the University of Warwick's ongoing strategy to expand its academic offerings and establish specialized schools to cater to evolving educational demands.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Warwick"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Warwick"}, {"qid": 2541, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Warwick were to establish a new school focused on renewable energy, following the pattern of its previous expansions, what might be a potential name for this school?", "answer": " Warwick School of Renewable Energy.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Warwick"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Warwick"}, {"qid": 2542, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Warwick decided to merge with another university, how might this affect its staff numbers?", "answer": " Merging with another university would likely increase the University of Warwick's staff numbers due to the integration of additional faculty and administrative personnel.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Warwick"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Warwick"}, {"qid": 2543, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which school's establishment at the University of Warwick marked its first venture into medical education?", "answer": " Warwick Medical School, established in 2000.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Warwick"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Warwick"}, {"qid": 2544, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What does the establishment of diverse specialized schools at the University of Warwick indicate about its educational priorities?", "answer": " The establishment of diverse specialized schools such as Warwick Business School, Warwick Law School, Warwick Manufacturing Group, and Warwick Medical School indicates the University of Warwick's commitment to providing a broad and diverse range of educational programs and responding to the changing needs of society.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Warwick"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Warwick"}, {"qid": 2545, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the staff number at Queen's University Belfast compare to that of University of Edinburgh?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen's University Belfast"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Queen's University Belfast"}, {"qid": 2546, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Is the start year of Queen's University Belfast closer to the founding year of University of Glasgow or University of Oxford?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen's University Belfast"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Queen's University Belfast"}, {"qid": 2547, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Who was the earliest president of Queen's University Belfast?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen's University Belfast"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Queen's University Belfast"}, {"qid": 2548, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest building located in Queen's University Belfast?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen's University Belfast"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Queen's University Belfast"}, {"qid": 2549, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What role does the president of Queen's University Belfast play in its administration?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen's University Belfast"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Queen's University Belfast"}, {"qid": 2550, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does Queen's University Belfast's location affect its student demographics?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen's University Belfast"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Queen's University Belfast"}, {"qid": 2551, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What impact did the founding year of Queen's University Belfast have on its academic programs?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen's University Belfast"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Queen's University Belfast"}, {"qid": 2552, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Queen's University Belfast were to double its staff number, how would this impact its research capabilities?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen's University Belfast"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Queen's University Belfast"}, {"qid": 2553, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Queen's University Belfast moved its location, how would that affect its historical significance?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen's University Belfast"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Queen's University Belfast"}, {"qid": 2554, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "Assuming Queen's University Belfast was founded a century earlier, how would its academic reputation compare to today?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen's University Belfast"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Queen's University Belfast"}, {"qid": 2555, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the president of Queen's University Belfast implemented a new educational strategy, how might this influence the university's international rankings?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen's University Belfast"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Queen's University Belfast"}, {"qid": 2556, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most popular course offered at Queen's University Belfast according to student enrollment numbers?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen's University Belfast"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Queen's University Belfast"}, {"qid": 2557, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the earliest year a university could have been established to predate the University of York?", "answer": " Before 1963", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of York"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of York"}, {"qid": 2558, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What relationship does the University of York have with the city it's located in based on its name?", "answer": " The University of York is named after the city of York, indicating it is located within or near the city.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of York"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of York"}, {"qid": 2559, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the staff number at the University of York compare to a university with 500 staff members?", "answer": " The University of York likely has more staff members, given its expansion to over thirty departments and centers.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of York"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of York"}, {"qid": 2560, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the latest possible year the University of York could have been established?", "answer": " 1963", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of York"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of York"}, {"qid": 2561, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the founding year of the University of York relate to its age?", "answer": " The University of York's age is determined by subtracting its founding year, 1963, from the current year.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of York"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of York"}, {"qid": 2562, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of York decided to double its number of departments, how many departments would it have?", "answer": " More than sixty departments.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of York"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of York"}, {"qid": 2563, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What would be the rank of the University of York in terms of its founding year among universities established in the 20th century?", "answer": " The exact rank can vary, but it would not be among the earliest since it was established in 1963.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of York"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of York"}, {"qid": 2564, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Is the University of York larger in terms of department numbers compared to a university with 20 departments?", "answer": " Yes, the University of York is larger as it has more than thirty departments.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of York"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of York"}, {"qid": 2565, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the significance of the post-nominals \"Ebor\" or \"York\" for the University of York?", "answer": " \"Ebor\" is derived from Eboracum, the Roman name for York, indicating a historical and locational relationship with the city.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of York"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of York"}, {"qid": 2566, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of York were to merge with another university in York, what might be a hypothetical name for the new entity?", "answer": " The Combined University of York or York Metropolitan University.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of York"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of York"}, {"qid": 2567, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to its establishment in 1963, how would the University of York's department count change if it had only 15 departments at its founding?", "answer": " The department count significantly increased from possibly 15 at founding to more than thirty departments now.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of York"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of York"}, {"qid": 2568, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the maximum number of staff members the University of York could have to still be considered a medium-sized institution?", "answer": " The maximum number is not specified, but it would depend on the criteria for categorizing medium-sized institutions.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of York"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of York"}, {"qid": 2569, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What was the original name of Cardiff University when it was established in 1883?", "answer": " The University College of South Wales and Monmouthshire", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cardiff University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Cardiff University"}, {"qid": 2570, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How did Cardiff University's status change in 2005 in terms of degree-awarding powers?", "answer": " It became an independent university awarding its own degrees.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cardiff University"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "Cardiff University"}, {"qid": 2571, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "When did Cardiff University merge with the University of Wales Institute of Science and Technology?", "answer": " 1988", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cardiff University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Cardiff University"}, {"qid": 2572, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the earliest name of Cardiff University in its history?", "answer": " The University College of South Wales and Monmouthshire", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cardiff University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Cardiff University"}, {"qid": 2573, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "When did Cardiff University become an independent entity awarding its own degrees?", "answer": " 2005", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cardiff University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Cardiff University"}, {"qid": 2574, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Is the number of staff at Cardiff University larger than 1000?", "answer": " Yes", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cardiff University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Cardiff University"}, {"qid": 2575, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the sequence of name changes Cardiff University went through from its establishment until it became an independent university?", "answer": " The University College of South Wales and Monmouthshire, University College, Cardiff, University of Wales College, Cardiff, University of Wales, Cardiff, Cardiff University", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cardiff University"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "Cardiff University"}, {"qid": 2576, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Cardiff University decides to open a new campus in another city, what would be a potential name based on its naming history?", "answer": " Cardiff University [City Name] Campus", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cardiff University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Cardiff University"}, {"qid": 2577, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most recent legal name change of Cardiff University before 2005?", "answer": " Cardiff University in 1999", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cardiff University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Cardiff University"}, {"qid": 2578, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Where is Cardiff University located?", "answer": " Cardiff, Wales", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cardiff University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Cardiff University"}, {"qid": 2579, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Was Cardiff University known by a different name before it adopted its operating name in 1999?", "answer": " Yes", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cardiff University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Cardiff University"}, {"qid": 2580, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Cardiff University had not merged with the University of Wales Institute of Science and Technology, what might have been its name today?", "answer": " University College, Cardiff", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cardiff University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Cardiff University"}, {"qid": 2581, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between St Luke's College, Exeter School of Science, Exeter School of Art, and the Camborne School of Mines and the University of Exeter?", "answer": " These institutions are the predecessor institutions of the University of Exeter, having been established in 1838, 1855, 1863, and 1888 respectively before forming the University of Exeter after it received its royal charter in 1955.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Exeter"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Exeter"}, {"qid": 2582, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which institution among St Luke's College, Exeter School of Science, Exeter School of Art, and the Camborne School of Mines was established first before becoming part of the University of Exeter?", "answer": " St Luke's College was established first in 1838.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Exeter"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Exeter"}, {"qid": 2583, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the significance of the abbreviation Exon for the University of Exeter?", "answer": " Exon is the abbreviation derived from the Latin Exoniensis, used as the suffix given to honorary and academic degrees from the University of Exeter.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Exeter"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Exeter"}, {"qid": 2584, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of the University of Exeter compare to the establishment years of its predecessor institutions?", "answer": " The University of Exeter was founded in 1955, which is later than the establishment years of its predecessor institutions, with the earliest being St Luke's College in 1838.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Exeter"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Exeter"}, {"qid": 2585, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the earliest founded entity among the predecessor institutions of the University of Exeter?", "answer": " St Luke's College, founded in 1838, is the earliest.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Exeter"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Exeter"}, {"qid": 2586, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Where is the main campus of the University of Exeter located?", "answer": " The main campus of the University of Exeter is located in Exeter, Devon.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Exeter"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Exeter"}, {"qid": 2587, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Exeter were to open a new campus, based on its history, in which English region is it most likely to be located?", "answer": " Based on its history, it is most likely to be located in the West Country of England.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Exeter"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Exeter"}, {"qid": 2588, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which of the University of Exeter's predecessor institutions was established last before it received its royal charter in 1955?", "answer": " The Camborne School of Mines, established in 1888, was established last before the University received its royal charter in 1955.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Exeter"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "University of Exeter"}, {"qid": 2589, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What event in 1955 marked a significant development in the history of the University of Exeter?", "answer": " The University of Exeter received its royal charter in 1955.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Exeter"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "University of Exeter"}, {"qid": 2590, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How do the establishment years of the University of Exeter's predecessor institutions compare to the year it received its royal charter?", "answer": " All the predecessor institutions were established before the University of Exeter received its royal charter in 1955, with establishment years ranging from 1838 to 1888.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Exeter"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "University of Exeter"}, {"qid": 2591, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Exeter decided to honor its oldest predecessor institution, which one would it be celebrating?", "answer": " It would be celebrating St Luke's College, its oldest predecessor institution established in 1838.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Exeter"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Exeter"}, {"qid": 2592, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most recent year among the establishment years of the University of Exeter's predecessor institutions?", "answer": " The most recent year among the establishment years is 1888, the year the Camborne School of Mines was established.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Exeter"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Exeter"}, {"qid": 2593, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the largest city in Canada by population?", "answer": " Toronto", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Canada"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Canada"}, {"qid": 2594, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which province in Canada has the most extensive coastline?", "answer": " Newfoundland and Labrador", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Canada"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Canada"}, {"qid": 2595, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does Canada's geographical size compare to that of the United States?", "answer": " Canada is larger than the United States in total area.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Canada"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Canada"}, {"qid": 2596, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the population density of Canada compare to that of the United States?", "answer": " Canada has a lower population density than the United States.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Canada"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Canada"}, {"qid": 2597, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Canada were to create a new territory, how might this affect the number of its territories?", "answer": " The number of territories in Canada would increase from three to four.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Canada"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Canada"}, {"qid": 2598, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the climate in Vancouver compare to that in Montreal?", "answer": " Vancouver has a milder climate than Montreal, with less extreme temperatures and more rainfall.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Canada"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Canada"}, {"qid": 2599, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the smallest province in Canada by land area?", "answer": " Prince Edward Island", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Canada"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Canada"}, {"qid": 2600, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the length of Canada's coastline compare to that of Russia?", "answer": " Canada has the longest coastline in the world, longer than Russia's.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Canada"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Canada"}, {"qid": 2601, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Canada were to annex Greenland, how would this affect its total area?", "answer": " Canada's total area would significantly increase, making it even larger than it is now.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Canada"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Canada"}, {"qid": 2602, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How do the economic contributions of Toronto compare to those of Ottawa?", "answer": " Toronto contributes more significantly to Canada's economy than Ottawa, being a larger financial center.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Canada"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Canada"}, {"qid": 2603, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which Canadian territory has the smallest population?", "answer": " Nunavut", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Canada"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Canada"}, {"qid": 2604, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the number of provinces in Canada compare to the number of states in the United States?", "answer": " The United States has more states (50) than Canada has provinces (10).", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Canada"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Canada"}, {"qid": 2605, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between Japan's geographical location and its proneness to earthquakes and tsunamis?", "answer": " Japan's geographical location on the Pacific Ring of Fire makes its islands prone to destructive earthquakes and tsunamis due to the area's high seismic activity.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Japan"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Japan"}, {"qid": 2606, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the largest city in Japan?", "answer": " Tokyo is the largest city in Japan.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Japan"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Japan"}, {"qid": 2607, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which region of Japan has the highest population density?", "answer": " The Greater Tokyo Area has the highest population density in Japan.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Japan"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Japan"}, {"qid": 2608, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the population of Tokyo compare to that of Osaka?", "answer": " Tokyo has a significantly larger population than Osaka, with the Greater Tokyo Area being the most populous metropolitan area in the world.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Japan"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Japan"}, {"qid": 2609, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does Japan's mountainous terrain affect its urbanization and agricultural practices?", "answer": " Japan's mountainous terrain concentrates its agriculture and highly urbanized population along its eastern coastal plains due to limited flat land.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Japan"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Japan"}, {"qid": 2610, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Japan were to experience a decrease in its mountainous areas, how might this affect its population distribution?", "answer": " A decrease in mountainous areas might lead to an expansion of habitable and agricultural land, potentially redistributing the population more evenly across the country.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Japan"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "Japan"}, {"qid": 2611, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the smallest of the four major islands of Japan?", "answer": " Shikoku is the smallest of the four major islands of Japan.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Japan"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Japan"}, {"qid": 2612, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the size of Honshu compare to Hokkaido?", "answer": " Honshu is larger than Hokkaido, making it the largest island of Japan.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Japan"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Japan"}, {"qid": 2613, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the impact of Japan's location on its climate?", "answer": " Japan's location affects its climate by offering a range from temperate in the north (Hokkaido) to subtropical in the south (Okinawa).", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Japan"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Japan"}, {"qid": 2614, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Tokyo were to relocate its capital status to another city, how might this impact the population distribution within Japan?", "answer": " Relocating the capital from Tokyo to another city might lead to a redistribution of population and resources, potentially decreasing Tokyo's population density and increasing it in the new capital area.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Japan"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Japan"}, {"qid": 2615, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which of Japan's regions is most prone to tsunamis?", "answer": " The Pacific coast of Japan, particularly the Tohoku region, is most prone to tsunamis.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Japan"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Japan"}, {"qid": 2616, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the economic output of Tokyo compare to that of Kyoto?", "answer": " Tokyo's economic output is significantly larger than Kyoto's, as Tokyo is the capital and the largest metropolitan area in the world, hosting numerous multinational corporations and industries.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Japan"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Japan"}, {"qid": 2617, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Which is larger in area, Italy or Switzerland?", "answer": " Italy", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Italy"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Italy"}, {"qid": 2618, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most populous city in Italy?", "answer": " Rome", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Italy"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Italy"}, {"qid": 2619, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the geographic location of Italy influence its climate compared to its northern neighbors like Switzerland?", "answer": " Italy's peninsula extending into the Mediterranean Sea and its southern location compared to Switzerland gives it a warmer, Mediterranean climate.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Italy"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Italy"}, {"qid": 2620, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Italy were to host the next European Union summit, which city would likely be chosen considering its significance and facilities?", "answer": " Rome", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Italy"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Italy"}, {"qid": 2621, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Is Italy's population greater than that of Switzerland?", "answer": " Yes", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Italy"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Italy"}, {"qid": 2622, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which Italian city has the highest number of tourists annually?", "answer": " Rome", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Italy"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Italy"}, {"qid": 2623, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the presence of the Alps affect Italy's weather patterns?", "answer": " The Alps act as a barrier that protects Italy from the cold northern European air, contributing to milder winters in the northern part of the country.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Italy"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Italy"}, {"qid": 2624, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If a new technology hub were to be established in Italy, which major urban area would be the most suitable location, considering existing infrastructure and economic activities?", "answer": " Milan", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Italy"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Italy"}, {"qid": 2625, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Between Italy and France, which country has a longer coastline?", "answer": " Italy", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Italy"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Italy"}, {"qid": 2626, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest university in Italy?", "answer": " The University of Bologna", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Italy"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Italy"}, {"qid": 2627, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does Italy's membership in the European Union benefit its economy?", "answer": " Italy benefits from the EU through access to a larger market for its products, increased foreign investment, and funds for development projects.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Italy"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Italy"}, {"qid": 2628, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Italy were to introduce a new national park, in which region would it likely be located to promote biodiversity and environmental protection?", "answer": " Apennine Mountains region", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Italy"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Italy"}, {"qid": 2629, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the largest state by area in the United States?", "answer": " Alaska", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United States"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "United States"}, {"qid": 2630, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which state has the smallest population in the United States?", "answer": " Wyoming", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United States"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "United States"}, {"qid": 2631, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Is the population of California larger than that of Texas?", "answer": " Yes", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United States"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "United States"}, {"qid": 2632, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the location of Hawaii relate to the other states?", "answer": " Hawaii is an archipelago in the Pacific Ocean, separate from the 48 contiguous states.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United States"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "United States"}, {"qid": 2633, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Alaska was divided into two equal parts, would Texas become the largest state by area?", "answer": " Yes", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United States"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "United States"}, {"qid": 2634, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most populous city in the United States?", "answer": " New York City", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United States"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "United States"}, {"qid": 2635, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the role of Washington, D.C., in the United States?", "answer": " It is the federal capital district and the seat of the federal government.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United States"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "United States"}, {"qid": 2636, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Puerto Rico became a state, how would this change the total number of states?", "answer": " The total number of states would increase from 50 to 51.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United States"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "United States"}, {"qid": 2637, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Does the United States have a larger land area than China?", "answer": " No", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United States"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "United States"}, {"qid": 2638, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which U.S. state has the longest coastline?", "answer": " Alaska", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United States"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "United States"}, {"qid": 2639, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How do the Great Lakes affect the border between the United States and Canada?", "answer": " The Great Lakes form part of the natural border between the United States and Canada.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United States"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "United States"}, {"qid": 2640, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If a new capital city were chosen within the United States, how would this affect the status of Washington, D.C.?", "answer": " Washington, D.C., would no longer be the federal capital district nor the seat of the federal government.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United States"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "United States"}, {"qid": 2641, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Which country has a larger population, Germany or Denmark?", "answer": " Germany", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Germany"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Germany"}, {"qid": 2642, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most populous city in Germany?", "answer": " Berlin", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Germany"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Germany"}, {"qid": 2643, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does Germany's location influence its climate?", "answer": " Germany's location between the Baltic and North Sea to the north and the Alps to the south influences its temperate seasonal climate.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Germany"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Germany"}, {"qid": 2644, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Germany decided to increase its focus on renewable energy, how might this affect its economy in the long term?", "answer": " Focusing on renewable energy could lead to economic growth through the creation of green jobs, increased energy security, and potentially leading the country to become a leader in renewable energy technology.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Germany"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Germany"}, {"qid": 2645, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the largest urban area in Germany?", "answer": " The Ruhr", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Germany"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Germany"}, {"qid": 2646, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does Germany's border with Poland and Czechia affect its trade relationships?", "answer": " Germany's border with Poland and Czechia facilitates trade and economic exchange, enhancing its role in Central European commerce.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Germany"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Germany"}, {"qid": 2647, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Germany were to host another international climate change conference, how could this impact its international relations?", "answer": " Hosting an international climate change conference could strengthen Germany's international relations by positioning it as a leader in global environmental efforts and fostering collaboration on climate policy.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Germany"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Germany"}, {"qid": 2648, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the area of Germany compare to that of Switzerland?", "answer": " Germany has a significantly larger area than Switzerland.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Germany"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Germany"}, {"qid": 2649, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which state in Germany has the highest population?", "answer": " North Rhine-Westphalia", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Germany"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Germany"}, {"qid": 2650, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What role does Frankfurt play in Germany's economy?", "answer": " Frankfurt serves as Germany's main financial centre, hosting significant institutions like the European Central Bank, thus playing a crucial role in the country's and Europe's economy.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Germany"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Germany"}, {"qid": 2651, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Germany were to close its borders, how would this affect its economy?", "answer": " Closing its borders could disrupt trade, affect the labor market due to reduced mobility, and potentially harm industries reliant on imports and exports, negatively affecting the economy.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Germany"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Germany"}, {"qid": 2652, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Is Germany's population larger than that of France?", "answer": " Yes, Germany has a larger population than France.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Germany"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Germany"}, {"qid": 2653, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the largest city in France?", "answer": " Paris", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["France"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "France"}, {"qid": 2654, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does France's geographical location contribute to its extensive maritime borders?", "answer": " France's overseas regions and territories, including islands in Oceania and the Indian Ocean, contribute to it having one of the largest discontiguous exclusive economic zones in the world.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["France"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "France"}, {"qid": 2655, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the population of metropolitan France compare to its overseas regions?", "answer": " Metropolitan France has a significantly larger population compared to its overseas regions.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["France"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "France"}, {"qid": 2656, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If France decided to focus solely on its metropolitan area, how would that affect its exclusive economic zone size?", "answer": " Focusing solely on the metropolitan area would significantly reduce the size of France's exclusive economic zone, as it benefits greatly from its overseas regions and territories.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["France"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "France"}, {"qid": 2657, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which French region is the farthest from the mainland?", "answer": " French Guiana in South America is the farthest French region from the mainland.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["France"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "France"}, {"qid": 2658, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does France's border with Switzerland contribute to its economic relations?", "answer": " France's border with Switzerland facilitates trade, tourism, and bilateral cooperation, contributing positively to its economic relations.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["France"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "France"}, {"qid": 2659, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to its border with Spain, how does France's maritime border with the United Kingdom impact its international relations?", "answer": " France's maritime border with the United Kingdom impacts its international relations differently, often focusing more on maritime and security issues, compared to the land border with Spain which focuses on land-based trade and cross-border cooperation.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["France"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "France"}, {"qid": 2660, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If France were to lose its overseas territories, how would its global influence change?", "answer": " Losing its overseas territories would significantly reduce France's global influence by shrinking its exclusive economic zone and diminishing its presence in strategic locations around the world.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["France"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "France"}, {"qid": 2661, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the highest point in France?", "answer": " Mont Blanc", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["France"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "France"}, {"qid": 2662, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the Mediterranean Sea influence France's climate and agriculture in the southeast?", "answer": " The Mediterranean Sea moderates the climate in the southeast of France, leading to warm summers and mild winters, which are conducive to agriculture, especially vineyards and olive groves.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["France"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "France"}, {"qid": 2663, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the size of France's exclusive economic zone compare to that of Italy?", "answer": " France's exclusive economic zone is significantly larger than Italy's, due in large part to France's overseas regions and territories.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["France"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "France"}, {"qid": 2664, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would be the impact on France's defense strategy if it no longer shared a border with Germany?", "answer": " If France no longer shared a border with Germany, it might lead to a reevaluation of its defense strategy, potentially reducing the emphasis on land defense measures in favor of increased focus on maritime and aerial security, particularly given its extensive maritime borders.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["France"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "France"}, {"qid": 2665, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the capital city of the United Kingdom?", "answer": " London", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United Kingdom"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "United Kingdom"}, {"qid": 2666, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How many countries comprise the United Kingdom?", "answer": " Four", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United Kingdom"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "United Kingdom"}, {"qid": 2667, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the population of the United Kingdom's largest city?", "answer": " 14.9 million", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United Kingdom"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "United Kingdom"}, {"qid": 2668, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which sea is located to the south of the United Kingdom?", "answer": " English Channel", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United Kingdom"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "United Kingdom"}, {"qid": 2669, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the largest country in the United Kingdom by area?", "answer": " England", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United Kingdom"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "United Kingdom"}, {"qid": 2670, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Is the population of London greater than that of Belfast?", "answer": " Yes", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United Kingdom"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "United Kingdom"}, {"qid": 2671, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Does the United Kingdom have a larger area than the Republic of Ireland?", "answer": " Yes", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United Kingdom"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "United Kingdom"}, {"qid": 2672, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What body of water lies to the west of the United Kingdom?", "answer": " Atlantic Ocean", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United Kingdom"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "United Kingdom"}, {"qid": 2673, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Scotland were to become independent, how many countries would the United Kingdom comprise?", "answer": " Three", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United Kingdom"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "United Kingdom"}, {"qid": 2674, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Northern Ireland and the Republic of Ireland were to unite, what would be the new border situation for the United Kingdom?", "answer": " The United Kingdom would no longer share a land border with the Republic of Ireland.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United Kingdom"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "United Kingdom"}, {"qid": 2675, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the smallest country in the United Kingdom by area?", "answer": " Northern Ireland", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United Kingdom"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "United Kingdom"}, {"qid": 2676, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What sea lies to the north of the United Kingdom?", "answer": " North Sea", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United Kingdom"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "United Kingdom"}, {"qid": 2677, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Which city in Russia has a larger population, Moscow or Saint Petersburg?", "answer": " Moscow", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Russia"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Russia"}, {"qid": 2678, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Does Russia share more land borders with countries than Brazil?", "answer": " Yes", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Russia"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Russia"}, {"qid": 2679, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the largest city in Russia by area?", "answer": " Moscow", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Russia"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Russia"}, {"qid": 2680, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which country is the largest in the world by area?", "answer": " Russia", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Russia"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Russia"}, {"qid": 2681, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Why is Russia considered a transcontinental country?", "answer": " Because it spans Eastern Europe and North Asia, extending across eleven time zones.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Russia"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Russia"}, {"qid": 2682, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the urbanisation rate of Russia affect its population distribution?", "answer": " The high urbanisation rate results in a significant portion of the population living in major cities, including 16 population centres with over a million inhabitants.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Russia"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Russia"}, {"qid": 2683, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What role does Saint Petersburg play in the cultural landscape of Russia?", "answer": " It is considered Russia's cultural capital.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Russia"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Russia"}, {"qid": 2684, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If a new city in Russia were to surpass Moscow in population, what would be its new rank in terms of largest cities in Russia?", "answer": " It would become the largest city in Russia.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Russia"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Russia"}, {"qid": 2685, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would happen if Russia decided to move its capital from Moscow to Saint Petersburg?", "answer": " Saint Petersburg would become the new capital of Russia, changing the political and cultural significance of both cities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Russia"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Russia"}, {"qid": 2686, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Russia were to split into two countries along the Ural Mountains, how would this affect its status as the largest country in the world by area?", "answer": " It would likely lose its status as the largest country in the world by area, depending on the size of the two new countries.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Russia"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Russia"}, {"qid": 2687, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would be the global implications if Russia ceased to be a transcontinental country?", "answer": " It would affect geopolitical dynamics, particularly in Eastern Europe and North Asia, and might alter global perceptions of transcontinental nations.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Russia"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Russia"}, {"qid": 2688, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Russia were to establish a new city that becomes one of the top 16 population centres, how would that affect the urbanisation pattern in the country?", "answer": " It would increase the number of major urban centres, potentially impacting population distribution and urban development strategies.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Russia"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Russia"}, {"qid": 2689, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the staff number at Tsinghua University compare to that of Peking University?", "answer": " This cannot be answered without specific data on the staff numbers of both universities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Tsinghua University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Tsinghua University"}, {"qid": 2690, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest university between Tsinghua University and Fudan University?", "answer": " Fudan University, established in 1905, is older than Tsinghua University, which was established in 1911.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Tsinghua University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Tsinghua University"}, {"qid": 2691, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between Tsinghua University and the Ministry of Education of China?", "answer": " Tsinghua University is affiliated with and funded by the Ministry of Education of China.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Tsinghua University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Tsinghua University"}, {"qid": 2692, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Tsinghua University decided to start a new campus abroad, which existing global partnership might they leverage?", "answer": " They might leverage their membership in the C9 League to partner with other top-tier universities in China or collaborate with their numerous international university partners.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Tsinghua University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Tsinghua University"}, {"qid": 2693, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to other C9 League members, where does Tsinghua University rank in terms of the number of staff members?", "answer": " Without specific staff numbers for all C9 League members, a precise ranking cannot be provided.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Tsinghua University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Tsinghua University"}, {"qid": 2694, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which project is Tsinghua University a part of, Project 211, Project 985, or the Double First-Class Construction, that is most prestigious?", "answer": " All three projects, Project 211, Project 985, and the Double First-Class Construction, are prestigious, but the Double First-Class Construction is considered the latest major initiative aimed at developing world-class universities and disciplines in China.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Tsinghua University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Tsinghua University"}, {"qid": 2695, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the location of Tsinghua University in Haidian, Beijing, benefit its research and academic collaborations?", "answer": " Being located in Haidian, Beijing, places Tsinghua University in a major academic and technological hub, facilitating collaborations with numerous research institutes, tech companies, and other top universities in the area.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Tsinghua University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Tsinghua University"}, {"qid": 2696, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would be the impact on Tsinghua University's international rankings if it significantly increased its staff number?", "answer": " Significantly increasing its staff number could potentially improve Tsinghua University's international rankings by enhancing research output, student-to-faculty ratio, and academic reputation, provided the quality of education and research remains high.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Tsinghua University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Tsinghua University"}, {"qid": 2697, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does Tsinghua University's affiliation with the Ministry of Education of China compare to universities that are affiliated with local governments?", "answer": " Tsinghua University's affiliation with the Ministry of Education of China provides it with more direct access to national funding, policies, and international collaboration opportunities compared to universities affiliated with local governments.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Tsinghua University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Tsinghua University"}, {"qid": 2698, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What makes Tsinghua University the most attractive option for students among the C9 League universities?", "answer": " Its reputation as a leading institution in China, strong affiliations with the Ministry of Education, involvement in prestigious projects like Project 211, Project 985, and the Double First-Class Construction, and its location in the academic hub of Haidian, Beijing, make Tsinghua University highly attractive.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Tsinghua University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Tsinghua University"}, {"qid": 2699, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does Tsinghua University's participation in the Double First-Class Construction reflect on its academic goals?", "answer": " Tsinghua University's participation in the Double First-Class Construction reflects its commitment to achieving excellence in education, research, and innovation, aiming to become a world-class institution in various disciplines.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Tsinghua University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Tsinghua University"}, {"qid": 2700, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Tsinghua University were to lead a global environmental research initiative, how could its location and resources benefit this project?", "answer": " Its location in Beijing provides access to significant research and policy-making resources, while its strong academic staff, financial support from the Ministry of Education, and extensive network of international collaborations would greatly benefit and potentially lead the success of a global environmental research initiative.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Tsinghua University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Tsinghua University"}, {"qid": 2701, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the staff number at Peking University compare to that of Tsinghua University?", "answer": " This requires current data comparison, which might vary over time.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Peking University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Peking University"}, {"qid": 2702, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest university among Peking University and Fudan University?", "answer": " Peking University, founded in 1898.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Peking University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Peking University"}, {"qid": 2703, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Why is Peking University considered a part of the C9 League?", "answer": " Because it meets the high standards of education, research, and faculty set by the C9 League, which is an alliance of elite Chinese universities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Peking University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Peking University"}, {"qid": 2704, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Peking University were to open a new campus, how would the decision impact its staff numbers?", "answer": " It would likely increase the staff numbers to accommodate the needs of the new campus.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Peking University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Peking University"}, {"qid": 2705, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Who has a longer history, Peking University or Harvard University?", "answer": " Harvard University, founded in 1636.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Peking University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Peking University"}, {"qid": 2706, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which university is older, Peking University or Yale University?", "answer": " Yale University, founded in 1701.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Peking University"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "Peking University"}, {"qid": 2707, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How is Peking University affiliated with the Ministry of Education of China?", "answer": " It is funded by and follows the regulations of the Ministry of Education of China.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Peking University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Peking University"}, {"qid": 2708, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would be the possible implications for Peking University if it left the C9 League?", "answer": " It could impact its prestige, funding opportunities, and collaboration with other elite institutions.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Peking University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Peking University"}, {"qid": 2709, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Is the staff number at Peking University larger than that of Shanghai Jiao Tong University?", "answer": " This requires current data for an accurate comparison.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Peking University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Peking University"}, {"qid": 2710, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most prestigious university in China?", "answer": " Peking University is considered one of the most prestigious, along with Tsinghua University.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Peking University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Peking University"}, {"qid": 2711, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What role does the C9 League play in Peking University's reputation?", "answer": " Being a part of the C9 League enhances Peking University's reputation as it signifies elite status among Chinese universities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Peking University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Peking University"}, {"qid": 2712, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Peking University significantly increased its staff number, how would it affect its student-to-teacher ratio?", "answer": " The student-to-teacher ratio would decrease, potentially improving the quality of education and individual attention to students.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Peking University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Peking University"}, {"qid": 2713, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of Zhejiang University compare to Tsinghua University?", "answer": " Zhejiang University was established in 1897, while Tsinghua University was founded in 1911, making Zhejiang University older.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Zhejiang University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Zhejiang University"}, {"qid": 2714, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which university has the highest number of staff members, Zhejiang University or Fudan University?", "answer": " As of the last available data, Zhejiang University has one of the largest staff bodies among Chinese universities, but specific numbers are needed for a direct comparison.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Zhejiang University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Zhejiang University"}, {"qid": 2715, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Who is the president of Zhejiang University, and what is the university's affiliation?", "answer": " The president of Zhejiang University is affiliated with the Ministry of Education as part of its governance structure.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Zhejiang University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Zhejiang University"}, {"qid": 2716, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Zhejiang University decided to open a new campus in another country, which ministry would it likely consult?", "answer": " It would likely consult the Ministry of Education for guidelines and approval.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Zhejiang University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Zhejiang University"}, {"qid": 2717, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to Peking University, how does Zhejiang University rank in terms of its membership in Project 985?", "answer": " Both Zhejiang University and Peking University are members of Project 985, making them equally prestigious in this regard.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Zhejiang University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Zhejiang University"}, {"qid": 2718, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the earliest founded university among Zhejiang University, Shanghai Jiao Tong University, and Nanjing University?", "answer": " Zhejiang University, founded in 1897, is the earliest among the three.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Zhejiang University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Zhejiang University"}, {"qid": 2719, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the location of Zhejiang University relate to its participation in the Double First-Class Construction initiative?", "answer": " Being located in Hangzhou, Zhejiang, contributes to its strategic importance and inclusion in the Double First-Class Construction initiative by the Chinese government.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Zhejiang University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Zhejiang University"}, {"qid": 2720, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Zhejiang University were to collaborate with an international university not yet part of Project 985, what might be a potential benefit for ZJU?", "answer": " A potential benefit could be enhancing its global research collaborations and increasing its international academic reputation.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Zhejiang University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Zhejiang University"}, {"qid": 2721, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the student population of Zhejiang University compare to that of Beijing University of Chemical Technology?", "answer": " Zhejiang University has a larger student population, reflecting its status as a major research university in China.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Zhejiang University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Zhejiang University"}, {"qid": 2722, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which has a larger campus area, Zhejiang University or Southeast University?", "answer": " Zhejiang University has one of the largest campus areas among Chinese universities, though specific measurements would be required for a precise comparison.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Zhejiang University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Zhejiang University"}, {"qid": 2723, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between Zhejiang University's founding year and its participation in Project 211?", "answer": " Zhejiang University's long history since its founding in 1897 underscores its significant role in Chinese higher education, qualifying it for participation in Project 211.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Zhejiang University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Zhejiang University"}, {"qid": 2724, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Zhejiang University were to start a new research center focused on renewable energy, under which of its existing faculties might this center fall?", "answer": " It might fall under the Faculty of Engineering or the Faculty of Science, given their relevance to renewable energy research.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Zhejiang University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Zhejiang University"}, {"qid": 2725, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the staff number at Fudan University compare to that of Shanghai Jiao Tong University?", "answer": " This requires current data for a comparison, which might vary over time.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Fudan University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Fudan University"}, {"qid": 2726, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest university in Shanghai?", "answer": " Fudan University, founded in 1905.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Fudan University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Fudan University"}, {"qid": 2727, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What relationship does Fudan University have with the Ministry of Education?", "answer": " Fudan University is affiliated with the Ministry of Education.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Fudan University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Fudan University"}, {"qid": 2728, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would happen if Fudan University decided to become a private institution?", "answer": " It would likely undergo significant changes in governance, funding, and potentially its curriculum and admission processes.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Fudan University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Fudan University"}, {"qid": 2729, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Which has a larger campus, Fudan University or Shanghai University?", "answer": " This requires specific measurements of both campuses for an accurate comparison.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Fudan University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Fudan University"}, {"qid": 2730, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Among universities in Shanghai, which has the highest number of international students?", "answer": " This requires up-to-date statistics, but Fudan University is known to have a significant number of international students.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Fudan University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Fudan University"}, {"qid": 2731, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the co-funding arrangement between Fudan University and the Shanghai Municipal Government benefit the university?", "answer": " The co-funding arrangement likely provides additional financial resources, enhancing its research capabilities, infrastructure, and educational offerings.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Fudan University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Fudan University"}, {"qid": 2732, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Fudan University were to double its faculty size, how might this impact its student-to-teacher ratio?", "answer": " Doubling the faculty size would presumably lower the student-to-teacher ratio, potentially improving personalized attention and teaching quality.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Fudan University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Fudan University"}, {"qid": 2733, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the academic reputation of Fudan University compare to that of Peking University?", "answer": " Both universities are highly reputable, but specific rankings can vary by source and year.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Fudan University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Fudan University"}, {"qid": 2734, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most popular major at Fudan University?", "answer": " This requires current enrollment data, which can change over time.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Fudan University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Fudan University"}, {"qid": 2735, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the role of the Shanghai Municipal Government in the management of Fudan University?", "answer": " The Shanghai Municipal Government co-funds Fudan University, likely having a role in its strategic direction and investment in infrastructure and resources.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Fudan University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Fudan University"}, {"qid": 2736, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Fudan University were to open a campus abroad, what challenges might it face?", "answer": " It might face challenges related to cultural adaptation, regulatory compliance, academic standardization, and financial management.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Fudan University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Fudan University"}, {"qid": 2737, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between Nanjing University and the Ministry of Education?", "answer": " Nanjing University is affiliated and sponsored by the Ministry of Education.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Nanjing University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Nanjing University"}, {"qid": 2738, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How is Nanjing University related to Project 211 and Project 985?", "answer": " Nanjing University is part of both Project 211 and Project 985.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Nanjing University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Nanjing University"}, {"qid": 2739, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What league is Nanjing University a member of that denotes its high status among Chinese universities?", "answer": " C9 League", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Nanjing University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Nanjing University"}, {"qid": 2740, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to other universities, how does Nanjing University's affiliation with the Ministry of Education impact its status?", "answer": " The affiliation enhances its status by indicating government support and recognition.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Nanjing University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Nanjing University"}, {"qid": 2741, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "In what way is Nanjing University involved in the Double First-Class Construction initiative?", "answer": " Nanjing University is a participant in the Double First-Class Construction initiative, aiming to develop world-class disciplines.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Nanjing University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Nanjing University"}, {"qid": 2742, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most prestigious academic alliance that Nanjing University is a part of?", "answer": " C9 League", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Nanjing University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Nanjing University"}, {"qid": 2743, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Nanjing University were to leave the C9 League, what would be the potential impact on its reputation?", "answer": " Leaving the C9 League could potentially decrease its reputation as it would no longer be part of this elite group of universities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Nanjing University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Nanjing University"}, {"qid": 2744, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would happen if Nanjing University ceased to be sponsored by the Ministry of Education?", "answer": " It might lose some of its prestige and possibly funding, affecting its programs and research.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Nanjing University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Nanjing University"}, {"qid": 2745, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does being a member of both Project 211 and Project 985 benefit Nanjing University in terms of research and development?", "answer": " Membership in both projects likely provides enhanced funding, resources, and recognition, boosting its R&D capabilities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Nanjing University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Nanjing University"}, {"qid": 2746, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Among the universities in Jiangsu, China, where does Nanjing University rank in terms of its historical significance and academic achievements?", "answer": " It is one of the most historically significant and academically accomplished universities in Jiangsu, China.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Nanjing University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Nanjing University"}, {"qid": 2747, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does Nanjing University's participation in international collaborations compare with its local engagements in terms of fostering academic excellence?", "answer": " International collaborations likely extend its academic excellence by exposing it to global research and teaching methods, whereas local engagements strengthen its domestic influence and relevance.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Nanjing University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Nanjing University"}, {"qid": 2748, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Nanjing University were to expand its involvement in the Double First-Class Construction, how might that influence its academic programs and global rankings?", "answer": " Expanding its involvement would likely enhance its academic programs, attract more high-quality faculty and students, and improve its position in global rankings.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Nanjing University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Nanjing University"}, {"qid": 2749, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the staff number of Xi'an Jiaotong University compare to that of another university of similar size?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Xi'an Jiaotong University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Xi'an Jiaotong University"}, {"qid": 2750, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest department at Xi'an Jiaotong University?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Xi'an Jiaotong University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Xi'an Jiaotong University"}, {"qid": 2751, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between Xi'an Jiaotong University's president and its academic development?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Xi'an Jiaotong University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Xi'an Jiaotong University"}, {"qid": 2752, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Xi'an Jiaotong University were to open a new faculty, what would be the process?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Xi'an Jiaotong University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Xi'an Jiaotong University"}, {"qid": 2753, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which building at Xi'an Jiaotong University is the oldest?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Xi'an Jiaotong University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Xi'an Jiaotong University"}, {"qid": 2754, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the location of Xi'an Jiaotong University impact its academic collaborations?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Xi'an Jiaotong University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Xi'an Jiaotong University"}, {"qid": 2755, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the number of international students at Xi'an Jiaotong University compare to domestic students?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Xi'an Jiaotong University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Xi'an Jiaotong University"}, {"qid": 2756, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would happen if Xi'an Jiaotong University decided to become a fully online institution?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Xi'an Jiaotong University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Xi'an Jiaotong University"}, {"qid": 2757, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most popular course at Xi'an Jiaotong University?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Xi'an Jiaotong University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Xi'an Jiaotong University"}, {"qid": 2758, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the staff number at Xi'an Jiaotong University affect its student to teacher ratio?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Xi'an Jiaotong University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Xi'an Jiaotong University"}, {"qid": 2759, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the research output of Xi'an Jiaotong University compare to that of other top universities in China?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Xi'an Jiaotong University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Xi'an Jiaotong University"}, {"qid": 2760, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Xi'an Jiaotong University were to host an international conference, what steps would be necessary to prepare?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Xi'an Jiaotong University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Xi'an Jiaotong University"}, {"qid": 2761, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between the University of Science and Technology of China and the Chinese Academy of Sciences?", "answer": " The University of Science and Technology of China is affiliated with the Chinese Academy of Sciences.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Science and Technology of China"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Science and Technology of China"}, {"qid": 2762, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which year was the University of Science and Technology of China founded?", "answer": " 1958", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Science and Technology of China"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Science and Technology of China"}, {"qid": 2763, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Who is the current president of the University of Science and Technology of China?", "answer": " This information is subject to change and needs to be looked up for the current president as of the latest update.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Science and Technology of China"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Science and Technology of China"}, {"qid": 2764, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How is the University of Science and Technology of China funded?", "answer": " The University of Science and Technology of China is co-funded by the Chinese Academy of Sciences, the Ministry of Education of China, and the Anhui Provincial Government.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Science and Technology of China"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Science and Technology of China"}, {"qid": 2765, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Where is the University of Science and Technology of China located?", "answer": " Hefei, China", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Science and Technology of China"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Science and Technology of China"}, {"qid": 2766, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the staff number at the University of Science and Technology of China compare to other universities in China?", "answer": " This question requires specific data on staff numbers for a comparative analysis, which is not provided.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Science and Technology of China"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Science and Technology of China"}, {"qid": 2767, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would happen if the University of Science and Technology of China decided to become independent from the Chinese Academy of Sciences?", "answer": " This question involves speculation; potential outcomes could include changes in funding, governance, and research priorities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Science and Technology of China"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Science and Technology of China"}, {"qid": 2768, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the main academic focus of the University of Science and Technology of China?", "answer": " Science and technology", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Science and Technology of China"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Science and Technology of China"}, {"qid": 2769, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to when it was founded, how has the number of staff at the University of Science and Technology of China changed?", "answer": " The question implies an increase but requires specific data on staff numbers at its founding versus current for an accurate comparison.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Science and Technology of China"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Science and Technology of China"}, {"qid": 2770, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What impact does the University of Science and Technology of China have on the local community in Hefei?", "answer": " This question requires analysis of the university's community engagement, economic impact, educational contributions, and technological advancements in Hefi.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Science and Technology of China"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Science and Technology of China"}, {"qid": 2771, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Science and Technology of China were to expand its campus, what would be the potential benefits and challenges?", "answer": " Potential benefits could include increased capacity for students, more research facilities, and economic benefits to the local community. Challenges might involve funding, environmental concerns, and community impact.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Science and Technology of China"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Science and Technology of China"}, {"qid": 2772, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What prestigious awards have faculty or alumni of the University of Science and Technology of China won?", "answer": " This question requires a specific list of awards, which may include national or international recognitions in various fields of science and technology.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Science and Technology of China"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Science and Technology of China"}, {"qid": 2773, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Is Shanghai Jiao Tong University older than Peking University?", "answer": " No, Peking University was founded in 1898, while Shanghai Jiao Tong University was founded in 1896.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Shanghai Jiao Tong University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Shanghai Jiao Tong University"}, {"qid": 2774, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Which has a larger number of staff, Shanghai Jiao Tong University or Tsinghua University?", "answer": " It depends on the current year's data, which needs to be checked for an accurate comparison.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Shanghai Jiao Tong University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Shanghai Jiao Tong University"}, {"qid": 2775, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest university in Shanghai?", "answer": " Shanghai Jiao Tong University, founded in 1896.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Shanghai Jiao Tong University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Shanghai Jiao Tong University"}, {"qid": 2776, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Who was the first president of Shanghai Jiao Tong University?", "answer": " Sheng Xuanhuai.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Shanghai Jiao Tong University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Shanghai Jiao Tong University"}, {"qid": 2777, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How is Shanghai Jiao Tong University affiliated with the Chinese government?", "answer": " It is affiliated with the Ministry of Education of China.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Shanghai Jiao Tong University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Shanghai Jiao Tong University"}, {"qid": 2778, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What makes Shanghai Jiao Tong University a part of the elite universities in China?", "answer": " It is part of Project 211, Project 985, and the Double First-Class Construction.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Shanghai Jiao Tong University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Shanghai Jiao Tong University"}, {"qid": 2779, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would happen if Shanghai Jiao Tong University decided to increase its staff by 50%?", "answer": " It would require significant budget adjustments, potentially increase the student-to-faculty ratio, and could enhance the university's research and teaching capabilities if managed properly.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Shanghai Jiao Tong University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Shanghai Jiao Tong University"}, {"qid": 2780, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Shanghai Jiao Tong University were to open another campus abroad, how would it affect its global ranking?", "answer": " Potentially, it could improve its global ranking by increasing its international presence and opportunities for global collaborations.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Shanghai Jiao Tong University"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "Shanghai Jiao Tong University"}, {"qid": 2781, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to Fudan University, which university was established first?", "answer": " Shanghai Jiao Tong University was established first in 1896, before Fudan University which was founded in 1905.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Shanghai Jiao Tong University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Shanghai Jiao Tong University"}, {"qid": 2782, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the rank of Shanghai Jiao Tong University among universities in China?", "answer": " The rank can vary depending on the criteria used but it is consistently among the top universities in China.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Shanghai Jiao Tong University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Shanghai Jiao Tong University"}, {"qid": 2783, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "In what way does Shanghai Jiao Tong University contribute to China's Double First-Class Construction?", "answer": " By striving for excellence in education and research to meet the criteria set for universities to be recognized as world-class in both categories.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Shanghai Jiao Tong University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Shanghai Jiao Tong University"}, {"qid": 2784, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Shanghai Jiao Tong University were to double its research budget, what might be the immediate impact on its academic environment?", "answer": " There could be an immediate boost in research activities, attracting more high-caliber faculty and students, and potentially leading to more high-impact publications and innovations.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Shanghai Jiao Tong University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Shanghai Jiao Tong University"}, {"qid": 2785, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the number of staff at Harbin Institute of Technology compare to that of Tsinghua University?", "answer": " The actual number for each institution is required for a precise comparison, but generally, both universities have a large number of staff, with Tsinghua University typically having more due to its broader range of disciplines.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harbin Institute of Technology"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Harbin Institute of Technology"}, {"qid": 2786, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest engineering university in China, is it Harbin Institute of Technology?", "answer": " While Harbin Institute of Technology is one of the oldest universities specializing in engineering in China, founded in 1920, other institutions like Jiaotong University, with origins tracing back to 1896, may also claim to be among the oldest in the field of engineering.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harbin Institute of Technology"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Harbin Institute of Technology"}, {"qid": 2787, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does Harbin Institute of Technology's affiliation with the Ministry of Industry and Information Technology benefit its engineering programs?", "answer": " The affiliation likely provides enhanced resources, funding, and industry connections that enrich the engineering programs, facilitating cutting-edge research, collaboration with industry leaders, and opportunities for technology transfer.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harbin Institute of Technology"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Harbin Institute of Technology"}, {"qid": 2788, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Harbin Institute of Technology decided to expand its campus to another country, how might its status as a member of Project 985 and the Double First-Class Construction influence its choice of location?", "answer": " Its status might lead it to choose a location where it can best leverage its reputation for excellence in science and engineering, perhaps in a country with a strong emphasis on technological development and innovation, to attract top-tier students and faculty.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harbin Institute of Technology"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Harbin Institute of Technology"}, {"qid": 2789, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to Beijing Institute of Technology, does Harbin Institute of Technology have a longer history?", "answer": " Yes, Harbin Institute of Technology, founded in 1920, has a longer history than Beijing Institute of Technology, which was established in 1940.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harbin Institute of Technology"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Harbin Institute of Technology"}, {"qid": 2790, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which program at Harbin Institute of Technology is considered to be the most prestigious?", "answer": " It's difficult to single out one program as the most prestigious, but its engineering and computer science programs are highly regarded nationally and internationally.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harbin Institute of Technology"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Harbin Institute of Technology"}, {"qid": 2791, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What impact does Harbin Institute of Technology's location in Heilongjiang have on its research focus?", "answer": " Its location in Heilongjiang, a region experiencing cold weather, may influence its research focus towards areas such as cold region engineering, materials science suited for cold climates, and aerospace engineering for cold environment applications.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harbin Institute of Technology"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Harbin Institute of Technology"}, {"qid": 2792, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would happen if Harbin Institute of Technology suddenly lost its affiliation with the Ministry of Industry and Information Technology?", "answer": " Loss of this affiliation could potentially affect its funding, research opportunities, and collaboration projects, possibly impacting its ability to maintain its high standards in science and engineering education and research.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harbin Institute of Technology"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Harbin Institute of Technology"}, {"qid": 2793, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Is Harbin Institute of Technology's involvement in Project 211 and Project 985 unique among Chinese universities?", "answer": " No, several other leading Chinese universities are also involved in both Project 211 and Project 985, signifying a shared commitment to high-quality research and education.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harbin Institute of Technology"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Harbin Institute of Technology"}, {"qid": 2794, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most significant milestone in Harbin Institute of Technology's history?", "answer": " One of the most significant milestones could be its selection as a member of both Project 985 and Project 211, recognizing its excellence in education and research, and more recently, its inclusion in the Double First-Class Construction initiative.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harbin Institute of Technology"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Harbin Institute of Technology"}, {"qid": 2795, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the Double First-Class Construction initiative affect the staff at Harbin Institute of Technology?", "answer": " The initiative likely leads to higher expectations for research output and teaching quality from the staff, as well as providing more resources and support for achieving excellence in specific disciplines identified as first-class fields.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harbin Institute of Technology"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Harbin Institute of Technology"}, {"qid": 2796, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Harbin Institute of Technology were to establish a new engineering discipline tomorrow, based on current trends, what might it be?", "answer": " Considering current technological and societal trends, it might establish a discipline in areas such as artificial intelligence, sustainable energy engineering, or bioengineering, focusing on innovation and addressing global challenges.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harbin Institute of Technology"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Harbin Institute of Technology"}, {"qid": 2797, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What role did Thomas Jefferson play in the foundation of the University of Virginia?", "answer": " Thomas Jefferson founded the University of Virginia in 1819, designed its original courses of study and architecture, and served as one of its first rectors.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Virginia"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Virginia"}, {"qid": 2798, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How is the University of Virginia connected to three U.S. presidents?", "answer": " The original governing Board of Visitors of the University of Virginia included Thomas Jefferson, James Madison, and James Monroe, with Jefferson and Madison serving as the first two rectors, and Monroe as the sitting president of the United States at the time of its foundation.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Virginia"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Virginia"}, {"qid": 2799, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Who was the founding president of the University of Virginia?", "answer": " Thomas Jefferson was the founding president of the University of Virginia.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Virginia"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Virginia"}, {"qid": 2800, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest part of the University of Virginia's campus?", "answer": " The Academical Village is the oldest part of the University of Virginia's campus.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Virginia"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Virginia"}, {"qid": 2801, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of the University of Virginia compare to other public universities in the United States?", "answer": " Founded in 1819, the University of Virginia is one of the early public universities established in the United States but not the absolute earliest.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Virginia"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Virginia"}, {"qid": 2802, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What UNESCO World Heritage Site is located at the University of Virginia?", "answer": " The Academical Village at the University of Virginia is a UNESCO World Heritage Site.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Virginia"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Virginia"}, {"qid": 2803, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Thomas Jefferson had not founded the University of Virginia, how might the architectural design of the university differ?", "answer": " Without Thomas Jefferson's influence, the architectural design of the University of Virginia might lack its distinctive neoclassical style, which includes the iconic Rotunda and Academical Village.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Virginia"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Virginia"}, {"qid": 2804, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most significant contribution of Thomas Jefferson to the University of Virginia?", "answer": " The most significant contribution of Thomas Jefferson to the University of Virginia is its founding, along with the design of its original courses of study and architecture.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Virginia"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Virginia"}, {"qid": 2805, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the significance of the Board of Visitors in the context of the University of Virginia's foundation?", "answer": " The Board of Visitors, which included three U.S. presidents (Jefferson, Madison, and Monroe) at the time of the University of Virginia's foundation, played a critical role in its establishment, reflecting the university's strong connections to early American leadership.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Virginia"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Virginia"}, {"qid": 2806, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to other universities founded in the early 19th century, how unique is the University of Virginia's connection to U.S. Presidents?", "answer": " The University of Virginia's connection to three U.S. Presidents (Jefferson, Madison, and Monroe) in its founding and early governance is highly unique among universities founded in the early 19th century.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Virginia"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Virginia"}, {"qid": 2807, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What makes the University of Virginia's Academical Village uniquely significant among university designs?", "answer": " The Academical Village at the University of Virginia, designed by Thomas Jefferson, is uniquely significant for its architectural innovation and status as a UNESCO World Heritage Site, embodying Jefferson's vision of an academic community.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Virginia"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Virginia"}, {"qid": 2808, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Virginia had not been founded by Thomas Jefferson, what impact would it have on its UNESCO World Heritage status?", "answer": " If the University of Virginia had not been founded by Thomas Jefferson, it might not have the Academical Village, which is a key reason for its designation as a UNESCO World Heritage Site, impacting its global recognition and historical significance.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Virginia"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Virginia"}, {"qid": 2809, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Auckland decides to open a new campus in 2024, how many campuses would it have in total?", "answer": " 4", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Auckland"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Auckland"}, {"qid": 2810, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which university is the largest by enrolment in New Zealand as of 2024?", "answer": " The University of Auckland", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Auckland"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Auckland"}, {"qid": 2811, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What was the original location of the University of Auckland when it was established?", "answer": " A repurposed courthouse", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Auckland"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Auckland"}, {"qid": 2812, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the student population of the University of Auckland compare to other New Zealand universities in 2024?", "answer": " The University of Auckland has the largest student population.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Auckland"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Auckland"}, {"qid": 2813, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What year was the oldest university in New Zealand, which is the University of Auckland, established?", "answer": " 1883", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Auckland"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Auckland"}, {"qid": 2814, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the University of Auckland's relationship to the University of New Zealand?", "answer": " It was established as a constituent college of the University of New Zealand.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Auckland"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Auckland"}, {"qid": 2815, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Auckland increases its teaching staff by 500 in 2025, how many staff members would it have?", "answer": " The answer depends on the current number of staff members before the increase.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Auckland"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Auckland"}, {"qid": 2816, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to other universities in Auckland, where does the University of Auckland rank in terms of enrolment size as of 2024?", "answer": " It ranks as the largest university by enrolment.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Auckland"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Auckland"}, {"qid": 2817, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most populous campus of the University of Auckland?", "answer": " The answer depends on the specific enrolment numbers for each campus, which are not provided.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Auckland"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Auckland"}, {"qid": 2818, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How has the physical size of the University of Auckland changed since its establishment in 1883 to 2024?", "answer": " It has grown substantially, expanding from a single repurposed courthouse to three major campuses across central Auckland.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Auckland"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Auckland"}, {"qid": 2819, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Auckland was to merge with another university in 2025, how many students would it potentially teach?", "answer": " The answer would depend on the enrolment size of the other university at the time of the merger.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Auckland"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Auckland"}, {"qid": 2820, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the University of Auckland's establishment year compare to other universities worldwide?", "answer": " The University of Auckland, established in 1883, is younger than many of the world's oldest universities but is the oldest university in New Zealand.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Auckland"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Auckland"}, {"qid": 2821, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between Shanghai Jiao Tong University and the Ministry of Education of China?", "answer": " Shanghai Jiao Tong University is affiliated with the Ministry of Education of China.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Shanghai Jiao Tong University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Shanghai Jiao Tong University"}, {"qid": 2822, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does Shanghai Jiao Tong University's affiliation with the Ministry of Education of China influence its status in national education projects?", "answer": " Its affiliation with the Ministry of Education of China allows Shanghai Jiao Tong University to be part of national education projects such as Project 211, Project 985, and the Double First-Class Construction.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Shanghai Jiao Tong University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Shanghai Jiao Tong University"}, {"qid": 2823, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest university in Shanghai?", "answer": " Shanghai Jiao Tong University is one of the oldest universities in Shanghai.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Shanghai Jiao Tong University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Shanghai Jiao Tong University"}, {"qid": 2824, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which university in Shanghai has the most extensive involvement in national education projects like Project 211, Project 985, and the Double First-Class Construction?", "answer": " Shanghai Jiao Tong University is among the universities in Shanghai with the most extensive involvement in these projects.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Shanghai Jiao Tong University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Shanghai Jiao Tong University"}, {"qid": 2825, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the size of the staff at Shanghai Jiao Tong University compare to that of other Project 985 universities?", "answer": " The staff size of Shanghai Jiao Tong University is significant and competitive when compared to other Project 985 universities, though specific numbers are needed for precise comparison.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Shanghai Jiao Tong University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Shanghai Jiao Tong University"}, {"qid": 2826, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to other universities in Shanghai, where does Shanghai Jiao Tong University rank in terms of its affiliation with the Ministry of Education?", "answer": " Shanghai Jiao Tong University is among the top-ranked universities in Shanghai in terms of its affiliation with the Ministry of Education.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Shanghai Jiao Tong University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Shanghai Jiao Tong University"}, {"qid": 2827, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would happen if Shanghai Jiao Tong University was no longer affiliated with the Ministry of Education of China?", "answer": " If Shanghai Jiao Tong University lost its affiliation with the Ministry of Education of China, it might affect its funding, status, and participation in national education projects.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Shanghai Jiao Tong University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Shanghai Jiao Tong University"}, {"qid": 2828, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Shanghai Jiao Tong University decided to double its staff, how might this affect its position among Project 985 universities?", "answer": " Doubling its staff could potentially enhance Shanghai Jiao Tong University's research output and educational capabilities, possibly improving its standing among Project 985 universities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Shanghai Jiao Tong University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Shanghai Jiao Tong University"}, {"qid": 2829, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What projects demonstrate Shanghai Jiao Tong University's commitment to academic excellence?", "answer": " Projects such as Project 211, Project 985, and the Double First-Class Construction demonstrate Shanghai Jiao Tong University's commitment to academic excellence.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Shanghai Jiao Tong University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Shanghai Jiao Tong University"}, {"qid": 2830, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What year was the earliest established university in Shanghai founded?", "answer": " Shanghai Jiao Tong University, founded in 1896, is one of the earliest established universities in Shanghai.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Shanghai Jiao Tong University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Shanghai Jiao Tong University"}, {"qid": 2831, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does Shanghai Jiao Tong University's location in Shanghai affect its academic collaborations compared to universities in other cities?", "answer": " Being located in Shanghai, a major metropolitan and economic hub, likely facilitates more extensive academic and industrial collaborations for Shanghai Jiao Tong University compared to universities in less economically vibrant cities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Shanghai Jiao Tong University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Shanghai Jiao Tong University"}, {"qid": 2832, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Shanghai Jiao Tong University expanded its campus to another location in China, how would this affect its affiliation with the Ministry of Education?", "answer": " Expanding its campus might require additional agreements or modifications to its existing affiliation with the Ministry of Education, but it would likely retain its strong relationship and support from the Ministry.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Shanghai Jiao Tong University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Shanghai Jiao Tong University"}, {"qid": 2833, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between the Monterrey Institute of Technology and Higher Education and its location in Monterrey, Mexico?", "answer": " The Monterrey Institute of Technology and Higher Education, also known as Tecnológico de Monterrey, is based in Monterrey, Mexico, which is its primary location and the city after which it is named.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Monterrey Institute of Technology and Higher Education"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Monterrey Institute of Technology and Higher Education"}, {"qid": 2834, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which campus of the Monterrey Institute of Technology and Higher Education was established first?", "answer": " The Monterrey Campus was the first campus established of the Monterrey Institute of Technology and Higher Education.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Monterrey Institute of Technology and Higher Education"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Monterrey Institute of Technology and Higher Education"}, {"qid": 2835, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the number of staff at the Monterrey Institute of Technology and Higher Education compare to other private universities in Mexico?", "answer": " The Monterrey Institute of Technology and Higher Education has one of the largest faculty and staff numbers among private universities in Mexico, indicating a significant investment in human resources compared to many of its peers.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Monterrey Institute of Technology and Higher Education"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Monterrey Institute of Technology and Higher Education"}, {"qid": 2836, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest campus of the Monterrey Institute of Technology and Higher Education?", "answer": " The Monterrey Campus is the oldest campus of the Monterrey Institute of Technology and Higher Education.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Monterrey Institute of Technology and Higher Education"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Monterrey Institute of Technology and Higher Education"}, {"qid": 2837, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the significance of Monterrey in the name of the Monterrey Institute of Technology and Higher Education?", "answer": " The significance of Monterrey in the name of the Monterrey Institute of Technology and Higher Education reflects its founding and main campus location in Monterrey, Mexico, representing its roots and primary base of operations.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Monterrey Institute of Technology and Higher Education"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Monterrey Institute of Technology and Higher Education"}, {"qid": 2838, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the Monterrey Institute of Technology and Higher Education were to open another campus, how would it decide the location?", "answer": " If the Monterrey Institute of Technology and Higher Education were to open another campus, it would likely consider factors such as demand for higher education in the area, the presence of a supportive community and industry, and the potential for contributing to regional development.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Monterrey Institute of Technology and Higher Education"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Monterrey Institute of Technology and Higher Education"}, {"qid": 2839, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which campus of the Monterrey Institute of Technology and Higher Education has the largest number of students?", "answer": " The Monterrey Campus has the largest number of students among all the campuses of the Monterrey Institute of Technology and Higher Education.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Monterrey Institute of Technology and Higher Education"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Monterrey Institute of Technology and Higher Education"}, {"qid": 2840, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the staff-to-student ratio at the Monterrey Institute of Technology and Higher Education compare to that of other universities in Mexico?", "answer": " The Monterrey Institute of Technology and Higher Education often boasts a more favorable staff-to-student ratio compared to many other universities in Mexico, reflecting its commitment to providing personalized education and support.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Monterrey Institute of Technology and Higher Education"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Monterrey Institute of Technology and Higher Education"}, {"qid": 2841, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the Monterrey Institute of Technology and Higher Education contribute to research in Mexico?", "answer": " The Monterrey Institute of Technology and Higher Education contributes significantly to research in Mexico through its numerous research centers and initiatives, focusing on areas such as technology, engineering, business, and social sciences.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Monterrey Institute of Technology and Higher Education"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Monterrey Institute of Technology and Higher Education"}, {"qid": 2842, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What year was the Monterrey Institute of Technology and Higher Education founded, making it one of the oldest private universities in Mexico?", "answer": " The Monterrey Institute of Technology and Higher Education was founded in 1943, making it one of the oldest private universities in Mexico.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Monterrey Institute of Technology and Higher Education"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Monterrey Institute of Technology and Higher Education"}, {"qid": 2843, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would be the impact if the Monterrey Institute of Technology and Higher Education significantly increased its faculty size?", "answer": " If the Monterrey Institute of Technology and Higher Education significantly increased its faculty size, it could lead to smaller class sizes, more personalized attention for students, a broader range of courses and research opportunities, and potentially an increase in the institution's academic standing and research output.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Monterrey Institute of Technology and Higher Education"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Monterrey Institute of Technology and Higher Education"}, {"qid": 2844, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to when it was founded, how has the number of campuses of the Monterrey Institute of Technology and Higher Education changed?", "answer": " Since its founding in 1943, the number of campuses of the Monterrey Institute of Technology and Higher Education has significantly increased to include 35 campuses throughout Mexico, reflecting its growth and expansion over the years.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Monterrey Institute of Technology and Higher Education"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Monterrey Institute of Technology and Higher Education"}, {"qid": 2845, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What was the original name of the University of Hong Kong when it was founded?", "answer": " Hong Kong College of Medicine for Chinese", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Hong Kong"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "University of Hong Kong"}, {"qid": 2846, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest tertiary institution in Hong Kong?", "answer": " The University of Hong Kong", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Hong Kong"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "University of Hong Kong"}, {"qid": 2847, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Who founded the University of Hong Kong?", "answer": " The London Missionary Society", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Hong Kong"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "University of Hong Kong"}, {"qid": 2848, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "In what year did the Hong Kong College of Medicine for Chinese formally become the University of Hong Kong?", "answer": " 1911", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Hong Kong"], "topic_level": false, "class": "sing entity", "hops": "Multi Hops", "entity": "University of Hong Kong"}, {"qid": 2849, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Where is the University of Hong Kong located?", "answer": " Pok Fu Lam, Hong Kong Island, Hong Kong", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Hong Kong"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "University of Hong Kong"}, {"qid": 2850, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which university in Hong Kong was established first?", "answer": " The University of Hong Kong", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Hong Kong"], "topic_level": false, "class": "sing entity", "hops": "Multi Hops", "entity": "University of Hong Kong"}, {"qid": 2851, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What type of university is the University of Hong Kong?", "answer": " Public research university", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Hong Kong"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "University of Hong Kong"}, {"qid": 2852, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Hong Kong decided to open a new campus, what type of institution would it most likely be associated with?", "answer": " A research or academic institution", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Hong Kong"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "University of Hong Kong"}, {"qid": 2853, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the starting year of the University of Hong Kong compare with that of other universities in Hong Kong?", "answer": " It is the earliest established university in Hong Kong", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Hong Kong"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "University of Hong Kong"}, {"qid": 2854, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which university in Hong Kong is the oldest?", "answer": " The University of Hong Kong", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Hong Kong"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "University of Hong Kong"}, {"qid": 2855, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What led to the formal establishment of the University of Hong Kong in 1911?", "answer": " The transformation from the Hong Kong College of Medicine for Chinese, founded by the London Missionary Society in 1887, into a full university.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Hong Kong"], "topic_level": false, "class": "sing entity", "hops": "Multi Hops", "entity": "University of Hong Kong"}, {"qid": 2856, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Hong Kong were to merge with another university, what would be a key factor to consider?", "answer": " The compatibility of academic programs and research focuses.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Hong Kong"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "University of Hong Kong"}, {"qid": 2857, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest part of the University of Connecticut?", "answer": " The Storrs Agricultural School, founded in 1881, is the oldest part of the University of Connecticut.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Connecticut"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Connecticut"}, {"qid": 2858, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How did the University of Connecticut get its name?", "answer": " The University of Connecticut got its current name in 1939, changing from the Storrs Agricultural School to reflect its broader educational scope.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Connecticut"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Connecticut"}, {"qid": 2859, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of the University of Connecticut compare to that of other public land-grant universities in the United States?", "answer": " The University of Connecticut was founded in 1881, which makes it younger than some other land-grant universities like Cornell University (founded in 1865) but older than others.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Connecticut"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Connecticut"}, {"qid": 2860, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most significant expansion period in the University of Connecticut's history?", "answer": " The 1960s was the most significant expansion period in the University of Connecticut's history with the establishment of UConn Health and new medical and dental schools.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Connecticut"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Connecticut"}, {"qid": 2861, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Why was the Storrs Agricultural School renamed the University of Connecticut?", "answer": " The Storrs Agricultural School was renamed the University of Connecticut in 1939 to reflect its expanded academic offerings beyond agriculture.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Connecticut"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Connecticut"}, {"qid": 2862, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Connecticut had not been established as a land grant college in 1893, how might its development have differed?", "answer": " Without the status and funding associated with being a land grant college, the University of Connecticut might not have expanded its academic programs and infrastructure as rapidly, potentially limiting its growth into a comprehensive university.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Connecticut"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Connecticut"}, {"qid": 2863, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to other universities founded in the 19th century, how quickly did the University of Connecticut establish a graduate program?", "answer": " The University of Connecticut established graduate programs over the decades following its renaming in 1939, which is relatively similar to the timeline of other universities founded in the 19th century, though specifics can vary widely among institutions.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Connecticut"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Connecticut"}, {"qid": 2864, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What was the most recent major addition to the University of Connecticut's academic programs?", "answer": " The most recent major addition was the establishment of UConn Health in the 1960s, which included new medical and dental schools.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Connecticut"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Connecticut"}, {"qid": 2865, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What role did the New England Commission of Higher Education play in the University of Connecticut's development?", "answer": " The New England Commission of Higher Education accredited the University of Connecticut, ensuring that its programs meet certain quality standards, which is crucial for the university's reputation and students' ability to receive federal financial aid.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Connecticut"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Connecticut"}, {"qid": 2866, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Connecticut had not transitioned from the Storrs Agricultural School to a public land grant college, what might have been the impact on its academic offerings?", "answer": " If the University of Connecticut had not transitioned to a public land grant college, its academic offerings might have remained primarily focused on agriculture, potentially limiting the diversity and scope of its programs.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Connecticut"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Connecticut"}, {"qid": 2867, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the size of the University of Connecticut's main campus compare to its regional campuses?", "answer": " The main campus in Storrs-Mansfield is significantly larger and offers more facilities and academic programs than its regional campuses, reflecting its status as the flagship campus of the University of Connecticut system.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Connecticut"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Connecticut"}, {"qid": 2868, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most notable feature of the University of Connecticut's main campus in Storrs-Mansfield?", "answer": " The most notable feature of the University of Connecticut's main campus in Storrs-Mansfield is its comprehensive range of academic programs and research facilities, making it a leading public research university.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Connecticut"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Connecticut"}, {"qid": 2869, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest Ivy League university compared to when Princeton University was founded?", "answer": " Harvard University", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Princeton University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Princeton University"}, {"qid": 2870, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which Ivy League university has the most staff, if comparing the staff number of Princeton University?", "answer": " Harvard University", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Princeton University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Princeton University"}, {"qid": 2871, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Is Princeton University older than Yale University?", "answer": " No", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Princeton University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Princeton University"}, {"qid": 2872, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Does Princeton University have more staff than Columbia University?", "answer": " No", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Princeton University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Princeton University"}, {"qid": 2873, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What made Princeton University change its name from the College of New Jersey?", "answer": " It officially became a university in 1896 and was subsequently renamed Princeton University.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Princeton University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Princeton University"}, {"qid": 2874, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How did the location of Princeton University change before settling in its current Mercer County campus?", "answer": " The institution moved from Elizabeth to Newark in 1747, and then to its current location in Princeton nine years later.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Princeton University"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "Princeton University"}, {"qid": 2875, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Princeton University decided to move its campus today, what would be the primary considerations for a new location?", "answer": " Accessibility, community resources, size, and academic environment.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Princeton University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Princeton University"}, {"qid": 2876, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would happen if Princeton University suddenly increased its staff number by 50%?", "answer": " It would likely require expansion of facilities, increase in student intake, and possibly impact its student-to-staff ratio.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Princeton University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Princeton University"}, {"qid": 2877, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Why did Princeton University move from Newark to Princeton?", "answer": " To settle in its current Mercer County campus, likely for more space and a better location for its academic community.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Princeton University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Princeton University"}, {"qid": 2878, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What was the original name of Princeton University when it was founded in 1746?", "answer": " The College of New Jersey", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Princeton University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Princeton University"}, {"qid": 2879, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to when it was founded, how has the number of staff at Princeton University changed by the 21st century?", "answer": " The number of staff has significantly increased to accommodate growth in student population and expansion of academic programs.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Princeton University"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "Princeton University"}, {"qid": 2880, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Princeton University had not been renamed and remained the College of New Jersey, how might its reputation and recognition have been affected today?", "answer": " It might have faced challenges in brand recognition and differentiation from other institutions, potentially impacting its prestige and global standing.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Princeton University"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "Princeton University"}, {"qid": 2881, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Who founded the University of Southern California?", "answer": " Robert Maclay Widney", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Southern California"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Southern California"}, {"qid": 2882, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest private research university in California?", "answer": " The University of Southern California", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Southern California"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Southern California"}, {"qid": 2883, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "In which city is the University of Southern California located?", "answer": " Los Angeles, California", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Southern California"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Southern California"}, {"qid": 2884, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "When was the University of Southern California founded?", "answer": " 1880", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Southern California"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Southern California"}, {"qid": 2885, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Southern California decided to open a new campus in Asia, how would it compare to its founding year?", "answer": " It would be founded after 1880.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Southern California"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Southern California"}, {"qid": 2886, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which university has the highest enrollment in California?", "answer": " The University of Southern California", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Southern California"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Southern California"}, {"qid": 2887, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the student population at the University of Southern California compare to that of UCLA?", "answer": " The University of Southern California has more than 49,000 students, comparison requires UCLA's enrollment data for exact numbers.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Southern California"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Southern California"}, {"qid": 2888, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Southern California were to merge with another university in Los Angeles, how would its original founding year of 1880 be affected?", "answer": " The original founding year of 1880 would remain unchanged.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Southern California"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Southern California"}, {"qid": 2889, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What type of university is the University of Southern California?", "answer": " A private research university", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Southern California"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Southern California"}, {"qid": 2890, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the enrollment number of the University of Southern California?", "answer": " More than 49,000 students", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Southern California"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Southern California"}, {"qid": 2891, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Southern California were to double its staff, how would that compare to its current number?", "answer": " It would have twice the number of its current staff, the exact number requires current staff data.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Southern California"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Southern California"}, {"qid": 2892, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of the University of Southern California compare to Stanford University?", "answer": " The University of Southern California was founded in 1880, comparison requires Stanford University's founding year for exact comparison.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Southern California"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Southern California"}, {"qid": 2893, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of Harvard University compare to that of Yale University?", "answer": " Harvard University was founded in 1636, making it older than Yale University, which was founded in 1701.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harvard University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Harvard University"}, {"qid": 2894, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest institution of higher learning in the United States?", "answer": " Harvard University is the oldest institution of higher learning in the United States, founded in 1636.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harvard University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Harvard University"}, {"qid": 2895, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Who was Harvard University named after and why?", "answer": " Harvard University was named after its first benefactor, Puritan clergyman John Harvard, because he was a significant donor to the school.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harvard University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Harvard University"}, {"qid": 2896, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If John Harvard had not contributed to the college, what might have been different about Harvard University's name?", "answer": " If John Harvard had not contributed to the college, it is likely that Harvard University would have been named differently, potentially after another benefactor or significant figure.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harvard University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Harvard University"}, {"qid": 2897, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Is the staff number at Harvard University greater than at MIT?", "answer": " This requires current data on staff numbers at both institutions for an accurate answer, which is not provided in the background information.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harvard University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Harvard University"}, {"qid": 2898, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which has a higher global ranking, Harvard University or Stanford University?", "answer": " Both universities rank highly globally, but specific rankings can vary by year and by the entity doing the ranking.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harvard University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Harvard University"}, {"qid": 2899, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the location of Harvard University influence its academic collaborations with MIT?", "answer": " Harvard University's proximity to MIT in Cambridge, Massachusetts, facilitates a high level of collaboration between the two institutions on research projects and academic programs.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harvard University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Harvard University"}, {"qid": 2900, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Harvard University decided to open a new campus in another country, how might this impact its global influence?", "answer": " Opening a new campus in another country could potentially increase Harvard University's global influence by expanding its international presence and accessibility to students worldwide.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harvard University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Harvard University"}, {"qid": 2901, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the rank of Harvard University among the Ivy League schools in terms of age?", "answer": " Harvard University is the oldest Ivy League school.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harvard University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Harvard University"}, {"qid": 2902, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to when it was founded, how has the function of Harvard University evolved over the years?", "answer": " Since its founding in 1636, Harvard University has evolved from primarily an undergraduate liberal arts college to a comprehensive research university with numerous graduate and professional schools.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harvard University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Harvard University"}, {"qid": 2903, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the significance of the location of Harvard University in Cambridge, Massachusetts?", "answer": " The location of Harvard University in Cambridge, Massachusetts, places it within one of the United States' most vibrant academic and research communities, fostering collaboration and innovation.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harvard University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Harvard University"}, {"qid": 2904, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Harvard University had never been founded, what might have been the impact on higher education in the United States?", "answer": " If Harvard University had never been founded, it might have significantly delayed the development of higher education in the United States, given its role as the oldest institution of higher learning and its contributions to educational standards and practices.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harvard University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Harvard University"}, {"qid": 2905, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between Cornelius Vanderbilt and Vanderbilt University?", "answer": " Cornelius Vanderbilt provided the initial $1 million endowment for Vanderbilt University, after which the university is named.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Vanderbilt University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Vanderbilt University"}, {"qid": 2906, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest private research university in Nashville, Tennessee?", "answer": " Vanderbilt University", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Vanderbilt University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Vanderbilt University"}, {"qid": 2907, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of Vanderbilt University compare to the start of the American Civil War?", "answer": " Vanderbilt University was founded in 1873, which is after the American Civil War ended in 1865.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Vanderbilt University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Vanderbilt University"}, {"qid": 2908, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Why was Vanderbilt University named after Cornelius Vanderbilt?", "answer": " It was named in honor of Cornelius Vanderbilt, who provided the school its initial $1 million endowment.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Vanderbilt University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Vanderbilt University"}, {"qid": 2909, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What might have happened if Cornelius Vanderbilt had not provided the initial endowment to Vanderbilt University?", "answer": " Without Cornelius Vanderbilt's initial $1 million endowment, the university might not have had the necessary funds to establish itself during its early years.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Vanderbilt University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Vanderbilt University"}, {"qid": 2910, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the only private school in the Southeastern Conference since 1966?", "answer": " Vanderbilt University", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Vanderbilt University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Vanderbilt University"}, {"qid": 2911, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How did Vanderbilt University aim to contribute to healing the sectional wounds of the American Civil War?", "answer": " Through the greater work and mission inspired by Cornelius Vanderbilt's endowment, aiming to provide education and advancement in the post-war era.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Vanderbilt University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Vanderbilt University"}, {"qid": 2912, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Is Vanderbilt University's staff number larger than that of a newly founded private research institution?", "answer": " Likely, given Vanderbilt University's long history and established position.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Vanderbilt University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Vanderbilt University"}, {"qid": 2913, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What if Vanderbilt University had not joined the Southeastern Conference?", "answer": " It might have joined another athletic conference or remained independent, potentially affecting its sports programs and visibility.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Vanderbilt University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Vanderbilt University"}, {"qid": 2914, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which university was founded first, Vanderbilt University or the University of Tennessee?", "answer": " The University of Tennessee was founded first in 1794, before Vanderbilt University in 1873.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Vanderbilt University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Vanderbilt University"}, {"qid": 2915, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to other universities founded in the 19th century, how does Vanderbilt University's endowment size rank?", "answer": " Vanderbilt University's endowment is among the largest due to its initial $1 million endowment and subsequent growth, though specific rankings can vary.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Vanderbilt University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Vanderbilt University"}, {"qid": 2916, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "Had Vanderbilt University been located in a different city than Nashville, how might its development have differed?", "answer": " Its development, influence, and community engagement might have varied significantly, potentially affecting its role in regional education and culture.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Vanderbilt University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Vanderbilt University"}, {"qid": 2917, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between Leland Stanford and Stanford University?", "answer": " Leland Stanford is the founder of Stanford University, which he established in memory of his only child, Leland Jr.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Stanford University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Stanford University"}, {"qid": 2918, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Who was the first president of Stanford University?", "answer": " The first president of Stanford University was David Starr Jordan.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Stanford University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Stanford University"}, {"qid": 2919, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Why was Stanford University established?", "answer": " Stanford University was established in memory of Leland Stanford Jr., the only child of Leland Stanford and his wife, Jane.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Stanford University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Stanford University"}, {"qid": 2920, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of Stanford University compare to the year it first admitted students?", "answer": " Stanford University was founded in 1885 but admitted its first students in 1891.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Stanford University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Stanford University"}, {"qid": 2921, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What significant event in 1906 affected Stanford University?", "answer": " The 1906 San Francisco earthquake significantly damaged much of the Stanford University campus.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Stanford University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Stanford University"}, {"qid": 2922, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What role did Frederick Terman play in the development of Silicon Valley in relation to Stanford University?", "answer": " Frederick Terman, the university provost of Stanford University, inspired an entrepreneurial culture that helped build a self-sufficient local industry, later known as Silicon Valley.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Stanford University"], "topic_level": false, "class": "sing entity", "hops": "Multi hop", "entity": "Stanford University"}, {"qid": 2923, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Leland Stanford had not founded Stanford University, what might have been different about Silicon Valley's development?", "answer": " Without Stanford University's establishment and its entrepreneurial culture inspired by Frederick Terman, Silicon Valley's development as a major tech hub might have been significantly delayed or taken a different trajectory.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Stanford University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Stanford University"}, {"qid": 2924, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the location of Stanford University?", "answer": " Stanford University is located in Stanford, California.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Stanford University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Stanford University"}, {"qid": 2925, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What was the financial condition of Stanford University after Leland Stanford's death?", "answer": " After Leland Stanford's death in 1893, Stanford University struggled financially.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Stanford University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Stanford University"}, {"qid": 2926, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compare the foundation of Stanford University to its admission of the first students in terms of years.", "answer": " Stanford University was founded in 1885, six years before it admitted its first students in 1891.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Stanford University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Stanford University"}, {"qid": 2927, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What year was Stanford University founded?", "answer": " Stanford University was founded in 1885.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Stanford University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Stanford University"}, {"qid": 2928, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "In what way did World War II influence Stanford University?", "answer": " Following World War II, Stanford University embraced an entrepreneurial culture under the guidance of Frederick Terman, which was instrumental in the development of Silicon Valley.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Stanford University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Stanford University"}, {"qid": 2929, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest institution of higher education in New York?", "answer": " Columbia University", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Columbia University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Columbia University"}, {"qid": 2930, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What was Columbia University originally named when it was established in 1754?", "answer": " King's College", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Columbia University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Columbia University"}, {"qid": 2931, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Is Columbia University older than the University of Pennsylvania?", "answer": " Yes", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Columbia University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Columbia University"}, {"qid": 2932, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which Ivy League university is the fifth-oldest in the United States?", "answer": " Columbia University", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Columbia University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Columbia University"}, {"qid": 2933, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How did Columbia University change its location from its original establishment?", "answer": " It moved from the grounds of Trinity Church in Manhattan to its current location in New York City.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Columbia University"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "Columbia University"}, {"qid": 2934, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Columbia University decided to move its main campus, what would be its new location?", "answer": " The answer depends on the hypothetical decision made by the university's administration.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Columbia University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Columbia University"}, {"qid": 2935, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to Harvard University, which institution was established first?", "answer": " Harvard University", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Columbia University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Columbia University"}, {"qid": 2936, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest Ivy League university?", "answer": " Harvard University", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Columbia University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Columbia University"}, {"qid": 2937, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Who is the president of Columbia University as of the latest update?", "answer": " The answer varies depending on the current date and any recent changes in administration.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Columbia University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Columbia University"}, {"qid": 2938, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Columbia University were to double its staff number, how many staff members would it have?", "answer": " The answer depends on the current number of staff members before doubling.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Columbia University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Columbia University"}, {"qid": 2939, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Among Ivy League universities, where does Columbia University rank in terms of age?", "answer": " Fifth oldest", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Columbia University"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "Columbia University"}, {"qid": 2940, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What led to the renaming of King's College to Columbia University?", "answer": " The American Revolution and the subsequent independence of the United States.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Columbia University"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "Columbia University"}, {"qid": 2941, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between Albert Gallatin and New York University?", "answer": " Albert Gallatin is the founder of New York University.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["New York University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "New York University"}, {"qid": 2942, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest campus location of New York University?", "answer": " The oldest campus location of New York University is its main campus in Greenwich Village surrounding Washington Square Park.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["New York University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "New York University"}, {"qid": 2943, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of New York University compare to that of Columbia University?", "answer": " New York University was founded in 1832, while Columbia University was founded earlier, in 1754.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["New York University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "New York University"}, {"qid": 2944, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If New York University decided to open a new campus in 2024, how many years after its original founding would this occur?", "answer": " This would occur 192 years after its original founding in 1832.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["New York University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "New York University"}, {"qid": 2945, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which President of New York University served for the longest period?", "answer": " Information on the president who served for the longest period is not provided in the given text.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["New York University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "New York University"}, {"qid": 2946, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the curriculum focus at New York University's founding compare to its current curriculum focus?", "answer": " At its founding, New York University had a curriculum focused on a secular education. The current curriculum focus is not detailed in the text, making a direct comparison impossible.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["New York University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "New York University"}, {"qid": 2947, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the staff number of New York University compare to the student body size?", "answer": " The text does not provide specific numbers for the staff or the student body size, making a comparison impossible.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["New York University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "New York University"}, {"qid": 2948, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If New York University had not moved its main campus to Greenwich Village, where might it be located today?", "answer": " If it had not moved, it might still be located near City Hall, where it was originally founded.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["New York University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "New York University"}, {"qid": 2949, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the significance of the New York State Legislature's charter in the history of New York University?", "answer": " The New York State Legislature's charter in 1831 is significant because it officially chartered New York University, allowing it to be founded in 1832.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["New York University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "New York University"}, {"qid": 2950, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most recent addition to New York University in terms of its campuses?", "answer": " The most recent addition mentioned is the engineering school in Brooklyn's MetroTech Center, though the text does not specify the exact date of this addition.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["New York University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "New York University"}, {"qid": 2951, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the location of New York University's main campus compare to its graduate schools?", "answer": " New York University's main campus is located in Greenwich Village surrounding Washington Square Park, while its graduate schools are located throughout Manhattan.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["New York University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "New York University"}, {"qid": 2952, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If New York University had remained an all-male institution, how might its student demographics look today?", "answer": " If it had remained an all-male institution, its student demographics today would be exclusively male, contrasting with the current coeducational status.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["New York University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "New York University"}, {"qid": 2953, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the name of the president of Texas A&M University?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Texas A&M University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Texas A&M University"}, {"qid": 2954, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "In what city is Texas A&M University located?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Texas A&M University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Texas A&M University"}, {"qid": 2955, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How many staff members are there at Texas A&M University?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Texas A&M University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Texas A&M University"}, {"qid": 2956, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Who was the first president of Texas A&M University?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Texas A&M University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Texas A&M University"}, {"qid": 2957, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What year was Texas A&M University founded?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Texas A&M University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Texas A&M University"}, {"qid": 2958, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Is the staff number of Texas A&M University greater than 1000?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Texas A&M University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Texas A&M University"}, {"qid": 2959, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the president of Texas A&M University were to resign, who would take over?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Texas A&M University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Texas A&M University"}, {"qid": 2960, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would happen if Texas A&M University decided to move its location?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Texas A&M University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Texas A&M University"}, {"qid": 2961, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What are the qualifications required to become the president of Texas A&M University?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Texas A&M University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Texas A&M University"}, {"qid": 2962, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Among all the presidents of Texas A&M University, who served for the longest duration?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Texas A&M University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Texas A&M University"}, {"qid": 2963, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the size of the student body at Texas A&M University compare to that of the University of Texas?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Texas A&M University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Texas A&M University"}, {"qid": 2964, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Texas A&M University were to open a new campus, how would that affect the staff numbers?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Texas A&M University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Texas A&M University"}, {"qid": 2965, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between University Farm and the University of California, Davis?", "answer": " University Farm is the original name for what later became the University of California, Davis, when it was founded as an agricultural branch of the University of California system in 1905.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Davis"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, Davis"}, {"qid": 2966, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which campus of the University of California system is the northernmost?", "answer": " The University of California, Davis is the northernmost campus of the University of California system.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Davis"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, Davis"}, {"qid": 2967, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of the University of California, Davis compare to the University of California, Berkeley?", "answer": " The University of California, Davis was founded in 1905, later than the University of California, Berkeley, which was founded in 1868.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Davis"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, Davis"}, {"qid": 2968, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What led to the University of California, Davis being established as the seventh campus of the University of California system?", "answer": " The University of California, Davis was established as the seventh campus of the University of California system in 1959 after its initial founding as the agricultural branch, University Farm, in 1905.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Davis"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, Davis"}, {"qid": 2969, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What year did the University of California, Davis officially become a campus of the University of California system?", "answer": " 1959", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Davis"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, Davis"}, {"qid": 2970, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of California, Davis had not transitioned from University Farm to a full-fledged university, what might have been its primary focus today?", "answer": " If the University of California, Davis had not transitioned from University Farm to a full-fledged university, its primary focus today might still be on agricultural research and education.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Davis"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, Davis"}, {"qid": 2971, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What role does the University of California, Davis play in the University of California system?", "answer": " The University of California, Davis plays a significant role as a public land-grant research university focusing on agriculture, veterinary, and environmental sciences, being the northernmost campus in the University of California system.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Davis"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, Davis"}, {"qid": 2972, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to when it was founded, how has the academic scope of the University of California, Davis changed?", "answer": " Since its founding, the academic scope of the University of California, Davis has broadened significantly from primarily focusing on agriculture as University Farm to including a wide range of disciplines in more than 100 majors.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Davis"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, Davis"}, {"qid": 2973, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the earliest year associated with the University of California, Davis in its current form?", "answer": " 1959, the year it became the seventh campus of the University of California system.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Davis"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, Davis"}, {"qid": 2974, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What if the University of California, Davis had remained solely an agricultural school, how might its contribution to science differ?", "answer": " If the University of California, Davis had remained solely an agricultural school, its contribution to science might have been more narrowly focused on agricultural research and advancements, potentially limiting its impact in other scientific areas such as medicine, engineering, and environmental sciences.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Davis"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, Davis"}, {"qid": 2975, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How has the location of the University of California, Davis influenced its academic focus?", "answer": " The location of the University of California, Davis, in a major agricultural area of California, has significantly influenced its academic focus towards agricultural, environmental, and veterinary sciences.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Davis"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, Davis"}, {"qid": 2976, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the student population size of the University of California, Davis compare to that of the University of California, Berkeley?", "answer": " As of my last update, the University of California, Davis has a smaller student population size compared to the University of California, Berkeley, but specific numbers may vary by academic year.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Davis"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, Davis"}, {"qid": 2977, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Which university was founded first, the University of Chicago or Harvard University?", "answer": " Harvard University", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Chicago"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Chicago"}, {"qid": 2978, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest private research university in Chicago?", "answer": " The University of Chicago", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Chicago"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Chicago"}, {"qid": 2979, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Who is the president of the University of Chicago?", "answer": " The current president of the University of Chicago (as of the knowledge cutoff date in 2023) would need to be looked up as it can change over time.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Chicago"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Chicago"}, {"qid": 2980, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Chicago decided to open a new campus in another country, how might it compare in size to its main campus in Chicago's Hyde Park neighborhood?", "answer": " The size comparison would depend on various factors, including the intended scale of international operations, real estate availability, and strategic goals of the university at the time of expansion.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Chicago"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Chicago"}, {"qid": 2981, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How many staff members work at the University of Chicago?", "answer": " The exact number of staff members at the University of Chicago would need to be verified with the most current data available, as it can fluctuate.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Chicago"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Chicago"}, {"qid": 2982, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What year was the University of Chicago established?", "answer": " 1890", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Chicago"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Chicago"}, {"qid": 2983, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Chicago were to merge with another university in Chicago, how would that affect its staff numbers?", "answer": " The effect on staff numbers would depend on the terms of the merger, including whether there would be staff reductions, integrations, or expansions.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Chicago"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Chicago"}, {"qid": 2984, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to universities established in the 18th century, how does the founding year of the University of Chicago stand?", "answer": " The University of Chicago, founded in 1890, was established later than universities founded in the 18th century.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Chicago"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Chicago"}, {"qid": 2985, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What neighborhood is the University of Chicago's main campus located in?", "answer": " Hyde Park", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Chicago"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Chicago"}, {"qid": 2986, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which campus of the University of Chicago has the largest area?", "answer": " The main campus in Chicago's Hyde Park neighborhood", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Chicago"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Chicago"}, {"qid": 2987, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would be the impact on the University of Chicago's research output if it doubled its staff?", "answer": " Doubling the staff could potentially increase the university's research output, depending on the roles of the new staff and the effectiveness of their integration into the university's research efforts.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Chicago"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Chicago"}, {"qid": 2988, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the location of the University of Chicago compare to universities located in rural areas in terms of access to research facilities and collaborations?", "answer": " The University of Chicago, located in an urban area, likely has greater access to research facilities, collaborations, and resources compared to universities in rural areas, due to its proximity to other research institutions, businesses, and cultural organizations.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Chicago"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Chicago"}, {"qid": 2989, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest institution in the University of Texas System?", "answer": " The University of Texas at Austin", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Texas at Austin"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Texas at Austin"}, {"qid": 2990, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between The University of Texas at Austin and the University of Texas System?", "answer": " The University of Texas at Austin is the flagship institution of the University of Texas System.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Texas at Austin"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Texas at Austin"}, {"qid": 2991, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which university in the University of Texas System has the largest student body as of Fall 2022?", "answer": " The University of Texas at Austin", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Texas at Austin"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Texas at Austin"}, {"qid": 2992, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "When was The University of Texas at Austin founded and what does it signify within the University of Texas System?", "answer": " Founded in 1883, it signifies as the flagship institution of the University of Texas System.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Texas at Austin"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Texas at Austin"}, {"qid": 2993, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the student population of The University of Texas at Austin compare to other institutions within the University of Texas System as of Fall 2022?", "answer": " The University of Texas at Austin has the largest student population within the University of Texas System as of Fall 2022.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Texas at Austin"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Texas at Austin"}, {"qid": 2994, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the rank of The University of Texas at Austin in terms of its establishment year within the University of Texas System?", "answer": " The University of Texas at Austin is the oldest, established in 1883.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Texas at Austin"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Texas at Austin"}, {"qid": 2995, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If The University of Texas at Austin were to split into two separate universities, which would be considered the new flagship institution?", "answer": " This is hypothetical and cannot be answered definitively without further context.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Texas at Austin"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Texas at Austin"}, {"qid": 2996, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What city is The University of Texas at Austin located in?", "answer": " Austin, Texas", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Texas at Austin"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Texas at Austin"}, {"qid": 2997, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to other universities in Texas, where does The University of Texas at Austin stand in terms of its founding year?", "answer": " It is one of the older universities in Texas, founded in 1883.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Texas at Austin"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Texas at Austin"}, {"qid": 2998, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Texas System were to establish a new university today, how would it compare in age to The University of Texas at Austin?", "answer": " It would be significantly younger, as The University of Texas at Austin was founded in 1883.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Texas at Austin"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Texas at Austin"}, {"qid": 2999, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What makes The University of Texas at Austin unique in the University of Texas System?", "answer": " It is the flagship institution and has the largest student body as of Fall 2022.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Texas at Austin"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Texas at Austin"}, {"qid": 3000, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "In what way is The University of Texas at Austin significant to the city it is located in?", "answer": " As a major public research university, it significantly contributes to the educational, cultural, and economic aspects of Austin, Texas.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Texas at Austin"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Texas at Austin"}, {"qid": 3001, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between the University of Kansas and the Association of American Universities?", "answer": " The University of Kansas is a member of the Association of American Universities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Kansas"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Kansas"}, {"qid": 3002, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the University of Kansas's classification among \"R1", "answer": " The classification of the University of Kansas among \"R1", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Kansas"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "University of Kansas"}, {"qid": 3003, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest campus of the University of Kansas?", "answer": " The main campus in Lawrence, Kansas, is the oldest campus of the University of Kansas.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Kansas"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Kansas"}, {"qid": 3004, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which campus of the University of Kansas has the largest number of students?", "answer": " The main campus in Lawrence, Kansas, has the largest number of students.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Kansas"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Kansas"}, {"qid": 3005, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the research activity at the University of Kansas compare to other universities in the Association of American Universities?", "answer": " The University of Kansas, being classified among \"R1", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Kansas"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "University of Kansas"}, {"qid": 3006, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the number of branch campuses of the University of Kansas compare with its educational and research sites?", "answer": " The University of Kansas has fewer branch campuses than educational and research sites, with branch campuses located in the Kansas City metropolitan area and other locations, while educational and research sites are spread across various cities including Garden City, Hays, Leavenworth, Parsons, and Topeka.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Kansas"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "University of Kansas"}, {"qid": 3007, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Kansas were to open another branch in a new city, how would that affect its network of educational and research sites?", "answer": " Opening another branch in a new city would expand the University of Kansas's network of educational and research sites, potentially increasing its accessibility to students and enhancing its research capabilities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Kansas"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Kansas"}, {"qid": 3008, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would happen if the University of Kansas lost its membership in the Association of American Universities?", "answer": " If the University of Kansas lost its membership in the Association of American Universities, it might impact its reputation, potentially affecting its ability to attract high-quality faculty and students, as well as possibly influencing its research funding and collaborations.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Kansas"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Kansas"}, {"qid": 3009, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the role of the Edwards Campus in the overall structure of the University of Kansas?", "answer": " The Edwards Campus in Overland Park serves as an integral part of the University of Kansas's branch campus structure, focusing on serving the educational needs of the Kansas City metropolitan area and offering various undergraduate and graduate programs.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Kansas"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Kansas"}, {"qid": 3010, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the medical school in Kansas City, Kansas, fit into the University of Kansas's mission?", "answer": " The medical school in Kansas City, Kansas, fits into the University of Kansas's mission by contributing to its goals of providing high-quality medical education, conducting medical research, and offering healthcare services, thereby enhancing the university's impact in the field of medicine.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Kansas"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Kansas"}, {"qid": 3011, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most recent educational site added to the University of Kansas's network?", "answer": " Without current data, it's not possible to provide the name of the most recent educational site added to the University of Kansas's network.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Kansas"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Kansas"}, {"qid": 3012, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to other public research universities in the United States, how does the University of Kansas's array of branch campuses and educational sites stand out?", "answer": " The University of Kansas's array of branch campuses and educational sites, including those in the Kansas City metropolitan area, Garden City, Hays, Leavenworth, Parsons, Topeka, an agricultural education center in rural north Douglas County, and branches of the medical school in Salina and Wichita, stands out by offering a wide geographical distribution and diverse set of programs tailored to meet regional educational and research needs, which may be more extensive compared to many other public research universities in the United States.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Kansas"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "University of Kansas"}, {"qid": 3013, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between the Golden Dome and the University of Notre Dame?", "answer": " The Golden Dome is a landmark located on the main campus of the University of Notre Dame.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Notre Dame"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Notre Dame"}, {"qid": 3014, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the Word of Life mural relate to the University of Notre Dame?", "answer": " The Word of Life mural is a prominent feature on the campus of the University of Notre Dame.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Notre Dame"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Notre Dame"}, {"qid": 3015, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest building on the University of Notre Dame campus?", "answer": " The Basilica of the Sacred Heart is one of the oldest structures on the University of Notre Dame campus.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Notre Dame"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Notre Dame"}, {"qid": 3016, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "When was the University of Notre Dame founded compared to other universities in Indiana?", "answer": " The University of Notre Dame was founded in 1842, making it one of the oldest universities in Indiana.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Notre Dame"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Notre Dame"}, {"qid": 3017, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the size of Notre Dame Stadium compare to other college football stadiums in the United States?", "answer": " Notre Dame Stadium is one of the larger college football stadiums in the United States, though there are stadiums with larger capacities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Notre Dame"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Notre Dame"}, {"qid": 3018, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "What distinguishes the University of Notre Dame's academic programs from those of other Catholic universities in the United States?", "answer": " The University of Notre Dame is known for its strong emphasis on research, making its academic programs distinctively research-oriented compared to other Catholic universities in the United States.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Notre Dame"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Notre Dame"}, {"qid": 3019, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Notre Dame decided to open a new research institute focused on renewable energy, how might this affect its reputation in the field of environmental science?", "answer": " Opening a new research institute focused on renewable energy could enhance the University of Notre Dame's reputation in the field of environmental science by positioning it as a leader in sustainability and renewable energy research.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Notre Dame"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Notre Dame"}, {"qid": 3020, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would be the impact on student enrollment if the University of Notre Dame significantly increased its scholarship funds for engineering students?", "answer": " Significantly increasing scholarship funds for engineering students could lead to an increase in student enrollment in the University of Notre Dame's engineering programs by making it more financially accessible to prospective students.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Notre Dame"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Notre Dame"}, {"qid": 3021, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What role does Notre Dame Stadium play at the University of Notre Dame?", "answer": " Notre Dame Stadium hosts home football games for the University of Notre Dame, playing a central role in the university's athletic culture and traditions.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Notre Dame"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Notre Dame"}, {"qid": 3022, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which academic program at the University of Notre Dame is ranked the highest nationally?", "answer": " The University of Notre Dame's Mendoza College of Business is often ranked as one of the highest among its academic programs nationally.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Notre Dame"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Notre Dame"}, {"qid": 3023, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to other private Catholic universities, how does the University of Notre Dame's endowment size stand?", "answer": " The University of Notre Dame's endowment is one of the largest among private Catholic universities in the United States.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Notre Dame"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Notre Dame"}, {"qid": 3024, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Notre Dame were to expand its main campus, what could be the potential benefits and challenges?", "answer": " Expanding its main campus could provide the University of Notre Dame with more space for academic buildings, student housing, and research facilities, potentially enhancing its educational environment. Challenges could include the financial cost of expansion, potential environmental impact, and the need to maintain the campus's historical character.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Notre Dame"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Notre Dame"}, {"qid": 3025, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between The Catholic University of America and the United States Conference of Catholic Bishops?", "answer": " The Catholic University of America was founded by the United States Conference of Catholic Bishops.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Catholic University of America"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "Catholic University of America"}, {"qid": 3026, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "When was the earliest founding year among Catholic universities in the United States?", "answer": " 1887", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Catholic University of America"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "Catholic University of America"}, {"qid": 3027, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the research activity classification of The Catholic University of America compare to other universities in Washington, D.C.?", "answer": " It is classified among \"R2", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Catholic University of America"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "Catholic University of America"}, {"qid": 3028, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What makes The Catholic University of America unique among higher education institutions in the United States?", "answer": " It is the only institution of higher education founded by the United States Conference of Catholic Bishops and a pontifical university of the Catholic Church in the United States.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Catholic University of America"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "Catholic University of America"}, {"qid": 3029, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which pope approved the establishment of The Catholic University of America?", "answer": " Pope Leo XIII", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Catholic University of America"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "Catholic University of America"}, {"qid": 3030, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of The Catholic University of America compare to other Catholic universities in the United States?", "answer": " Established in 1887, it is one of the older Catholic universities in the United States.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Catholic University of America"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "Catholic University of America"}, {"qid": 3031, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the significance of The Catholic University of America's location in Washington, D.C.?", "answer": " Its location in Washington, D.C., places it at the heart of American political and social life, offering unique opportunities for research, internships, and networking.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Catholic University of America"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "Catholic University of America"}, {"qid": 3032, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If The Catholic University of America were to expand its research fields, how might that affect its classification among research universities?", "answer": " Expanding its research fields could potentially elevate its classification to \"R1", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Catholic University of America"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "Catholic University of America"}, {"qid": 3033, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What year did The Catholic University of America begin offering undergraduate education?", "answer": " 1904", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Catholic University of America"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "Catholic University of America"}, {"qid": 3034, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If The Catholic University of America were to significantly increase its staff number, how might this impact the student-to-faculty ratio?", "answer": " Increasing the staff number could lower the student-to-faculty ratio, potentially improving personalized attention and education quality.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Catholic University of America"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "Catholic University of America"}, {"qid": 3035, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does The Catholic University of America's status as a pontifical university affect its curriculum and mission?", "answer": " As a pontifical university, it integrates Catholic teachings and values into its curriculum and mission, emphasizing ethics, community service, and faith-based education.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Catholic University of America"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "Catholic University of America"}, {"qid": 3036, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What classification does The Catholic University of America hold in terms of research activity?", "answer": " \"R2", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Catholic University of America"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "Catholic University of America"}, {"qid": 3037, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the number of campuses of the University of Toronto compare to a university with only one campus?", "answer": " The University of Toronto has more campuses, with three campuses compared to a university with only one campus.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Toronto"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Toronto"}, {"qid": 3038, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of the University of Toronto compare to that of Harvard University?", "answer": " The University of Toronto was founded in 1827, which is later than Harvard University's founding year of 1636.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Toronto"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Toronto"}, {"qid": 3039, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which campus of the University of Toronto is the oldest?", "answer": " The St. George campus is the oldest campus of the University of Toronto.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Toronto"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Toronto"}, {"qid": 3040, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest college within the University of Toronto?", "answer": " As the information about the specific ages of the colleges within the University of Toronto is not provided, an accurate answer cannot be determined from the given details.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Toronto"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Toronto"}, {"qid": 3041, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Why did the University of Toronto change its name from King's College in 1850?", "answer": " The University of Toronto changed its name from King's College in 1850 upon becoming a secular institution, moving away from its original control by the Church of England.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Toronto"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Toronto"}, {"qid": 3042, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How is the University of Toronto related to Queen's Park?", "answer": " The University of Toronto is located on the grounds that surround Queen's Park.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Toronto"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Toronto"}, {"qid": 3043, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would happen if the University of Toronto decided to merge all its campuses into one?", "answer": " If the University of Toronto decided to merge all its campuses into one, it would consolidate its resources, students, and staff into a single location, potentially leading to increased collaboration but also possibly straining resources and space in that location.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Toronto"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Toronto"}, {"qid": 3044, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Toronto decided to open a fourth campus, how would it compare in number of campuses to its current state?", "answer": " If the University of Toronto decided to open a fourth campus, it would have one more campus compared to its current state of three campuses.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Toronto"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Toronto"}, {"qid": 3045, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the largest campus of the University of Toronto in terms of area?", "answer": " Without specific area measurements provided for each campus, an accurate answer cannot be determined from the given details.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Toronto"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Toronto"}, {"qid": 3046, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What role does the Church of England play in the governance of the University of Toronto today?", "answer": " Today, the Church of England does not play a role in the governance of the University of Toronto, as it became a secular institution in 1850.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Toronto"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Toronto"}, {"qid": 3047, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the staff number at the University of Toronto compare to a small college with 100 staff members?", "answer": " The University of Toronto has a significantly larger number of staff members compared to a small college with 100 staff members.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Toronto"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Toronto"}, {"qid": 3048, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Toronto were to become a private institution, how would its status as a public research university change?", "answer": " If the University of Toronto were to become a private institution, it would no longer be classified as a public research university, altering its funding structure, tuition fees, and potentially its accessibility to the general public.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Toronto"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Toronto"}, {"qid": 3049, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest part of Boston University?", "answer": " The original campus in Newbury, Vermont, founded in 1839, is the oldest part of Boston University.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Boston University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Boston University"}, {"qid": 3050, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How is Boston University related to the Association of American Universities?", "answer": " Boston University is a member of the Association of American Universities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Boston University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Boston University"}, {"qid": 3051, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of Boston University compare to its charter year in Boston?", "answer": " Boston University was founded in 1839, but it was not chartered in Boston until 1869.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Boston University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Boston University"}, {"qid": 3052, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Who was the president of Boston University in the year it was chartered in Boston?", "answer": " Information on the specific president of Boston University in 1869 is not provided in the provided text.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Boston University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Boston University"}, {"qid": 3053, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between Boston University and the Boston Consortium for Higher Education?", "answer": " Boston University is a member of the Boston Consortium for Higher Education.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Boston University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Boston University"}, {"qid": 3054, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would happen if Boston University left the Association of American Universities?", "answer": " If Boston University left the Association of American Universities, it might lose some opportunities for collaboration, research funding, and prestige associated with the membership.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Boston University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Boston University"}, {"qid": 3055, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compare the number of staff at Boston University to its student body size.", "answer": " The exact numbers are not provided, but typically, a university like Boston University would have a larger student body size compared to its staff number.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Boston University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Boston University"}, {"qid": 3056, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most notable achievement of Boston University's research programs?", "answer": " The most notable achievement is not specified, but as a private research university, Boston University is likely to have numerous achievements across various disciplines.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Boston University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Boston University"}, {"qid": 3057, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How did the location of Boston University's original campus influence its development?", "answer": " The original campus in Newbury, Vermont, likely influenced the early development of Boston University by providing a foundational setting for its educational philosophy before moving to Boston.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Boston University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Boston University"}, {"qid": 3058, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Boston University decided to open another campus abroad, what factors would it need to consider?", "answer": " It would need to consider factors such as local educational regulations, demand for higher education, the chosen academic programs' relevance to the local community, and logistical aspects of setting up an overseas campus.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Boston University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Boston University"}, {"qid": 3059, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does Boston University's founding year compare with other universities in Massachusetts?", "answer": " Founded in 1839, Boston University is one of the older universities in Massachusetts, though some, like Harvard (founded in 1636), are older.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Boston University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Boston University"}, {"qid": 3060, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most significant challenge Boston University faces today?", "answer": " The most significant challenge is not specified, but could include maintaining high academic standards, ensuring financial stability, or adapting to the changing landscape of higher education.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Boston University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Boston University"}, {"qid": 3061, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest land-grant research university in Cambridge, Massachusetts?", "answer": " The Massachusetts Institute of Technology", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Massachusetts Institute of Technology"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Massachusetts Institute of Technology"}, {"qid": 3062, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Who was the president of the Massachusetts Institute of Technology in its founding year, 1861?", "answer": " William Barton Rogers", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Massachusetts Institute of Technology"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Massachusetts Institute of Technology"}, {"qid": 3063, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Does the Massachusetts Institute of Technology have more staff members than the number of undergraduate students?", "answer": " This answer can vary; specific numbers for staff and undergraduate students are needed for a current comparison.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Massachusetts Institute of Technology"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Massachusetts Institute of Technology"}, {"qid": 3064, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which city is home to the highest-ranked institution for technology and science, the Massachusetts Institute of Technology?", "answer": " Cambridge, Massachusetts", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Massachusetts Institute of Technology"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Massachusetts Institute of Technology"}, {"qid": 3065, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the primary role of the Massachusetts Institute of Technology since its establishment in 1861?", "answer": " To play a significant role in the development of modern technology and science", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Massachusetts Institute of Technology"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Massachusetts Institute of Technology"}, {"qid": 3066, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the Massachusetts Institute of Technology decided to relocate, which city would no longer be its home?", "answer": " Cambridge, Massachusetts", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Massachusetts Institute of Technology"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Massachusetts Institute of Technology"}, {"qid": 3067, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Is the start year of the Massachusetts Institute of Technology earlier than Stanford University?", "answer": " Yes", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Massachusetts Institute of Technology"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Massachusetts Institute of Technology"}, {"qid": 3068, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most renowned research university in Cambridge, Massachusetts?", "answer": " The Massachusetts Institute of Technology", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Massachusetts Institute of Technology"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Massachusetts Institute of Technology"}, {"qid": 3069, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "In what year was the Massachusetts Institute of Technology established as a private land-grant research university?", "answer": " 1861", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Massachusetts Institute of Technology"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Massachusetts Institute of Technology"}, {"qid": 3070, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the Massachusetts Institute of Technology were to double its staff number, how would that affect its ranking as a technology institution?", "answer": " This is speculative; increasing staff numbers could potentially improve its resources and capabilities but does not directly guarantee a change in ranking.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Massachusetts Institute of Technology"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Massachusetts Institute of Technology"}, {"qid": 3071, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Is the Massachusetts Institute of Technology located in a larger city than Caltech?", "answer": " Yes, Cambridge, Massachusetts is larger than Pasadena, California.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Massachusetts Institute of Technology"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Massachusetts Institute of Technology"}, {"qid": 3072, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which institution has played the most significant role in the development of modern technology, according to historical records?", "answer": " The Massachusetts Institute of Technology", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Massachusetts Institute of Technology"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Massachusetts Institute of Technology"}, {"qid": 3073, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest Ivy League university in the United States?", "answer": " Brown University is the seventh-oldest, so it is not the oldest. The oldest is Harvard University, founded in 1636.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brown University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Brown University"}, {"qid": 3074, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What year was the oldest institution of higher education in the United States founded?", "answer": " 1636, with Harvard University being the oldest. Brown University was founded in 1764, making it the seventh-oldest.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brown University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Brown University"}, {"qid": 3075, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does Brown University's founding year compare to Yale University's?", "answer": " Brown University was founded in 1764, while Yale University was founded in 1701, making Yale older than Brown.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brown University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Brown University"}, {"qid": 3076, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Is Brown University located further north than Cornell University?", "answer": " No, Brown University in Providence, Rhode Island, is not further north than Cornell University in Ithaca, New York.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brown University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Brown University"}, {"qid": 3077, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What principle regarding student admission and instruction was Brown University the first U.S. college to codify?", "answer": " Brown University was the first U.S. college to codify that admission and instruction of students was to be equal regardless of the religious affiliation of students.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brown University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Brown University"}, {"qid": 3078, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What makes Brown University unique among the Ivy League universities in terms of its founding principles?", "answer": " Brown University's unique founding principle was the codification of equal admission and instruction of students regardless of their religious affiliations, making it the first U.S. college to do so.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brown University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Brown University"}, {"qid": 3079, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Brown University were to relocate, which city would become the new oldest Ivy League university location?", "answer": " If Brown University were to relocate, the city housing Harvard University, Cambridge, Massachusetts, would remain the location of the oldest Ivy League university since Harvard is the oldest and not dependent on Brown's location.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brown University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Brown University"}, {"qid": 3080, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Brown University decided to only admit students based on their religious affiliations, how would this change its historical founding principle?", "answer": " It would completely reverse its founding principle of equal admission and instruction of students regardless of their religious affiliations, breaking with its historical stance on religious equality in education.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brown University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Brown University"}, {"qid": 3081, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which Ivy League university has the smallest staff number?", "answer": " Specific staff numbers vary and fluctuate, but historically, Brown University has been smaller in terms of staff size compared to larger Ivy League institutions like Harvard or Columbia.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brown University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Brown University"}, {"qid": 3082, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What was the original name of Brown University at its founding in 1764?", "answer": " The College in the English Colony of Rhode Island and Providence Plantations.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brown University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Brown University"}, {"qid": 3083, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to Princeton University, how does the location of Brown University impact its weather?", "answer": " Brown University, located in Providence, Rhode Island, typically experiences slightly cooler and more maritime weather compared to Princeton University in Princeton, New Jersey, due to its closer proximity to the coast.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brown University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Brown University"}, {"qid": 3084, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Brown University had been founded after the American Revolution, how might its founding principles regarding religious affiliation have differed?", "answer": " If founded after the American Revolution, Brown University's principles regarding religious affiliation might have been influenced by the increased emphasis on religious freedom and separation of church and state characteristic of the post-revolutionary period, potentially making its stance on equality even more pronounced.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brown University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Brown University"}, {"qid": 3085, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of Cornell University compare to that of Harvard University?", "answer": " Cornell University was founded in 1865, whereas Harvard University was founded in 1636, making Harvard older.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cornell University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Cornell University"}, {"qid": 3086, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest building on Cornell University's campus?", "answer": " Morrill Hall, completed in 1868, is the oldest building on Cornell University's campus.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cornell University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Cornell University"}, {"qid": 3087, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Why was Cornell University founded as a co-educational institution?", "answer": " Cornell was founded as a co-educational institution to provide broad access to higher education, reflecting its founders' progressive views on education and equality.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cornell University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Cornell University"}, {"qid": 3088, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would potentially happen if Cornell University decided to become a sectarian institution today?", "answer": " If Cornell University decided to become a sectarian institution today, it might face backlash from its community, potential declines in student diversity, and challenges to its longstanding principles of inclusivity and nonsectarianism.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cornell University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Cornell University"}, {"qid": 3089, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the student body size of Cornell University compare to that of Princeton University in fall 2023?", "answer": " As of fall 2023, Cornell University's student body included over 26,000 students, which is larger than Princeton University's student body.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cornell University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Cornell University"}, {"qid": 3090, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which department at Cornell University has the highest number of enrolled students as of fall 2023?", "answer": " The College of Arts and Sciences at Cornell University has the highest number of enrolled students as of fall 2023.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cornell University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Cornell University"}, {"qid": 3091, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the location of Cornell University in Ithaca, New York, influence its research in environmental sciences?", "answer": " The location of Cornell University in Ithaca, New York, with its diverse natural environments, significantly enhances its research in environmental sciences through direct access to varied ecosystems for study and research.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cornell University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Cornell University"}, {"qid": 3092, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Cornell University were to open a new campus in California, how might it affect its existing research partnerships?", "answer": " If Cornell University were to open a new campus in California, it could potentially expand its research partnerships due to access to Silicon Valley, technology firms, and other research institutions, though it may also face challenges in integrating with its New York-based operations.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cornell University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Cornell University"}, {"qid": 3093, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compare the number of graduate students at Cornell University to its number of undergraduate students as of fall 2023.", "answer": " As of fall 2023, Cornell University had over 16,000 undergraduate students and over 10,000 graduate students, indicating more undergraduate than graduate students.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cornell University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Cornell University"}, {"qid": 3094, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most popular undergraduate major at Cornell University as of fall 2023?", "answer": " As of fall 2023, the most popular undergraduate major at Cornell University is not specified in the provided information.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cornell University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Cornell University"}, {"qid": 3095, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does Cornell University's status as a land-grant institution influence its academic programs?", "answer": " Cornell University's status as a land-grant institution influences its academic programs by emphasizing practical education in fields like agriculture, engineering, and public service, fulfilling its mission to contribute to the public good.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cornell University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Cornell University"}, {"qid": 3096, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would be the impact on Cornell University's international student community if the U.S. significantly tightened visa regulations?", "answer": " If the U.S. significantly tightened visa regulations, Cornell University's international student community might face challenges in enrollment and participation, potentially leading to a decrease in international student numbers and diversity on campus.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cornell University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Cornell University"}, {"qid": 3097, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest institution of higher education in the United States?", "answer": " Harvard University", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Yale University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Yale University"}, {"qid": 3098, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which Ivy League university has the highest number of staff members?", "answer": " Harvard University", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Yale University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Yale University"}, {"qid": 3099, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How did Yale University get its name?", "answer": " Yale University was named after Elihu Yale, a British merchant and philanthropist who was one of the early benefactors of the college.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Yale University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Yale University"}, {"qid": 3100, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What relationship does Yale University have with the American Revolution?", "answer": " Yale is one of the nine colonial colleges chartered before the American Revolution.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Yale University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Yale University"}, {"qid": 3101, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Between Yale University and Harvard University, which was founded first?", "answer": " Harvard University", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Yale University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Yale University"}, {"qid": 3102, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the staff number at Yale University compare to Princeton University?", "answer": " Yale University likely has more staff than Princeton University, but specific numbers are needed for an accurate comparison.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Yale University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Yale University"}, {"qid": 3103, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Yale University decided to open a new campus in Europe, how would it affect its ranking among Ivy League schools?", "answer": " Opening a new campus in Europe could potentially enhance Yale University's global presence and reputation, but it's uncertain how it would directly affect its ranking among Ivy League schools.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Yale University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Yale University"}, {"qid": 3104, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would happen if Yale University suddenly doubled its staff?", "answer": " Doubling its staff could improve Yale University's student-to-faculty ratio, potentially leading to smaller class sizes, more personalized attention for students, and possibly even an increase in research output.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Yale University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Yale University"}, {"qid": 3105, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What distinguishes Yale University from other Ivy League schools in terms of its founding?", "answer": " Yale is the third-oldest institution of higher education in the United States, making it distinctive among the Ivy League schools for its early establishment in 1701.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Yale University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Yale University"}, {"qid": 3106, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to Columbia University, how does Yale University's location contribute to its prestige?", "answer": " Yale's location in New Haven, Connecticut, contributes to its prestige by offering a rich historical backdrop and a unique campus environment, compared to Columbia University's urban setting in New York City, which might appeal differently to students and faculty.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Yale University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Yale University"}, {"qid": 3107, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the third-oldest institution of higher education in the United States?", "answer": " Yale University", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Yale University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Yale University"}, {"qid": 3108, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Yale University were to significantly increase its endowment, how might that impact its financial aid programs?", "answer": " A significant increase in Yale University's endowment could lead to more generous financial aid programs, making it possible to offer more scholarships and reduce the financial burden on students.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Yale University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Yale University"}, {"qid": 3109, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the earliest founded university in the Boston City Metropolitan Area, if Brandeis University was founded in 1948?", "answer": " Harvard University (founded in 1636)", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brandeis University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Brandeis University"}, {"qid": 3110, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the name of the youngest private research university in the Boston City Metropolitan Area, considering Brandeis University was founded in 1948?", "answer": " Brandeis University", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brandeis University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Brandeis University"}, {"qid": 3111, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Who was the first president of Brandeis University?", "answer": " Abram L. Sachar", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brandeis University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Brandeis University"}, {"qid": 3112, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Is Brandeis University older or younger than Boston University?", "answer": " Younger (Boston University was founded in 1839)", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brandeis University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Brandeis University"}, {"qid": 3113, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Why is Brandeis University named after Louis Brandeis?", "answer": " It is named after Louis Brandeis because he was a former Justice of the U.S. Supreme Court.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brandeis University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Brandeis University"}, {"qid": 3114, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What if Brandeis University had not been founded on the site of the former Middlesex University?", "answer": " It would have required a different location for its establishment.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brandeis University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Brandeis University"}, {"qid": 3115, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Brandeis University decided to become a sectarian institution, which religion would it likely associate with considering its namesake Louis Brandeis’s background?", "answer": " Judaism", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brandeis University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Brandeis University"}, {"qid": 3116, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between Brandeis University and the Boston City Metropolitan Area?", "answer": " Brandeis University is located within the Boston City Metropolitan Area.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brandeis University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Brandeis University"}, {"qid": 3117, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to Harvard University, how does the founding year of Brandeis University (1948) align?", "answer": " Brandeis University was founded later (Harvard University was founded in 1636).", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brandeis University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Brandeis University"}, {"qid": 3118, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the naming of Brandeis University signify its connection to the U.S. Supreme Court?", "answer": " It signifies the connection through its namesake, Louis Brandeis, who was a former Justice of the U.S. Supreme Court.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brandeis University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Brandeis University"}, {"qid": 3119, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most distinctive feature of Brandeis University's founding principles?", "answer": " Its non-sectarian, coeducational stance established in 1948.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brandeis University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Brandeis University"}, {"qid": 3120, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Brandeis University were to relocate, which aspect would be most important to maintain its identity?", "answer": " Maintaining its status as a private research university named after Louis Brandeis and adhering to its founding principles of being non-sectarian and coeducational.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brandeis University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Brandeis University"}, {"qid": 3121, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between Eleazar Wheelock and Dartmouth College?", "answer": " Eleazar Wheelock is the founder of Dartmouth College.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Dartmouth College"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Dartmouth College"}, {"qid": 3122, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "When was Dartmouth College founded in comparison to other Ivy League schools?", "answer": " Dartmouth College was founded in 1769, making it one of the nine colonial colleges chartered before the American Revolution.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Dartmouth College"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Dartmouth College"}, {"qid": 3123, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the location of Dartmouth College compare to other Ivy League universities?", "answer": " Dartmouth College is located in Hanover, New Hampshire, making it one of the Ivy League universities located in a rural area, as opposed to urban settings for schools like Columbia University and Harvard University.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Dartmouth College"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Dartmouth College"}, {"qid": 3124, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What makes Dartmouth College unique among the Ivy League schools?", "answer": " Dartmouth College is known for its strong emphasis on undergraduate education, making it unique among the Ivy League schools that also have a heavy focus on graduate programs.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Dartmouth College"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Dartmouth College"}, {"qid": 3125, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What role did Dartmouth College play in the American Revolution?", "answer": " Dartmouth College was one of the nine colonial colleges chartered before the American Revolution, playing a role in educating leaders who would go on to play parts in the founding of the United States.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Dartmouth College"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Dartmouth College"}, {"qid": 3126, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What if Dartmouth College had been established in a major city instead of Hanover, New Hampshire?", "answer": " If Dartmouth College had been established in a major city, it might have developed a different campus culture, potentially attracting a different student body and possibly focusing more on urban issues in its research and academic programs.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Dartmouth College"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Dartmouth College"}, {"qid": 3127, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of Dartmouth College compare to that of Princeton University?", "answer": " Dartmouth College was established in 1769, while Princeton University was founded earlier, in 1746, making Princeton older.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Dartmouth College"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Dartmouth College"}, {"qid": 3128, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest building on Dartmouth College's campus?", "answer": " The oldest building on Dartmouth College's campus is Wentworth Hall, part of the original campus.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Dartmouth College"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Dartmouth College"}, {"qid": 3129, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does Dartmouth College's emphasis on undergraduate education affect its faculty-to-student ratio?", "answer": " Dartmouth College's strong emphasis on undergraduate education contributes to a lower faculty-to-student ratio, ensuring more personalized attention and smaller class sizes for undergraduates.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Dartmouth College"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "Dartmouth College"}, {"qid": 3130, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Dartmouth College decided to open another campus internationally, how might that impact its undergraduate focus?", "answer": " Opening another campus internationally could potentially broaden Dartmouth College's global perspective and opportunities for undergraduates but might also challenge the college's ability to maintain its closely-knit community and strong undergraduate focus.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Dartmouth College"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Dartmouth College"}, {"qid": 3131, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to other Ivy League colleges, how does Dartmouth College's student body size rank?", "answer": " Dartmouth College has one of the smaller student body sizes among the Ivy League colleges.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Dartmouth College"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Dartmouth College"}, {"qid": 3132, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most popular major at Dartmouth College?", "answer": " Economics is one of the most popular majors at Dartmouth College.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Dartmouth College"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Dartmouth College"}, {"qid": 3133, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of the University of Pennsylvania compare to that of other Ivy League schools?", "answer": " The University of Pennsylvania, founded in 1749, is among the oldest Ivy League schools but is not the oldest. Harvard University, founded in 1636, is older.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pennsylvania"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Pennsylvania"}, {"qid": 3134, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What makes the University of Pennsylvania unique among the Ivy League schools?", "answer": " The University of Pennsylvania is unique among the Ivy League schools for being the first university to have a medical school and for its founder, Benjamin Franklin, advocating for an educational institution that trained leaders in academia, commerce, and public service.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pennsylvania"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Pennsylvania"}, {"qid": 3135, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How is Benjamin Franklin related to the University of Pennsylvania?", "answer": " Benjamin Franklin is the founder and was the first president of the University of Pennsylvania.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pennsylvania"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Pennsylvania"}, {"qid": 3136, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Benjamin Franklin had not advocated for the creation of the University of Pennsylvania, how might American higher education have been different?", "answer": " Without Benjamin Franklin's advocacy for the University of Pennsylvania, American higher education might lack a pioneering institution in combining academia with practical training for commerce and public service, potentially impacting the model of interdisciplinary education.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pennsylvania"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Pennsylvania"}, {"qid": 3137, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the staff number at the University of Pennsylvania compare to other private Ivy League universities?", "answer": " The University of Pennsylvania, being a large Ivy League institution, has a significant number of staff, but specific comparisons require current data from each institution.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pennsylvania"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Pennsylvania"}, {"qid": 3138, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest school within the University of Pennsylvania?", "answer": " The Perelman School of Medicine is the oldest school within the University of Pennsylvania, established in 1765.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pennsylvania"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Pennsylvania"}, {"qid": 3139, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What role does Philadelphia play in the identity of the University of Pennsylvania?", "answer": " Philadelphia, as the home of the University of Pennsylvania, plays a crucial role in its identity, providing a historic backdrop and a vibrant urban environment that influences the university's culture, research opportunities, and community engagement.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pennsylvania"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Pennsylvania"}, {"qid": 3140, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Pennsylvania were to move its location from Philadelphia, what impact would it have on the university's identity?", "answer": " Moving the University of Pennsylvania from Philadelphia would significantly impact its identity, potentially affecting its historic ties, cultural significance, and the sense of community, given the city's role in the university's history and development.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pennsylvania"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Pennsylvania"}, {"qid": 3141, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to its inception, how has the University of Pennsylvania's approach to education evolved over time?", "answer": " Since its inception, the University of Pennsylvania's approach to education has evolved from focusing primarily on training leaders in academia, commerce, and public service to becoming a comprehensive research university that emphasizes interdisciplinary education, innovation, and global outreach.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pennsylvania"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Pennsylvania"}, {"qid": 3142, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most significant contribution of the University of Pennsylvania to global higher education?", "answer": " The University of Pennsylvania's most significant contribution to global higher education is its pioneering model of combining liberal arts education with professional training and its emphasis on interdisciplinary research, setting a precedent for modern universities worldwide.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pennsylvania"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Pennsylvania"}, {"qid": 3143, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the University of Pennsylvania's emphasis on interdisciplinary studies enhance its academic programs?", "answer": " The University of Pennsylvania's emphasis on interdisciplinary studies enhances its academic programs by encouraging collaboration across different fields, fostering innovation, and preparing students with a broad, adaptable skill set for the complex challenges of the modern world.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pennsylvania"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Pennsylvania"}, {"qid": 3144, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Pennsylvania were to significantly expand its campus, what could be the potential benefits and drawbacks?", "answer": " Expanding its campus could provide the University of Pennsylvania with more space for research facilities, student housing, and academic programs, potentially enhancing its academic and community environment. However, it could also lead to challenges such as increased operational costs, potential displacement of local communities, and the dilution of campus culture.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pennsylvania"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Pennsylvania"}, {"qid": 3145, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What kind of institution did Christian universalists aim to create when they founded Tufts University in 1852?", "answer": " They aimed to create a nonsectarian institution of higher learning.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Tufts University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Tufts University"}, {"qid": 3146, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How did Tufts University transition in its educational offerings from the 1970s?", "answer": " Tufts transitioned from a small liberal arts college into a large research university offering several doctorates.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Tufts University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Tufts University"}, {"qid": 3147, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest part of Tufts University in terms of its foundation?", "answer": " The oldest part is Tufts College, founded in 1852.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Tufts University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Tufts University"}, {"qid": 3148, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the staff number at Tufts University compare to its student body size?", "answer": " The staff number is smaller than the student body size.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Tufts University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Tufts University"}, {"qid": 3149, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most significant transformation in Tufts University's history?", "answer": " The most significant transformation was its expansion from a small liberal arts college into a large research university in the 1970s.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Tufts University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Tufts University"}, {"qid": 3150, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would have happened if Tufts University had remained a small liberal arts college instead of expanding into a research university?", "answer": " It would likely have a smaller range of academic programs and possibly a smaller student body.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Tufts University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Tufts University"}, {"qid": 3151, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the location of Tufts University's campuses contribute to its research capabilities, especially in Boston?", "answer": " The Boston location provides access to a large academic and medical community, enhancing research collaborations and opportunities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Tufts University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Tufts University"}, {"qid": 3152, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which campus of Tufts University is the most diverse in terms of academic offerings?", "answer": " The Medford and Somerville campus is the most diverse in terms of academic offerings.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Tufts University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Tufts University"}, {"qid": 3153, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to its early years, how has the number of staff at Tufts University changed by now?", "answer": " The number of staff has significantly increased compared to its early years.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Tufts University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Tufts University"}, {"qid": 3154, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Tufts University had not established additional facilities beyond Medford and Somerville, how might its academic influence differ today?", "answer": " Its academic influence might be more localized, with less national or international recognition.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Tufts University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Tufts University"}, {"qid": 3155, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most influential factor in Tufts University's transformation into a large research university?", "answer": " The decision to expand academic offerings and invest in research facilities in the 1970s was the most influential factor.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Tufts University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Tufts University"}, {"qid": 3156, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What role does the Talloires, France campus play in Tufts University's global engagement?", "answer": " The Talloires campus serves as a hub for international education and global engagement, offering study abroad and international programs.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Tufts University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Tufts University"}, {"qid": 3157, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the largest private employer in Upstate New York?", "answer": " The University of Rochester", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Rochester"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Rochester"}, {"qid": 3158, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Where does the University of Rochester rank in terms of largest employers in all of New York State?", "answer": " 7th", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Rochester"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Rochester"}, {"qid": 3159, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How many full-time employees does the University of Rochester have?", "answer": " Approximately 30,000", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Rochester"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Rochester"}, {"qid": 3160, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "In what year was the University of Rochester founded?", "answer": " 1850", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Rochester"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Rochester"}, {"qid": 3161, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "When did the University of Rochester move to its current campus next to the Genesee River?", "answer": " 1955", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Rochester"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Rochester"}, {"qid": 3162, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What type of university is the University of Rochester?", "answer": " A private research university", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Rochester"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Rochester"}, {"qid": 3163, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Is the University of Rochester a public or private institution?", "answer": " Private", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Rochester"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Rochester"}, {"qid": 3164, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the University of Rochester's rank among private employers in Upstate New York?", "answer": " 1st", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Rochester"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Rochester"}, {"qid": 3165, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Rochester were to hire 500 more employees, how many full-time employees would it have?", "answer": " Approximately 30,500", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Rochester"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Rochester"}, {"qid": 3166, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What city is the University of Rochester located in?", "answer": " Rochester, New York", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Rochester"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Rochester"}, {"qid": 3167, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Compared to other private employers in New York State, where does the University of Rochester stand in terms of employee count?", "answer": " 7th", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Rochester"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Rochester"}, {"qid": 3168, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the proximity of the University of Rochester's campus to the Genesee River?", "answer": " Next to the Genesee River", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Rochester"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Rochester"}, {"qid": 3169, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the staff number at Caltech compare to that of a similarly sized private research university?", "answer": " Caltech, being a highly focused institute with a strong emphasis on science and engineering, typically has a smaller, more specialized faculty compared to larger private research universities which may have a more diverse range of departments and a larger staff.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["California Institute of Technology"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "California Institute of Technology"}, {"qid": 3170, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest technology institute in the United States?", "answer": " The Massachusetts Institute of Technology (MIT), founded in 1861, is older than Caltech, which was founded in 1891.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["California Institute of Technology"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "California Institute of Technology"}, {"qid": 3171, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What relationship does the president of Caltech have with the institution?", "answer": " The president of Caltech serves as the chief executive officer, overseeing all operational aspects of the university, including academic affairs, research programs, and administration.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["California Institute of Technology"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "California Institute of Technology"}, {"qid": 3172, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would happen if Caltech decided to triple its staff number over the next decade?", "answer": " Tripling its staff number could significantly expand Caltech's research capabilities and course offerings, potentially attracting more students and faculty, but it would also require substantial financial investment and could alter the institute's intimate, focused research environment.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["California Institute of Technology"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "California Institute of Technology"}, {"qid": 3173, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the focus on pure and applied sciences at Caltech compare to that at liberal arts colleges?", "answer": " Caltech's focus on pure and applied sciences is much more concentrated, offering specialized programs and research opportunities in these fields, unlike liberal arts colleges which offer a broader, more general education across the humanities, arts, and sciences.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["California Institute of Technology"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "California Institute of Technology"}, {"qid": 3174, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which institute has made the most contributions to modern scientific advances, Caltech or a newly established science and technology university?", "answer": " Caltech has made more contributions to modern scientific advances due to its long history of excellence in research and education in science and engineering, compared to a newly established university.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["California Institute of Technology"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "California Institute of Technology"}, {"qid": 3175, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the location of Caltech influence its research opportunities?", "answer": " Located in Pasadena, California, Caltech benefits from close proximity to other research institutions, tech companies, and startups, providing ample collaboration opportunities and access to cutting-edge research facilities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["California Institute of Technology"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "California Institute of Technology"}, {"qid": 3176, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Caltech were to relocate to another state, how might it affect its student enrollment?", "answer": " Relocating could affect Caltech's student enrollment by potentially making it more or less attractive to prospective students based on the new location's climate, culture, and proximity to other educational and research institutions.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["California Institute of Technology"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "California Institute of Technology"}, {"qid": 3177, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the student-to-faculty ratio at Caltech compare to that of large public universities?", "answer": " Caltech, with its smaller size and emphasis on individualized education, typically has a more favorable, lower student-to-faculty ratio compared to large public universities, which can have larger class sizes and higher ratios.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["California Institute of Technology"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "California Institute of Technology"}, {"qid": 3178, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What year was the first institute of technology founded in the United States?", "answer": " The Rensselaer Polytechnic Institute, founded in 1824, is the oldest technological research university in the English-speaking world.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["California Institute of Technology"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "California Institute of Technology"}, {"qid": 3179, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What impact does the president of Caltech have on the direction of scientific research at the institution?", "answer": " The president of Caltech plays a significant role in shaping the direction of scientific research by setting priorities, allocating resources, and fostering an environment that encourages innovation and interdisciplinary collaboration.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["California Institute of Technology"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "California Institute of Technology"}, {"qid": 3180, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would be the impact on scientific research if Caltech significantly increased its collaboration with international research institutions?", "answer": " Increasing collaboration with international research institutions could greatly enhance Caltech's scientific research by bringing in diverse perspectives, expertise, and resources, potentially leading to groundbreaking discoveries and innovations.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["California Institute of Technology"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "California Institute of Technology"}, {"qid": 3181, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest institution of higher education in Utah?", "answer": " The University of Utah", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Utah"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Utah"}, {"qid": 3182, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What was the original name of the University of Utah when it was established in 1850?", "answer": " University of Deseret", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Utah"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Utah"}, {"qid": 3183, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "When did the University of Utah move to its current location in Salt Lake City?", "answer": " 1900", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Utah"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Utah"}, {"qid": 3184, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "When did the University of Utah receive its current name?", "answer": " 1892", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Utah"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Utah"}, {"qid": 3185, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of the University of Utah compare to the year Utah attained statehood?", "answer": " The University of Utah was founded before Utah attained statehood.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Utah"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Utah"}, {"qid": 3186, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between the University of Utah's establishment and the provisional State of Deseret?", "answer": " The University of Utah was established as the University of Deseret by the General Assembly of the provisional State of Deseret.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Utah"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Utah"}, {"qid": 3187, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Utah had not changed its name from the University of Deseret, what would it be called today?", "answer": " University of Deseret", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Utah"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Utah"}, {"qid": 3188, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Is the University of Utah older or younger than the state of Utah?", "answer": " Older", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Utah"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Utah"}, {"qid": 3189, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What if the University of Utah had remained at its original location instead of moving in 1900?", "answer": " It would not be located in its current location in Salt Lake City.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Utah"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Utah"}, {"qid": 3190, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which university is the flagship of the Utah System of Higher Education?", "answer": " The University of Utah", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Utah"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Utah"}, {"qid": 3191, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What significant change happened to the University of Utah four years before Utah became a state?", "answer": " It received its current name in 1892.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Utah"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Utah"}, {"qid": 3192, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Utah were to change its name again, what would remain as its founding year?", "answer": " 1850", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Utah"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Utah"}, {"qid": 3193, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between James Buchanan Duke and Duke University's name change in 1924?", "answer": " James Buchanan Duke established The Duke Endowment in 1924, leading to the institution changing its name to honor his deceased father, Washington Duke.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Duke University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Duke University"}, {"qid": 3194, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest part of Duke University's history, considering its founding and name changes?", "answer": " The oldest part of Duke University's history is its founding in 1838 by Methodists and Quakers in the present-day city of Trinity.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Duke University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Duke University"}, {"qid": 3195, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the location of Duke University's original foundation compare to its location after 1892?", "answer": " Duke University was originally founded in the present-day city of Trinity in 1838 and moved to Durham in 1892.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Duke University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Duke University"}, {"qid": 3196, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What was the most significant financial contribution to Duke University, leading to a name change?", "answer": " The most significant financial contribution was from James Buchanan Duke, who established The Duke Endowment in 1924, leading to the university changing its name.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Duke University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Duke University"}, {"qid": 3197, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What led to Duke University moving to Durham in 1892?", "answer": " The school moved to Durham in 1892, but the specific reasons behind this decision are not detailed in the provided information.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Duke University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Duke University"}, {"qid": 3198, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would have happened if James Buchanan Duke had not established The Duke Endowment in 1924?", "answer": " Without the establishment of The Duke Endowment by James Buchanan Duke in 1924, the university might not have changed its name to honor his father, Washington Duke.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Duke University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Duke University"}, {"qid": 3199, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does Duke University's founding year compare to the year it moved to Durham?", "answer": " Duke University was founded in 1838 and moved to Durham in 1892, indicating a 54-year gap between its founding and relocation.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Duke University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Duke University"}, {"qid": 3200, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which individual's contribution led to the most significant change in Duke University's history?", "answer": " James Buchanan Duke's contribution led to the most significant change by establishing The Duke Endowment in 1924, which resulted in the university changing its name.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Duke University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Duke University"}, {"qid": 3201, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How is the founding of Duke University related to its initial religious affiliations?", "answer": " Duke University's founding in 1838 by Methodists and Quakers shows its initial religious affiliations before becoming a private research university.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Duke University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Duke University"}, {"qid": 3202, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Duke University had not moved to Durham in 1892, how might its development have differed?", "answer": " If Duke University had not moved to Durham in 1892, its development might have been significantly different, potentially affecting its growth, partnerships, and regional influence.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Duke University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Duke University"}, {"qid": 3203, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compare the influence of Methodists and Quakers on the founding of Duke University to the influence of James Buchanan Duke's financial contribution.", "answer": " The Methodists and Quakers influenced Duke University's founding in 1838 through their religious and educational vision, while James Buchanan Duke's financial contribution in 1924 significantly transformed the university through a major endowment, leading to its renaming.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Duke University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Duke University"}, {"qid": 3204, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the significance of the year 1924 in Duke University's history?", "answer": " The year 1924 is significant in Duke University's history due to James Buchanan Duke establishing The Duke Endowment, which led to the university changing its name to honor his father, Washington Duke.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Duke University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Duke University"}, {"qid": 3205, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of the University of California, Berkeley compare to Stanford University?", "answer": " The University of California, Berkeley was founded in 1868, while Stanford University was founded in 1885, making UC Berkeley older.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Berkeley"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, Berkeley"}, {"qid": 3206, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest land-grant university in California?", "answer": " The University of California, Berkeley is the state's first land-grant university, making it the oldest.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Berkeley"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, Berkeley"}, {"qid": 3207, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Who was the University of California, Berkeley named after?", "answer": " It was named after the Anglo-Irish philosopher George Berkeley.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Berkeley"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, Berkeley"}, {"qid": 3208, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of California, Berkeley had not been named after George Berkeley, what might have influenced its name?", "answer": " It might have been influenced by its location, founding principles, or notable individuals related to its establishment other than George Berkeley.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Berkeley"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, Berkeley"}, {"qid": 3209, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the staff number at the University of California, Berkeley compare to the University of California, Los Angeles?", "answer": " This requires up-to-date data not provided in the original information; staff numbers at universities can fluctuate annually.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Berkeley"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, Berkeley"}, {"qid": 3210, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which campus in the University of California system was established first?", "answer": " The University of California, Berkeley was the founding campus of the University of California system, making it the first.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Berkeley"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of California, Berkeley"}, {"qid": 3211, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What type of university is the University of California, Berkeley?", "answer": " It is a public land-grant research university.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Berkeley"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, Berkeley"}, {"qid": 3212, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What if the University of California, Berkeley had been founded as a private institution instead?", "answer": " It would likely have a different funding structure, governance, and possibly a different mission or set of priorities compared to being a public land-grant institution.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Berkeley"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, Berkeley"}, {"qid": 3213, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Is the University of California, Berkeley older or younger than Harvard University?", "answer": " The University of California, Berkeley is younger than Harvard University. Harvard was founded in 1636, making it significantly older.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Berkeley"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, Berkeley"}, {"qid": 3214, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What was the first campus of the University of California system?", "answer": " The University of California, Berkeley was the first campus of the University of California system.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Berkeley"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, Berkeley"}, {"qid": 3215, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Where is the University of California, Berkeley located?", "answer": " It is located in Berkeley, California.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Berkeley"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, Berkeley"}, {"qid": 3216, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of California, Berkeley decided to move its location, what would be a major consideration in choosing the new location?", "answer": " Major considerations would include the availability of land, access to resources, impact on academic programs, and the ability to serve its student population effectively.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Berkeley"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, Berkeley"}, {"qid": 3217, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the start year of the University of California, Los Angeles compare to San José State University?", "answer": " The academic roots of UCLA were established in 1881 as a part of the California State Normal School, which evolved into San José State University, making San José State University older.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Los Angeles"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, Los Angeles"}, {"qid": 3218, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest campus in the University of California system?", "answer": " The University of California, Berkeley.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Los Angeles"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, Los Angeles"}, {"qid": 3219, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Why did the southern branch of the California State Normal School become the University of California, Los Angeles?", "answer": " The branch was transferred to the University of California to become the Southern Branch of the University of California in 1919, later evolving into UCLA.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Los Angeles"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, Los Angeles"}, {"qid": 3220, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What if the southern branch of the California State Normal School had not been transferred to the University of California in 1919?", "answer": " It might not have evolved into the University of California, Los Angeles, and could have remained a part of the state's normal school system or taken a different development path.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Los Angeles"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, Los Angeles"}, {"qid": 3221, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which campus of the University of California system was established after the University of California, Los Angeles?", "answer": " All the other campuses except the University of California, Berkeley, were established after the University of California, Los Angeles, making it the second-oldest.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Los Angeles"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, Los Angeles"}, {"qid": 3222, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the location of UCLA compare to the University of California, Berkeley in terms of city?", "answer": " UCLA is located in Los Angeles, California, while the University of California, Berkeley is in Berkeley, California.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Los Angeles"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, Los Angeles"}, {"qid": 3223, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What led to the name change from the Southern Branch of the University of California to the University of California, Los Angeles?", "answer": " The evolution and growth of the institution from a branch campus into a full-fledged university led to the name change to the University of California, Los Angeles.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Los Angeles"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, Los Angeles"}, {"qid": 3224, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What if the University of California, Los Angeles had remained a normal school instead of becoming a university?", "answer": " It would likely have focused primarily on teacher education and not evolved into the comprehensive research university it is today.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Los Angeles"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, Los Angeles"}, {"qid": 3225, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the youngest campus in the University of California system?", "answer": " The Merced campus, which opened in 2005.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Los Angeles"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, Los Angeles"}, {"qid": 3226, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of the University of California, Los Angeles compare to the University of California, Berkeley?", "answer": " The University of California, Los Angeles was established in 1919, making it younger than the University of California, Berkeley, which was founded in 1868.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Los Angeles"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, Los Angeles"}, {"qid": 3227, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How did the University of California, Los Angeles evolve from its initial academic roots?", "answer": " It began as a normal school in 1881, became the southern branch of the California State Normal School, and was then transferred to the University of California system in 1919, eventually becoming UCLA.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Los Angeles"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, Los Angeles"}, {"qid": 3228, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What if UCLA had not been transferred to the University of California system in 1919?", "answer": " It might have remained a part of the normal school system, possibly limiting its growth and development into a leading research university.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Los Angeles"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, Los Angeles"}, {"qid": 3229, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the oldest university in the state of Iowa?", "answer": " The University of Iowa", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Iowa"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Iowa"}, {"qid": 3230, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which university was the first to be established in Iowa?", "answer": " The University of Iowa", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Iowa"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Iowa"}, {"qid": 3231, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the largest public research university in Iowa City, Iowa?", "answer": " The University of Iowa", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Iowa"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Iowa"}, {"qid": 3232, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "In what city is the University of Iowa located?", "answer": " Iowa City, Iowa", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Iowa"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Iowa"}, {"qid": 3233, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How many colleges is the University of Iowa organized into?", "answer": " 12", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Iowa"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Iowa"}, {"qid": 3234, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How many areas of study does the University of Iowa offer?", "answer": " More than 200", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Iowa"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Iowa"}, {"qid": 3235, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "When was the University of Iowa founded relative to other universities in Iowa?", "answer": " 1847", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Iowa"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Iowa"}, {"qid": 3236, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Is the University of Iowa older than the University of Northern Iowa?", "answer": " Yes", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Iowa"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Iowa"}, {"qid": 3237, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Iowa were to add another college, how many colleges would it have?", "answer": " 13", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Iowa"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Iowa"}, {"qid": 3238, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would happen if the University of Iowa decided to specialize solely in professional degrees?", "answer": " The university would only offer 7 professional degrees and no other areas of study.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Iowa"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Iowa"}, {"qid": 3239, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What degrees does the University of Iowa offer in addition to over 200 areas of study?", "answer": " 7 professional degrees", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Iowa"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Iowa"}, {"qid": 3240, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which university in Iowa offers the most areas of study?", "answer": " The University of Iowa", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Iowa"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Iowa"}, {"qid": 3241, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of Carnegie Mellon University compare to that of the University of Pittsburgh?", "answer": " Carnegie Mellon University was founded in 1900, whereas the University of Pittsburgh was founded in 1787, making the University of Pittsburgh older.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Carnegie Mellon University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Carnegie Mellon University"}, {"qid": 3242, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest school within Carnegie Mellon University?", "answer": " The Carnegie Technical Schools, established in 1900, are the oldest entity within what is now Carnegie Mellon University.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Carnegie Mellon University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Carnegie Mellon University"}, {"qid": 3243, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How did the merger in 1967 influence the name of Carnegie Mellon University?", "answer": " The merger in 1967 between the Carnegie Institute of Technology and the Mellon Institute of Industrial Research led to the institution being renamed Carnegie Mellon University.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Carnegie Mellon University"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "Carnegie Mellon University"}, {"qid": 3244, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Andrew Carnegie had not founded the Carnegie Technical Schools in 1900, what would have been the impact on the establishment of Carnegie Mellon University?", "answer": " If Andrew Carnegie had not founded the Carnegie Technical Schools in 1900, Carnegie Mellon University might not have been established in its current form, as the school was a precursor to the university.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Carnegie Mellon University"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "Carnegie Mellon University"}, {"qid": 3245, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the staff number at Carnegie Mellon University compare to that of similar private research universities?", "answer": " The staff number at Carnegie Mellon University is competitive with similar private research universities, but specific comparisons require current data from each institution.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Carnegie Mellon University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Carnegie Mellon University"}, {"qid": 3246, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which president of Carnegie Mellon University has served the longest term?", "answer": " As of my last update, specific data is required to determine which president of Carnegie Mellon University has served the longest term.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Carnegie Mellon University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Carnegie Mellon University"}, {"qid": 3247, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How has the location of Carnegie Mellon University in Pittsburgh contributed to its research initiatives?", "answer": " The location of Carnegie Mellon University in Pittsburgh has provided ample opportunities for collaboration with local industries and research institutions, enhancing its research initiatives.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Carnegie Mellon University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Carnegie Mellon University"}, {"qid": 3248, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Carnegie Mellon University were to merge with another university, how might its academic programs change?", "answer": " If Carnegie Mellon University were to merge with another university, its academic programs might expand or become more diverse, depending on the strengths and focus areas of the other institution.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Carnegie Mellon University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Carnegie Mellon University"}, {"qid": 3249, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the student body size of Carnegie Mellon University compare to that of Stanford University?", "answer": " As of my last update, Stanford University tends to have a larger student body size compared to Carnegie Mellon University, but specific numbers can vary by year.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Carnegie Mellon University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Carnegie Mellon University"}, {"qid": 3250, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most popular major at Carnegie Mellon University?", "answer": " As of my last update, Computer Science is one of the most popular majors at Carnegie Mellon University, reflecting its strong reputation in this field.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Carnegie Mellon University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Carnegie Mellon University"}, {"qid": 3251, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "In what way has Andrew Carnegie's founding of Carnegie Technical Schools shaped the educational philosophy of Carnegie Mellon University?", "answer": " Andrew Carnegie's founding of Carnegie Technical Schools laid the foundation for a strong emphasis on practical and technical education, shaping Carnegie Mellon University's focus on innovation and applied learning.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Carnegie Mellon University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Carnegie Mellon University"}, {"qid": 3252, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Carnegie Mellon University decided to open a campus abroad, what factors should it consider to ensure the success of the new campus?", "answer": " Carnegie Mellon University should consider factors such as local demand for its programs, the ability to maintain academic standards, partnerships with local institutions, and adherence to local education regulations to ensure the success of a new campus abroad.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Carnegie Mellon University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Carnegie Mellon University"}, {"qid": 3253, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What year was the University of North Carolina at Chapel Hill chartered?", "answer": " 1789", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of North Carolina at Chapel Hill"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "University of North Carolina at Chapel Hill"}, {"qid": 3254, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "When did the University of North Carolina at Chapel Hill first enroll students?", "answer": " 1795", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of North Carolina at Chapel Hill"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "University of North Carolina at Chapel Hill"}, {"qid": 3255, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Is the University of North Carolina at Chapel Hill the oldest public university in the United States?", "answer": " It is one of the oldest public universities in the United States.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of North Carolina at Chapel Hill"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "University of North Carolina at Chapel Hill"}, {"qid": 3256, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Where is the University of North Carolina at Chapel Hill located?", "answer": " Chapel Hill, North Carolina", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of North Carolina at Chapel Hill"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "University of North Carolina at Chapel Hill"}, {"qid": 3257, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would likely happen if the University of North Carolina at Chapel Hill decided to move its location?", "answer": " There would be significant logistical, financial, and possibly legal challenges, along with potential pushback from students, alumni, and local residents.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of North Carolina at Chapel Hill"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "University of North Carolina at Chapel Hill"}, {"qid": 3258, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding date of the University of North Carolina at Chapel Hill compare to other public universities in the United States?", "answer": " The University of North Carolina at Chapel Hill is among the earliest public universities established in the United States.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of North Carolina at Chapel Hill"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "University of North Carolina at Chapel Hill"}, {"qid": 3259, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the status of the University of North Carolina at Chapel Hill among public research universities in North Carolina?", "answer": " It is a leading public research university in North Carolina.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of North Carolina at Chapel Hill"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "University of North Carolina at Chapel Hill"}, {"qid": 3260, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What type of university is the University of North Carolina at Chapel Hill?", "answer": " It is a public research university.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of North Carolina at Chapel Hill"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "University of North Carolina at Chapel Hill"}, {"qid": 3261, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of North Carolina at Chapel Hill significantly increased its staff numbers, what might be the impact on its operations?", "answer": " Increasing staff numbers could enhance research capabilities, improve student support and services, but may also require additional funding and resources.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of North Carolina at Chapel Hill"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "University of North Carolina at Chapel Hill"}, {"qid": 3262, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to when it was founded, how has the University of North Carolina at Chapel Hill changed in terms of academic offerings?", "answer": " Since its founding, the University of North Carolina at Chapel Hill has significantly expanded its academic offerings to include a wide range of disciplines.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of North Carolina at Chapel Hill"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "University of North Carolina at Chapel Hill"}, {"qid": 3263, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What makes the University of North Carolina at Chapel Hill unique among other universities in the United States?", "answer": " Its status as one of the oldest public universities in the United States and its prestigious reputation as a leading research institution make it unique.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of North Carolina at Chapel Hill"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "University of North Carolina at Chapel Hill"}, {"qid": 3264, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would be the consequences if the University of North Carolina at Chapel Hill suddenly closed?", "answer": " The closure would disrupt the education of thousands of students, affect faculty and staff employment, and have a significant negative impact on the local economy and educational landscape in North Carolina.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of North Carolina at Chapel Hill"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "University of North Carolina at Chapel Hill"}, {"qid": 3265, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest campus of Johns Hopkins University?", "answer": " The original and main campus in Baltimore, Maryland, founded in 1876.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Johns Hopkins University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Johns Hopkins University"}, {"qid": 3266, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How is Johns Hopkins University related to the concept of a research university in the United States?", "answer": " Johns Hopkins University was the first American university based on the European research institution model, establishing the concept of a research university in the United States.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Johns Hopkins University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Johns Hopkins University"}, {"qid": 3267, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the staff number of Johns Hopkins University compare to other private research universities in Baltimore?", "answer": " Johns Hopkins University has one of the largest staff numbers among private research universities in Baltimore.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Johns Hopkins University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Johns Hopkins University"}, {"qid": 3268, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Johns Hopkins University decided to open a new campus in South America, how would this affect its global presence?", "answer": " Opening a new campus in South America would increase Johns Hopkins University's global presence and expand its international reach.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Johns Hopkins University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Johns Hopkins University"}, {"qid": 3269, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which location of Johns Hopkins University has the highest number of graduate students?", "answer": " The main campus in Baltimore, Maryland.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Johns Hopkins University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Johns Hopkins University"}, {"qid": 3270, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What relationship does Johns Hopkins University's founding year have with the history of American higher education?", "answer": " Its founding year, 1876, marks Johns Hopkins University as a pioneer in adopting the research institution model, influencing the evolution of American higher education.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Johns Hopkins University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Johns Hopkins University"}, {"qid": 3271, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the number of staff at Johns Hopkins University compare to that of newly established universities in the United States?", "answer": " Johns Hopkins University has a significantly larger number of staff compared to newly established universities in the United States.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Johns Hopkins University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Johns Hopkins University"}, {"qid": 3272, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Johns Hopkins University had not adopted the European research institution model, how might its academic reputation differ today?", "answer": " Without adopting the European research institution model, Johns Hopkins University might not have achieved its current academic reputation as a leading research university.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Johns Hopkins University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Johns Hopkins University"}, {"qid": 3273, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most significant contribution of Johns Hopkins University to global health research?", "answer": " Johns Hopkins University's most significant contribution to global health research is its pioneering work in public health and medicine, particularly through the Johns Hopkins Bloomberg School of Public Health.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Johns Hopkins University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Johns Hopkins University"}, {"qid": 3274, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the presence of Johns Hopkins University campuses in Italy and China affect its academic collaborations?", "answer": " The presence of campuses in Italy and China enhances Johns Hopkins University's academic collaborations, enabling it to form partnerships and exchange programs with institutions in Europe and Asia.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Johns Hopkins University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Johns Hopkins University"}, {"qid": 3275, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to when it was founded, how has the staff number at Johns Hopkins University changed?", "answer": " Since its founding in 1876, the staff number at Johns Hopkins University has significantly increased to support its growth in research and academic programs.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Johns Hopkins University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Johns Hopkins University"}, {"qid": 3276, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Johns Hopkins University were to lead a global initiative on climate change, how would this align with its research goals?", "answer": " Leading a global initiative on climate change would align with Johns Hopkins University's research goals by leveraging its strengths in interdisciplinary research, particularly in environmental sciences and policy.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Johns Hopkins University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Johns Hopkins University"}, {"qid": 3277, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between James McGill and McGill University?", "answer": " James McGill was a Scottish merchant whose bequest in 1813 led to the establishment of the University of McGill College, which was later renamed McGill University.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["McGill University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "McGill University"}, {"qid": 3278, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How did McGill University get its name?", "answer": " McGill University was named after James McGill, a Scottish merchant, whose bequest in 1813 established the University of McGill College, later renamed McGill University.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["McGill University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "McGill University"}, {"qid": 3279, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which city in Canada is home to McGill University?", "answer": " Montreal, Quebec.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["McGill University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "McGill University"}, {"qid": 3280, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "When was McGill University founded, making it one of the oldest universities in Canada?", "answer": " 1821.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["McGill University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "McGill University"}, {"qid": 3281, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of McGill University compare to the University of Toronto?", "answer": " McGill University was founded in 1821, while the University of Toronto was established in 1827, making McGill University older.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["McGill University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "McGill University"}, {"qid": 3282, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If James McGill had not made his bequest in 1813, what might have happened to the establishment of McGill University?", "answer": " Without James McGill's bequest, the establishment of McGill University might have been delayed or possibly not occurred at all.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["McGill University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "McGill University"}, {"qid": 3283, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What led to the change of name from McGill College to McGill University?", "answer": " The name was officially changed to McGill University in 1885 to reflect its growth and development beyond a college.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["McGill University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "McGill University"}, {"qid": 3284, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the primary language of instruction at McGill University?", "answer": " English.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["McGill University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "McGill University"}, {"qid": 3285, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If McGill University decided to become a French-language institution, how might this change its identity?", "answer": " Switching to French as the primary language of instruction would significantly alter McGill University's identity, potentially affecting its appeal to international students and its standing as an English-language institution in a predominantly French-speaking province.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["McGill University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "McGill University"}, {"qid": 3286, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Who was the president of McGill University as of the latest update?", "answer": " The president of McGill University can change over time; please check the most current sources for the latest information.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["McGill University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "McGill University"}, {"qid": 3287, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compare the staff number of McGill University to that of Harvard University.", "answer": " The staff number at both universities can vary over time, so current data should be consulted for a precise comparison.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["McGill University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "McGill University"}, {"qid": 3288, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What significant contribution did James McGill's bequest make to the educational landscape in Canada?", "answer": " James McGill's bequest led to the establishment of one of the first institutions of higher education in Canada, contributing significantly to the country's educational landscape by providing the foundation for McGill University.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["McGill University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "McGill University"}, {"qid": 3289, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Who founded the University of Virginia and what UNESCO World Heritage Site is contained within it?", "answer": " Thomas Jefferson founded the University of Virginia, and it contains his Academical Village, a UNESCO World Heritage Site.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Virginia"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Virginia"}, {"qid": 3290, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Who was the sitting president of the United States at the time of the University of Virginia's foundation?", "answer": " James Monroe", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Virginia"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Virginia"}, {"qid": 3291, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Who were the first two rectors of the University of Virginia?", "answer": " Presidents Jefferson and Madison", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Virginia"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Virginia"}, {"qid": 3292, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What roles did Thomas Jefferson play in the foundation of the University of Virginia?", "answer": " Thomas Jefferson designed the original courses of study and the university's architecture, and also founded the university.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Virginia"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Virginia"}, {"qid": 3293, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "In what year was the University of Virginia founded, and who founded it?", "answer": " It was founded in 1819 by Thomas Jefferson.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Virginia"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Virginia"}, {"qid": 3294, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What significant architectural and academic planning role did Jefferson have at the University of Virginia?", "answer": " Jefferson designed both the original courses of study and the university's architecture.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Virginia"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Virginia"}, {"qid": 3295, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Among the original governing Board of Visitors, who were the three U.S. presidents involved?", "answer": " Jefferson, James Madison, and James Monroe", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Virginia"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Virginia"}, {"qid": 3296, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which school within the University of Virginia is the oldest?", "answer": " The School of Law", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Virginia"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Virginia"}, {"qid": 3297, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to the School of Medicine and the Darden School of Business, which was established first at the University of Virginia?", "answer": " The School of Law", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Virginia"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Virginia"}, {"qid": 3298, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How is the University of Virginia related to three U.S. Presidents in its foundational phase?", "answer": " The original governing Board of Visitors included three U.S. presidents", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Virginia"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Virginia"}, {"qid": 3299, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Thomas Jefferson had not founded the University of Virginia, which UNESCO World Heritage Site would not be located there?", "answer": " His Academical Village", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Virginia"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Virginia"}, {"qid": 3300, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the size of the historic central campus of the University of Virginia?", "answer": " 1,135 acres", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Virginia"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Virginia"}, {"qid": 3301, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of Purdue University compare to the founding year of Indiana University?", "answer": " Purdue University was founded in 1869, whereas Indiana University was founded earlier in 1820.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Purdue University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Purdue University"}, {"qid": 3302, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest building on the campus of Purdue University?", "answer": " University Hall is the oldest building on Purdue University's campus.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Purdue University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Purdue University"}, {"qid": 3303, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Who donated the land and money to establish Purdue University?", "answer": " John Purdue donated the land and money to establish Purdue University.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Purdue University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Purdue University"}, {"qid": 3304, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Purdue University had not been founded, what might have been the impact on higher education in Indiana?", "answer": " Without Purdue University, Indiana might have had a significant gap in science, technology, and agricultural education, potentially limiting the state's development in these critical areas.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Purdue University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Purdue University"}, {"qid": 3305, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the largest major at Purdue University by enrollment?", "answer": " Engineering is the largest major at Purdue University by enrollment.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Purdue University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Purdue University"}, {"qid": 3306, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the student population of Purdue University compare to that of Indiana University?", "answer": " As of the last report, Purdue University had a smaller total student population than Indiana University.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Purdue University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Purdue University"}, {"qid": 3307, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What was the original purpose of establishing Purdue University?", "answer": " The original purpose of establishing Purdue University was to create a college of science, technology, and agriculture.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Purdue University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Purdue University"}, {"qid": 3308, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If John Purdue had not donated land and money, how might Purdue University be different today?", "answer": " Without John Purdue's donation, Purdue University might not have been established in its current location, potentially affecting its size, scope, and reputation.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Purdue University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Purdue University"}, {"qid": 3309, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which academic department at Purdue University is ranked highest nationally?", "answer": " Purdue University's College of Engineering is ranked among the highest nationally.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Purdue University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Purdue University"}, {"qid": 3310, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the number of staff at Purdue University compare to the number of staff at the University of Illinois?", "answer": " Purdue University has fewer staff members than the University of Illinois.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Purdue University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Purdue University"}, {"qid": 3311, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How did the location for Purdue University get chosen?", "answer": " The location for Purdue University was chosen based on the land donated by John Purdue.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Purdue University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Purdue University"}, {"qid": 3312, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What if Purdue University had focused solely on agriculture at its founding, how might its academic offerings be different today?", "answer": " If Purdue University had focused solely on agriculture at its founding, it might not offer the wide range of engineering, technology, and science programs it does today, potentially limiting its reputation as a comprehensive research university.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Purdue University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Purdue University"}, {"qid": 3313, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between the University of Colorado Boulder and the state of Colorado's status when it was founded?", "answer": " The University of Colorado Boulder was founded five months before Colorado became a state.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Colorado Boulder"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Colorado Boulder"}, {"qid": 3314, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which university is considered the flagship of the University of Colorado system?", "answer": " The University of Colorado Boulder", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Colorado Boulder"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Colorado Boulder"}, {"qid": 3315, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What classification does CU Boulder hold among Doctoral Universities in terms of research activity?", "answer": " R1", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Colorado Boulder"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Colorado Boulder"}, {"qid": 3316, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How is CU Boulder affiliated with the Association of American Universities?", "answer": " CU Boulder is a member of the Association of American Universities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Colorado Boulder"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Colorado Boulder"}, {"qid": 3317, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to when it was founded, how has the University of Colorado Boulder's research classification changed over time?", "answer": " The University of Colorado Boulder is now classified among R1", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Colorado Boulder"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Colorado Boulder"}, {"qid": 3318, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would happen if the University of Colorado Boulder decided to leave the Association of American Universities?", "answer": " If CU Boulder decided to leave the Association of American Universities, it might affect its reputation, research collaborations, and possibly funding opportunities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Colorado Boulder"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Colorado Boulder"}, {"qid": 3319, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "In what year was the University of Colorado Boulder founded relative to Colorado's statehood?", "answer": " 1876, five months before Colorado became a state.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Colorado Boulder"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Colorado Boulder"}, {"qid": 3320, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Where does CU Boulder rank in terms of research activity among universities?", "answer": " CU Boulder is classified among R1", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Colorado Boulder"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Colorado Boulder"}, {"qid": 3321, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "How would CU Boulder's research focus change if it aimed to become the top university in sustainable energy research?", "answer": " If CU Boulder aimed to become the top university in sustainable energy research, it would likely allocate more resources, funding, and faculty expertise towards sustainable energy projects and initiatives.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Colorado Boulder"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Colorado Boulder"}, {"qid": 3322, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does CU Boulder's founding year compare to other universities in the University of Colorado system?", "answer": " CU Boulder, founded in 1876, is the oldest university in the University of Colorado system.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Colorado Boulder"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Colorado Boulder"}, {"qid": 3323, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What makes CU Boulder unique in the Association of American Universities?", "answer": " Its status as a member while being the flagship university of the University of Colorado system and holding an R1 classification for very high research activity makes it unique.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Colorado Boulder"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Colorado Boulder"}, {"qid": 3324, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If CU Boulder were to lead a new research initiative within the Association of American Universities, what impact might that have on its national ranking?", "answer": " Leading a new research initiative could enhance CU Boulder's reputation, potentially improving its national ranking due to increased visibility, collaboration, and research outputs.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Colorado Boulder"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Colorado Boulder"}, {"qid": 3325, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What type of university is the University of Miami classified as?", "answer": " The University of Miami is classified as a private research university.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Miami"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Miami"}, {"qid": 3326, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the primary location of the University of Miami?", "answer": " The primary location of the University of Miami is Coral Gables, Florida.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Miami"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Miami"}, {"qid": 3327, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the University of Miami's enrollment compare to other universities in Florida as of 2023?", "answer": " As of 2023, the University of Miami has an enrollment of 19,593 students, making it one of the larger private universities in Florida.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Miami"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Miami"}, {"qid": 3328, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What are the major academic divisions within the University of Miami?", "answer": " The major academic divisions within the University of Miami include two colleges and eight schools, covering nearly 350 academic majors and programs.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Miami"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Miami"}, {"qid": 3329, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which school at the University of Miami is located on Virginia Key?", "answer": " The Rosenstiel School of Marine, Atmospheric, and Earth Science is located on Virginia Key.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Miami"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Miami"}, {"qid": 3330, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the Miller School of Medicine's location compare to the main campus of the University of Miami?", "answer": " The Miller School of Medicine is located in Miami's Health District, which is different from the main campus in Coral Gables.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Miami"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Miami"}, {"qid": 3331, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What type of programs does the University of Miami offer in southern Miami-Dade County?", "answer": " The University of Miami offers additional research facilities and programs in southern Miami-Dade County.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Miami"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Miami"}, {"qid": 3332, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If a new academic division were to be added to the University of Miami, in which area might it likely focus given the current academic structure?", "answer": " Given the current academic structure, a new academic division might likely focus on interdisciplinary studies that bridge existing programs or expand into emerging research fields.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Miami"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Miami"}, {"qid": 3333, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the unique nickname by which the University of Miami is commonly known?", "answer": " The unique nickname by which the University of Miami is commonly known is \"The U.\"", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Miami"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Miami"}, {"qid": 3334, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the University of Miami integrate its law school within its main campus?", "answer": " The law school at the University of Miami is integrated within the main campus in Coral Gables, facilitating cross-disciplinary collaboration.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Miami"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Miami"}, {"qid": 3335, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to other universities, how does the University of Miami's focus on marine, atmospheric, and earth science research stand out?", "answer": " The University of Miami's focus on marine, atmospheric, and earth science research stands out due to its dedicated Rosenstiel School on Virginia Key, emphasizing its commitment to these fields.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Miami"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Miami"}, {"qid": 3336, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What might be the impact on student enrollment if the University of Miami were to significantly expand its research facilities in southern Miami-Dade County?", "answer": " The impact on student enrollment if the University of Miami were to significantly expand its research facilities in southern Miami-Dade County could include attracting more students interested in research opportunities, potentially increasing overall enrollment.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Miami"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Miami"}, {"qid": 3337, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of Pennsylvania State University compare to that of the University of Pennsylvania?", "answer": " Pennsylvania State University was founded in 1855, whereas the University of Pennsylvania was founded earlier, in 1740.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Pennsylvania State University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Pennsylvania State University"}, {"qid": 3338, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest campus of Pennsylvania State University?", "answer": " The University Park campus is the oldest campus of Pennsylvania State University, established in 1855.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Pennsylvania State University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Pennsylvania State University"}, {"qid": 3339, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Why is Pennsylvania State University designated as a land-grant university?", "answer": " Pennsylvania State University is designated as a land-grant university because it was named the state's first land-grant university in 1863, emphasizing its commitment to providing public education and service.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Pennsylvania State University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Pennsylvania State University"}, {"qid": 3340, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Pennsylvania State University had not been designated as a land-grant university in 1863, how might its mission and focus have differed today?", "answer": " If Pennsylvania State University had not been designated as a land-grant university, its mission might have placed less emphasis on agriculture and mechanical arts, potentially focusing more on classical education without the mandate to serve the broader public good in these areas.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Pennsylvania State University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Pennsylvania State University"}, {"qid": 3341, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the primary location of Pennsylvania State University?", "answer": " The primary location of Pennsylvania State University is at University Park, in State College and College Township.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Pennsylvania State University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Pennsylvania State University"}, {"qid": 3342, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the land-grant status of Pennsylvania State University influence its research agenda?", "answer": " The land-grant status of Pennsylvania State University influences its research agenda by emphasizing applied research in agriculture, science, and engineering, aimed at directly benefiting the economic and social well-being of Pennsylvania's citizens.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Pennsylvania State University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Pennsylvania State University"}, {"qid": 3343, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the staff number at Pennsylvania State University compare to that of Ohio State University?", "answer": " The specific staff numbers can vary, but typically, both Pennsylvania State University and Ohio State University employ thousands of faculty and staff, with exact numbers fluctuating due to hiring, retirements, and other factors.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Pennsylvania State University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Pennsylvania State University"}, {"qid": 3344, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What if Pennsylvania State University had been established in a city rather than State College, how might its development have differed?", "answer": " Had Pennsylvania State University been established in a city, its development might have featured more urban integration, potentially affecting campus size, design, and university-community relations differently than its establishment in State College.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Pennsylvania State University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Pennsylvania State University"}, {"qid": 3345, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What role did the Farmers' High School of Pennsylvania play in the evolution of Pennsylvania State University?", "answer": " The Farmers' High School of Pennsylvania was the precursor to Pennsylvania State University, laying the foundational emphasis on agricultural education which later expanded under the land-grant designation to include a broader range of academic disciplines.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Pennsylvania State University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Pennsylvania State University"}, {"qid": 3346, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Who is the current president of Pennsylvania State University?", "answer": " As of my last update, the current president of Pennsylvania State University can change over time, and thus, one should refer to the latest university communications for the most current information.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Pennsylvania State University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Pennsylvania State University"}, {"qid": 3347, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the size of Pennsylvania State University's main campus compare to its other campuses?", "answer": " The University Park campus is the largest in terms of both area and student population when compared to other Penn State campuses.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Pennsylvania State University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Pennsylvania State University"}, {"qid": 3348, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Pennsylvania State University had not expanded beyond its original campus, how might its impact on Pennsylvania's higher education landscape be different?", "answer": " Without its expansion beyond the original campus, Pennsylvania State University's impact on Pennsylvania's higher education landscape might have been more localized, potentially limiting its role in providing access to higher education across the state and its contribution to research and economic development.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Pennsylvania State University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Pennsylvania State University"}, {"qid": 3349, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the primary location of the University of Oregon?", "answer": " Eugene, Oregon", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Oregon"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Oregon"}, {"qid": 3350, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "In which year was the University of Oregon founded?", "answer": " 1876", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Oregon"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Oregon"}, {"qid": 3351, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What type of university is the University of Oregon classified as?", "answer": " Public research university", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Oregon"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Oregon"}, {"qid": 3352, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which city is the main campus of the University of Oregon located in?", "answer": " Eugene, Oregon", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Oregon"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Oregon"}, {"qid": 3353, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of the University of Oregon compare to the University of California, Berkeley?", "answer": " The University of Oregon was founded in 1876, while the University of California, Berkeley was founded in 1868.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Oregon"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Oregon"}, {"qid": 3354, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Besides its main campus in Eugene, where else does the University of Oregon have locations?", "answer": " Portland, Charleston (Oregon Institute of Marine Biology), and Central Oregon (Pine Mountain Observatory)", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Oregon"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Oregon"}, {"qid": 3355, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the official abbreviation for the University of Oregon?", "answer": " UO, U of O", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Oregon"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Oregon"}, {"qid": 3356, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Oregon were to open a new campus, based on its current locations, which area might it consider?", "answer": " A location within Oregon", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Oregon"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Oregon"}, {"qid": 3357, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What distinguishes the University of Oregon's Portland locations from its main campus?", "answer": " The Portland locations are extensions of the university focused on specific academic and research activities, different from the comprehensive facilities at the main campus.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Oregon"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Oregon"}, {"qid": 3358, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which facility of the University of Oregon is located the furthest from its main campus?", "answer": " Pine Mountain Observatory", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Oregon"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Oregon"}, {"qid": 3359, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to the founding date of Oregon State University, is the University of Oregon older or younger?", "answer": " Older, as the University of Oregon was founded in 1876 and Oregon State University was founded in 1868.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Oregon"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Oregon"}, {"qid": 3360, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the role of the Oregon Institute of Marine Biology in relation to the University of Oregon?", "answer": " It is a location and facility dedicated to marine biology research and education as part of the University of Oregon.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Oregon"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Oregon"}, {"qid": 3361, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of Washington University in St. Louis compare to that of the University of Missouri?", "answer": " Washington University in St. Louis was founded in 1853, whereas the University of Missouri was founded earlier, in 1839.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Washington University in St. Louis"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Washington University in St. Louis"}, {"qid": 3362, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Who was the first president of Washington University in St. Louis?", "answer": " The first president of Washington University in St. Louis was Wayman Crow.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Washington University in St. Louis"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Washington University in St. Louis"}, {"qid": 3363, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Why is Washington University in St. Louis named after George Washington?", "answer": " Washington University in St. Louis is named after George Washington, the first president of the United States, to honor his legacy and ideals.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Washington University in St. Louis"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Washington University in St. Louis"}, {"qid": 3364, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Washington University in St. Louis decides to open a new campus in another country, what would be a crucial first step in the process?", "answer": " A crucial first step would be conducting a feasibility study to assess the demand, cost, and potential impact of opening a new campus in another country.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Washington University in St. Louis"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Washington University in St. Louis"}, {"qid": 3365, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the staff number at Washington University in St. Louis compare to that of Harvard University?", "answer": " As of my last update, Washington University in St. Louis has a significant number of staff, but Harvard University, with its larger endowment and student body, likely has a greater number of staff members.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Washington University in St. Louis"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Washington University in St. Louis"}, {"qid": 3366, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest building on the campus of Washington University in St. Louis?", "answer": " The oldest building on the campus of Washington University in St. Louis is Cupples I, completed in 1900.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Washington University in St. Louis"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Washington University in St. Louis"}, {"qid": 3367, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How did the location of Washington University in St. Louis influence its development in the early 20th century?", "answer": " The location of Washington University in St. Louis, being in a growing urban center, facilitated partnerships with local businesses and industries, which influenced its development by providing research opportunities and financial support in the early 20th century.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Washington University in St. Louis"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Washington University in St. Louis"}, {"qid": 3368, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Washington University in St. Louis had been named after another founding father, how might its identity and perception have changed?", "answer": " If Washington University in St. Louis had been named after another founding father, its identity might have been closely associated with the values and legacy of that individual, potentially altering the university's symbolic representation and how it is perceived nationally.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Washington University in St. Louis"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Washington University in St. Louis"}, {"qid": 3369, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to its founding year, how has the mission of Washington University in St. Louis evolved by the 21st century?", "answer": " Since its founding in 1853, the mission of Washington University in St. Louis has evolved from primarily serving the local community to becoming a leading global research institution, with a focus on addressing universal challenges through innovation and collaboration.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Washington University in St. Louis"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Washington University in St. Louis"}, {"qid": 3370, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most popular major at Washington University in St. Louis?", "answer": " As of the last update, one of the most popular majors at Washington University in St. Louis is Biology, particularly due to the university's strong emphasis on research and science education.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Washington University in St. Louis"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Washington University in St. Louis"}, {"qid": 3371, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the architecture of Washington University in St. Louis reflect its academic philosophy?", "answer": " The architecture of Washington University in St. Louis, with its Collegiate Gothic style, reflects its academic philosophy by fostering a sense of tradition, excellence, and community, aiming to create an environment conducive to learning and discovery.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Washington University in St. Louis"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Washington University in St. Louis"}, {"qid": 3372, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Washington University in St. Louis were to establish a new research institute focused on climate change, what might be the primary areas of focus?", "answer": " The primary areas of focus might include renewable energy technologies, climate modeling and prediction, policy development for mitigation and adaptation strategies, and the study of climate impacts on ecosystems and human societies.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Washington University in St. Louis"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Washington University in St. Louis"}, {"qid": 3373, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the start year of the University of Wisconsin–Madison compare to the start year of Harvard University?", "answer": " The University of Wisconsin–Madison was founded in 1848, which is later than Harvard University's founding year of 1636.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Wisconsin–Madison"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Wisconsin–Madison"}, {"qid": 3374, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Who was the first president of the University of Wisconsin–Madison?", "answer": " John H. Lathrop was the first president of the University of Wisconsin–Madison.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Wisconsin–Madison"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Wisconsin–Madison"}, {"qid": 3375, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What relationship does the location of the University of Wisconsin–Madison have with its state capital?", "answer": " The University of Wisconsin–Madison is located in Madison, which is the capital city of Wisconsin.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Wisconsin–Madison"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Wisconsin–Madison"}, {"qid": 3376, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Wisconsin–Madison were to double its staff number, how many staff members would it have?", "answer": " This question cannot be answered accurately without knowing the current number of staff members.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Wisconsin–Madison"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Wisconsin–Madison"}, {"qid": 3377, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest building on the campus of the University of Wisconsin–Madison?", "answer": " Science Hall is one of the oldest buildings on the campus of the University of Wisconsin–Madison.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Wisconsin–Madison"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Wisconsin–Madison"}, {"qid": 3378, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the student population of the University of Wisconsin–Madison compare to that of the University of Michigan?", "answer": " This question cannot be answered accurately without current student population numbers for both universities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Wisconsin–Madison"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Wisconsin–Madison"}, {"qid": 3379, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the University of Wisconsin–Madison's research output compare to other universities in the Big Ten Conference?", "answer": " The University of Wisconsin–Madison is known for its high research output, ranking it among the top in the Big Ten Conference.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Wisconsin–Madison"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Wisconsin–Madison"}, {"qid": 3380, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Wisconsin–Madison were to merge with another university, how would its campus size change?", "answer": " The campus size would increase, but the exact change would depend on the size of the university it merges with.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Wisconsin–Madison"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Wisconsin–Madison"}, {"qid": 3381, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which department at the University of Wisconsin–Madison has the most faculty members?", "answer": " This question cannot be answered accurately without current data on department sizes.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Wisconsin–Madison"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Wisconsin–Madison"}, {"qid": 3382, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the University of Wisconsin–Madison's annual research budget compare to Stanford University's?", "answer": " This question cannot be answered accurately without current budget figures for both universities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Wisconsin–Madison"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Wisconsin–Madison"}, {"qid": 3383, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the role of the president at the University of Wisconsin–Madison?", "answer": " The president of the University of Wisconsin–Madison serves as the chief executive officer, overseeing all academic and administrative functions.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Wisconsin–Madison"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Wisconsin–Madison"}, {"qid": 3384, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Wisconsin–Madison decided to open a new campus abroad, how would that affect its global presence?", "answer": " Opening a new campus abroad would significantly increase the University of Wisconsin–Madison's global presence and visibility.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Wisconsin–Madison"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Wisconsin–Madison"}, {"qid": 3385, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the staff number at Rice University compare to that of a small liberal arts college?", "answer": " Rice University likely has a larger staff due to its extensive research facilities and graduate programs, unlike a small liberal arts college which typically has fewer faculty and staff focused mainly on undergraduate education.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Rice University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Rice University"}, {"qid": 3386, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest building on the Rice University campus?", "answer": " Lovett Hall is the oldest building on the Rice University campus, having been completed in 1912 as the university's first building.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Rice University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Rice University"}, {"qid": 3387, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does Rice University's proximity to the Texas Medical Center benefit its research programs?", "answer": " Rice University's close proximity to the Texas Medical Center facilitates collaborations and partnerships, enhancing its research programs especially in the fields of life sciences, bioengineering, and health policy.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Rice University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Rice University"}, {"qid": 3388, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would happen if Rice University decided to expand its campus by an additional 100 acres?", "answer": " If Rice University decided to expand its campus by an additional 100 acres, it could potentially increase its research facilities, student housing, and recreational areas, thereby enhancing its capacity to accommodate more students and expand its academic programs.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Rice University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Rice University"}, {"qid": 3389, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the student to staff ratio at Rice University compare to that of large state universities?", "answer": " The student to staff ratio at Rice University is likely lower (meaning more staff per student) compared to large state universities, due to Rice's smaller enrollment and its emphasis on providing a high level of personal attention and resources to its students.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Rice University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Rice University"}, {"qid": 3390, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most popular major at Rice University?", "answer": " As of my last update, Engineering is one of the most popular majors at Rice University, reflecting its strong emphasis on science, technology, engineering, and mathematics (STEM) fields.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Rice University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Rice University"}, {"qid": 3391, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the location of Rice University influence its academic programs?", "answer": " The location of Rice University, being adjacent to the Houston Museum District and the Texas Medical Center, heavily influences its academic programs by providing unique opportunities for research, internships, and cultural engagement in fields such as art, science, and medicine.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Rice University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Rice University"}, {"qid": 3392, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Rice University were to establish a new research institute focused on renewable energy, how might this impact its engineering programs?", "answer": " Establishing a new research institute focused on renewable energy at Rice University would likely enhance its engineering programs by providing new research opportunities, attracting faculty with expertise in sustainable technologies, and preparing students for careers in the growing field of renewable energy.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Rice University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Rice University"}, {"qid": 3393, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the endowment size of Rice University compare with Ivy League institutions?", "answer": " While Rice University has a significant endowment, it is generally smaller than those of most Ivy League institutions, which are among the wealthiest universities in the world.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Rice University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Rice University"}, {"qid": 3394, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which research center at Rice University has received the most funding in the past year?", "answer": " As of my last update, specific funding details are not provided, but typically, research centers focusing on engineering, nanotechnology, or biomedical research at institutions like Rice University receive substantial funding.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Rice University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Rice University"}, {"qid": 3395, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What role does the Rice University Art Gallery play in the Houston cultural scene?", "answer": " The Rice University Art Gallery contributes significantly to the Houston cultural scene by hosting contemporary art exhibitions, often featuring site-specific installations by emerging and established artists, thereby enriching the city's artistic landscape.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Rice University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Rice University"}, {"qid": 3396, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would be the implications for Rice University if it were to rise to the top 5 in national university rankings?", "answer": " If Rice University rose to the top 5 in national university rankings, it would likely see increased applications, allowing for more selective admissions, potentially higher funding and donations, and an enhanced reputation that could attract renowned faculty and create more opportunities for research and collaboration.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Rice University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Rice University"}, {"qid": 3397, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest campus of Georgia Tech?", "answer": " The Atlanta campus, established in 1885.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Georgia Tech"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Georgia Tech"}, {"qid": 3398, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How is Georgia Tech related to the University System of Georgia?", "answer": " Georgia Tech is a part of the University System of Georgia.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Georgia Tech"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Georgia Tech"}, {"qid": 3399, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Which has more satellite campuses, Georgia Tech or the average public research university?", "answer": " Georgia Tech, with satellite campuses in Savannah, Georgia; Metz, France; Shenzhen, China; and Singapore.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Georgia Tech"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "Georgia Tech"}, {"qid": 3400, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which Georgia Tech campus is located furthest from the United States?", "answer": " The Singapore campus.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Georgia Tech"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Georgia Tech"}, {"qid": 3401, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What role does the president of Georgia Tech serve within the institution?", "answer": " The president serves as the chief executive officer of Georgia Tech.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Georgia Tech"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Georgia Tech"}, {"qid": 3402, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Georgia Tech were to open another international campus, how would it affect the number of satellite campuses?", "answer": " It would increase the number of satellite campuses.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Georgia Tech"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Georgia Tech"}, {"qid": 3403, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Is the staff number at Georgia Tech higher than that at most public research universities?", "answer": " This would depend on specific data from other universities for a direct comparison.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Georgia Tech"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Georgia Tech"}, {"qid": 3404, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the newest addition to Georgia Tech's satellite campuses?", "answer": " This would depend on the most current update, but as of the last update, the Shenzhen, China campus is one of the newer expansions.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Georgia Tech"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Georgia Tech"}, {"qid": 3405, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the location of Georgia Tech's main campus influence its participation in technology and research development in Atlanta?", "answer": " Being in Atlanta allows Georgia Tech to collaborate closely with tech companies and research institutions in the area, fostering innovation and technological development.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Georgia Tech"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "Georgia Tech"}, {"qid": 3406, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Georgia Tech increased its staff number by 10%, how would this impact the university?", "answer": " It could potentially enhance the university's teaching, research capabilities, and student support services.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Georgia Tech"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Georgia Tech"}, {"qid": 3407, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to its satellite campuses, how does the student population at Georgia Tech's main campus in Atlanta rank?", "answer": " The main campus in Atlanta has the largest student population compared to its satellite campuses.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Georgia Tech"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "Georgia Tech"}, {"qid": 3408, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which Georgia Tech campus offers the most diverse range of study programs?", "answer": " The main campus in Atlanta offers the most diverse range of study programs.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Georgia Tech"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Georgia Tech"}, {"qid": 3409, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between the University of California, Irvine and the Association of American Universities?", "answer": " The University of California, Irvine became a member of the Association of American Universities in 1996.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Irvine"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of California, Irvine"}, {"qid": 3410, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the highest classification of research activity that the University of California, Irvine has achieved?", "answer": " The University of California, Irvine is classified among \"R1", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Irvine"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of California, Irvine"}, {"qid": 3411, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the number of undergraduate degrees offered at the University of California, Irvine compare to the number of graduate and professional degrees?", "answer": " The University of California, Irvine offers 87 undergraduate degrees and 129 graduate and professional degrees.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Irvine"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of California, Irvine"}, {"qid": 3412, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "When did the University of California, Irvine achieve its highest research and development expenditure?", "answer": " The University of California, Irvine had its highest research and development expenditure of $523.7 million in 2021.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Irvine"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of California, Irvine"}, {"qid": 3413, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the function of the University of California, Irvine within the University of California system?", "answer": " The University of California, Irvine functions as one of the ten campuses in the University of California system, offering a wide range of undergraduate and graduate degrees with significant research activity.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Irvine"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of California, Irvine"}, {"qid": 3414, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What might happen to the research expenditure of the University of California, Irvine if it significantly expands its research facilities?", "answer": " If the University of California, Irvine significantly expands its research facilities, its research expenditure might increase beyond the $523.7 million recorded in 2021.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Irvine"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of California, Irvine"}, {"qid": 3415, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What year did the University of California, Irvine join the Association of American Universities?", "answer": " The University of California, Irvine joined the Association of American Universities in 1996.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Irvine"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of California, Irvine"}, {"qid": 3416, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the enrollment size of undergraduate students compare to graduate students at the University of California, Irvine as of Fall 2019?", "answer": " As of Fall 2019, the University of California, Irvine had roughly 30,000 undergraduate students and 6,000 graduate students.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Irvine"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of California, Irvine"}, {"qid": 3417, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the University of California, Irvine's research and development expenditure in 2021 compare to its expenditure in previous years?", "answer": " The University of California, Irvine's research and development expenditure of $523.7 million in 2021 was its highest to date, indicating an increase compared to previous years.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Irvine"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of California, Irvine"}, {"qid": 3418, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would be the impact on student enrollment if the University of California, Irvine were to significantly reduce its number of undergraduate degrees offered?", "answer": " If the University of California, Irvine were to significantly reduce its number of undergraduate degrees offered, it might see a decrease in undergraduate student enrollment.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Irvine"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of California, Irvine"}, {"qid": 3419, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the maximum number of students the University of California, Irvine has enrolled in a fall semester as of 2019?", "answer": " As of Fall 2019, the maximum number of students enrolled in a fall semester at the University of California, Irvine was roughly 36,000 (combining both undergraduate and graduate students).", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Irvine"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of California, Irvine"}, {"qid": 3420, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the significance of the University of California, Irvine's classification as \"R1", "answer": " The significance of the University of California, Irvine's classification as \"R1", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Irvine"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of California, Irvine"}, {"qid": 3421, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between Stony Brook University and the State University of New York system?", "answer": " Stony Brook University is one of the State University of New York system's two flagship institutions.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Stony Brook University"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "Stony Brook University"}, {"qid": 3422, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which university is the largest public university by area in the state of New York?", "answer": " Stony Brook University", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Stony Brook University"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "Stony Brook University"}, {"qid": 3423, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Where is Stony Brook University located in relation to Long Island?", "answer": " Stony Brook University is located on Long Island in Stony Brook, New York.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Stony Brook University"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "Stony Brook University"}, {"qid": 3424, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What describes the size of Stony Brook University's campus in terms of buildings and land area?", "answer": " Stony Brook University's campus consists of 213 buildings on over 1,454 acres (588 hectares) of land.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Stony Brook University"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "Stony Brook University"}, {"qid": 3425, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to other State University of New York system institutions, how does Stony Brook University rank in terms of its flagship status?", "answer": " Stony Brook University, along with the University at Buffalo, is considered one of the SUNY system's two flagship institutions.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Stony Brook University"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "Stony Brook University"}, {"qid": 3426, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the start year of the oldest flagship institution in the State University of New York system?", "answer": " This question cannot be directly answered without specifying if Stony Brook University or the University at Buffalo is the oldest, as both are considered flagship institutions.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Stony Brook University"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "Stony Brook University"}, {"qid": 3427, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Stony Brook University were to open a new campus in another state, how would it compare in size to its current campus?", "answer": " This is hypothetical and speculative; the size comparison would depend on the specific plans and land acquisition for the new campus.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Stony Brook University"], "topic_level": false, "class": "sing entity", "hops": "Multi Hops", "entity": "Stony Brook University"}, {"qid": 3428, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does Stony Brook University's location in Suffolk County contribute to its designation as the largest public university by area in New York?", "answer": " Its location in Suffolk County provides the necessary land area, over 1,454 acres (588 hectares), making it the largest public university by area in New York.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Stony Brook University"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "Stony Brook University"}, {"qid": 3429, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Who was the founding president of Stony Brook University?", "answer": " The specific founding president's name needs to be provided based on historical records; this question cannot be answered with the information given.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Stony Brook University"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "Stony Brook University"}, {"qid": 3430, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the connection between Stony Brook University and Suffolk County in terms of geographical location?", "answer": " Stony Brook University is geographically located in Suffolk County, New York.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Stony Brook University"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "Stony Brook University"}, {"qid": 3431, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Stony Brook University decided to double its staff number, how would that affect its status as the largest public university in New York by area?", "answer": " Doubling its staff number would not affect its status as the largest public university by area in New York, as this status is determined by land size, not staff size.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Stony Brook University"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "Stony Brook University"}, {"qid": 3432, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the number of buildings on Stony Brook University's campus compare to that of other universities in the State University of New York system?", "answer": " Stony Brook University has 213 buildings on its campus, which may be more or less than other universities in the SUNY system depending on specific comparisons.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Stony Brook University"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "Stony Brook University"}, {"qid": 3433, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest founding entity that contributed to the establishment of Case Western Reserve University?", "answer": " Western Reserve University", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Case Western Reserve University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Case Western Reserve University"}, {"qid": 3434, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which was founded first, Western Reserve University or Case Institute of Technology?", "answer": " Western Reserve University", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Case Western Reserve University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Case Western Reserve University"}, {"qid": 3435, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Why was Case Western Reserve University named so?", "answer": " It was named after the federation of Western Reserve University and Case Institute of Technology.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Case Western Reserve University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Case Western Reserve University"}, {"qid": 3436, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What led to the formation of Case Western Reserve University in 1967?", "answer": " The formal federation of Western Reserve University and Case Institute of Technology.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Case Western Reserve University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Case Western Reserve University"}, {"qid": 3437, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Where is Case Western Reserve University located and why?", "answer": " It is located in Cleveland, Ohio, because it was established there following the federation of two institutions that were based in the area.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Case Western Reserve University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Case Western Reserve University"}, {"qid": 3438, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Is Case Western Reserve University older than most universities in Ohio?", "answer": " It is one of the older universities in Ohio, with its oldest founding entity established in 1826.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Case Western Reserve University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Case Western Reserve University"}, {"qid": 3439, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would be the founding year of Case Western Reserve University if only Case Institute of Technology's establishment year is considered?", "answer": " 1880", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Case Western Reserve University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Case Western Reserve University"}, {"qid": 3440, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Case Western Reserve University had not federated, what would the Western Reserve University be known for today?", "answer": " It would likely still be recognized for its historical establishment in 1826 and its contributions to education and research in the Connecticut Western Reserve area.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Case Western Reserve University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Case Western Reserve University"}, {"qid": 3441, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "How would the academic landscape of Cleveland, Ohio, be different if Case Western Reserve University never formed?", "answer": " Cleveland would have had two separate, prominent institutions focusing on different academic and research areas, potentially leading to a more fragmented academic and research community.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Case Western Reserve University"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "Case Western Reserve University"}, {"qid": 3442, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to its founding entities, how has Case Western Reserve University expanded in terms of disciplines offered?", "answer": " Case Western Reserve University has expanded significantly beyond the initial focuses of its founding entities, offering a wide range of disciplines across engineering, sciences, humanities, and professional studies.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Case Western Reserve University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Case Western Reserve University"}, {"qid": 3443, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What was the impact of Leonard Case Jr.'s endowment on the establishment of Case Western Reserve University?", "answer": " Leonard Case Jr.'s endowment was instrumental in founding the Case Institute of Technology in 1880, which later federated with Western Reserve University to form Case Western Reserve University.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Case Western Reserve University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Case Western Reserve University"}, {"qid": 3444, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which component of Case Western Reserve University has the earliest founding year?", "answer": " Western Reserve University", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Case Western Reserve University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Case Western Reserve University"}, {"qid": 3445, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the largest type of land area that the University of California, Santa Cruz occupies?", "answer": " The main campus lies on 2,001 acres of rolling, forested hills.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Santa Cruz"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, Santa Cruz"}, {"qid": 3446, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How is the University of California, Santa Cruz affiliated with the University of California system?", "answer": " It is one of the ten campuses in the University of California system.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Santa Cruz"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, Santa Cruz"}, {"qid": 3447, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Among the University of California campuses, which one is located on the edge of the coastal community of Santa Cruz?", "answer": " The University of California, Santa Cruz.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Santa Cruz"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, Santa Cruz"}, {"qid": 3448, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the undergraduate enrollment at the University of California, Santa Cruz compare to its graduate enrollment as of Fall 2023?", "answer": " Its ten residential colleges enroll some 17,812 undergraduate and 1,952 graduate students, indicating significantly more undergraduates than graduates.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Santa Cruz"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of California, Santa Cruz"}, {"qid": 3449, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most distinctive feature of the University of California, Santa Cruz's location?", "answer": " Its main campus lies on rolling, forested hills overlooking the Pacific Ocean.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Santa Cruz"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, Santa Cruz"}, {"qid": 3450, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What role does the Silicon Valley Center play for the University of California, Santa Cruz?", "answer": " It is one of the satellite facilities in Santa Clara, extending the university's reach into Silicon Valley.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Santa Cruz"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, Santa Cruz"}, {"qid": 3451, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of California, Santa Cruz decided to expand its main campus, which geographical feature would most likely influence its expansion plans?", "answer": " The rolling, forested hills and proximity to the Pacific Ocean.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Santa Cruz"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, Santa Cruz"}, {"qid": 3452, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the residential college system at the University of California, Santa Cruz enhance the student experience?", "answer": " By enrolling students into ten residential colleges, it fosters a smaller community feel within the larger university context.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Santa Cruz"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, Santa Cruz"}, {"qid": 3453, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What aspect of the University of California, Santa Cruz's location offers the most striking views?", "answer": " The campus's position on rolling, forested hills overlooking the Pacific Ocean.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Santa Cruz"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, Santa Cruz"}, {"qid": 3454, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the size of the University of California, Santa Cruz campus compare to typical university campuses?", "answer": " With 2,001 acres, it is significantly larger than many university campuses, offering extensive natural landscapes.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Santa Cruz"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, Santa Cruz"}, {"qid": 3455, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of California, Santa Cruz were to establish an 11th residential college, what might be the primary consideration in its development?", "answer": " Integrating the new college within the existing structure of residential colleges and maintaining the community feel.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Santa Cruz"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, Santa Cruz"}, {"qid": 3456, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How do the satellite facilities like the Coastal Science Campus augment the educational offerings at the University of California, Santa Cruz?", "answer": " They provide specialized locations for research and education, particularly in marine sciences, enhancing the university's overall academic portfolio.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Santa Cruz"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, Santa Cruz"}, {"qid": 3457, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What led to the founding of UC Riverside?", "answer": " The UC Citrus Experiment Station, Riverside, which focused on pioneering research in biological pest control and the use of growth regulators, led to the founding of UC Riverside in 1907.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Riverside"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, Riverside"}, {"qid": 3458, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the size of UC Riverside's main campus compared to its branch campus in Palm Desert?", "answer": " The main campus of UC Riverside is 1,900 acres, which is significantly larger than its 20-acre branch campus in Palm Desert.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Riverside"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, Riverside"}, {"qid": 3459, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does UC Riverside's founding year compare to other University of California campuses?", "answer": " UC Riverside was founded in 1907, making it one of the later additions to the University of California system, which was established in 1868.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Riverside"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, Riverside"}, {"qid": 3460, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What type of research university is UC Riverside classified as?", "answer": " UC Riverside is classified as a public land-grant research university.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Riverside"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, Riverside"}, {"qid": 3461, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If UC Riverside was to open another branch campus, what precedent does it have regarding the size of such a campus?", "answer": " Given its existing branch campus in Palm Desert is 20 acres, UC Riverside has precedence for opening small, focused branch campuses.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Riverside"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, Riverside"}, {"qid": 3462, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Where does UC Riverside rank in terms of campus size among the University of California campuses?", "answer": " With a main campus of 1,900 acres, UC Riverside is among the larger campuses in the University of California system.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Riverside"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, Riverside"}, {"qid": 3463, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How did UC Riverside's focus areas contribute to its development?", "answer": " UC Riverside's focus on pioneering research in biological pest control and the use of growth regulators contributed significantly to its development and reputation in scientific research.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Riverside"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, Riverside"}, {"qid": 3464, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If UC Riverside were to lead a new research initiative, based on its history, which fields would it likely focus on?", "answer": " Based on its history, UC Riverside would likely focus on fields related to biological pest control, growth regulators, or other agricultural sciences.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Riverside"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, Riverside"}, {"qid": 3465, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to its inception, how has the focus of UC Riverside expanded beyond its original mission?", "answer": " Since its inception focused on agricultural research, UC Riverside has expanded to become a comprehensive research university covering a wide range of disciplines beyond its original agricultural focus.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Riverside"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, Riverside"}, {"qid": 3466, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most notable research achievement of UC Riverside?", "answer": " While specific achievements can vary, UC Riverside is notably recognized for its pioneering research in biological pest control and the use of growth regulators.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Riverside"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, Riverside"}, {"qid": 3467, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How has the location of UC Riverside influenced its research focus?", "answer": " The location in Riverside, with its agricultural backdrop, has influenced UC Riverside's research focus, particularly in pioneering biological pest control and growth regulator research relevant to agriculture.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Riverside"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, Riverside"}, {"qid": 3468, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If UC Riverside were to double its campus size, what impact might this have on its research capabilities?", "answer": " Doubling its campus size could significantly enhance UC Riverside's research capabilities by providing more space for laboratories, research facilities, and potentially new research fields.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Riverside"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, Riverside"}, {"qid": 3469, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between Indiana College and Indiana University Bloomington?", "answer": " Indiana University Bloomington was previously named Indiana College before it was renamed to Indiana University in 1838.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Indiana University Bloomington"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Indiana University Bloomington"}, {"qid": 3470, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the largest campus of Indiana University?", "answer": " Indiana University Bloomington is the largest campus of Indiana University.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Indiana University Bloomington"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Indiana University Bloomington"}, {"qid": 3471, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the student population of Indiana University Bloomington compare to other Indiana University campuses?", "answer": " Indiana University Bloomington has the largest student population among all Indiana University campuses.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Indiana University Bloomington"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Indiana University Bloomington"}, {"qid": 3472, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What led to the establishment of Indiana University Bloomington as a seminary in 1820?", "answer": " Indiana University Bloomington was established as the state's seminary in 1820, marking the beginning of its educational journey.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Indiana University Bloomington"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Indiana University Bloomington"}, {"qid": 3473, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "When did Indiana University Bloomington achieve its university status, becoming the oldest entity within the Indiana University system?", "answer": " Indiana University Bloomington achieved its university status in 1838, making it the oldest entity within the Indiana University system.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Indiana University Bloomington"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Indiana University Bloomington"}, {"qid": 3474, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would happen if Indiana University Bloomington decided to revert its name back to Indiana College today?", "answer": " If Indiana University Bloomington decided to revert its name back to Indiana College today, it would likely cause confusion and require significant updates to legal documents, marketing materials, and academic records.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Indiana University Bloomington"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Indiana University Bloomington"}, {"qid": 3475, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What year marked the beginning of what is now known as Indiana University Bloomington?", "answer": " The year 1820 marked the beginning of what is now known as Indiana University Bloomington.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Indiana University Bloomington"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Indiana University Bloomington"}, {"qid": 3476, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How has the name of Indiana University Bloomington evolved since its establishment?", "answer": " Since its establishment, the name of Indiana University Bloomington evolved from the state's seminary in 1820, to Indiana College in 1829, and finally to Indiana University in 1838.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Indiana University Bloomington"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Indiana University Bloomington"}, {"qid": 3477, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to its inception, how has the staff number at Indiana University Bloomington changed?", "answer": " Since its inception, the staff number at Indiana University Bloomington has significantly increased to accommodate the growing student population and expand its academic and research programs.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Indiana University Bloomington"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Indiana University Bloomington"}, {"qid": 3478, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What if Indiana University Bloomington had not changed its name from Indiana College, how might that have influenced its prestige and growth?", "answer": " If Indiana University Bloomington had not changed its name from Indiana College, it might have influenced its prestige and growth differently, possibly affecting its recognition as a comprehensive research university and its appeal to a broader spectrum of students and faculty.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Indiana University Bloomington"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Indiana University Bloomington"}, {"qid": 3479, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which president of Indiana University Bloomington has served the longest term?", "answer": " This question requires updated research to identify the president of Indiana University Bloomington who has served the longest term, as the university has had multiple presidents since its establishment.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Indiana University Bloomington"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Indiana University Bloomington"}, {"qid": 3480, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the location of Indiana University Bloomington contribute to its academic culture?", "answer": " The location of Indiana University Bloomington, in the vibrant and culturally rich town of Bloomington, Indiana, contributes significantly to its academic culture by providing a supportive community, diverse cultural experiences, and access to natural resources that enhance educational and extracurricular opportunities for students and staff.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Indiana University Bloomington"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Indiana University Bloomington"}, {"qid": 3481, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of Clark University compare to the founding year of Stanford University?", "answer": " Clark University was founded in 1887, which is one year after Stanford University was founded in 1885.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Clark University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Clark University"}, {"qid": 3482, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest building on Clark University's campus?", "answer": " Jonas Clark Hall, opened in 1887, is the oldest building on Clark University's campus.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Clark University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Clark University"}, {"qid": 3483, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Who was Jonas Gilman Clark, and how is he related to Clark University?", "answer": " Jonas Gilman Clark was a prominent businessman who provided a large endowment for the founding of Clark University, which is named after him.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Clark University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Clark University"}, {"qid": 3484, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Jonas Gilman Clark had not funded Clark University, how might the landscape of higher education in Worcester, Massachusetts, be different today?", "answer": " Without Jonas Gilman Clark's funding, Clark University might not have been established, potentially leaving Worcester with fewer higher education options and impacting the city's development as a center for academic research.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Clark University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Clark University"}, {"qid": 3485, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the staff number at Clark University compare to the staff number at Worcester Polytechnic Institute?", "answer": " As of my last update, specific staff numbers are needed for a direct comparison, but both institutions are significant employers in Worcester, with variations depending on faculties and administrative staff counts.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Clark University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Clark University"}, {"qid": 3486, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Among the research universities in Massachusetts, where does Clark University rank in terms of the age of its founding?", "answer": " Founded in 1887, Clark University is among the older research universities in Massachusetts, though not the oldest, with institutions like Harvard University (founded in 1636) being older.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Clark University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Clark University"}, {"qid": 3487, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How did Clark University's transition to include undergraduate programs in 1902 impact its academic structure?", "answer": " The inclusion of undergraduate programs in 1902 marked a significant expansion of Clark University's academic structure, diversifying its educational offerings beyond graduate research and increasing its student population.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Clark University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Clark University"}, {"qid": 3488, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Clark University decided to expand its campus to another city, what factors would need to be considered?", "answer": " Factors would include the city's demand for higher education, the potential overlap with existing programs, financial implications, the availability of suitable land, and how the expansion aligns with Clark's strategic goals.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Clark University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Clark University"}, {"qid": 3489, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the ratio of undergraduate to graduate students at Clark University compare to that of Harvard University?", "answer": " The specific ratios can vary by year, but traditionally, Harvard University has a larger proportion of graduate students compared to its undergraduate population, whereas Clark University, originally a graduate-only institution, has a significant but smaller ratio of graduate students since introducing undergraduates in 1902.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Clark University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Clark University"}, {"qid": 3490, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most popular undergraduate major at Clark University?", "answer": " Psychology has historically been one of the most popular undergraduate majors at Clark University.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Clark University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Clark University"}, {"qid": 3491, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What role did women play in Clark University's history starting in 1942?", "answer": " Women were first enrolled as students at Clark University in 1942, marking the beginning of coeducational learning at the institution and expanding its academic community.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Clark University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Clark University"}, {"qid": 3492, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Clark University had remained an all-graduate institution, how might its alumni network differ today?", "answer": " If Clark University had remained an all-graduate institution, its alumni network might be smaller and more focused on research and academic fields, lacking the broader undergraduate base that contributes to diverse professional fields.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Clark University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Clark University"}, {"qid": 3493, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What led to Tulane University becoming a private institution?", "answer": " The endowments of Paul Tulane and Josephine Louise Newcomb in 1884 and 1887 led to Tulane University becoming a private institution.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Tulane University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Tulane University"}, {"qid": 3494, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which is the oldest law school and medical school among those founded by Tulane University?", "answer": " The Tulane University Law School is the 12th oldest law school and the Tulane University Medical School is the 15th oldest medical school in the United States.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Tulane University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Tulane University"}, {"qid": 3495, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of Tulane University compare to that of Harvard University?", "answer": " Tulane University was founded in 1834, making it younger than Harvard University, which was established in 1636.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Tulane University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Tulane University"}, {"qid": 3496, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What was the original name of Tulane University when it was founded?", "answer": " The original name of Tulane University was the Medical College of Louisiana.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Tulane University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Tulane University"}, {"qid": 3497, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Paul Tulane had not endowed the university in 1884, what might have been an alternative path for its development?", "answer": " Without Paul Tulane's endowment in 1884, the university might have continued as a public institution or sought financial support from other benefactors or the government to sustain and develop.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Tulane University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Tulane University"}, {"qid": 3498, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is Tulane University's oldest affiliated law school?", "answer": " The Tulane University Law School is the oldest affiliated law school of Tulane University.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Tulane University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Tulane University"}, {"qid": 3499, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Who were the key figures behind the private endowments that transformed Tulane University?", "answer": " Paul Tulane and Josephine Louise Newcomb were the key figures behind the private endowments that transformed Tulane University.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Tulane University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Tulane University"}, {"qid": 3500, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to the University of Louisiana system, how does Tulane University's status differ?", "answer": " Tulane University is a private institution, whereas the University of Louisiana system comprises public universities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Tulane University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Tulane University"}, {"qid": 3501, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What if Tulane University had remained a part of the University of Louisiana system?", "answer": " If Tulane University had remained a part of the University of Louisiana system, it would have continued as a public university and might have had different development paths in terms of funding, research, and education programs.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Tulane University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Tulane University"}, {"qid": 3502, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most significant contribution of Paul Tulane to Tulane University?", "answer": " The most significant contribution of Paul Tulane to Tulane University was his endowment that allowed the institution to become private and significantly shaped its development.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Tulane University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Tulane University"}, {"qid": 3503, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How has Tulane University's origin as the Medical College of Louisiana influenced its current medical education and research programs?", "answer": " Tulane University's origin as the Medical College of Louisiana has grounded it with a strong historical foundation in medical education and research, influencing its continued emphasis on innovative medical programs and research in the health sciences.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Tulane University"], "topic_level": false, "class": "sing entity", "hops": "Multiple hops", "entity": "Tulane University"}, {"qid": 3504, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the age of Tulane University's law and medical schools compare to other historic law and medical schools in the United States?", "answer": " The Tulane University Law School, as the 12th oldest, and the Medical School, as the 15th oldest, are among the older law and medical schools in the United States, demonstrating a long heritage of legal and medical education compared to many other institutions.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Tulane University"], "topic_level": false, "class": "sing entity", "hops": "Multiple hops", "entity": "Tulane University"}, {"qid": 3505, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of the University of Nebraska–Lincoln compare to that of the University of Michigan?", "answer": " The University of Nebraska–Lincoln was founded in 1869, whereas the University of Michigan was founded earlier, in 1817.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Nebraska–Lincoln"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Nebraska–Lincoln"}, {"qid": 3506, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Who was the first president of the University of Nebraska–Lincoln?", "answer": " Allen R. Benton", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Nebraska–Lincoln"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Nebraska–Lincoln"}, {"qid": 3507, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between the University of Nebraska–Lincoln and its location?", "answer": " The University of Nebraska–Lincoln is located in Lincoln, Nebraska, serving as a major educational institution in the city.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Nebraska–Lincoln"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Nebraska–Lincoln"}, {"qid": 3508, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would potentially happen to the staff numbers at the University of Nebraska–Lincoln if a significant increase in student enrollment occurred?", "answer": " If a significant increase in student enrollment occurred, the staff numbers at the University of Nebraska–Lincoln might need to be increased to accommodate the additional workload and maintain student support and educational quality.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Nebraska–Lincoln"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Nebraska–Lincoln"}, {"qid": 3509, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the largest college within the University of Nebraska–Lincoln?", "answer": " The College of Arts and Sciences is typically one of the largest colleges within comprehensive universities like the University of Nebraska–Lincoln.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Nebraska–Lincoln"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Nebraska–Lincoln"}, {"qid": 3510, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the University of Nebraska–Lincoln's research focus relate to its academic staffing?", "answer": " The University of Nebraska–Lincoln's focus on research influences its academic staffing by requiring a significant number of faculty members who are not only educators but also active researchers in their fields.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Nebraska–Lincoln"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Nebraska–Lincoln"}, {"qid": 3511, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Nebraska–Lincoln decided to expand its campus, what might be the potential impact on local infrastructure?", "answer": " If the University of Nebraska–Lincoln decided to expand its campus, the potential impact on local infrastructure might include increased demand for transportation, housing, and utilities, necessitating upgrades or expansions in these areas.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Nebraska–Lincoln"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Nebraska–Lincoln"}, {"qid": 3512, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the student-to-faculty ratio at the University of Nebraska–Lincoln compare with that of Harvard University?", "answer": " The University of Nebraska–Lincoln typically has a higher student-to-faculty ratio compared to Harvard University, reflecting differences in institutional size and teaching focus.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Nebraska–Lincoln"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Nebraska–Lincoln"}, {"qid": 3513, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What year had the highest admitted student population at the University of Nebraska–Lincoln?", "answer": " Data required for a specific year's admitted student population is not provided; typically, universities see variations in admitted student populations from year to year.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Nebraska–Lincoln"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Nebraska–Lincoln"}, {"qid": 3514, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the presence of international students at the University of Nebraska–Lincoln impact the campus culture?", "answer": " The presence of international students at the University of Nebraska–Lincoln enriches the campus culture by fostering a diverse and inclusive environment, promoting cross-cultural exchange and understanding among students.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Nebraska–Lincoln"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Nebraska–Lincoln"}, {"qid": 3515, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would be the consequences for the University of Nebraska–Lincoln if it lost its accreditation?", "answer": " If the University of Nebraska–Lincoln lost its accreditation, it would face serious consequences including a loss of federal funding, decreased student enrollment, and a significant reduction in its academic reputation.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Nebraska–Lincoln"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Nebraska–Lincoln"}, {"qid": 3516, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the endowment size of the University of Nebraska–Lincoln compare to that of the University of Texas at Austin?", "answer": " The University of Texas at Austin typically has a larger endowment size compared to the University of Nebraska–Lincoln, reflecting differences in funding, alumni contributions, and financial assets.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Nebraska–Lincoln"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Nebraska–Lincoln"}, {"qid": 3517, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the staff number at Rutgers University–New Brunswick compare to that of a smaller university?", "answer": " Rutgers University–New Brunswick likely has a significantly larger staff number compared to a smaller university.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Rutgers University–New Brunswick"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Rutgers University–New Brunswick"}, {"qid": 3518, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest part of Rutgers University–New Brunswick?", "answer": " The Queens Campus, founded in 1766, is the oldest part of Rutgers University–New Brunswick.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Rutgers University–New Brunswick"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Rutgers University–New Brunswick"}, {"qid": 3519, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Who was the first president of Rutgers University–New Brunswick?", "answer": " Jacob Rutsen Hardenbergh was the first president of Rutgers University–New Brunswick.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Rutgers University–New Brunswick"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Rutgers University–New Brunswick"}, {"qid": 3520, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What role does the president of Rutgers University–New Brunswick play in its administration?", "answer": " The president of Rutgers University–New Brunswick plays a central role in its administration, overseeing academic, financial, and operational aspects of the university.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Rutgers University–New Brunswick"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Rutgers University–New Brunswick"}, {"qid": 3521, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What might happen if Rutgers University–New Brunswick suddenly doubled its staff number?", "answer": " If Rutgers University–New Brunswick suddenly doubled its staff number, it could potentially improve student services and research capabilities, but might also face budgetary and space constraints.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Rutgers University–New Brunswick"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Rutgers University–New Brunswick"}, {"qid": 3522, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How is the location of Rutgers University–New Brunswick advantageous for students?", "answer": " The location of Rutgers University–New Brunswick is advantageous for students due to its proximity to major cities like New York and Philadelphia, offering vast cultural, internship, and employment opportunities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Rutgers University–New Brunswick"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Rutgers University–New Brunswick"}, {"qid": 3523, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would be the impact on Rutgers University–New Brunswick if it relocated to a rural area?", "answer": " If Rutgers University–New Brunswick relocated to a rural area, it could impact student enrollment, access to internship and employment opportunities, and possibly alter its research and community engagement focus.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Rutgers University–New Brunswick"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Rutgers University–New Brunswick"}, {"qid": 3524, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does Rutgers University–New Brunswick's start year compare to other Ivy League universities?", "answer": " Rutgers University–New Brunswick, founded in 1766, is older than some Ivy League universities like Cornell (founded in 1865) but younger than others like Harvard (founded in 1636).", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Rutgers University–New Brunswick"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Rutgers University–New Brunswick"}, {"qid": 3525, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most popular major at Rutgers University–New Brunswick?", "answer": " As of the last available data, Business, Management, Marketing, and Related Support Services are among the most popular majors at Rutgers University–New Brunswick.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Rutgers University–New Brunswick"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Rutgers University–New Brunswick"}, {"qid": 3526, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between Rutgers University–New Brunswick and the city of New Brunswick?", "answer": " Rutgers University–New Brunswick has a symbiotic relationship with the city of New Brunswick, contributing to its cultural, economic, and community development while also benefiting from the city's resources and location.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Rutgers University–New Brunswick"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Rutgers University–New Brunswick"}, {"qid": 3527, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Rutgers University–New Brunswick introduced a new cutting-edge technology program, how might that affect its reputation in the academic community?", "answer": " Introducing a new cutting-edge technology program might significantly enhance Rutgers University–New Brunswick's reputation in the academic community by positioning it as a leader in innovation and research.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Rutgers University–New Brunswick"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Rutgers University–New Brunswick"}, {"qid": 3528, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to community colleges, how does the academic rigor at Rutgers University–New Brunswick differ?", "answer": " The academic rigor at Rutgers University–New Brunswick is likely higher than that of community colleges, given its research university status and the breadth of advanced degrees and research opportunities it offers.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Rutgers University–New Brunswick"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Rutgers University–New Brunswick"}, {"qid": 3529, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What position did Mary Sue Coleman hold at the University of Michigan starting in 2002?", "answer": " She served as the 13th president.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Michigan"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Michigan"}, {"qid": 3530, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What was Mary Sue Coleman's role at the University of Iowa before becoming the president of the University of Michigan?", "answer": " She was the 18th president of the University of Iowa.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Iowa"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Iowa"}, {"qid": 3531, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "During which year did Mary Sue Coleman start her tenure as the president of the University of Michigan?", "answer": " 2002", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Michigan"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Michigan"}, {"qid": 3532, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "When did Mary Sue Coleman begin her presidency at the University of Iowa?", "answer": " 1995", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Iowa"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Iowa"}, {"qid": 3533, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Was Mary Sue Coleman's tenure longer at the University of Michigan or the University of Iowa?", "answer": " University of Michigan", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Mary Sue Coleman"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "Mary Sue Coleman"}, {"qid": 3534, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Mary Sue Coleman had not served as the president of the University of Michigan, who might have taken the role in 2002?", "answer": " This is hypothetical and speculative; a specific answer cannot be provided.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Michigan"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Michigan"}, {"qid": 3535, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What role did Mary Sue Coleman return to at the University of Michigan in 2022?", "answer": " Interim president", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Michigan"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Michigan"}, {"qid": 3536, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "Had Mary Sue Coleman decided to extend her presidency at the University of Iowa beyond 2002, how might it have affected her career trajectory?", "answer": " This is hypothetical and speculative; a specific answer cannot be provided.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Iowa"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Iowa"}, {"qid": 3537, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the earliest presidency role Mary Sue Coleman held in her career?", "answer": " President of the University of Iowa", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Mary Sue Coleman"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Mary Sue Coleman"}, {"qid": 3538, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How many times did Mary Sue Coleman serve as president of the University of Michigan?", "answer": " Twice", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Michigan"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Michigan"}, {"qid": 3539, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Comparing her roles, which university did Mary Sue Coleman serve first as president?", "answer": " University of Iowa", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Mary Sue Coleman"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Mary Sue Coleman"}, {"qid": 3540, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Mary Sue Coleman had not been involved in academic administration, what impact might it have had on the University of Michigan and the University of Iowa?", "answer": " This is hypothetical and speculative; a specific answer cannot be provided.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Michigan, University of Iowa"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Michigan, University of Iowa"}, {"qid": 3541, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between the University of Washington and Seattle?", "answer": " The University of Washington is located in Seattle, Washington, United States.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Washington"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Washington"}, {"qid": 3542, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Is the University of Washington the oldest university on the West Coast of the United States?", "answer": " Yes, the University of Washington is one of the oldest universities on the West Coast of the United States.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Washington"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Washington"}, {"qid": 3543, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of the University of Washington compare to other universities in Washington state?", "answer": " The University of Washington, founded in 1861, is one of the oldest universities in Washington state.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Washington"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Washington"}, {"qid": 3544, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What type of institution is the University of Washington?", "answer": " The University of Washington is a public research university.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Washington"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Washington"}, {"qid": 3545, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Washington decided to move its main campus, how would this affect its designation as a Seattle-based institution?", "answer": " If the University of Washington moved its main campus, it would no longer be designated as a Seattle-based institution.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Washington"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Washington"}, {"qid": 3546, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What makes the University of Washington notable among public research universities in the United States?", "answer": " Its status as one of the oldest universities on the West Coast and its location in Seattle make the University of Washington notable among public research universities in the United States.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Washington"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Washington"}, {"qid": 3547, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "In what country is the University of Washington located?", "answer": " The University of Washington is located in the United States.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Washington"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Washington"}, {"qid": 3548, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to universities founded in the 20th century in the United States, how does the University of Washington's founding year stand out?", "answer": " The University of Washington's founding year of 1861 makes it significantly older than universities founded in the 20th century in the United States.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Washington"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Washington"}, {"qid": 3549, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Washington were to open a new campus outside of the United States, how would that affect its identity as an American university?", "answer": " Opening a new campus outside of the United States would expand its global presence but would not change its identity as an American university based in Seattle, Washington.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Washington"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Washington"}, {"qid": 3550, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What distinguishes the University of Washington's location compared to other universities in the United States?", "answer": " The University of Washington's location in Seattle, Washington, distinguishes it as being situated in a major city on the West Coast of the United States.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Washington"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Washington"}, {"qid": 3551, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the main focus of the University of Washington?", "answer": " The main focus of the University of Washington is public research.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Washington"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Washington"}, {"qid": 3552, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Washington were to significantly increase its staff number, how might this impact its research output?", "answer": " Significantly increasing its staff number might enhance the University of Washington's research output by enabling more projects and collaborations.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Washington"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Washington"}, {"qid": 3553, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between the University of Michigan and the Association of American Universities?", "answer": " The University of Michigan is a founding member of the Association of American Universities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Michigan"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Michigan"}, {"qid": 3554, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which is the oldest institution of higher education in Michigan?", "answer": " The University of Michigan.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Michigan"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Michigan"}, {"qid": 3555, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the student enrollment at the University of Michigan in the fall of 2023 compare to previous years?", "answer": " In the fall of 2023, the university enrolled over 52,000 students, indicating growth or stability in enrollment compared to previous years.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Michigan"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Michigan"}, {"qid": 3556, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Michigan decided to open a new campus, how might this affect its status as the oldest institution of higher education in Michigan?", "answer": " Opening a new campus would not affect its status as the oldest institution of higher education in Michigan, as this status is based on its original founding date in 1817.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Michigan"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Michigan"}, {"qid": 3557, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What makes the University of Michigan stand out among public research universities in the United States?", "answer": " Its status as one of the earliest American research universities and as a founding member of the Association of American Universities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Michigan"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Michigan"}, {"qid": 3558, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "In what way does the University of Michigan contribute to research in the United States?", "answer": " As a leading public research university, it contributes through extensive research activities, innovations, and a strong academic community.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Michigan"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Michigan"}, {"qid": 3559, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the location of the University of Michigan in Ann Arbor enhance its academic environment?", "answer": " Ann Arbor's vibrant community, cultural offerings, and supportive environment enhance the university's academic environment by providing students and staff with a stimulating and enriching atmosphere.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Michigan"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Michigan"}, {"qid": 3560, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would be the impact on the University of Michigan's research output if it significantly increased its staff number?", "answer": " A significant increase in staff number could potentially enhance the university's research output by bringing in more expertise and resources for research and development.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Michigan"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Michigan"}, {"qid": 3561, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most significant milestone in the history of the University of Michigan?", "answer": " Its founding in 1817, making it the oldest institution of higher education in Michigan.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Michigan"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Michigan"}, {"qid": 3562, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the University of Michigan's role as a public research university influence its mission and values?", "answer": " Its role as a public research university influences its mission and values by emphasizing the importance of research, education, public service, and providing access to quality higher education for a broad community.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Michigan"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Michigan"}, {"qid": 3563, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to other institutions in Michigan, how does the University of Michigan's enrollment in the fall of 2023 stand out?", "answer": " With over 52,000 students enrolled in the fall of 2023, the University of Michigan stands out due to its large and diverse student body compared to other institutions in Michigan.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Michigan"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Michigan"}, {"qid": 3564, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Michigan were to become a private institution, how might this change its relationship with the state of Michigan?", "answer": " Becoming a private institution could change its funding structure, potentially reducing its reliance on state funding and altering its relationship with the state, possibly impacting access for in-state students and its commitment to serving the public interest of Michigan.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Michigan"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Michigan"}, {"qid": 3565, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the tallest building at the University of Pittsburgh?", "answer": " The Cathedral of Learning", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pittsburgh"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Pittsburgh"}, {"qid": 3566, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest school within the University of Pittsburgh?", "answer": " The School of Medicine", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pittsburgh"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Pittsburgh"}, {"qid": 3567, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How is the University of Pittsburgh related to the Pittsburgh metropolitan area's employment sector?", "answer": " It is the second-largest non-government employer in the Pittsburgh metropolitan area.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pittsburgh"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Pittsburgh"}, {"qid": 3568, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the University of Pittsburgh contribute to research?", "answer": " It is classified among \"R1", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pittsburgh"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Pittsburgh"}, {"qid": 3569, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the student population at the University of Pittsburgh compare to its staff number?", "answer": " The university has around 28,000 undergraduate and graduate students, but the specific staff number is not provided.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pittsburgh"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Pittsburgh"}, {"qid": 3570, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which historic district is the University of Pittsburgh's campus a part of?", "answer": " Schenley Farms Historic District", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pittsburgh"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Pittsburgh"}, {"qid": 3571, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Pittsburgh were to open a new college, how many colleges would it then have?", "answer": " 18", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pittsburgh"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "University of Pittsburgh"}, {"qid": 3572, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Pittsburgh decided to expand the Pittsburgh campus by 10 acres, what would its new total area be?", "answer": " 142 acres", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pittsburgh"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "University of Pittsburgh"}, {"qid": 3573, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most notable building in the University of Pittsburgh's urban Pittsburgh campus?", "answer": " The Cathedral of Learning", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pittsburgh"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Pittsburgh"}, {"qid": 3574, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What association is the University of Pittsburgh a member of?", "answer": " Association of American Universities", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pittsburgh"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Pittsburgh"}, {"qid": 3575, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the number of undergraduate and graduate schools at the University of Pittsburgh compare to its number of students?", "answer": " The university has 17 undergraduate and graduate schools and around 28,000 students.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pittsburgh"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Pittsburgh"}, {"qid": 3576, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "In what way is the University of Pittsburgh connected to the concept of \"R1", "answer": " It is classified among \"R1", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pittsburgh"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Pittsburgh"}, {"qid": 3577, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between the University of Minnesota's main campus locations?", "answer": " The Twin Cities campus of the University of Minnesota is split between locations in Minneapolis and Falcon Heights, a suburb of St. Paul, approximately 3 miles apart.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Minnesota"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Minnesota"}, {"qid": 3578, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What type of university is the University of Minnesota?", "answer": " The University of Minnesota is a public land-grant research university.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Minnesota"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Minnesota"}, {"qid": 3579, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "When was the University of Minnesota founded?", "answer": " The University of Minnesota was founded in 1851.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Minnesota"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Minnesota"}, {"qid": 3580, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the location of the University of Minnesota's Twin Cities campus compare to its other campuses?", "answer": " The Twin Cities campus of the University of Minnesota is specifically split between Minneapolis and Falcon Heights, unlike its other campuses which are located in single locations.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Minnesota"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Minnesota"}, {"qid": 3581, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would happen if the University of Minnesota decided to consolidate its Twin Cities campuses into one location?", "answer": " If the University of Minnesota decided to consolidate its Twin Cities campuses into one location, it would involve significant logistical, infrastructural, and potentially financial challenges, changing the campus dynamics and potentially affecting its outreach and accessibility.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Minnesota"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Minnesota"}, {"qid": 3582, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Why is the University of Minnesota considered a land-grant university?", "answer": " The University of Minnesota is considered a land-grant university because it was established using grants of land given by the federal government to support higher education, in line with the Morrill Act of 1862.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Minnesota"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Minnesota"}, {"qid": 3583, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What makes the University of Minnesota unique in its location?", "answer": " The unique aspect of the University of Minnesota's location is its division between Minneapolis and Falcon Heights, offering a blend of urban and suburban environments.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Minnesota"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Minnesota"}, {"qid": 3584, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Minnesota were to open another campus, what factors should it consider based on its current Twin Cities campus experience?", "answer": " If the University of Minnesota were to open another campus, it should consider factors such as geographical diversity, accessibility, potential for research and community engagement, and the ability to offer a diverse and comprehensive educational experience, drawing from its Twin Cities campus experience.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Minnesota"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Minnesota"}, {"qid": 3585, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to other public universities in the United States, how does the University of Minnesota's founding year stand?", "answer": " The University of Minnesota, founded in 1851, is one of the older public universities in the United States, with many public universities being established later in the 19th and early 20th centuries.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Minnesota"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Minnesota"}, {"qid": 3586, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the significance of the University of Minnesota's location in the Twin Cities for its research programs?", "answer": " The location of the University of Minnesota in the Twin Cities significantly benefits its research programs by providing access to a large metropolitan area for urban studies, partnerships with numerous businesses and healthcare institutions for research collaborations, and a diverse population for social science research.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Minnesota"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Minnesota"}, {"qid": 3587, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest part of the University of Minnesota?", "answer": " The oldest part of the University of Minnesota is its original campus in Minneapolis, established when the university was founded in 1851.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Minnesota"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Minnesota"}, {"qid": 3588, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What impact might relocating the University of Minnesota's Falcon Heights campus have on the local community?", "answer": " Relocating the University of Minnesota's Falcon Heights campus could significantly impact the local community by potentially reducing economic activity, altering community demographics, and changing the local educational landscape, depending on the new use of the vacated land and the relocation specifics.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Minnesota"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Minnesota"}, {"qid": 3589, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What system did the University of California, Santa Barbara join in 1944?", "answer": " The University of California system", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Santa Barbara"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of California, Santa Barbara"}, {"qid": 3590, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which is older, UC Berkeley, UCLA, or UCSB?", "answer": " UC Berkeley", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Santa Barbara"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of California, Santa Barbara"}, {"qid": 3591, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Is UC Santa Barbara older than UC Davis?", "answer": " Yes", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Santa Barbara"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of California, Santa Barbara"}, {"qid": 3592, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "In what year did UCSB become part of the University of California system?", "answer": " 1944", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Santa Barbara"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of California, Santa Barbara"}, {"qid": 3593, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Among UC Berkeley, UCLA, and UCSB, which campus is the third-oldest in the University of California system?", "answer": " UCSB", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Santa Barbara"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of California, Santa Barbara"}, {"qid": 3594, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Where is the University of California, Santa Barbara located?", "answer": " Santa Barbara County, California, United States", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Santa Barbara"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of California, Santa Barbara"}, {"qid": 3595, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If UCSB were to double its total student enrollment from 2022, what would the new total be?", "answer": " 52,842", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Santa Barbara"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of California, Santa Barbara"}, {"qid": 3596, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Considering the start years, is UCSB older than UC Irvine?", "answer": " Yes", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Santa Barbara"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "University of California, Santa Barbara"}, {"qid": 3597, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the earliest founding year among UC Berkeley, UCLA, and UCSB?", "answer": " UC Berkeley", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Santa Barbara"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of California, Santa Barbara"}, {"qid": 3598, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What was UCSB's original role before joining the University of California system?", "answer": " An independent teachers' college", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Santa Barbara"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of California, Santa Barbara"}, {"qid": 3599, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If UCSB had joined the California State University system instead of the University of California system in 1944, which system would it be part of today?", "answer": " The California State University system", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Santa Barbara"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of California, Santa Barbara"}, {"qid": 3600, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Is the student enrollment at UCSB larger than at UC San Francisco?", "answer": " Yes", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Santa Barbara"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of California, Santa Barbara"}, {"qid": 3601, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the staff number of Michigan State University compare to that of the University of Michigan?", "answer": " The staff number at Michigan State University may vary, but specific comparisons would require current data from both institutions.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Michigan State University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Michigan State University"}, {"qid": 3602, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest land-grant university in the United States?", "answer": " Michigan State University, founded in 1855 and designated a land-grant institution in 1863, is one of the oldest land-grant universities in the United States.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Michigan State University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Michigan State University"}, {"qid": 3603, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Why is Michigan State University considered a land-grant university?", "answer": " Michigan State University is considered a land-grant university because it was designated as such in 1863 after the introduction of the Morrill Act in 1862, making it part of the first generation of land-grant colleges in the United States.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Michigan State University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Michigan State University"}, {"qid": 3604, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What if Michigan State University had not been designated a land-grant institution in 1863?", "answer": " If Michigan State University had not been designated a land-grant institution in 1863, it might not have received federal land and funding crucial for its development into a major public research university.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Michigan State University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Michigan State University"}, {"qid": 3605, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of Michigan State University compare to that of Harvard University?", "answer": " Michigan State University was founded in 1855, making it younger than Harvard University, which was founded in 1636.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Michigan State University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Michigan State University"}, {"qid": 3606, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What was the first coeducational land-grant university in the United States?", "answer": " Michigan State University, which became coeducational in 1870, is among the first land-grant universities in the United States to admit both male and female students.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Michigan State University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Michigan State University"}, {"qid": 3607, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the Morrill Act relate to the establishment of Michigan State University as a land-grant university?", "answer": " The Morrill Act of 1862 allowed for the creation of land-grant colleges, and Michigan State University was designated as a land-grant institution in 1863 due to this act, receiving federal land for its development.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Michigan State University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Michigan State University"}, {"qid": 3608, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What if Michigan State University had not introduced facilities across the state?", "answer": " If Michigan State University had not introduced facilities across the state, it might have limited its research capabilities, outreach, and accessibility to students and communities throughout Michigan.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Michigan State University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Michigan State University"}, {"qid": 3609, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the alumni network size of Michigan State University compare to that of Ohio State University?", "answer": " The alumni network size of Michigan State University, with over 634,000 alumni, would need to be compared with current data from Ohio State University for an accurate comparison.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Michigan State University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Michigan State University"}, {"qid": 3610, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which university became the first land-grant college in the United States?", "answer": " Michigan State University was among the first institutions to be designated a land-grant college in the United States after the Morrill Act in 1862, officially receiving this designation in 1863.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Michigan State University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Michigan State University"}, {"qid": 3611, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What role did the introduction of the Morrill Act play in the development of Michigan State University?", "answer": " The Morrill Act played a crucial role in the development of Michigan State University by providing federal lands that funded the institution's growth, thereby establishing it as a land-grant university.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Michigan State University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Michigan State University"}, {"qid": 3612, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What if Michigan State University did not have over 634,000 alumni?", "answer": " If Michigan State University did not have over 634,000 alumni, it might have a smaller network for fundraising, networking, and community impact, potentially affecting its outreach and influence.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Michigan State University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Michigan State University"}, {"qid": 3613, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest public university in Ohio?", "answer": " Ohio State University, founded in 1870.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Ohio State University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Ohio State University"}, {"qid": 3614, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How is Ohio State University related to the University System of Ohio?", "answer": " Ohio State University is a member of the University System of Ohio.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Ohio State University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Ohio State University"}, {"qid": 3615, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the undergraduate enrollment at Ohio State University compare to its graduate enrollment?", "answer": " Ohio State University has nearly 50,000 undergraduate students and nearly 15,000 graduate students, making the undergraduate enrollment significantly larger.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Ohio State University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Ohio State University"}, {"qid": 3616, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the rank of Ohio State University by size of enrollment in the United States?", "answer": " Ohio State University is one of the largest universities by enrollment in the United States.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Ohio State University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Ohio State University"}, {"qid": 3617, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What types of degrees does Ohio State University offer?", "answer": " Ohio State University offers over 400 degree programs at the undergraduate and graduate levels.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Ohio State University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Ohio State University"}, {"qid": 3618, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the number of colleges at Ohio State University compare to the total number of degree programs offered?", "answer": " Ohio State University consists of sixteen colleges and offers over 400 degree programs.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Ohio State University"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "Ohio State University"}, {"qid": 3619, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Ohio State University were to add a new college, how many colleges would it then have?", "answer": " Seventeen colleges.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Ohio State University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Ohio State University"}, {"qid": 3620, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which year was Ohio State University founded?", "answer": " 1870.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Ohio State University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Ohio State University"}, {"qid": 3621, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Where is Ohio State University located?", "answer": " Columbus, Ohio, United States.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Ohio State University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Ohio State University"}, {"qid": 3622, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Ohio State University decided to merge its smaller departments, how might this affect the total number of colleges?", "answer": " The total number of colleges might decrease if smaller departments were merged.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Ohio State University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Ohio State University"}, {"qid": 3623, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the student body size of Ohio State University's undergraduate program compare to its location's city population?", "answer": " With nearly 50,000 undergraduate students, Ohio State University's student body is a significant fraction of Columbus, Ohio's population, but Columbus's total population is larger.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Ohio State University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Ohio State University"}, {"qid": 3624, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the primary focus of Ohio State University as a land-grant institution?", "answer": " The primary focus of Ohio State University as a land-grant institution is research and education in various fields.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Ohio State University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Ohio State University"}, {"qid": 3625, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest chartered university in Illinois?", "answer": " Northwestern University", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Northwestern University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Northwestern University"}, {"qid": 3626, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Where is Northwestern University's main campus located?", "answer": " Along the shores of Lake Michigan in the Chicago metropolitan area", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Northwestern University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Northwestern University"}, {"qid": 3627, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the establishment year of Northwestern University compare to the University of Chicago?", "answer": " Northwestern University was established in 1851, making it older than the University of Chicago, which was founded in 1890.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Northwestern University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Northwestern University"}, {"qid": 3628, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the primary mission of Northwestern University as it was established to serve which territory?", "answer": " The historic Northwest Territory", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Northwestern University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Northwestern University"}, {"qid": 3629, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Who was the president of Northwestern University in 2023?", "answer": " This information is subject to change and needs to be checked for the current year.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Northwestern University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Northwestern University"}, {"qid": 3630, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Northwestern University decided to move its main campus, which geographical feature would it potentially miss the most?", "answer": " Lake Michigan", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Northwestern University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Northwestern University"}, {"qid": 3631, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to other universities in the Chicago metropolitan area, where does Northwestern University rank in terms of its founding year?", "answer": " Northwestern University is the oldest chartered university in Illinois.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Northwestern University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Northwestern University"}, {"qid": 3632, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What distinguishes Northwestern University's location compared to other Illinois universities?", "answer": " Its main campus is located along the shores of Lake Michigan in the Chicago metropolitan area.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Northwestern University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Northwestern University"}, {"qid": 3633, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the significance of the year 1851 for Northwestern University?", "answer": " It is the year Northwestern University was established.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Northwestern University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Northwestern University"}, {"qid": 3634, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Northwestern University were to establish a second campus, based on its history, which geographic area might they consider?", "answer": " A location within the Northwest Territory or within the Chicago metropolitan area due to its historical and strategic significance.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Northwestern University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Northwestern University"}, {"qid": 3635, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the staff number at Northwestern University compare to that of similar private research universities?", "answer": " This requires current data on staff numbers at Northwestern University and comparable institutions for an accurate comparison.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Northwestern University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Northwestern University"}, {"qid": 3636, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What feature of Northwestern University's main campus is most celebrated by students and visitors?", "answer": " Its scenic location along the shores of Lake Michigan.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Northwestern University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Northwestern University"}, {"qid": 3637, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What was the original name of George Washington University when it was chartered in 1821?", "answer": " Columbian College", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["George Washington University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "George Washington University"}, {"qid": 3638, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which university was the first to be founded under the jurisdiction of Washington, D.C.?", "answer": " George Washington University", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["George Washington University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "George Washington University"}, {"qid": 3639, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "In what city is George Washington University located?", "answer": " Washington, D.C.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["George Washington University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "George Washington University"}, {"qid": 3640, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What type of university is George Washington University classified as?", "answer": " Private federally-chartered research university", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["George Washington University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "George Washington University"}, {"qid": 3641, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If George Washington University decided to increase its research budget, how might this affect its status as a research university?", "answer": " It could enhance its reputation and rankings as a research university.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["George Washington University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "George Washington University"}, {"qid": 3642, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to other federally chartered universities, where does George Washington University stand in terms of its founding year?", "answer": " It is one of the first, being chartered in 1821.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["George Washington University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "George Washington University"}, {"qid": 3643, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the unique characteristic of George Washington University being one of the nation's six federally chartered universities?", "answer": " It is unique in being the first university founded under Washington, D.C.'s jurisdiction.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["George Washington University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "George Washington University"}, {"qid": 3644, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Who chartered George Washington University in 1821?", "answer": " The United States Congress", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["George Washington University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "George Washington University"}, {"qid": 3645, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would happen if George Washington University moved its main campus out of Washington, D.C.?", "answer": " It would lose its status as the first university founded under Washington, D.C.'s jurisdiction.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["George Washington University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "George Washington University"}, {"qid": 3646, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does George Washington University's founding year compare to other private universities in the United States?", "answer": " It is one of the earlier private universities, founded in 1821.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["George Washington University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "George Washington University"}, {"qid": 3647, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the federal charter significance of George Washington University among U.S. universities?", "answer": " It signifies its establishment and operation under a federal charter granted by the United States Congress.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["George Washington University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "George Washington University"}, {"qid": 3648, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What makes George Washington University's location significant compared to other federally chartered universities?", "answer": " Its location in Washington, D.C., the nation's capital, makes it significant.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["George Washington University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "George Washington University"}, {"qid": 3649, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What year was the University of Illinois Urbana-Champaign established?", "answer": " 1867", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Illinois Urbana-Champaign"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Illinois Urbana-Champaign"}, {"qid": 3650, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the metropolitan area where the University of Illinois Urbana-Champaign is located?", "answer": " Champaign–Urbana metropolitan area", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Illinois Urbana-Champaign"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Illinois Urbana-Champaign"}, {"qid": 3651, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How many students are enrolled at the University of Illinois Urbana-Champaign?", "answer": " Over 53,000", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Illinois Urbana-Champaign"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Illinois Urbana-Champaign"}, {"qid": 3652, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Is the University of Illinois Urbana-Champaign the largest public university by enrollment in the United States?", "answer": " It is one of the largest, not necessarily the largest.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Illinois Urbana-Champaign"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Illinois Urbana-Champaign"}, {"qid": 3653, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "In which state is the University of Illinois Urbana-Champaign located?", "answer": " Illinois", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Illinois Urbana-Champaign"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Illinois Urbana-Champaign"}, {"qid": 3654, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What type of university is the University of Illinois Urbana-Champaign?", "answer": " Public land-grant research university", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Illinois Urbana-Champaign"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Illinois Urbana-Champaign"}, {"qid": 3655, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the student enrollment at the University of Illinois Urbana-Champaign compare to other universities in the University of Illinois system?", "answer": " It is the flagship institution, implying it has the largest or one of the largest enrollments within the system.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Illinois Urbana-Champaign"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Illinois Urbana-Champaign"}, {"qid": 3656, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would happen if the University of Illinois Urbana-Champaign decided to become a private university?", "answer": " This scenario would likely involve significant changes in funding, tuition, governance, and possibly admission criteria, but the specific outcomes would depend on numerous factors and decisions made during the transition.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Illinois Urbana-Champaign"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Illinois Urbana-Champaign"}, {"qid": 3657, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What makes the University of Illinois Urbana-Champaign stand out as a flagship institution?", "answer": " Its status as a flagship institution is highlighted by its large enrollment, comprehensive research facilities, and as a leading public university in the state and the United States.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Illinois Urbana-Champaign"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Illinois Urbana-Champaign"}, {"qid": 3658, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the role of the University of Illinois Urbana-Champaign within the University of Illinois system?", "answer": " It serves as the flagship institution.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Illinois Urbana-Champaign"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Illinois Urbana-Champaign"}, {"qid": 3659, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the historical establishment year of the University of Illinois Urbana-Champaign compare to other public universities established in the 19th century?", "answer": " Established in 1867, the University of Illinois Urbana-Champaign is among the older public universities founded in the 19th century, but without comparing specific establishment years of other universities, it's difficult to rank precisely.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Illinois Urbana-Champaign"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Illinois Urbana-Champaign"}, {"qid": 3660, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Illinois Urbana-Champaign were to move its location, how would that affect its designation as the flagship institution of the University of Illinois system?", "answer": " The designation as the flagship institution is not solely dependent on its location but rather on its academic, research, and enrollment characteristics. However, a move could potentially impact its ties to the community, historical significance, and logistical operations within the system.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Illinois Urbana-Champaign"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Illinois Urbana-Champaign"}, {"qid": 3661, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the main campus location of the University of South Florida?", "answer": " Tampa, Florida", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of South Florida"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of South Florida"}, {"qid": 3662, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How many colleges does the University of South Florida have?", "answer": " 14", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of South Florida"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of South Florida"}, {"qid": 3663, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Is the University of South Florida part of the State University System of Florida?", "answer": " Yes", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of South Florida"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of South Florida"}, {"qid": 3664, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What classification is the University of South Florida categorized under in terms of research activity?", "answer": " R1", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of South Florida"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of South Florida"}, {"qid": 3665, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the accreditation body for the University of South Florida?", "answer": " Commission on Colleges of the Southern Association of Colleges and Schools", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of South Florida"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of South Florida"}, {"qid": 3666, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Is the University of South Florida a member of the Association of American Universities (AAU)?", "answer": " Yes", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of South Florida"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of South Florida"}, {"qid": 3667, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What designation has the Florida Board of Governors given to the University of South Florida?", "answer": " One of three Preeminent State Research Universities", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of South Florida"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of South Florida"}, {"qid": 3668, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which campus of the University of South Florida is considered the main campus?", "answer": " The campus in Tampa, Florida", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of South Florida"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of South Florida"}, {"qid": 3669, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If a new college were to be added to the University of South Florida, how many colleges would it have?", "answer": " 15", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of South Florida"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of South Florida"}, {"qid": 3670, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How many types of degree programs does the University of South Florida offer?", "answer": " More than 240 undergraduate, graduate, specialist, and doctoral-level degree programs", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of South Florida"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of South Florida"}, {"qid": 3671, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the University of South Florida's research activity classification compare to other universities in the State University System of Florida?", "answer": " It is classified among \"R1", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of South Florida"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of South Florida"}, {"qid": 3672, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the unique status of the University of South Florida within the Florida Board of Governors' designation?", "answer": " One of three Preeminent State Research Universities", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of South Florida"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of South Florida"}, {"qid": 3673, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between the University of Florida and the State University System of Florida?", "answer": " The University of Florida is a senior member of the State University System of Florida.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Florida"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Florida"}, {"qid": 3674, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "When was the University of Florida founded in relation to other universities in the State University System of Florida?", "answer": " The University of Florida, with origins tracing back to 1853, is one of the oldest universities in the State University System of Florida.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Florida"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Florida"}, {"qid": 3675, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What type of research institution is the University of Florida classified as?", "answer": " The University of Florida is classified as a public land-grant research university.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Florida"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Florida"}, {"qid": 3676, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the campus location of the University of Florida compare to that of other universities in Florida?", "answer": " The University of Florida is located in Gainesville, Florida, making it unique compared to other Florida universities located in cities such as Tallahassee, Miami, or Tampa.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Florida"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Florida"}, {"qid": 3677, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the significance of September 1906 for the University of Florida?", "answer": " September 1906 marks the date when the University of Florida began operating continuously on its Gainesville campus.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Florida"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Florida"}, {"qid": 3678, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which president currently presides over the University of Florida?", "answer": " The current president of the University of Florida is not specified in the provided information.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Florida"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Florida"}, {"qid": 3679, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Florida decided to open another campus, how would it compare to its original campus in Gainesville in terms of founding year?", "answer": " Any new campus of the University of Florida would have a founding year after 1906, making it younger than the original Gainesville campus.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Florida"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Florida"}, {"qid": 3680, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the location of the University of Florida in the context of its city and state?", "answer": " The University of Florida is located in Gainesville, Florida.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Florida"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Florida"}, {"qid": 3681, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the University of Florida serve the state's educational system?", "answer": " The University of Florida serves as a senior member of the State University System of Florida, contributing to higher education and research.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Florida"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Florida"}, {"qid": 3682, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to when it was founded, how has the staff number at the University of Florida changed?", "answer": " The staff number at the University of Florida has likely increased since its founding, but specific figures are not provided in the information.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Florida"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Florida"}, {"qid": 3683, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Florida were to become a private institution, how would its relationship with the State University System of Florida change?", "answer": " If the University of Florida became a private institution, it would likely no longer be a member of the State University System of Florida, altering its current relationship.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Florida"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Florida"}, {"qid": 3684, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What makes the University of Florida unique among other universities in Florida?", "answer": " Its status as a public land-grant research university and a senior member of the State University System of Florida, along with its long history dating back to 1853 and continuous operation in Gainesville since 1906, make the University of Florida unique among other universities in Florida.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Florida"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Florida"}, {"qid": 3685, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between the University of Maryland, College Park, and the University System of Maryland?", "answer": " The University of Maryland, College Park is the flagship institution of the University System of Maryland.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Maryland, College Park"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Maryland, College Park"}, {"qid": 3686, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What year was the oldest land-grant research university in Maryland, specifically the University of Maryland, College Park, founded?", "answer": " 1856", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Maryland, College Park"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Maryland, College Park"}, {"qid": 3687, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of the University of Maryland, College Park compare to the founding year of the University of Virginia?", "answer": " The University of Maryland, College Park was founded in 1856, whereas the University of Virginia was founded earlier in 1819.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Maryland, College Park"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Maryland, College Park"}, {"qid": 3688, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which university is the flagship institution of the University System of Maryland?", "answer": " The University of Maryland, College Park", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Maryland, College Park"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Maryland, College Park"}, {"qid": 3689, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "In what city is the University of Maryland, College Park located?", "answer": " College Park, Maryland", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Maryland, College Park"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Maryland, College Park"}, {"qid": 3690, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would likely happen if the University of Maryland, College Park decided to move its location to another state?", "answer": " It would likely need significant logistical, legal, and financial adjustments, potentially impact its affiliation with the University System of Maryland, and affect its student and faculty base.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Maryland, College Park"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Maryland, College Park"}, {"qid": 3691, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the founding year of the University of Maryland, College Park?", "answer": " 1856", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Maryland, College Park"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Maryland, College Park"}, {"qid": 3692, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What role does the president of the University of Maryland, College Park serve in relation to its operations?", "answer": " The president serves as the chief executive officer, overseeing all operations, academic programs, and administration of the university.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Maryland, College Park"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Maryland, College Park"}, {"qid": 3693, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Maryland, College Park were to double its staff number, how might this affect its operational capabilities?", "answer": " Doubling the staff number could significantly enhance its operational capabilities, potentially improve student support, research output, and the overall academic environment, assuming adequate resources and infrastructure are in place to support the increase.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Maryland, College Park"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Maryland, College Park"}, {"qid": 3694, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to its founding year, how has the location of the University of Maryland, College Park changed?", "answer": " The location of the University of Maryland, College Park has not changed since its founding year; it has remained in College Park, Maryland.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Maryland, College Park"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Maryland, College Park"}, {"qid": 3695, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the primary public research university in Maryland?", "answer": " The University of Maryland, College Park", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Maryland, College Park"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Maryland, College Park"}, {"qid": 3696, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the staff number at the University of Maryland, College Park contribute to its research capabilities?", "answer": " The staff number, including faculty and research staff, directly contributes to the university's research capabilities by providing expertise, facilitating research projects, and mentoring students, thereby enhancing its status as a leading research institution.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Maryland, College Park"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Maryland, College Park"}, {"qid": 3697, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between the University of Arizona and the Arizona Board of Regents?", "answer": " The University of Arizona is governed by the Arizona Board of Regents.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Arizona"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Arizona"}, {"qid": 3698, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "When was the University of Arizona founded in relation to other universities in the Arizona Territory?", "answer": " The University of Arizona was the first university founded in the Arizona Territory in 1885.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Arizona"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Arizona"}, {"qid": 3699, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the student enrollment at the University of Arizona for Fall 2023 compare to its previous years?", "answer": " The question implies a need for data comparison over years, but the specific comparison data for previous years is not provided in the text.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Arizona"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Arizona"}, {"qid": 3700, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the connection between the University of Arizona College of Medicine - Tucson and the University of Arizona?", "answer": " The University of Arizona College of Medicine - Tucson is one of the colleges/schools that is part of the University of Arizona.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Arizona"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Arizona"}, {"qid": 3701, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the rank of the University of Arizona in terms of its founding year among universities in Arizona?", "answer": " The University of Arizona is the first, or oldest, university established in Arizona.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Arizona"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Arizona"}, {"qid": 3702, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Arizona decides to open another college, how would that affect its total number of colleges/schools?", "answer": " Opening another college would increase the total number of colleges/schools from the current 19.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Arizona"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Arizona"}, {"qid": 3703, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the James E. Rogers College of Law relate to the University of Arizona?", "answer": " The James E. Rogers College of Law is one of the colleges/schools within the University of Arizona.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Arizona"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Arizona"}, {"qid": 3704, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which college at the University of Arizona was established specifically for medical education in Phoenix?", "answer": " The University of Arizona College of Medicine - Phoenix was established for medical education in Phoenix.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Arizona"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Arizona"}, {"qid": 3705, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the size of the student body in Fall 2023 at the University of Arizona compare to that of other universities governed by the Arizona Board of Regents?", "answer": " The comparison requires specific enrollment numbers for other universities governed by the Arizona Board of Regents, which are not provided.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Arizona"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Arizona"}, {"qid": 3706, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Arizona were to merge its two College of Medicine campuses, how would that affect the number of separate colleges/schools within the university?", "answer": " Merging the two College of Medicine campuses would decrease the total number of separate colleges/schools within the university by one.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Arizona"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Arizona"}, {"qid": 3707, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What role does Tucson play in the context of the University of Arizona?", "answer": " Tucson is the city in which the University of Arizona is located.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Arizona"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Arizona"}, {"qid": 3708, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What distinguishes the University of Arizona's founding year among other land-grant universities in the United States?", "answer": " The University of Arizona's founding year of 1885 makes it one of the earlier land-grant universities established in the United States, particularly notable as the first in the Arizona Territory.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Arizona"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Arizona"}, {"qid": 3709, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest public university west of the Mississippi River?", "answer": " The University of Missouri", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Missouri"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Missouri"}, {"qid": 3710, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which university in Missouri has the highest research activity classification?", "answer": " The University of Missouri", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Missouri"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Missouri"}, {"qid": 3711, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the University of Missouri relate to the Mississippi River in terms of its founding?", "answer": " It is the first public university founded west of the Mississippi River.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Missouri"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Missouri"}, {"qid": 3712, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the University of Missouri compare to other universities in the University of Missouri System in terms of its founding date?", "answer": " It is the oldest, being founded in 1839.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Missouri"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Missouri"}, {"qid": 3713, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the flagship campus of the University of Missouri System?", "answer": " The University of Missouri", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Missouri"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Missouri"}, {"qid": 3714, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What classification of research activity does the University of Missouri hold?", "answer": " R1", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Missouri"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Missouri"}, {"qid": 3715, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Missouri had not been founded in 1839, which public university might have been the first west of the Mississippi River?", "answer": " It's speculative, as the University of Missouri was indeed the first, and there's no clear runner-up from that time period.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Missouri"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Missouri"}, {"qid": 3716, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "As of 2023, what is the largest university in Missouri?", "answer": " The University of Missouri", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Missouri"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Missouri"}, {"qid": 3717, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How long has the University of Missouri been a member of the Association of American Universities?", "answer": " Since 1908", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Missouri"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Missouri"}, {"qid": 3718, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the University of Missouri's research activity classification compare to other universities not in the R1 category?", "answer": " It has a higher classification of research activity.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Missouri"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Missouri"}, {"qid": 3719, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the significance of the University of Missouri's location in Columbia, Missouri?", "answer": " It is the location of the flagship campus of the University of Missouri System.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Missouri"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Missouri"}, {"qid": 3720, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Missouri were to move its flagship campus to another city, how would that affect its status as the largest university in Missouri?", "answer": " The move could potentially affect its status depending on the new location's capacity to support the university's size and requirements, but it would likely remain the largest university in Missouri due to its student population and academic offerings.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Missouri"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Missouri"}, {"qid": 3721, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between Syracuse University and the Methodist Episcopal Church?", "answer": " Syracuse University was established in 1870 with roots in the Methodist Episcopal Church but has been nonsectarian since 1920.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Syracuse University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Syracuse University"}, {"qid": 3722, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest architectural style present on the Syracuse University campus?", "answer": " The nineteenth-century Romanesque Revival is the oldest architectural style present on the Syracuse University campus.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Syracuse University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Syracuse University"}, {"qid": 3723, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does Syracuse University's founding year compare to Cornell University's founding year of 1865?", "answer": " Syracuse University was founded five years later than Cornell University, in 1870.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Syracuse University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Syracuse University"}, {"qid": 3724, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What denotes Syracuse University's classification in terms of research activity?", "answer": " Syracuse University is classified among \"R1", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Syracuse University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Syracuse University"}, {"qid": 3725, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most significant nonsectarian shift in the history of Syracuse University?", "answer": " The most significant nonsectarian shift in the history of Syracuse University occurred in 1920 when it became nonsectarian.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Syracuse University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Syracuse University"}, {"qid": 3726, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Syracuse University decided to return to its Methodist Episcopal Church roots, how would this affect its nonsectarian status?", "answer": " If Syracuse University returned to its Methodist Episcopal Church roots, it would lose its nonsectarian status.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Syracuse University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Syracuse University"}, {"qid": 3727, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "In what neighborhood is Syracuse University located?", "answer": " Syracuse University is located in the University Hill neighborhood, east and southeast of Downtown Syracuse.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Syracuse University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Syracuse University"}, {"qid": 3728, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which school within Syracuse University has the longest history?", "answer": " The College of Arts and Sciences, being part of the original institution founded in 1870, likely has the longest history within Syracuse University.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Syracuse University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Syracuse University"}, {"qid": 3729, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to the University of Rochester, which is also in New York, how does Syracuse University's campus size compare?", "answer": " Syracuse University's campus is generally larger and more eclectic in architectural styles compared to the University of Rochester's.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Syracuse University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Syracuse University"}, {"qid": 3730, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Syracuse University were to become sectarian again, which religious affiliation would it most likely choose based on its history?", "answer": " If Syracuse University were to become sectarian again, it would most likely choose a Methodist Episcopal Church affiliation based on its history.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Syracuse University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Syracuse University"}, {"qid": 3731, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What architectural styles are featured on the Syracuse University campus?", "answer": " The Syracuse University campus features an eclectic mix of architecture, ranging from nineteenth-century Romanesque Revival to contemporary buildings.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Syracuse University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Syracuse University"}, {"qid": 3732, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most recent architectural style added to the Syracuse University campus?", "answer": " The most recent architectural style added to the Syracuse University campus is contemporary.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Syracuse University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Syracuse University"}, {"qid": 3733, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How far is Emory University's main campus from Downtown Atlanta?", "answer": " 3 miles (4.8 km)", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Emory University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Emory University"}, {"qid": 3734, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What was the original name of Emory University when it was founded in 1836?", "answer": " Emory College", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Emory University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Emory University"}, {"qid": 3735, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "In honor of whom was Emory University named?", "answer": " Methodist bishop John Emory", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Emory University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Emory University"}, {"qid": 3736, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is Emory University's oldest founding year compared to other universities in Georgia?", "answer": " 1836", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Emory University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Emory University"}, {"qid": 3737, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What type of university is Emory University in terms of its founding sponsorship?", "answer": " A private research university founded by the Methodist Episcopal Church", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Emory University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Emory University"}, {"qid": 3738, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the location of Emory University's main campus compare to the location of other universities in Atlanta?", "answer": " It is in Druid Hills, 3 miles (4.8 km) from Downtown Atlanta.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Emory University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Emory University"}, {"qid": 3739, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Emory University decided to move its main campus, how might its distance from Downtown Atlanta change?", "answer": " The distance could either increase or decrease depending on the new location.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Emory University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Emory University"}, {"qid": 3740, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between Emory University and the Methodist Episcopal Church?", "answer": " The Methodist Episcopal Church founded Emory University.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Emory University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Emory University"}, {"qid": 3741, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What distinguishes Emory University's founding year among private research universities in Georgia?", "answer": " It was founded in 1836, making it one of the oldest.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Emory University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Emory University"}, {"qid": 3742, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Emory University were to open another campus, in what ways might it honor its historical connection to the Methodist Episcopal Church?", "answer": " It might name buildings or scholarships after notable figures from the Methodist Episcopal Church or incorporate Methodist traditions into its ceremonies.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Emory University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Emory University"}, {"qid": 3743, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to universities located in downtown urban areas, how does Emory University's location in Druid Hills impact its campus environment?", "answer": " Its Druid Hills location provides a more suburban environment, potentially offering a quieter, more scenic setting than a downtown urban campus.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Emory University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Emory University"}, {"qid": 3744, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Among universities founded by religious organizations in the United States, where does Emory University rank in terms of its age?", "answer": " As it was founded in 1836, Emory University is among the older universities founded by religious organizations in the United States.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Emory University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Emory University"}, {"qid": 3745, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between UC San Diego and the Scripps Institution of Oceanography?", "answer": " UC San Diego was established near the pre-existing Scripps Institution of Oceanography.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, San Diego"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, San Diego"}, {"qid": 3746, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which University of California campus is the southernmost?", "answer": " University of California, San Diego", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, San Diego"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, San Diego"}, {"qid": 3747, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does UC San Diego's student housing capacity rank nationally?", "answer": " UC San Diego has the second largest student housing capacity in the nation.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, San Diego"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, San Diego"}, {"qid": 3748, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How is UC San Diego classified in terms of its research capabilities?", "answer": " UC San Diego is a public land-grant research university.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, San Diego"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, San Diego"}, {"qid": 3749, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What year was the southernmost University of California campus established?", "answer": " 1960", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, San Diego"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, San Diego"}, {"qid": 3750, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the number of undergraduate programs compare to graduate programs at UC San Diego?", "answer": " UC San Diego offers over 200 undergraduate and graduate degree programs.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, San Diego"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, San Diego"}, {"qid": 3751, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If UC San Diego were to expand its campus, how might its coastal location influence the expansion process?", "answer": " The expansion process might be influenced by its coastal location near the Pacific Ocean, considering environmental and regulatory aspects.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, San Diego"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, San Diego"}, {"qid": 3752, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the total area of UC San Diego, and how does it relate to the main campus area?", "answer": " The university occupies 2,178 acres, with the main campus resting on approximately 1,152 acres.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, San Diego"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, San Diego"}, {"qid": 3753, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the student enrollment at UC San Diego split between undergraduate and graduate students?", "answer": " UC San Diego enrolls 33,096 undergraduate and 9,872 graduate students.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, San Diego"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, San Diego"}, {"qid": 3754, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the rank of UC San Diego among the University of California campuses in terms of its establishment year?", "answer": " UC San Diego is not the first, but among the later established campuses, specifically founded in 1960.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, San Diego"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, San Diego"}, {"qid": 3755, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If UC San Diego were to offer a new degree program, how might its status as a land-grant research university influence the type of program offered?", "answer": " Its status as a land-grant research university might influence it to offer programs that are research-oriented and possibly related to public service or agriculture, considering historical land-grant university missions.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, San Diego"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, San Diego"}, {"qid": 3756, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to the total campus area, what proportion does the main campus area represent at UC San Diego?", "answer": " The main campus area represents a significant portion of the total campus area, specifically approximately 1,152 out of 2,178 acres.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, San Diego"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, San Diego"}, {"qid": 3757, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What was the original name of Arizona State University when it was founded in 1885?", "answer": " Territorial Normal School", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Arizona State University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Arizona State University"}, {"qid": 3758, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What makes Arizona State University notable in terms of its enrollment size in the United States?", "answer": " It is one of the largest public universities by enrollment.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Arizona State University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Arizona State University"}, {"qid": 3759, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What was the primary purpose of founding the Territorial Normal School, now known as Arizona State University, in 1885?", "answer": " To train teachers for the rapidly growing public common schools.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Arizona State University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Arizona State University"}, {"qid": 3760, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How did the role of institutions like Arizona State University evolve from the late 19th century through the late 20th century?", "answer": " They went from normal schools for training teachers to state colleges and finally to state universities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Arizona State University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Arizona State University"}, {"qid": 3761, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "As of the knowledge cutoff date, who serves as the president of Arizona State University?", "answer": " The president's name is not provided in the text; thus, it cannot be determined without current information.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Arizona State University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Arizona State University"}, {"qid": 3762, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Where is Arizona State University located?", "answer": " In the Phoenix metropolitan area.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Arizona State University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Arizona State University"}, {"qid": 3763, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What legislative body founded the Territorial Normal School, which later became Arizona State University?", "answer": " The 13th Arizona Territorial Legislature.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Arizona State University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Arizona State University"}, {"qid": 3764, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of Arizona State University compare to other public universities established in the 19th century?", "answer": " Arizona State University, founded in 1885, is among the many public universities founded in the late 19th century.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Arizona State University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Arizona State University"}, {"qid": 3765, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What distinguishes Arizona State University's founding purpose compared to other normal schools established in the late 19th century?", "answer": " Like other normal schools, its primary purpose was to train teachers for the rapidly growing public common schools.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Arizona State University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Arizona State University"}, {"qid": 3766, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What if Arizona State University had not transitioned from a normal school to a state university by the late 20th century?", "answer": " It might have remained a more specialized institution primarily focused on teacher education rather than becoming the large, diverse research university it is today.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Arizona State University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Arizona State University"}, {"qid": 3767, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What was the significant transformation that occurred to institutions like Arizona State University by the late 20th century?", "answer": " They became state universities after starting as normal schools and then becoming state colleges.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Arizona State University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Arizona State University"}, {"qid": 3768, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How has Arizona State University's role in the education sector changed since its founding in 1885?", "answer": " It expanded from training teachers as a normal school to a comprehensive state university offering a wide range of undergraduate and graduate programs.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Arizona State University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Arizona State University"}, {"qid": 3769, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest public university in New York State?", "answer": " The University at Buffalo, founded in 1846.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University at Buffalo"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University at Buffalo"}, {"qid": 3770, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How did the University at Buffalo become part of the SUNY system?", "answer": " The University at Buffalo merged with the State University of New York system in 1962.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University at Buffalo"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University at Buffalo"}, {"qid": 3771, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the student enrollment at the University at Buffalo compare to other SUNY institutions?", "answer": " As of fall 2020, the University at Buffalo, with 32,347 students, is the largest public university in the state of New York.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University at Buffalo"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University at Buffalo"}, {"qid": 3772, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the flagship institution of the SUNY system?", "answer": " The University at Buffalo and Stony Brook University are the flagship institutions of the SUNY system.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University at Buffalo"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University at Buffalo"}, {"qid": 3773, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What led to the University at Buffalo's foundation in 1846?", "answer": " The University at Buffalo was founded as a private medical college in 1846.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University at Buffalo"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University at Buffalo"}, {"qid": 3774, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University at Buffalo had not merged with the SUNY system, what might have been different today?", "answer": " It might have remained a private institution instead of becoming a public university.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University at Buffalo"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University at Buffalo"}, {"qid": 3775, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to when it was founded, how has the purpose of the University at Buffalo expanded?", "answer": " Since its founding as a private medical college in 1846, the University at Buffalo has expanded to include 13 schools and colleges, covering a wide range of disciplines.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University at Buffalo"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University at Buffalo"}, {"qid": 3776, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which SUNY institution has the largest student enrollment as of fall 2020?", "answer": " The University at Buffalo has the largest student enrollment among SUNY institutions as of fall 2020.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University at Buffalo"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University at Buffalo"}, {"qid": 3777, "topic": "Association of American Universities", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What significant change occurred at the University at Buffalo in 1962?", "answer": " The University at Buffalo merged with the State University of New York system in 1962.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University at Buffalo"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University at Buffalo"}, {"qid": 3778, "topic": "Association of American Universities", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would the impact be on the SUNY system if the University at Buffalo were to separate from it?", "answer": " The SUNY system would lose one of its flagship institutions and the largest public university in New York State.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University at Buffalo"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University at Buffalo"}, {"qid": 3779, "topic": "Association of American Universities", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the University at Buffalo's founding year compare to other universities nationwide?", "answer": " The University at Buffalo, founded in 1846, is older than many other universities nationwide but not the oldest.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University at Buffalo"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University at Buffalo"}, {"qid": 3780, "topic": "Association of American Universities", "type": "Superlative", "category": "Comparative Reasoning", "question": "What campus of the University at Buffalo is located furthest from the city center of Buffalo?", "answer": " The Amherst campus is located further from the city center of Buffalo than the Buffalo campus.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University at Buffalo"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University at Buffalo"}, {"qid": 961, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of Columbia University compare to the University of Pennsylvania?", "answer": " Columbia University was established in 1754, whereas the University of Pennsylvania was founded in 1740, making Columbia University younger.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Columbia University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Columbia University"}, {"qid": 962, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest institution of higher education in New York?", "answer": " Columbia University.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Columbia University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Columbia University"}, {"qid": 963, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Why was Columbia University originally named King's College?", "answer": " It was named King's College to honor King George II of Great Britain upon its establishment.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Columbia University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Columbia University"}, {"qid": 964, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Columbia University decided to move its location from New York City, how might that impact its identity as \"Columbia University in the City of New York\"?", "answer": " It would likely necessitate a change in the institution's formal name to reflect its new location, impacting its branding and historical identity tied to New York City.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Columbia University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Columbia University"}, {"qid": 965, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "Among Ivy League universities, which was established first, Harvard or Columbia?", "answer": " Harvard University was established first in 1636, making it older than Columbia University.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Columbia University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Columbia University"}, {"qid": 966, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What led to Columbia University's relocation to its current Morningside Heights campus?", "answer": " The need for more space and a more suitable location for academic pursuits led Columbia University to move to its current Morningside Heights campus.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Columbia University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Columbia University"}, {"qid": 967, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does Columbia University's age compare to that of Yale University?", "answer": " Columbia University, established in 1754, is younger than Yale University, which was founded in 1701.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Columbia University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Columbia University"}, {"qid": 968, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Columbia University were to merge with another Ivy League school, how might that affect its historical status as the fifth-oldest university in the United States?", "answer": " The merger could potentially alter its historical status, depending on the age and historical significance of the other institution involved in the merger.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Columbia University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Columbia University"}, {"qid": 969, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most distinguishing feature of Columbia University's original establishment compared to other Ivy League universities?", "answer": " Its original establishment as King's College under a royal charter from King George II of Great Britain.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Columbia University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Columbia University"}, {"qid": 970, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How has Columbia University's initial founding purpose evolved over the years?", "answer": " Initially founded to provide education under the auspices of the Church of England, Columbia University has evolved into a secular institution with a broad range of academic disciplines.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Columbia University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Columbia University"}, {"qid": 971, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to Princeton University, how does the staff number at Columbia University reflect its academic offerings?", "answer": " Columbia University, with its extensive range of academic offerings and research initiatives, typically employs a larger staff number than Princeton University, which is also comprehensive but smaller in scale.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Columbia University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Columbia University"}, {"qid": 972, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would be the possible implications for Columbia University's research output if it significantly increased its staff number?", "answer": " Significantly increasing its staff number could potentially enhance Columbia University's research output by bringing in more expertise and facilitating more research projects.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Columbia University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Columbia University"}, {"qid": 973, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest institution of higher learning in the United States?", "answer": " Harvard University", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harvard University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Harvard University"}, {"qid": 974, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "For whom was Harvard University named after?", "answer": " John Harvard", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harvard University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Harvard University"}, {"qid": 975, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Where is Harvard University located?", "answer": " Cambridge, Massachusetts", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harvard University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Harvard University"}, {"qid": 976, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "In what year was Harvard University founded?", "answer": " 1636", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harvard University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Harvard University"}, {"qid": 977, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What type of university is Harvard University?", "answer": " Private Ivy League research university", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harvard University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Harvard University"}, {"qid": 978, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which university has the title of being the most prestigious in the world?", "answer": " Harvard University", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harvard University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Harvard University"}, {"qid": 979, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Harvard University was to double its staff number, how many staff would it have?", "answer": " This question cannot be directly answered without the current staff number.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harvard University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Harvard University"}, {"qid": 980, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of Harvard University compare to that of Yale University?", "answer": " Harvard University was founded earlier than Yale University.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harvard University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Harvard University"}, {"qid": 981, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the location of Harvard University compare to that of MIT?", "answer": " Both are located in Cambridge, Massachusetts.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harvard University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Harvard University"}, {"qid": 982, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Harvard University was not named after John Harvard, what would its name be?", "answer": " This question is hypothetical and cannot be definitively answered.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harvard University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Harvard University"}, {"qid": 983, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What was Harvard University originally founded as?", "answer": " Harvard College", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harvard University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Harvard University"}, {"qid": 984, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Harvard University decided to change its location, which city could be a potential new home?", "answer": " This question is hypothetical and cannot be definitively answered.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harvard University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Harvard University"}, {"qid": 985, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of Princeton University compare to that of Harvard University?", "answer": " Princeton University was founded in 1746, which is later than Harvard University's founding year of 1636.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Princeton University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Princeton University"}, {"qid": 986, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the staff number of Princeton University compare to Yale University?", "answer": " The exact staff numbers are variable and need current data for an accurate comparison.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Princeton University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Princeton University"}, {"qid": 987, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest institution of higher education in the United States?", "answer": " Harvard University, founded in 1636.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Princeton University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Princeton University"}, {"qid": 988, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which Ivy League university has the earliest founding year?", "answer": " Harvard University, founded in 1636.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Princeton University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Princeton University"}, {"qid": 989, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Why was Princeton University originally called the College of New Jersey?", "answer": " It was named the College of New Jersey upon its founding in 1746 and before it was renamed Princeton University in 1896.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Princeton University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Princeton University"}, {"qid": 990, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What led to Princeton University relocating to its current location in Princeton?", "answer": " The institution moved to its current location in Princeton nine years after moving to Newark in 1747 to accommodate growth and perhaps for other logistical or strategic reasons not detailed in the provided information.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Princeton University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Princeton University"}, {"qid": 991, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How did Princeton University's status change over time from its founding to now?", "answer": " Founded in 1746 as the College of New Jersey, it moved locations before settling in Princeton, became a university in 1896, and was subsequently renamed Princeton University.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Princeton University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Princeton University"}, {"qid": 992, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Princeton University had not been renamed from the College of New Jersey, how might this have impacted its recognition as an Ivy League school?", "answer": " The recognition as an Ivy League school is more about the institution's historical significance, academic excellence, and social prestige rather than its name, so it's possible that its recognition would remain largely unaffected.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Princeton University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Princeton University"}, {"qid": 993, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Princeton University decided to move its campus out of New Jersey, what would be a primary consideration in choosing a new location?", "answer": " A primary consideration would likely include access to academic resources, geographical desirability for students and faculty, and the potential for fostering an academic community.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Princeton University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Princeton University"}, {"qid": 994, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would happen if Princeton University significantly expanded its campus size?", "answer": " Expanding its campus size could allow for more academic facilities, student housing, and research centers, potentially enabling growth in student population and program offerings.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Princeton University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Princeton University"}, {"qid": 995, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between Princeton University and the American Revolution?", "answer": " Princeton is one of the nine colonial colleges chartered before the American Revolution, making it an institution with historical significance to the United States' early history.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Princeton University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Princeton University"}, {"qid": 996, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does Princeton University's year of becoming a university compare to when it was founded?", "answer": " Princeton was founded in 1746 and officially became a university in 1896, marking a span of 150 years from its founding to when it achieved university status.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Princeton University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Princeton University"}, {"qid": 997, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between Yale University and the Ivy League?", "answer": " Yale University is a member of the Ivy League, which is a group of eight prestigious institutions of higher education in the northeastern United States.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Yale University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Yale University"}, {"qid": 998, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest institution of higher education in the United States?", "answer": " Harvard University is the oldest, founded in 1636, making Yale the third-oldest.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Yale University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Yale University"}, {"qid": 999, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does Yale University compare to Harvard University in terms of age?", "answer": " Yale University, founded in 1701, is younger than Harvard University, which was founded in 1636.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Yale University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Yale University"}, {"qid": 1000, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What role did Yale University play in the American Revolution?", "answer": " Yale University, as one of the nine colonial colleges chartered before the American Revolution, played a significant role in educating leaders and contributing to the intellectual and political life of the emerging nation.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Yale University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Yale University"}, {"qid": 1001, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What might happen to Yale University's rankings if its endowment significantly decreased?", "answer": " A significant decrease in Yale University's endowment might affect its ability to fund research, scholarships, and facilities, potentially impacting its rankings among global universities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Yale University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Yale University"}, {"qid": 1002, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which Ivy League university is located the furthest south?", "answer": " The University of Pennsylvania, located in Philadelphia, Pennsylvania, is the southernmost Ivy League university.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Yale University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Yale University"}, {"qid": 1003, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to other Ivy League universities, where does Yale rank in terms of its founding year?", "answer": " Yale is the third-oldest Ivy League university, with only Harvard (founded in 1636) and The College of William & Mary (founded in 1693, though it is not an Ivy League school) being older.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Yale University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Yale University"}, {"qid": 1004, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How is New Haven, Connecticut, significant to Yale University?", "answer": " New Haven, Connecticut, is significant as the location of Yale University, contributing to the city's cultural and economic life since its founding in 1701.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Yale University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Yale University"}, {"qid": 1005, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What if Yale University decided to move its campus to another state?", "answer": " If Yale University decided to move its campus to another state, it would likely face significant logistical, financial, and cultural challenges, and possibly impact its historical identity and relationships within Connecticut and the broader academic community.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Yale University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Yale University"}, {"qid": 1006, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the highest-ranking Ivy League university in global university rankings?", "answer": " As of my last knowledge update, Harvard University often ranks as the highest among Ivy League institutions in global university rankings, but this can vary by ranking system and year.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Yale University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Yale University"}, {"qid": 1007, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the number of staff at Yale University compare to that of Princeton University?", "answer": " As specific numbers can vary year by year, generally speaking, Yale University, due to its larger size and broader array of professional schools, might have more staff compared to Princeton University, which is known for its more focused undergraduate and graduate programs.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Yale University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Yale University"}, {"qid": 1008, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "In what way does Yale University's founding in 1701 contribute to its prestige?", "answer": " Yale University's founding in 1701 contributes to its prestige by establishing it as one of the earliest institutions of higher education in the United States, reflecting a long history of academic excellence and influence in both national and international spheres.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Yale University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Yale University"}, {"qid": 1009, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of Brown University compare to Harvard University?", "answer": " Brown University was founded in 1764, making it younger than Harvard University, which was founded in 1636.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brown University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Brown University"}, {"qid": 1010, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest Ivy League university?", "answer": " Harvard University is the oldest Ivy League university, founded in 1636, making Brown University, founded in 1764, not the oldest.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brown University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Brown University"}, {"qid": 1011, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Why was Brown University originally named the College in the English Colony of Rhode Island and Providence Plantations?", "answer": " Brown University was originally named the College in the English Colony of Rhode Island and Providence Plantations due to its location and founding purpose to serve the English Colony of Rhode Island and Providence Plantations.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brown University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Brown University"}, {"qid": 1012, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Brown University decided to move its campus, which city would become its new location?", "answer": " There is no predetermined answer as this is a hypothetical scenario without a specific decision made.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brown University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Brown University"}, {"qid": 1013, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Which has a longer history, Brown University or the University of Pennsylvania?", "answer": " The University of Pennsylvania, founded in 1740, has a slightly longer history than Brown University, which was founded in 1764.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brown University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Brown University"}, {"qid": 1014, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "Among Ivy League universities, which one was the first to accept students regardless of religious affiliation?", "answer": " Brown University was the first Ivy League university to accept students regardless of religious affiliation.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brown University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Brown University"}, {"qid": 1015, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does Brown University's policy on student admission regarding religious affiliation relate to its founding principles?", "answer": " Brown University's policy on student admission regardless of religious affiliation directly relates to its founding principles of liberty and equality, emphasizing education accessibility.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brown University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Brown University"}, {"qid": 1016, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Brown University had not been founded in 1764, how might the landscape of Ivy League universities be different today?", "answer": " Without Brown University's early commitment to accepting students regardless of religious affiliation, the Ivy League might have been slower to adopt inclusive admission policies, potentially altering the diversity and openness of these institutions today.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brown University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Brown University"}, {"qid": 1017, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the student body size of Brown University compare to that of Yale University?", "answer": " As of the latest data, Yale University typically has a larger total student body size than Brown University.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brown University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Brown University"}, {"qid": 1018, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which department at Brown University has the highest number of faculty members?", "answer": " This requires current and specific departmental data from Brown University, which can vary over time.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brown University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Brown University"}, {"qid": 1019, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What impact did Brown University's founding have on higher education in America?", "answer": " Brown University's founding, especially as the first U.S. college to admit students regardless of religious affiliation, set a precedent for more inclusive higher education policies in America.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brown University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Brown University"}, {"qid": 1020, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Brown University were to open a new campus abroad, which country would be chosen based on its historical academic partnerships?", "answer": " This is speculative and would depend on Brown University's strategic international relations and academic partnerships at the time of decision.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brown University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Brown University"}, {"qid": 1021, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest part of Cornell University?", "answer": " The Arts Quad, as it contains some of the university's oldest buildings.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cornell University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Cornell University"}, {"qid": 1022, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "Who was the first president of Cornell University?", "answer": " Andrew Dickson White.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cornell University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Cornell University"}, {"qid": 1023, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the student body of Cornell University reflect its nonsectarian principle?", "answer": " By including students from all 50 U.S. states and 130 countries, demonstrating diversity and openness to all, regardless of religious background.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cornell University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Cornell University"}, {"qid": 1024, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What relationship does Ezra Cornell have to the founding of Cornell University?", "answer": " Ezra Cornell is a co-founder of the university, providing significant financial and ideological contributions to its establishment in 1865.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cornell University"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "Cornell University"}, {"qid": 1025, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Cornell University decided to open a new campus, how might its founding principles influence the location choice?", "answer": " The founding principles of being co-educational, nonsectarian, and land-grant might influence the choice to select a location that supports educational access, diversity, and practical learning opportunities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cornell University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Cornell University"}, {"qid": 1026, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What might have happened if Cornell University had not adopted a co-educational policy from its inception?", "answer": " It may have limited its early growth and diversity, potentially affecting its reputation and the breadth of its student body.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cornell University"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "Cornell University"}, {"qid": 1027, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the student diversity at Cornell University compare to that of other Ivy League institutions?", "answer": " It is high, reflecting its nonsectarian principle and commitment to inclusivity, often comparable or superior to other Ivies in terms of geographic and international representation.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cornell University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Cornell University"}, {"qid": 1028, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "In terms of founding years, how does Cornell University compare to other Ivy League universities?", "answer": " Cornell University, founded in 1865, is one of the younger Ivy League universities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cornell University"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "Cornell University"}, {"qid": 1029, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most distinctive feature of Cornell University's campus?", "answer": " Its location in Ithaca, New York, offering a unique blend of natural beauty and architectural elegance.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cornell University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Cornell University"}, {"qid": 1030, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What role did Andrew Dickson White play in the founding of Cornell University?", "answer": " Alongside Ezra Cornell, Andrew Dickson White was a co-founder who contributed to the university's vision, establishment, and early development.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cornell University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Cornell University"}, {"qid": 1031, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Cornell University had not been founded as a land-grant institution, how might its academic programs have been different today?", "answer": " It might have had a reduced focus on agricultural, engineering, and extension education, affecting its breadth of academic offerings and research initiatives.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cornell University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Cornell University"}, {"qid": 1032, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to when it was founded, how has the number of staff and faculty at Cornell University changed?", "answer": " The number has significantly increased to accommodate the growth in student population and the expansion of academic programs and research activities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cornell University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Cornell University"}, {"qid": 1033, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the founding year of Dartmouth College, and who was its founder?", "answer": " Dartmouth College was founded in 1769 by Eleazar Wheelock.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Dartmouth College"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Dartmouth College"}, {"qid": 1034, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which Ivy League university is located in Hanover, New Hampshire?", "answer": " Dartmouth College is the Ivy League university located in Hanover, New Hampshire.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Dartmouth College"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Dartmouth College"}, {"qid": 1035, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of Dartmouth College compare to the founding years of other Ivy League colleges?", "answer": " Dartmouth College, founded in 1769, is one of the nine colonial colleges chartered before the American Revolution, making it older than some Ivy League colleges but younger than others like Harvard and Yale.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Dartmouth College"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Dartmouth College"}, {"qid": 1036, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is Dartmouth College's rank among the most prestigious undergraduate colleges in the United States?", "answer": " Dartmouth College is considered among the most prestigious undergraduate colleges in the United States, but the exact rank can vary depending on the criteria and source of the ranking.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Dartmouth College"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Dartmouth College"}, {"qid": 1037, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What type of institution is Dartmouth College, and where is it located?", "answer": " Dartmouth College is a private Ivy League research university located in Hanover, New Hampshire.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Dartmouth College"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Dartmouth College"}, {"qid": 1038, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Dartmouth College decided to open a new campus, what would be the first step based on its historical founding process?", "answer": " The first step would likely involve securing a charter and funding, similar to how Eleazar Wheelock obtained a royal charter and funding for Dartmouth College in 1769.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Dartmouth College"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Dartmouth College"}, {"qid": 1039, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "What makes Dartmouth College unique among the Ivy League universities in terms of its founding purpose?", "answer": " Dartmouth College is unique among the Ivy League for being founded primarily to educate Native Americans, as well as English youth, according to its original charter by Eleazar Wheelock.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Dartmouth College"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Dartmouth College"}, {"qid": 1040, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to other Ivy League universities, how does Dartmouth College's location influence its campus culture?", "answer": " Dartmouth College's location in Hanover, New Hampshire, surrounded by a rural setting, contributes to a close-knit campus culture and a strong sense of community, distinguishing it from its urban Ivy League counterparts.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Dartmouth College"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Dartmouth College"}, {"qid": 1041, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Dartmouth College were to double its staff number, how might this affect its student-to-faculty ratio?", "answer": " Doubling its staff number could significantly lower the student-to-faculty ratio, leading to smaller class sizes and potentially more personalized attention for each student.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Dartmouth College"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Dartmouth College"}, {"qid": 1042, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is Dartmouth College's historical significance among colleges in the United States?", "answer": " Dartmouth College's historical significance lies in being one of the nine colonial colleges chartered before the American Revolution, making it a foundational institution in American higher education.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Dartmouth College"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Dartmouth College"}, {"qid": 1043, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What was the primary mission of Dartmouth College at its founding, and how has it evolved?", "answer": " The primary mission of Dartmouth College at its founding was to educate Native Americans and English youth, but it has evolved into a comprehensive research university offering a wide array of undergraduate and graduate programs.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Dartmouth College"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Dartmouth College"}, {"qid": 1044, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does Dartmouth College's focus on undergraduate education compare to other Ivy League schools?", "answer": " Dartmouth College is often noted for its strong emphasis on undergraduate education, offering a more personalized and intimate academic experience compared to some of the larger Ivy League universities that may have a greater focus on graduate and professional education.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Dartmouth College"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Dartmouth College"}, {"qid": 1045, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of the University of Pennsylvania compare to that of Harvard University?", "answer": " The University of Pennsylvania was founded in 1740, making it younger than Harvard University, which was founded in 1636.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pennsylvania"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Pennsylvania"}, {"qid": 1046, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest Ivy League university in the United States?", "answer": " Harvard University is the oldest Ivy League university in the United States, founded in 1636.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pennsylvania"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Pennsylvania"}, {"qid": 1047, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Who was the founder and first president of the University of Pennsylvania?", "answer": " Benjamin Franklin was the founder and first president of the University of Pennsylvania.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pennsylvania"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Pennsylvania"}, {"qid": 1048, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Pennsylvania decided to open a new campus in another country, which department would likely oversee this expansion?", "answer": " The International Affairs or Global Initiatives department would likely oversee this expansion.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pennsylvania"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Pennsylvania"}, {"qid": 1049, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to the University of Pennsylvania, which Ivy League university has a larger student body?", "answer": " Columbia University has a larger student body compared to the University of Pennsylvania.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pennsylvania"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Pennsylvania"}, {"qid": 1050, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which department at the University of Pennsylvania has the highest number of faculty members?", "answer": " The School of Arts and Sciences has the highest number of faculty members at the University of Pennsylvania.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pennsylvania"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Pennsylvania"}, {"qid": 1051, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the University of Pennsylvania's approach to interdisciplinary studies compare to its founding principles?", "answer": " The University of Pennsylvania's approach to interdisciplinary studies aligns with its founding principles by Benjamin Franklin to offer an education that trains leaders in various fields, reflecting a broad, interdisciplinary approach.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pennsylvania"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Pennsylvania"}, {"qid": 1052, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Pennsylvania were to double its research budget, which area might see the most significant development?", "answer": " Medical research and technology might see the most significant development if the University of Pennsylvania were to double its research budget.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pennsylvania"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Pennsylvania"}, {"qid": 1053, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the location of the University of Pennsylvania compare to Princeton University in terms of urbanization?", "answer": " The University of Pennsylvania is located in Philadelphia, a major city, making it more urbanized than Princeton University, which is located in the town of Princeton, New Jersey.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pennsylvania"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Pennsylvania"}, {"qid": 1054, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most popular undergraduate program at the University of Pennsylvania?", "answer": " The Wharton School's undergraduate business program is the most popular at the University of Pennsylvania.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pennsylvania"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Pennsylvania"}, {"qid": 1055, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What impact did Benjamin Franklin's role as founder have on the University of Pennsylvania's curriculum?", "answer": " Benjamin Franklin's role as founder impacted the University of Pennsylvania's curriculum by emphasizing practical education for commerce and public service, alongside traditional academia.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pennsylvania"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Pennsylvania"}, {"qid": 1056, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Pennsylvania were to establish a new research institute focused on climate change, which existing department would likely collaborate closely with it?", "answer": " The Department of Earth and Environmental Science would likely collaborate closely with a new research institute focused on climate change at the University of Pennsylvania.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pennsylvania"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Pennsylvania"}, {"qid": 1057, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest university in the English-speaking world?", "answer": " The University of Oxford", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Oxford"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Oxford"}, {"qid": 1058, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How did the University of Oxford contribute to the founding of the University of Cambridge?", "answer": " After disputes between students and Oxford townsfolk, some Oxford academics fled northeast to Cambridge, where they established the University of Cambridge in 1209.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Oxford"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Oxford"}, {"qid": 1059, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which university is the world's second-oldest university in continuous operation?", "answer": " The University of Oxford", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Oxford"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Oxford"}, {"qid": 1060, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Between the University of Oxford and the University of Cambridge, which one was established first?", "answer": " The University of Oxford", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Oxford"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Oxford"}, {"qid": 1061, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What action by Henry II significantly contributed to the growth of the University of Oxford?", "answer": " Henry II banned English students from attending the University of Paris, which contributed to the growth of the University of Oxford.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Oxford"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Oxford"}, {"qid": 1062, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Oxford had not been established in 1096, how might the landscape of English-speaking universities be different today?", "answer": " Without the University of Oxford, the English-speaking world might lack one of its most prestigious educational institutions, potentially altering the development of higher education and intellectual pursuits in the English-speaking world.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Oxford"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Oxford"}, {"qid": 1063, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the second-oldest university in the world that has remained in continuous operation?", "answer": " The University of Oxford", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Oxford"], "topic_level": false, "class": "sing entity", "hops": "No hop", "entity": "University of Oxford"}, {"qid": 1064, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What event caused some academics from the University of Oxford to establish the University of Cambridge?", "answer": " Disputes between students and Oxford townsfolk led some academics to flee to Cambridge and establish the University of Cambridge.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Oxford"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Oxford"}, {"qid": 1065, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Which is older, the University of Oxford or the University of Cambridge?", "answer": " The University of Oxford", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Oxford"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Oxford"}, {"qid": 1066, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest university in continuous operation in the world?", "answer": " The University of Oxford is the second-oldest; the oldest is the University of Bologna.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Oxford"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Oxford"}, {"qid": 1067, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How did Henry II's ban on English students attending the University of Paris impact the University of Oxford?", "answer": " It led to a rapid growth of the University of Oxford as English students could no longer attend the University of Paris and thus many turned to Oxford for their education.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Oxford"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Oxford"}, {"qid": 1068, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Oxford had not experienced rapid growth after 1167, what might have been the impact on its status as a leading university?", "answer": " It might not have attained its prestigious status as a leading and oldest English-speaking university, potentially altering the landscape of global higher education.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Oxford"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Oxford"}, {"qid": 1069, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Which university was founded first, the University of Cambridge or the University of Oxford?", "answer": " The University of Oxford was founded first.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Cambridge vs University of Oxford"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Cambridge vs University of Oxford"}, {"qid": 1070, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest university in continuous operation in the world?", "answer": " The University of Bologna is the oldest, making the University of Cambridge the world's third-oldest university in continuous operation.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Cambridge"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Cambridge"}, {"qid": 1071, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Why was the University of Cambridge founded?", "answer": " The University of Cambridge was founded following the arrival of scholars who left the University of Oxford for Cambridge after a dispute with local townspeople.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Cambridge"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Cambridge"}, {"qid": 1072, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Cambridge had not been founded following a dispute at Oxford, where might English scholars have congregated instead?", "answer": " It's hypothetical, but they might have congregated at another existing center of learning or founded a new university in a different location.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Cambridge"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Cambridge"}, {"qid": 1073, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "In terms of age, how does the University of Cambridge compare to the University of Oxford?", "answer": " The University of Cambridge is younger than the University of Oxford.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Cambridge vs University of Oxford"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Cambridge vs University of Oxford"}, {"qid": 1074, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the rank of the University of Cambridge among the world's oldest universities in continuous operation?", "answer": " It is the third-oldest university in continuous operation in the world.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Cambridge"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Cambridge"}, {"qid": 1075, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How did the founding of the University of Cambridge contribute to the Oxbridge term?", "answer": " The founding of the University of Cambridge, following a dispute at Oxford, and its subsequent rivalry and shared characteristics with Oxford, contributed to the creation of the term \"Oxbridge.\"", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Cambridge"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Cambridge"}, {"qid": 1076, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Cambridge had not been founded, how might this have affected the development of higher education in England?", "answer": " Without the University of Cambridge, the landscape of higher education in England might have been less competitive, potentially affecting the development of academic standards and innovations.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Cambridge"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Cambridge"}, {"qid": 1077, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Who has more Nobel laureates affiliated, the University of Cambridge or the University of Oxford?", "answer": " The University of Cambridge has more Nobel laureates affiliated with it than the University of Oxford.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Cambridge vs University of Oxford"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Cambridge vs University of Oxford"}, {"qid": 1078, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which college within the University of Cambridge is the oldest?", "answer": " Peterhouse is the oldest college of the University of Cambridge.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Cambridge"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Cambridge"}, {"qid": 1079, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What was the cause of the scholars' departure from the University of Oxford that led to the founding of the University of Cambridge?", "answer": " The scholars left the University of Oxford due to a dispute with local townspeople.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Cambridge"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Cambridge"}, {"qid": 1080, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If a new university were to be founded today with the aim of rivaling the University of Cambridge, what factors would it need to consider to achieve this?", "answer": " It would need to consider factors such as the quality of faculty, research capabilities, funding, establishment of a comprehensive curriculum, and development of a prestigious reputation.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Cambridge"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Cambridge"}, {"qid": 1081, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between the University of Southampton and the Russell Group?", "answer": " The University of Southampton is a founding member of the Russell Group of research-intensive universities in the United Kingdom.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Southampton"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Southampton"}, {"qid": 1082, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "When was the University of Southampton established, and how does this compare to the founding years of other Russell Group universities?", "answer": " The University of Southampton was established in 1952, making it one of the younger members of the Russell Group when compared to some other universities like the University of Oxford or the University of Cambridge, which were founded centuries earlier.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Southampton"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Southampton"}, {"qid": 1083, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the staff number at the University of Southampton compare to that of other Russell Group universities?", "answer": " The staff number at the University of Southampton is significant, but it may vary when compared to other Russell Group universities, with some having more staff and others having fewer, depending on their size and scope of operations.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Southampton"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Southampton"}, {"qid": 1084, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What role does the president of the University of Southampton play in its administration?", "answer": " The president of the University of Southampton plays a crucial role in its administration, overseeing the strategic direction, academic integrity, and overall operation of the university.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Southampton"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Southampton"}, {"qid": 1085, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which location of the University of Southampton is the most prominent?", "answer": " The Highfield Campus is the most prominent location of the University of Southampton, serving as the main administrative and academic hub.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Southampton"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Southampton"}, {"qid": 1086, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the University of Southampton's founding year compare to the establishment years of other public research universities in England?", "answer": " The University of Southampton was founded in 1952, making it relatively younger than some of the older public research universities in England, such as the University of Oxford or the University of Cambridge, but older than some of the newer institutions established in the late 20th century.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Southampton"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Southampton"}, {"qid": 1087, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Southampton decided to increase its staff number by 10% next year, how would this affect its standing among the Russell Group universities in terms of staff size?", "answer": " If the University of Southampton increased its staff number by 10% next year, it could potentially rise in the rankings in terms of staff size among the Russell Group universities, depending on the current staff numbers and percentage growth of other member universities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Southampton"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Southampton"}, {"qid": 1088, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest part of the University of Southampton?", "answer": " The oldest part of the University of Southampton is the Highfield Campus, which has been the core of the university since its inception as a university college in the early 20th century, before gaining full university status in 1952.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Southampton"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Southampton"}, {"qid": 1089, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to other Russell Group universities, where does the University of Southampton rank in terms of research output?", "answer": " The University of Southampton is highly regarded for its research output, often ranking among the top Russell Group universities in various fields of study, although specific rankings can fluctuate annually.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Southampton"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Southampton"}, {"qid": 1090, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the University of Southampton contribute to the local economy of Southampton?", "answer": " The University of Southampton contributes significantly to the local economy of Southampton through employment, student spending, research initiatives, and collaborations with local businesses and industries.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Southampton"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Southampton"}, {"qid": 1091, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Southampton were to open a new campus abroad, how would this impact its global presence compared to other Russell Group universities?", "answer": " Opening a new campus abroad would significantly enhance the University of Southampton's global presence, potentially making it more competitive with other Russell Group universities that already have a strong international footprint through overseas campuses or partnerships.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Southampton"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Southampton"}, {"qid": 1092, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most notable achievement of the University of Southampton in the field of research?", "answer": " One of the most notable achievements of the University of Southampton in the field of research is its pioneering work in optical fiber technology, which has had a significant global impact on telecommunications and information technology.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Southampton"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Southampton"}, {"qid": 1093, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What role did the University of Edinburgh play in Edinburgh's nickname \"Athens of the North\"?", "answer": " The University of Edinburgh played a crucial role in Edinburgh becoming a leading intellectual center during the Scottish Enlightenment, contributing to the city being nicknamed the \"Athens of the North\".", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Edinburgh"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Edinburgh"}, {"qid": 1094, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How did the University of Edinburgh come into existence?", "answer": " The University of Edinburgh was founded by the town council under the authority of a royal charter from King James VI in 1582 and officially opened in 1583.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Edinburgh"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Edinburgh"}, {"qid": 1095, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the University of Edinburgh's rank in terms of age among universities in the English-speaking world?", "answer": " The University of Edinburgh is the sixth-oldest university in continuous operation in the English-speaking world.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Edinburgh"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Edinburgh"}, {"qid": 1096, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the University of Edinburgh compare to other Scottish universities in terms of its founding year?", "answer": " As one of Scotland's four ancient universities, founded in 1582, the University of Edinburgh is among the oldest, with its founding year making it older than most but younger than the University of St Andrews.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Edinburgh"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Edinburgh"}, {"qid": 1097, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "What makes the University of Edinburgh unique in the context of the Scottish Enlightenment?", "answer": " The University of Edinburgh's significant contribution to the intellectual movement of the Scottish Enlightenment makes it uniquely influential in shaping Edinburgh as a leading intellectual center during that period.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Edinburgh"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Edinburgh"}, {"qid": 1098, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What authority was the University of Edinburgh founded under?", "answer": " The University of Edinburgh was founded under the authority of a royal charter from King James VI.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Edinburgh"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Edinburgh"}, {"qid": 1099, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Edinburgh had not contributed to the Scottish Enlightenment, how might Edinburgh's intellectual reputation be different today?", "answer": " Without the University of Edinburgh's contributions, Edinburgh might not have earned the nickname \"Athens of the North\" or become a leading intellectual center during the Scottish Enlightenment, potentially diminishing its historical and contemporary intellectual reputation.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Edinburgh"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Edinburgh"}, {"qid": 1100, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the historical significance of the University of Edinburgh's founding in the context of Scottish higher education?", "answer": " The University of Edinburgh's founding in 1582 underlines its historical significance as one of Scotland's four ancient universities, highlighting its longstanding contribution to Scottish higher education.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Edinburgh"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Edinburgh"}, {"qid": 1101, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to modern universities, how does the University of Edinburgh's age influence its prestige?", "answer": " The University of Edinburgh's age, being the sixth-oldest in continuous operation in the English-speaking world, contributes significantly to its prestige by indicating a long history of academic excellence and tradition compared to modern universities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Edinburgh"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Edinburgh"}, {"qid": 1102, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the global significance of the University of Edinburgh's establishment in 1582?", "answer": " The establishment of the University of Edinburgh in 1582 signifies its importance as the sixth-oldest university in continuous operation in the English-speaking world, marking it as a site of historical and educational significance on a global scale.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Edinburgh"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Edinburgh"}, {"qid": 1103, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How did the founding of the University of Edinburgh contribute to its mission and identity?", "answer": " The founding of the University of Edinburgh, under a royal charter and as part of Scotland's ancient universities, shaped its mission and identity by rooting it in a tradition of excellence, innovation, and contribution to the Scottish Enlightenment, thereby influencing its role in academia and society.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Edinburgh"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Edinburgh"}, {"qid": 1104, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Edinburgh were not located in Edinburgh, how might its impact on the Scottish Enlightenment be different?", "answer": " If the University of Edinburgh were not located in Edinburgh, its impact on the Scottish Enlightenment might have been significantly reduced, as its central location in the capital allowed it to be a key intellectual hub, attracting thinkers and contributing to the city's reputation as the \"Athens of the North\".", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Edinburgh"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Edinburgh"}, {"qid": 1105, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between the London School of Economics and the University of London?", "answer": " The London School of Economics is a member institution of the University of London.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["London School of Economics"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "London School of Economics"}, {"qid": 1106, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "Who were among the earliest founders of the London School of Economics?", "answer": " Sidney Webb, Beatrice Webb, Graham Wallas, and George Bernard Shaw were among the earliest founders.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["London School of Economics"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "London School of Economics"}, {"qid": 1107, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How did the London School of Economics' degree awarding status change over time?", "answer": " LSE began awarding its degrees in its own name in 2008, prior to which it awarded degrees of the University of London, and it became a university in its own right within the University of London in 2022.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["London School of Economics"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "London School of Economics"}, {"qid": 1108, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the foundation year of the London School of Economics compare to its joining year to the University of London?", "answer": " The London School of Economics was founded in 1895 and joined the University of London in 1900.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["London School of Economics"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "London School of Economics"}, {"qid": 1109, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the specialization of the London School of Economics within the academic disciplines?", "answer": " The London School of Economics specializes in the social sciences.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["London School of Economics"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "London School of Economics"}, {"qid": 1110, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "Who among the founders of the London School of Economics was also a famous playwright?", "answer": " George Bernard Shaw was a famous playwright among the founders.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["London School of Economics"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "London School of Economics"}, {"qid": 1111, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the London School of Economics had not joined the University of London in 1900, how might its degree awarding status have been affected?", "answer": " If LSE had not joined the University of London in 1900, it might have started awarding its own degrees earlier than 2008 or might have operated under different academic regulations.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["London School of Economics"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "London School of Economics"}, {"qid": 1112, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would have been the impact on the London School of Economics if it had not specialized in social sciences?", "answer": " If LSE had not specialized in social sciences, it might have developed a different academic reputation and possibly attracted a different student and faculty demographic.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["London School of Economics"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "London School of Economics"}, {"qid": 1113, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What led to the London School of Economics being recognized as a university in its own right within the University of London in 2022?", "answer": " The London School of Economics was recognized as a university in its own right within the University of London in 2022 due to its long-standing contribution to the academic community and its ability to award its own degrees since 2008.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["London School of Economics"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "London School of Economics"}, {"qid": 1114, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most notable aspect of the London School of Economics' academic offerings?", "answer": " The most notable aspect of LSE's academic offerings is its specialization in the social sciences.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["London School of Economics"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "London School of Economics"}, {"qid": 1115, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of the London School of Economics compare to the year it began awarding its own degrees?", "answer": " The London School of Economics was founded in 1895 and began awarding its own degrees in 2008.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["London School of Economics"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "London School of Economics"}, {"qid": 1116, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the founders of the London School of Economics had decided against specializing in the social sciences, what might have been their alternative focus?", "answer": " If the founders had decided against specializing in the social sciences, they might have focused on other academic disciplines such as the natural sciences, humanities, or law.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["London School of Economics"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "London School of Economics"}, {"qid": 1117, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What vision did Prince Albert have that led to the creation of Imperial College London?", "answer": " Prince Albert envisioned a cultural area in South Kensington including museums, colleges, and the Royal Albert Hall, which led to the creation of Imperial College London.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Imperial College London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Imperial College London"}, {"qid": 1118, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How did the formation of Imperial College London in 1907 come about?", "answer": " The formation came about through the merger of the Royal College of Science, the Royal School of Mines, and the City and Guilds of London Institute.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Imperial College London"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Imperial College London"}, {"qid": 1119, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "What significant event marked the year 2004 for Imperial College London?", "answer": " The significant event was the opening of the Imperial College Business School by Queen Elizabeth II.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Imperial College London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Imperial College London"}, {"qid": 1120, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Who was responsible for the vision behind the creation of the cultural area that includes Imperial College London?", "answer": " Prince Albert was responsible for the vision behind the creation.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Imperial College London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Imperial College London"}, {"qid": 1121, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the formation of Imperial College London compare to the establishment of its constituent colleges?", "answer": " Imperial College London was formed through the merger of its constituent colleges - the Royal College of Science, the Royal School of Mines, and the City and Guilds of London Institute, marking a unification of specialized institutions into a single entity.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Imperial College London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Imperial College London"}, {"qid": 1122, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What might have happened if the Royal College of Science, the Royal School of Mines, and the City and Guilds of London Institute had not merged in 1907?", "answer": " If the merger had not happened, Imperial College London might not have been formed, potentially resulting in the continuation of the colleges as separate entities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Imperial College London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Imperial College London"}, {"qid": 1123, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which merger led to the formation of the Imperial College School of Medicine?", "answer": " The merger with St Mary's Hospital Medical School in 1988 led to the formation of the Imperial College School of Medicine.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Imperial College London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Imperial College London"}, {"qid": 1124, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What was Queen Elizabeth II's role in the history of Imperial College London in 2004?", "answer": " Queen Elizabeth II opened the Imperial College Business School in 2004.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Imperial College London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Imperial College London"}, {"qid": 1125, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Imperial College London had not been established in 1907, how might the landscape of higher education in London look today?", "answer": " Without Imperial College London, the landscape of higher education in London might have been less focused on science and technology, possibly affecting London's role as a global leader in these fields.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Imperial College London"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Imperial College London"}, {"qid": 1126, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the opening of the Imperial College Business School in 2004 compare with the establishment of the Imperial College School of Medicine in 1988?", "answer": " The opening of the Business School marked the expansion of Imperial College into business education, following its earlier expansion into medicine with the establishment of the School of Medicine in 1988, showing a broadening of its academic offerings.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Imperial College London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Imperial College London"}, {"qid": 1127, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "What was the historical significance of the merger in 1907 for Imperial College London?", "answer": " The merger in 1907 was historically significant as it marked the official formation of Imperial College London, uniting several prestigious institutions into a single comprehensive university.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Imperial College London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Imperial College London"}, {"qid": 1128, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would have been the impact on medical education if the Imperial College School of Medicine had not merged with St Mary's Hospital Medical School in 1988?", "answer": " The impact would likely have been a fragmentation in medical education and research capabilities, potentially limiting the development of integrated, multidisciplinary approaches to medical science and education at Imperial College.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Imperial College London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Imperial College London"}, {"qid": 1129, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which is the oldest university in the English-speaking world?", "answer": " The University of Oxford", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Glasgow"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Glasgow"}, {"qid": 1130, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Is the University of Glasgow older than the University of Edinburgh?", "answer": " Yes", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Glasgow"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Glasgow"}, {"qid": 1131, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which university has the largest enrolment in Scotland?", "answer": " The University of Glasgow", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Glasgow"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Glasgow"}, {"qid": 1132, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What distinguishes the University of Glasgow from other universities in terms of its founding date?", "answer": " It was founded by papal bull in 1451, making it the fourth-oldest university in the English-speaking world.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Glasgow"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Glasgow"}, {"qid": 1133, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Glasgow were to merge with another ancient Scottish university, which one would it be based on the founding dates?", "answer": " The University of St Andrews, as it is the oldest.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Glasgow"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Glasgow"}, {"qid": 1134, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the rank of the University of Glasgow among the universities in the English-speaking world based on its age?", "answer": " Fourth-oldest", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Glasgow"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Glasgow"}, {"qid": 1135, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the University of Glasgow's role in the Scottish Enlightenment compare with its overall historical significance?", "answer": " The University of Glasgow's participation in the Scottish Enlightenment underscores its historical significance as a center of academic and intellectual development, in addition to its foundational role as one of Scotland's four ancient universities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Glasgow"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "University of Glasgow"}, {"qid": 1136, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to the University of Aberdeen, which university has a larger postgraduate enrolment?", "answer": " The University of Glasgow", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Glasgow"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Glasgow"}, {"qid": 1137, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Glasgow decided to increase its staff number, how would this potentially affect its ranking among UK universities by staff size?", "answer": " Increasing its staff number could elevate its ranking among UK universities by staff size, depending on the scale of the increase and the current staff sizes of other universities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Glasgow"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Glasgow"}, {"qid": 1138, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which of Scotland's four ancient universities was founded first?", "answer": " The University of St Andrews", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Glasgow"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Glasgow"}, {"qid": 1139, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the significance of the University of Glasgow being founded by a papal bull?", "answer": " Being founded by a papal bull signifies the University of Glasgow's historical religious endorsement and authority, establishing it as a legitimate institution of higher learning in the medieval period.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Glasgow"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Glasgow"}, {"qid": 1140, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Glasgow were to open a new campus, how might its location impact its historical identity as part of the Scottish Enlightenment?", "answer": " Opening a new campus could modernize the University's image and expand its global presence, but careful integration of its historical identity related to the Scottish Enlightenment would be necessary to maintain its distinguished heritage.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Glasgow"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Glasgow"}, {"qid": 1141, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the enrolment number of University College London compare to the enrolment number of Oxford University?", "answer": " University College London has the second-largest university enrolment in the United Kingdom, suggesting it has a higher enrolment number than Oxford University if Oxford is not the largest.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University College London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University College London"}, {"qid": 1142, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest university in London?", "answer": " University College London is not the oldest; the University of London, which UCL is a part of, was founded in 1836, but UCL itself was founded in 1826, making it one of the oldest but not the oldest, as institutions like King's College London were founded in 1829.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University College London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University College London"}, {"qid": 1143, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between University College London and the University of London?", "answer": " University College London is a member institution of the federal University of London.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University College London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University College London"}, {"qid": 1144, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would happen if University College London decided to leave the University of London federation?", "answer": " If University College London decided to leave the University of London federation, it would become an independent university, no longer formally affiliated with the University of London's federal system.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University College London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University College London"}, {"qid": 1145, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which university in the United Kingdom has the largest postgraduate enrolment?", "answer": " University College London has the largest postgraduate enrolment in the United Kingdom.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University College London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University College London"}, {"qid": 1146, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the staff number at University College London compare to that of Imperial College London?", "answer": " Both University College London and Imperial College London have large staff numbers due to their size and research intensity, but specific numbers are needed for a direct comparison; however, UCL is among the largest in terms of enrolment, which may correlate to having a large staff.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University College London"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University College London"}, {"qid": 1147, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What role does University College London play in the University of London?", "answer": " University College London serves as a member institution within the federal structure of the University of London, contributing to its academic, research, and cultural endeavors.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University College London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University College London"}, {"qid": 1148, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If University College London were to merge with King's College London, what would be the impact on their combined enrolment numbers?", "answer": " If University College London were to merge with King's College London, their combined enrolment numbers would make the new entity one of the largest in terms of total student population in the United Kingdom, potentially the largest.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University College London"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University College London"}, {"qid": 1149, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the rank of University College London in terms of size within the UK?", "answer": " University College London is the second-largest university in the United Kingdom by total enrolment.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University College London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University College London"}, {"qid": 1150, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the research output of University College London compare to that of Cambridge University?", "answer": " Both University College London and Cambridge University are among the top universities in the UK for research output, with UCL having a large postgraduate enrolment indicative of a strong research focus, but direct comparison requires specific metrics.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University College London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University College London"}, {"qid": 1151, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the location of University College London influence its research partnerships?", "answer": " Being located in London, University College London benefits from proximity to numerous other research institutions, businesses, and cultural organizations, facilitating a wide range of collaborative research partnerships.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University College London"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University College London"}, {"qid": 1152, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would be the consequences for University College London's research funding if the UK government were to significantly reduce university funding?", "answer": " If the UK government were to significantly reduce university funding, University College London would likely face challenges in maintaining its current level of research activity, potentially leading to reductions in research projects, staff, and resources.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University College London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University College London"}, {"qid": 1153, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the start year of Queen Mary University of London compare to the founding year of University College London?", "answer": " Queen Mary University of London was founded later than University College London.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen Mary University of London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Queen Mary University of London"}, {"qid": 1154, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Is the staff number at Queen Mary University of London greater than that at Goldsmiths, University of London?", "answer": " This requires specific data for a direct comparison, which may vary over time.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen Mary University of London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Queen Mary University of London"}, {"qid": 1155, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest college within the University of London system?", "answer": " University College London is the oldest college within the University of London system, not Queen Mary University of London.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen Mary University of London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Queen Mary University of London"}, {"qid": 1156, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which has more staff, Queen Mary University of London or King's College London?", "answer": " This requires specific data for a direct comparison, which may vary over time.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen Mary University of London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Queen Mary University of London"}, {"qid": 1157, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How is Queen Mary University of London affiliated with the University of London?", "answer": " Queen Mary University of London is a member institution of the federal University of London.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen Mary University of London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Queen Mary University of London"}, {"qid": 1158, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What relationship does Queen Mary University of London have with its student population?", "answer": " Queen Mary University of London serves as an educational institution, providing education and support to its student population.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen Mary University of London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Queen Mary University of London"}, {"qid": 1159, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Queen Mary University of London decided to merge with another college within the University of London, how might this affect its staff numbers?", "answer": " A merger could potentially increase the staff numbers, though this would depend on the specifics of the merger agreement.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen Mary University of London"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Queen Mary University of London"}, {"qid": 1160, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would happen if Queen Mary University of London moved its main campus from East London to West London?", "answer": " Moving the main campus could impact the university's local community ties, student and staff commute times, and potentially its identity and culture.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen Mary University of London"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Queen Mary University of London"}, {"qid": 1161, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the role of the president at Queen Mary University of London?", "answer": " The president of Queen Mary University of London oversees the strategic direction and leadership of the university.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen Mary University of London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Queen Mary University of London"}, {"qid": 1162, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which department at Queen Mary University of London has the highest number of research staff?", "answer": " This question requires specific data that may vary over time and by department.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen Mary University of London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Queen Mary University of London"}, {"qid": 1163, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the Queen Mary University of London's Mile End campus size compare to its Whitechapel campus?", "answer": " The Mile End campus is larger and serves as the main campus, while Whitechapel is more specialized, primarily focusing on Medicine and Dentistry.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen Mary University of London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Queen Mary University of London"}, {"qid": 1164, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Queen Mary University of London were to open a new faculty, how would this affect its overall student capacity?", "answer": " Opening a new faculty could increase the university's overall student capacity, depending on the size and scope of the new faculty.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen Mary University of London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Queen Mary University of London"}, {"qid": 1165, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the University of Birmingham's founding year compare to Queen's College, Birmingham?", "answer": " The University of Birmingham was founded in 1900, succeeding Queen's College, Birmingham, which was founded in 1825.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Birmingham"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Birmingham"}, {"qid": 1166, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest entity related to the University of Birmingham?", "answer": " Queen's College, Birmingham, founded in 1825, is the oldest entity related to the University of Birmingham.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Birmingham"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Birmingham"}, {"qid": 1167, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How is the University of Birmingham related to the Russell Group and Universitas 21?", "answer": " The University of Birmingham is a founding member of both the Russell Group of British research universities and the international network of research universities, Universitas 21.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Birmingham"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Birmingham"}, {"qid": 1168, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would be the impact on the University of Birmingham if it were no longer part of the Russell Group?", "answer": " If the University of Birmingham were no longer part of the Russell Group, it might impact its reputation, research funding, and attractiveness to students and faculty who value association with high-performing research universities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Birmingham"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Birmingham"}, {"qid": 1169, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "What was the first 'red brick' university to receive its own royal charter in England?", "answer": " The University of Birmingham was the first English civic or 'red brick' university to receive its own royal charter.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Birmingham"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Birmingham"}, {"qid": 1170, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does Mason Science College contribute to the history of the University of Birmingham?", "answer": " Mason Science College, established in 1875 by Sir Josiah Mason, is one of the predecessor colleges that contributed to the founding of the University of Birmingham when it received its royal charter in 1900.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Birmingham"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Birmingham"}, {"qid": 1171, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of the University of Birmingham compare to other Russell Group universities?", "answer": " The University of Birmingham, founded in 1900, is one of the earlier universities to be established among the Russell Group universities, which includes institutions founded from the 12th to the 21st centuries.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Birmingham"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Birmingham"}, {"qid": 1172, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What if the University of Birmingham had not merged with Queen's College and Mason Science College?", "answer": " If the University of Birmingham had not merged with Queen's College and Mason Science College, it might not have had the initial foundation and resources necessary for its establishment as a major research university.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Birmingham"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Birmingham"}, {"qid": 1173, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which was the first English unitary university to receive a royal charter?", "answer": " The University of Birmingham was the first English unitary university to receive a royal charter.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Birmingham"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Birmingham"}, {"qid": 1174, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What role does the University of Birmingham play in the international network of research universities?", "answer": " The University of Birmingham plays a foundational role as a founding member in the international network of research universities, Universitas 21, contributing to global collaboration and research initiatives.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Birmingham"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Birmingham"}, {"qid": 1175, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compare the University of Birmingham's global research network involvement to that of newer universities.", "answer": " The University of Birmingham, as a founding member of Universitas 21, has a more established and possibly more extensive involvement in global research networks compared to newer universities that may be starting to build their international research connections.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Birmingham"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Birmingham"}, {"qid": 1176, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would happen if the University of Birmingham relocated out of Birmingham?", "answer": " If the University of Birmingham relocated out of Birmingham, it could significantly impact the local economy and the university's identity, potentially affecting student and staff recruitment and the university's ties with local industries and communities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Birmingham"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Birmingham"}, {"qid": 1177, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest cultural asset owned by the University of Manchester?", "answer": " The John Rylands Library", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Manchester"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Manchester"}, {"qid": 1178, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How is the University of Manchester related to the civic university movement?", "answer": " The University of Manchester is considered a red brick university, a product of the civic university movement of the late 19th century.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Manchester"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Manchester"}, {"qid": 1179, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the staff number at the University of Manchester compare to the staff number at the University of Manchester Institute of Science and Technology before the merger?", "answer": " The staff number at the University of Manchester is a combined total of what was previously at the University of Manchester Institute of Science and Technology and the Victoria University of Manchester, thus higher than either of the two predecessor institutions alone.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Manchester"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Manchester"}, {"qid": 1180, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which facility of the University of Manchester is a UNESCO World Heritage Site?", "answer": " Jodrell Bank Observatory", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Manchester"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Manchester"}, {"qid": 1181, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What led to the formation of the current University of Manchester in 2004?", "answer": " The merger of the University of Manchester Institute of Science and Technology (UMIST) and the Victoria University of Manchester led to the formation of the current University of Manchester in 2004.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Manchester"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Manchester"}, {"qid": 1182, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would potentially happen to the cultural assets owned by the University of Manchester if it were to close?", "answer": " If the University of Manchester were to close, its cultural assets might be transferred to other institutions, become independent entities, or be taken under the care of governmental or heritage organizations.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Manchester"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Manchester"}, {"qid": 1183, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the largest cultural asset operated by the University of Manchester?", "answer": " The Manchester Museum", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Manchester"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Manchester"}, {"qid": 1184, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the significance of the John Rylands Library to the University of Manchester?", "answer": " The John Rylands Library is a significant cultural asset owned by the University of Manchester, showcasing historical and literary collections and serving as an example of neo-Gothic architecture.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Manchester"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Manchester"}, {"qid": 1185, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the University of Manchester's main campus location compare to its cultural assets in terms of proximity to Manchester City Centre?", "answer": " The main campus of the University of Manchester is south of Manchester City Centre on Oxford Road, whereas its cultural assets are located both on and off-campus, with some like the John Rylands Library being closer to the city centre than the main campus itself.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Manchester"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Manchester"}, {"qid": 1186, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Manchester were to add another cultural asset, what might be a likely category based on its current holdings?", "answer": " Based on its current holdings, a likely category for a new cultural asset added by the University of Manchester might be a science or art collection, or a historical archive.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Manchester"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Manchester"}, {"qid": 1187, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which part of the University of Manchester's history is the most recent significant change?", "answer": " The most recent significant change in the University of Manchester's history is its formation in 2004 following the merger of UMIST and the Victoria University of Manchester.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Manchester"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Manchester"}, {"qid": 1188, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the University of Manchester’s ownership of Jodrell Bank Observatory enhance its research capabilities?", "answer": " The University of Manchester’s ownership of Jodrell Bank Observatory, a UNESCO World Heritage Site, enhances its research capabilities by providing a world-class facility for radio astronomy, contributing to advancements in space sciences and astrophysics.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Manchester"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Manchester"}, {"qid": 1189, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the number of staff at King's College London compare to that of Queen Mary University of London?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["King's College London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "King's College London"}, {"qid": 1190, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest department at King's College London?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["King's College London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "King's College London"}, {"qid": 1191, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between King's College London and the University of London?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["King's College London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "King's College London"}, {"qid": 1192, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If King's College London were to merge with another university, how would the staff number change?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["King's College London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "King's College London"}, {"qid": 1193, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compare the academic staff size of King's College London with that of Imperial College London.", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["King's College London"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "King's College London"}, {"qid": 1194, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most attended course at King's College London?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["King's College London"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "King's College London"}, {"qid": 1195, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does King's College London's research output compare to that of the London School of Economics?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["King's College London"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "King's College London"}, {"qid": 1196, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would be the impact on King's College London if it became an independent university separate from the University of London?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["King's College London"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "King's College London"}, {"qid": 1197, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the student population size of King's College London compare to that of University College London?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["King's College London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "King's College London"}, {"qid": 1198, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which building at King's College London is the oldest?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["King's College London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "King's College London"}, {"qid": 1199, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the significance of the Strand Campus to King's College London?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["King's College London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "King's College London"}, {"qid": 1200, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If King's College London were to open a new faculty, what area of study would likely benefit the most?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["King's College London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "King's College London"}, {"qid": 1201, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of Durham University compare to that of Oxford and Cambridge?", "answer": " Durham University was founded in 1832, making it the third-oldest university in England after Oxford and Cambridge, which were established before the 13th century.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Durham University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Durham University"}, {"qid": 1202, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest university in England?", "answer": " Oxford University is the oldest university in England.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Durham University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Durham University"}, {"qid": 1203, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Why is Durham University considered a collegiate university?", "answer": " Durham University is considered a collegiate university because its main functions are divided between the academic departments and its 17 colleges, where departments perform research and teaching, and colleges are responsible for domestic arrangements and welfare.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Durham University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Durham University"}, {"qid": 1204, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Durham University were to open a new college, how would it affect the total number of colleges?", "answer": " Opening a new college would increase the total number of colleges from 17 to 18.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Durham University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Durham University"}, {"qid": 1205, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to when Durham University was founded, how many more universities have been established in England by 2023?", "answer": " Since Durham University was the third-oldest university founded in 1832, numerous universities have been established in England by 2023, making it difficult to provide an exact number without specifying a reference list of English universities' founding years.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Durham University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Durham University"}, {"qid": 1206, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "What makes Durham University unique among other universities in England?", "answer": " Durham University is unique among other universities in England for being the third-oldest university and the first recognized university to open in England for more than 600 years after Oxford and Cambridge, emphasizing its collegiate system.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Durham University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Durham University"}, {"qid": 1207, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the role of colleges within Durham University differ from the academic departments?", "answer": " The role of colleges within Durham University focuses on providing for their domestic arrangements and welfare of students, whereas the academic departments are dedicated to performing research and providing teaching.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Durham University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Durham University"}, {"qid": 1208, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Durham University were to merge all its colleges into a single entity, how would this affect its status as a collegiate university?", "answer": " Merging all its colleges into a single entity would eliminate its structure as a collegiate university, as the division of roles and responsibilities between colleges and academic departments is a defining feature of its collegiate system.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Durham University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Durham University"}, {"qid": 1209, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does Durham University's staff number compare to its number of colleges?", "answer": " The staff number of Durham University is significantly higher than its number of colleges, which stands at 17, to support both academic and administrative functions across the entire university and its colleges.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Durham University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Durham University"}, {"qid": 1210, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most distinctive feature of Durham University compared to new universities in England?", "answer": " The most distinctive feature of Durham University compared to new universities in England is its age and status as the third-oldest university in England, founded in 1832, highlighting its long-standing history and tradition.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Durham University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Durham University"}, {"qid": 1211, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What was the significance of Durham University being incorporated by royal charter in 1837?", "answer": " The incorporation of Durham University by royal charter in 1837 signified its official recognition and establishment as a university by the Crown, granting it the powers and status to function as an institution of higher learning.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Durham University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Durham University"}, {"qid": 1212, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Durham University decided to expand its research departments, what impact would it have on its collegiate system?", "answer": " Expanding its research departments could potentially strengthen Durham University's academic offerings and research capabilities without directly impacting the collegiate system, as the colleges primarily focus on domestic arrangements and student welfare.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Durham University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Durham University"}, {"qid": 1213, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of the University of Bristol compare to the year it received its royal charter?", "answer": " The University of Bristol was founded earlier, with roots tracing back to 1595, but it received its royal charter later in 1909.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Bristol"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Bristol"}, {"qid": 1214, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest part of the University of Bristol's history?", "answer": " The oldest part of the University of Bristol's history is its roots tracing back to a Merchant Venturers' school founded in 1595.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Bristol"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Bristol"}, {"qid": 1215, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Why is the University of Bristol considered a red brick university?", "answer": " The University of Bristol is considered a red brick university because it is part of the group of universities that gained university status in the late 19th and early 20th centuries in major industrial cities and were constructed with red brick.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Bristol"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Bristol"}, {"qid": 1216, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Bristol had not received its royal charter in 1909, how might its status and development have differed?", "answer": " Without its royal charter in 1909, the University of Bristol might not have gained the autonomy and recognition necessary for its development as a major research institution, potentially limiting its growth and prestige.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Bristol"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Bristol"}, {"qid": 1217, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the number of staff at the University of Bristol compare to its student population?", "answer": " The University of Bristol likely has a significantly larger student population compared to its staff number, as is common in most universities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Bristol"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Bristol"}, {"qid": 1218, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most significant milestone in the history of the University of Bristol?", "answer": " Receiving its royal charter in 1909 is considered the most significant milestone in the history of the University of Bristol, as it officially marked its status as a university.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Bristol"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Bristol"}, {"qid": 1219, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What relationship does the University of Bristol have with the Russell Group?", "answer": " The University of Bristol is a member of the Russell Group, which signifies its commitment to high-quality research and teaching excellence among leading UK universities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Bristol"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Bristol"}, {"qid": 1220, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Bristol were to relocate, how might that affect its identity and historical significance?", "answer": " Relocating the University of Bristol could potentially affect its identity and historical significance by disconnecting it from its historical roots in Bristol and the architectural heritage of its red brick buildings.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Bristol"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Bristol"}, {"qid": 1221, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the University of Bristol's location in Bristol compare to universities located in London in terms of historical significance?", "answer": " The University of Bristol's location in Bristol offers a unique historical context tied to its maritime heritage and the city's significance, which is different from universities in London that are situated in the capital with its own distinct historical and cultural importance.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Bristol"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Bristol"}, {"qid": 1222, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "Among the universities founded in the late 19th and early 20th centuries, where does the University of Bristol stand in terms of its historical roots dating back to 1595?", "answer": " Among universities founded in the late 19th and early 20th centuries, the University of Bristol stands out for its deep historical roots dating back to 1595, making it one of the institutions with the earliest origins.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Bristol"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Bristol"}, {"qid": 1223, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the royal charter received in 1909 impact the University of Bristol's relationship with the government and other universities?", "answer": " The royal charter received in 1909 formally recognized the University of Bristol as an independent institution, enhancing its stature and enabling a more official relationship with the government and other universities compared to institutions without such recognition.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Bristol"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Bristol"}, {"qid": 1224, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Bristol had expanded its campus significantly since its charter, how might that have changed the university's impact on the city of Bristol?", "answer": " If the University of Bristol had significantly expanded its campus since receiving its charter, it might have had a greater impact on the city of Bristol by contributing more to the local economy, altering the city's landscape, and potentially increasing its role in the community and education sector.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Bristol"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Bristol"}, {"qid": 1225, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What led to the University of Nottingham being granted a royal charter?", "answer": " The University of Nottingham was granted a royal charter in 1948, following its foundation as University College Nottingham in 1881.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Nottingham"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Nottingham"}, {"qid": 1226, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How did the University of Nottingham begin before it was officially recognized as a university?", "answer": " The University of Nottingham began as University College Nottingham in 1881 before it was granted a royal charter in 1948 and officially recognized as a university.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Nottingham"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Nottingham"}, {"qid": 1227, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest part of the University of Nottingham's history?", "answer": " The oldest part of the University of Nottingham's history is its foundation as University College Nottingham in 1881.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Nottingham"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Nottingham"}, {"qid": 1228, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "When was the University of Nottingham's royal charter granted, making it one of the key historic milestones for the institution?", "answer": " The University of Nottingham was granted a royal charter in 1948, making it a key historic milestone for the institution.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Nottingham"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Nottingham"}, {"qid": 1229, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of the University of Nottingham compare to that of other universities in England?", "answer": " The University of Nottingham was founded in 1881, which may be earlier or later than other universities in England depending on the specific institutions being compared.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Nottingham"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Nottingham"}, {"qid": 1230, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the University of Nottingham's acquisition of a royal charter in 1948 compare with the process other universities in England underwent to receive similar recognition?", "answer": " The University of Nottingham's acquisition of a royal charter in 1948 is a process that can vary in comparison to other universities in England, with each institution having its own timeline and requirements for receiving similar recognition.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Nottingham"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Nottingham"}, {"qid": 1231, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would happen if the University of Nottingham had not been granted a royal charter in 1948?", "answer": " If the University of Nottingham had not been granted a royal charter in 1948, it might not have gained full university status at that time, affecting its development, reputation, and possibly its ability to award degrees.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Nottingham"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Nottingham"}, {"qid": 1232, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Nottingham decided to open a new campus now, what factors would need to be considered based on its history and current status?", "answer": " If the University of Nottingham decided to open a new campus now, factors to consider would include its historical commitment to research and education, current academic strengths, financial resources, potential locations, and how the new campus fits into its strategic goals.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Nottingham"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Nottingham"}, {"qid": 1233, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How has the location of the University of Nottingham in Nottingham, England influenced its development?", "answer": " The location of the University of Nottingham in Nottingham, England, has influenced its development by providing a rich historical and cultural setting, access to a diverse student population, and opportunities for local and regional partnerships.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Nottingham"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Nottingham"}, {"qid": 1234, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "What year marks the beginning of the University of Nottingham's establishment as an institution of higher education?", "answer": " The year that marks the beginning of the University of Nottingham's establishment as an institution of higher education is 1881.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Nottingham"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Nottingham"}, {"qid": 1235, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to its founding in 1881, how has the University of Nottingham evolved by the time it was granted a royal charter in 1948?", "answer": " Compared to its founding in 1881, by the time it was granted a royal charter in 1948, the University of Nottingham evolved from being University College Nottingham to achieving full university status, indicating significant growth and development in its academic programs, faculty, and infrastructure.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Nottingham"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Nottingham"}, {"qid": 1236, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What might have been the impact on the University of Nottingham's reputation if it had failed to secure a royal charter in 1948?", "answer": " If the University of Nottingham had failed to secure a royal charter in 1948, its reputation might have been impacted negatively, possibly limiting its recognition as a full university, affecting its ability to attract students and faculty, and hindering its overall development and expansion.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Nottingham"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Nottingham"}, {"qid": 1237, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the significance of the University of Liverpool being referred to as the first Original Red Brick university?", "answer": " Being referred to as the first Original Red Brick university highlights the University of Liverpool's pioneering status among civic universities in the UK, established with a distinct architectural style and a focus on providing higher education in an urban setting.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Liverpool"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "University of Liverpool"}, {"qid": 1238, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the University of Liverpool's status as a founding member of the Russell Group influence its research capabilities?", "answer": " As a founding member of the Russell Group, the University of Liverpool is part of an association of leading UK universities with a shared focus on research excellence, which enhances its capabilities for securing research funding, attracting top scholars, and conducting high-impact research.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Liverpool"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "University of Liverpool"}, {"qid": 1239, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "What makes the University of Liverpool's management school stand out among other universities?", "answer": " The University of Liverpool's management school stands out because it is triple crown accredited, a prestigious recognition held by only a small percentage of business schools worldwide, indicating high standards in education and research.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Liverpool"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "University of Liverpool"}, {"qid": 1240, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the University of Liverpool compare to other Russell Group universities in terms of its foundation year?", "answer": " The University of Liverpool, founded in 1881, is one of the earlier established universities within the Russell Group, with some members being founded both before and after this year, showcasing its long history of academic excellence.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Liverpool"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "University of Liverpool"}, {"qid": 1241, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Liverpool was not a member of the Russell Group, how might its research collaboration opportunities be affected?", "answer": " If the University of Liverpool was not a member of the Russell Group, its opportunities for research collaboration might be less prominent, possibly affecting its ability to participate in high-profile research projects and networks that enhance its research reputation and output.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Liverpool"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "University of Liverpool"}, {"qid": 1242, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would be the impact on the University of Liverpool's architecture if it had not been designated as the Original Red Brick university?", "answer": " If the University of Liverpool had not been designated as the Original Red Brick university, its architectural identity might be less distinctive, potentially affecting its historical significance and the perception of its heritage and tradition in higher education.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Liverpool"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "University of Liverpool"}, {"qid": 1243, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the University of Liverpool's membership in the N8 Group enhance its research profile?", "answer": " The University of Liverpool's membership in the N8 Group enhances its research profile by facilitating collaboration with other leading research universities in the North of England, promoting joint research initiatives, and leveraging shared resources to tackle large-scale research challenges.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Liverpool"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "University of Liverpool"}, {"qid": 1244, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest part of the University of Liverpool's campus?", "answer": " The Victoria Building, opened in 1892, is considered the oldest part of the University of Liverpool's campus, symbolizing the university's historical foundation and its role as the first Original Red Brick university.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Liverpool"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "University of Liverpool"}, {"qid": 1245, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to other UK universities, how does the University of Liverpool's founding year position it historically?", "answer": " The University of Liverpool's founding year, 1881, positions it as one of the older universities in the UK, especially among civic universities, indicating its early contribution to higher education in an urban setting compared to institutions founded both before and after this year.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Liverpool"], "topic_level": false, "class": "sing entity", "hops": "Multi Hops", "entity": "University of Liverpool"}, {"qid": 1246, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What could be the potential impact on the University of Liverpool's global rankings if it lost its triple crown accreditation for its management school?", "answer": " Losing its triple crown accreditation could potentially impact the University of Liverpool's management school's global rankings negatively, as this prestigious accreditation signifies excellence in education, research, and employability, influencing its reputation and attractiveness to students and faculty.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Liverpool"], "topic_level": false, "class": "sing entity", "hops": "Multi Hops", "entity": "University of Liverpool"}, {"qid": 1247, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which faculty at the University of Liverpool has the highest number of departments?", "answer": " The faculty with the highest number of departments at the University of Liverpool is not explicitly mentioned, but with three faculties organised into 35 departments and schools, the faculty with the broader academic range likely holds this distinction.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Liverpool"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "University of Liverpool"}, {"qid": 1248, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the number of staff at the University of Liverpool compare to that of other universities within the Russell Group?", "answer": " The specific number of staff at the University of Liverpool is not provided, but as a Russell Group member, it is expected to have a significant number of staff, both academic and non-academic, comparable to other research-intensive universities in the group, reflecting its comprehensive research and teaching activities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Liverpool"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "University of Liverpool"}, {"qid": 1249, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What was the original name of the University of Leeds when it was established in 1874?", "answer": " Yorkshire College of Science", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Leeds"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Leeds"}, {"qid": 1250, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "In what year did the Yorkshire College of Science merge with the Leeds School of Medicine?", "answer": " 1884", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Leeds"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Leeds"}, {"qid": 1251, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Before becoming the University of Leeds, what was the name of the institution after its merger with the Leeds School of Medicine and before joining the federal Victoria University?", "answer": " Yorkshire College", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Leeds"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Leeds"}, {"qid": 1252, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the earliest established entity among the University of Leeds, University of Manchester, and University of Liverpool?", "answer": " University of Liverpool (as University College Liverpool established in 1881)", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Leeds"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Leeds"}, {"qid": 1253, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the establishment year of the University of Leeds compare to the University of Manchester?", "answer": " The University of Leeds was established after the University of Manchester (as Owens College).", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Leeds"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Leeds"}, {"qid": 1254, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What significant event happened to the University of Leeds in 1904?", "answer": " It was granted a royal charter by King Edward VII.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Leeds"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Leeds"}, {"qid": 1255, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Leeds had not merged with the Leeds School of Medicine, what might have been its name today?", "answer": " Yorkshire College of Science", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Leeds"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Leeds"}, {"qid": 1256, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Who granted the royal charter to the University of Leeds in 1904?", "answer": " King Edward VII", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Leeds"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Leeds"}, {"qid": 1257, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What was the role of the University of Leeds within the federal Victoria University?", "answer": " It was a part of the federal Victoria University along with Owens College and University College Liverpool.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Leeds"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Leeds"}, {"qid": 1258, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which entity became a university first, the University of Leeds or the University of Liverpool?", "answer": " University of Liverpool (as it became part of the federal Victoria University before the University of Leeds)", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Leeds"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Leeds"}, {"qid": 1259, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the establishment year of the University of Leeds compare to that of the Leeds School of Medicine?", "answer": " The University of Leeds (as Yorkshire College of Science) was established after the Leeds School of Medicine.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Leeds"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Leeds"}, {"qid": 1260, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Leeds had not been granted a royal charter in 1904, how would its status differ today?", "answer": " It might not have gained its independence as a university.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Leeds"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Leeds"}, {"qid": 1261, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What led to the formation of the University of Sheffield?", "answer": " The formation of the University of Sheffield was led by the amalgamation of Sheffield Medical School, Firth College, and Sheffield Technical School, which then formed University College of Sheffield and was granted a royal charter as University of Sheffield in 1905.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Sheffield"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Sheffield"}, {"qid": 1262, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Who granted the University of Sheffield its royal charter?", "answer": " King Edward VII granted the University of Sheffield its royal charter in 1905.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Sheffield"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Sheffield"}, {"qid": 1263, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest component institution of the University of Sheffield?", "answer": " Sheffield Medical School, founded in 1828, is the oldest component institution of the University of Sheffield.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Sheffield"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Sheffield"}, {"qid": 1264, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the foundation year of the University of Sheffield compare to the foundation year of Sheffield Medical School?", "answer": " The University of Sheffield was granted its royal charter in 1905, whereas its oldest component institution, Sheffield Medical School, was founded in 1828.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Sheffield"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Sheffield"}, {"qid": 1265, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What city is the University of Sheffield located in?", "answer": " The University of Sheffield is located in Sheffield, South Yorkshire, England.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Sheffield"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Sheffield"}, {"qid": 1266, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the Sheffield Medical School had not been founded, what impact would it have had on the formation of the University of Sheffield?", "answer": " If the Sheffield Medical School had not been founded, it could have significantly impacted the formation of the University of Sheffield, possibly delaying or altering its establishment since Sheffield Medical School is one of the founding institutions.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Sheffield"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Sheffield"}, {"qid": 1267, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "When did the University of Sheffield receive its royal charter, making it officially established?", "answer": " The University of Sheffield received its royal charter in 1905, officially establishing it.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Sheffield"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Sheffield"}, {"qid": 1268, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the location of the University of Sheffield compare to other universities in England?", "answer": " The University of Sheffield is located in Sheffield, South Yorkshire, making it one of the prominent universities in Northern England compared to others located in different regions of England.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Sheffield"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Sheffield"}, {"qid": 1269, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the significance of Firth College in the history of the University of Sheffield?", "answer": " Firth College, founded in 1879, is significant in the history of the University of Sheffield as one of the component institutions that amalgamated to form University College of Sheffield, which later became the University of Sheffield.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Sheffield"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Sheffield"}, {"qid": 1270, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Sheffield had not been granted a royal charter in 1905, how might its status have differed today?", "answer": " If the University of Sheffield had not been granted a royal charter in 1905, it might not have attained its current status as a recognized independent university, potentially remaining as a college or a constituent part of another university.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Sheffield"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Sheffield"}, {"qid": 1271, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which institution among Sheffield Medical School, Firth College, and Sheffield Technical School was founded first?", "answer": " Sheffield Medical School was founded first in 1828.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Sheffield"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Sheffield"}, {"qid": 1272, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Who was the monarch that granted the University of Sheffield its royal charter in 1905?", "answer": " King Edward VII was the monarch that granted the University of Sheffield its royal charter in 1905.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Sheffield"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Sheffield"}, {"qid": 1273, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which campus of Newcastle University is the oldest?", "answer": " The campus in Newcastle upon Tyne, North East England.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Newcastle University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Newcastle University"}, {"qid": 1274, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Does Newcastle University have more staff than its overseas campuses in Singapore and Malaysia?", "answer": " Yes, the main campus in Newcastle upon Tyne has more staff compared to its overseas campuses in Singapore and Malaysia.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Newcastle University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Newcastle University"}, {"qid": 1275, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between Newcastle University and the Russell Group?", "answer": " Newcastle University is a member of the Russell Group, which is an association of research-intensive UK universities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Newcastle University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Newcastle University"}, {"qid": 1276, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Newcastle University decided to open a new campus, how might it affect its status within the Russell Group?", "answer": " Opening a new campus would not directly affect Newcastle University's status within the Russell Group, as membership is based on research intensity and reputation, not the number of campuses.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Newcastle University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Newcastle University"}, {"qid": 1277, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the earliest founding year of any Russell Group university compared to Newcastle University?", "answer": " Some Russell Group universities were founded before Newcastle University, which was established in 1834.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Newcastle University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Newcastle University"}, {"qid": 1278, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to other Russell Group universities, where does Newcastle University rank in terms of staff numbers?", "answer": " Specific rankings may vary, but Newcastle University is among the larger Russell Group universities in terms of staff numbers.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Newcastle University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Newcastle University"}, {"qid": 1279, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the location of Newcastle University's main campus influence its research focus?", "answer": " The main campus's location in Newcastle upon Tyne, North East England, influences its research focus on areas relevant to the local and regional community, including industrial and maritime research.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Newcastle University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Newcastle University"}, {"qid": 1280, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would happen if Newcastle University left the Russell Group?", "answer": " If Newcastle University left the Russell Group, it might impact its reputation and possibly affect collaboration opportunities and research funding, though it would continue to be a research-intensive institution.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Newcastle University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Newcastle University"}, {"qid": 1281, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which of Newcastle University's campuses is the most recent addition?", "answer": " The campus in Malaysia is the most recent addition.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Newcastle University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Newcastle University"}, {"qid": 1282, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Is the staff number at Newcastle University's main campus larger than at its Singapore campus?", "answer": " Yes, the staff number at Newcastle University's main campus is larger than at its Singapore campus.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Newcastle University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Newcastle University"}, {"qid": 1283, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What makes Newcastle University a red brick university?", "answer": " Newcastle University is classified as a red brick university because it is one of the civic universities founded in the industrial cities of England in the 19th or early 20th century.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Newcastle University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Newcastle University"}, {"qid": 1284, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Newcastle University were to merge with another Russell Group university, what would be a potential advantage?", "answer": " A potential advantage could be increased resources and opportunities for research collaboration, enhancing the academic and research profiles of both institutions.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Newcastle University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Newcastle University"}, {"qid": 1285, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What was the main purpose behind the founding of the University of Warwick in 1965?", "answer": " The main purpose was to expand higher education as part of a government initiative.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Warwick"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Warwick"}, {"qid": 1286, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "In what year was the Warwick Business School established, and for what reason?", "answer": " The Warwick Business School was established in 1967 as part of the University of Warwick's expansion.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Warwick Business School"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Warwick Business School"}, {"qid": 1287, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which school was established first at the University of Warwick?", "answer": " The Warwick Business School was the first to be established in 1967.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Warwick"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Warwick"}, {"qid": 1288, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most recent school to be added to the University of Warwick?", "answer": " The most recent school added is the Warwick Medical School in 2000.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Warwick"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Warwick"}, {"qid": 1289, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the establishment year of Warwick Medical School compare to that of Warwick Business School?", "answer": " Warwick Medical School was established in 2000, much later than Warwick Business School which was established in 1967.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Warwick"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Warwick"}, {"qid": 1290, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What significant development occurred at the University of Warwick in 1979?", "answer": " In 1979, the University of Warwick incorporated Coventry College of Education.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Warwick"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Warwick"}, {"qid": 1291, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What addition was made to the University of Warwick in 2004?", "answer": " In 2004, the University of Warwick incorporated Horticulture Research International.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Warwick"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Warwick"}, {"qid": 1292, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Warwick were to establish a new school in 2024, what would be the gap in years since the last school was established?", "answer": " The gap would be 24 years since the Warwick Medical School was established in 2000.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Warwick"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Warwick"}, {"qid": 1293, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Warwick had not incorporated Coventry College of Education in 1979, how would this have affected its size?", "answer": " Not incorporating Coventry College of Education would likely have resulted in a smaller overall size and resource base for the University of Warwick.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Warwick"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Warwick"}, {"qid": 1294, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Why was the Warwick Manufacturing Group (WMG) established in 1980?", "answer": " The Warwick Manufacturing Group (WMG) was established to facilitate collaboration between academia and industry, enhancing innovation and skills in manufacturing and engineering.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Warwick"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Warwick"}, {"qid": 1295, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "Among the Warwick Business School, Warwick Law School, and Warwick Medical School, which was established first?", "answer": " The Warwick Business School was established first in 1967.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Warwick"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Warwick"}, {"qid": 1296, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compare the establishment years of the Warwick Law School and Warwick Manufacturing Group (WMG).", "answer": " Warwick Law School was established in 1968, while Warwick Manufacturing Group (WMG) was established later in 1980.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Warwick"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Warwick"}, {"qid": 1297, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the number of staff at Queen's University Belfast compare to that of the University of Edinburgh?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen's University Belfast"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Queen's University Belfast"}, {"qid": 1298, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Is the founding year of Queen's University Belfast earlier or later than that of Oxford University?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen's University Belfast"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Queen's University Belfast"}, {"qid": 1299, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "Who was the first president of Queen's University Belfast?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen's University Belfast"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Queen's University Belfast"}, {"qid": 1300, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest university in the UK, Queen's University Belfast or University of St Andrews?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen's University Belfast"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Queen's University Belfast"}, {"qid": 1301, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What role does the president of Queen's University Belfast play in its administration?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen's University Belfast"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Queen's University Belfast"}, {"qid": 1302, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the location of Queen's University Belfast influence its student demographic?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen's University Belfast"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Queen's University Belfast"}, {"qid": 1303, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Queen's University Belfast were to open a new campus, how might its location affect its choice of academic programs?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen's University Belfast"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Queen's University Belfast"}, {"qid": 1304, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would happen if the president of Queen's University Belfast decided to double the number of staff?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen's University Belfast"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Queen's University Belfast"}, {"qid": 1305, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to universities founded in the 19th century, where does Queen's University Belfast rank in terms of size?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen's University Belfast"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Queen's University Belfast"}, {"qid": 1306, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "What year marked the start of Queen's University Belfast, making it one of the earliest universities established in the UK?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen's University Belfast"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Queen's University Belfast"}, {"qid": 1307, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "In what ways does the staff number at Queen's University Belfast impact its research capabilities?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen's University Belfast"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Queen's University Belfast"}, {"qid": 1308, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Queen's University Belfast were to merge with another university, how would that affect its staff number?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen's University Belfast"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Queen's University Belfast"}, {"qid": 1309, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between the University of York and the city it is located in?", "answer": " The University of York is located in York, England, indicating a geographical relationship where the university is a significant educational establishment within the city.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of York"], "topic_level": false, "class": "sing entity", "hops": "No hop", "entity": "University of York"}, {"qid": 1310, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "What year was the University of York established, and how does that compare to the establishment years of other universities in England?", "answer": " Established in 1963, the University of York is younger than many other universities in England, such as the University of Oxford and the University of Cambridge, which were founded in the 12th and 13th centuries, respectively.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of York"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of York"}, {"qid": 1311, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compare the University of York's range of departments and centres with another collegiate research university in terms of subject diversity.", "answer": " The University of York, with more than thirty departments and centres covering a wide range of subjects, may offer similar or differing levels of subject diversity when compared to another collegiate research university, depending on the specific institutions being compared.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of York"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of York"}, {"qid": 1312, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of York were to introduce a new department, what steps would likely be involved in the process?", "answer": " Introducing a new department at the University of York would likely involve steps such as identifying the need for the new department, developing a curriculum, securing funding, hiring staff, and obtaining necessary accreditations or approvals.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of York"], "topic_level": false, "class": "sing entity", "hops": "No hop", "entity": "University of York"}, {"qid": 1313, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "What makes the University of York unique compared to other universities in England?", "answer": " The University of York's unique aspects might include its collegiate system, its establishment year of 1963 which makes it relatively newer than many traditional universities, and its wide range of departments and centres covering diverse subjects.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of York"], "topic_level": false, "class": "sing entity", "hops": "No hop", "entity": "University of York"}, {"qid": 1314, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the location of the University of York within the city contribute to its academic and cultural environment?", "answer": " The location of the University of York in York, England, contributes to its academic and cultural environment by providing students with access to the rich historical and cultural heritage of the city, which can enhance educational experiences and opportunities for research.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of York"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of York"}, {"qid": 1315, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the staff number at the University of York compare to that of a similar-sized university?", "answer": " The staff number at the University of York may be compared to that of a similar-sized university to understand differences or similarities in faculty size, which can impact student-to-faculty ratios and the breadth of expertise available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of York"], "topic_level": false, "class": "sing entity", "hops": "No hop", "entity": "University of York"}, {"qid": 1316, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of York decided to expand its campus, what factors would need to be considered regarding its location and existing infrastructure?", "answer": " Expanding the University of York's campus would require considering factors such as the availability of adjacent or suitable land, the impact on the local community and environment, the need for additional infrastructure and facilities, and compliance with planning regulations.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of York"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of York"}, {"qid": 1317, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "Among the departments at the University of York, which one is considered the most innovative, and why?", "answer": " Identifying the most innovative department at the University of York would depend on criteria such as breakthrough research, cutting-edge teaching methods, and contributions to solving contemporary challenges, which can vary over time.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of York"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of York"}, {"qid": 1318, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the significance of the year 1963 in the context of the University of York?", "answer": " The year 1963 is significant for the University of York as it marks the year when the university was established, denoting the beginning of its operations and its founding as a higher education institution in England.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of York"], "topic_level": false, "class": "sing entity", "hops": "No hop", "entity": "University of York"}, {"qid": 1319, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the University of York's collegiate system compare to the collegiate system of the University of Oxford?", "answer": " The University of York's collegiate system and the University of Oxford's collegiate system can be compared in terms of structure, the autonomy of individual colleges, and the role colleges play in the overall student experience, although specific differences and similarities would depend on detailed aspects of each university's system.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of York"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of York"}, {"qid": 1320, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of York were to collaborate with an international university, what might be the potential benefits and challenges of such a partnership?", "answer": " Potential benefits of a collaboration between the University of York and an international university could include enhanced global perspectives, opportunities for student and staff exchanges, and collaborative research projects. Challenges might involve coordinating across different academic calendars, language barriers, and aligning objectives and expectations.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of York"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of York"}, {"qid": 1321, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What was the original name of Cardiff University when it was established in 1883?", "answer": " University College of South Wales and Monmouthshire", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cardiff University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Cardiff University"}, {"qid": 1322, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How did Cardiff University evolve in name from its establishment until it received its own degree-awarding powers?", "answer": " It was established as the University College of South Wales and Monmouthshire in 1883, became a founding college of the University of Wales in 1893, was renamed University College, Cardiff in 1972, merged with the University of Wales Institute of Science and Technology in 1988 to become University of Wales College, Cardiff, and then University of Wales, Cardiff in 1996, before adopting the operating name of Cardiff University in 1999.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cardiff University"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "Cardiff University"}, {"qid": 1323, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "When did Cardiff University become an independent university awarding its own degrees?", "answer": " 2005", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cardiff University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Cardiff University"}, {"qid": 1324, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest name by which Cardiff University was known?", "answer": " University College of South Wales and Monmouthshire", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cardiff University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Cardiff University"}, {"qid": 1325, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "When did Cardiff University first receive its degree-awarding powers?", "answer": " 1997", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cardiff University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Cardiff University"}, {"qid": 1326, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Was Cardiff University known as University of Wales, Cardiff before or after it was called University College, Cardiff?", "answer": " After", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cardiff University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Cardiff University"}, {"qid": 1327, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What significant change occurred to Cardiff University in 1988?", "answer": " It merged with the University of Wales Institute of Science and Technology.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cardiff University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Cardiff University"}, {"qid": 1328, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Cardiff University was to revert to its name in 1988, what would it be called?", "answer": " University of Wales College, Cardiff", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cardiff University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Cardiff University"}, {"qid": 1329, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Is the current legal name of Cardiff University older or newer than its operating name adopted in 1999?", "answer": " Newer", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cardiff University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Cardiff University"}, {"qid": 1330, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Cardiff University decided to operate under its original establishment name, what would it be called?", "answer": " University College of South Wales and Monmouthshire", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cardiff University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Cardiff University"}, {"qid": 1331, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most recent name change that Cardiff University underwent?", "answer": " From University of Wales, Cardiff to Cardiff University in 1999, becoming its legal name in 2005.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cardiff University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Cardiff University"}, {"qid": 1332, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What was the status of Cardiff University's degree-awarding powers between 1997 and 2005?", "answer": " It had received degree-awarding powers in 1997 but held them in abeyance until it became an independent university in 2005.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cardiff University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Cardiff University"}, {"qid": 1333, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the connection between St Luke's College, Exeter School of Science, Exeter School of Art, and the Camborne School of Mines with the University of Exeter?", "answer": " These institutions are the predecessor institutions of the University of Exeter, which came together to form the university when it received its royal charter in 1955.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Exeter"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Exeter"}, {"qid": 1334, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the University of Exeter's post-nominal abbreviation relate to its location?", "answer": " The post-nominal abbreviation \"Exon.\" comes from the Latin Exoniensis, relating to Exeter, where the university's main campus is located.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Exeter"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Exeter"}, {"qid": 1335, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which of the University of Exeter's predecessor institutions was established first?", "answer": " St Luke's College, established in 1838, was the first of the University of Exeter's predecessor institutions.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Exeter"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Exeter"}, {"qid": 1336, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most recent predecessor institution of the University of Exeter before it received its royal charter?", "answer": " The Camborne School of Mines, established in 1888, is the most recent predecessor institution before the University of Exeter received its royal charter in 1955.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Exeter"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Exeter"}, {"qid": 1337, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the establishment year of the University of Exeter's main campus compare to the establishment years of its predecessor institutions?", "answer": " The University of Exeter's main campus was established in 1955, after all its predecessor institutions; St Luke's College (1838), Exeter School of Science (1855), Exeter School of Art (1863), and the Camborne School of Mines (1888).", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Exeter"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "University of Exeter"}, {"qid": 1338, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the Camborne School of Mines had not become part of the University of Exeter, how would the university's scope of specialized education be different?", "answer": " Without the Camborne School of Mines, the University of Exeter would potentially lack the specialized education and research capabilities in mining and geology that the school contributes.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Exeter"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "University of Exeter"}, {"qid": 1339, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest component of the University of Exeter based on its founding year?", "answer": " St Luke's College, established in 1838, is the oldest component of the University of Exeter.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Exeter"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Exeter"}, {"qid": 1340, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How is the University of Exeter abbreviated in post-nominals, and what does this abbreviation signify?", "answer": " The University of Exeter is abbreviated as Exon. in post-nominals, signifying its relation to Exeter (from the Latin Exoniensis).", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Exeter"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Exeter"}, {"qid": 1341, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Exeter decided to establish a new campus, how would its location choice be influenced by the history of its existing campuses?", "answer": " The location choice for a new campus would likely be influenced by the university's historical connection to the West Country of England and its emphasis on integrating with communities similar to Exeter and Devon.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Exeter"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Exeter"}, {"qid": 1342, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "Among the University of Exeter's predecessor institutions, which was established last before forming the university?", "answer": " The Camborne School of Mines, established in 1888, was the last predecessor institution established before forming the University of Exeter.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Exeter"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Exeter"}, {"qid": 1343, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How do the establishment years of the University of Exeter's predecessor institutions compare to its royal charter year?", "answer": " All the predecessor institutions were established before the University of Exeter received its royal charter in 1955, with establishment years ranging from 1838 to 1888.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Exeter"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Exeter"}, {"qid": 1344, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What role does the royal charter of 1955 play in the history of the University of Exeter?", "answer": " The royal charter granted in 1955 officially formed the University of Exeter, uniting its predecessor institutions under one institution and marking the official beginning of the university.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Exeter"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Exeter"}, {"qid": 1345, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does Canada's total area compare to that of the United States?", "answer": " Canada is the world's second-largest country by total area, larger than the United States.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Canada"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Canada"}, {"qid": 1346, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the longest international land border that Canada shares with another country?", "answer": " Canada shares the world's longest international land border with the United States.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Canada"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Canada"}, {"qid": 1347, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Why is Canada considered a sparsely inhabited country?", "answer": " Despite being the world's second-largest country by total area, Canada has a population of just over 41 million people, making it sparsely inhabited.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Canada"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Canada"}, {"qid": 1348, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If a new province were to be added to Canada, how would that affect the number of provinces and territories?", "answer": " The addition of a new province would increase the number of provinces and territories in Canada from thirteen to fourteen.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Canada"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Canada"}, {"qid": 1349, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to Toronto and Montreal, how does Vancouver's metropolitan area rank in terms of size within Canada?", "answer": " Vancouver's metropolitan area is the third largest in Canada, after Toronto and Montreal.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Canada"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Canada"}, {"qid": 1350, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which Canadian city has the highest population?", "answer": " Toronto has the highest population among Canadian cities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Canada"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Canada"}, {"qid": 1351, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What role does the 55th parallel play in Canada's population distribution?", "answer": " The vast majority of Canada's population resides south of the 55th parallel, indicating a concentration of population in southern urban areas.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Canada"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Canada"}, {"qid": 1352, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Canada were to annex a territory that increases its total area, how would this affect its global ranking by total area?", "answer": " Annexing additional territory would increase Canada's total area, but since it is already the world's second-largest country, it would not change its global ranking unless it surpassed Russia's total area.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Canada"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Canada"}, {"qid": 1353, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the population density of Canada compare to that of its southern neighbor, the United States?", "answer": " Canada's population density is much lower than that of the United States, due to its vast land area and smaller population.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Canada"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Canada"}, {"qid": 1354, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most northerly permanent settlement in Canada?", "answer": " Alert, in Nunavut, is the most northerly permanent settlement in Canada.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Canada"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Canada"}, {"qid": 1355, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the climate vary across Canada's geographical regions?", "answer": " Canada's climate varies widely across its vast area, from arctic weather in the north, to temperate conditions in the south, and everything in between.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Canada"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Canada"}, {"qid": 1356, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the population of Canada were to suddenly double, how would this affect its status as a sparsely inhabited country?", "answer": " Doubling its population would significantly increase Canada's population density, but given its vast area, it might still be considered relatively sparsely inhabited compared to more densely populated countries.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Canada"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Canada"}, {"qid": 1357, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the population of Japan compare to that of China?", "answer": " Japan has a population of nearly 124 million as of 2024, making it the eleventh-most populous country, whereas China has a significantly larger population, being the most populous country in the world.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Japan"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Japan"}, {"qid": 1358, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the largest city in Japan?", "answer": " Tokyo is the largest city in Japan.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Japan"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Japan"}, {"qid": 1359, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does Japan's geographic location affect its climate?", "answer": " Japan's location in the Pacific Ocean off the northeast coast of the Asian mainland influences its climate, making it prone to monsoons and the Pacific Ring of Fire, which affects its weather patterns and increases its susceptibility to earthquakes and tsunamis.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Japan"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Japan"}, {"qid": 1360, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would happen if Japan's population increased to surpass that of the United States?", "answer": " If Japan's population were to surpass that of the United States, it would significantly impact its resources, infrastructure, and possibly elevate its global economic and political standing.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Japan"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Japan"}, {"qid": 1361, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the area of Japan compare to that of the United Kingdom?", "answer": " Japan covers 377,975 square kilometers, making it larger than the United Kingdom, which has an area of approximately 243,610 square kilometers.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Japan"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "Japan"}, {"qid": 1362, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which prefecture in Japan has the highest population?", "answer": " Tokyo Prefecture has the highest population in Japan.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Japan"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "Japan"}, {"qid": 1363, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How do Japan's mountainous regions influence its population distribution?", "answer": " Japan's mountainous regions contribute to the concentration of its population in urbanized coastal plains due to the limited arable land, affecting where people live and work.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Japan"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "Japan"}, {"qid": 1364, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would happen if a major earthquake hit Tokyo?", "answer": " If a major earthquake hit Tokyo, it would likely cause significant damage to infrastructure, disrupt the economy, and potentially result in a high number of casualties, given the city's dense population and the country's position on the Pacific Ring of Fire.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Japan"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "Japan"}, {"qid": 1365, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the number of islands in Japan compare to that of Indonesia?", "answer": " Japan consists of four major islands and thousands of smaller islands, whereas Indonesia has over 17,000 islands, making Indonesia have a larger number of islands than Japan.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Japan"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "Japan"}, {"qid": 1366, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the smallest prefecture in Japan?", "answer": " Kagawa Prefecture is the smallest prefecture in Japan by land area.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Japan"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "Japan"}, {"qid": 1367, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does Japan's position on the Pacific Ring of Fire affect its society?", "answer": " Japan's position on the Pacific Ring of Fire affects its society by necessitating advanced disaster preparedness and response strategies, influencing building designs to withstand earthquakes, and shaping the country's approach to energy and environmental policies.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Japan"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "Japan"}, {"qid": 1368, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Japan decided to relocate its capital from Tokyo to Kyoto, what would be the implications?", "answer": " Relocating Japan's capital from Tokyo to Kyoto would have major implications, including significant economic costs, the need for infrastructure development in Kyoto to support the functions of a capital, and potential impacts on Tokyo's international status and economic role.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Japan"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "Japan"}, {"qid": 1369, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Which is larger by area, Italy or Switzerland?", "answer": " Italy", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Italy"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Italy"}, {"qid": 1370, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the largest city in Italy?", "answer": " Rome", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Italy"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Italy"}, {"qid": 1371, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does Italy's border with France compare to its border with Slovenia in terms of geographical location?", "answer": " Italy's border with France is to the west, while its border with Slovenia is to the east.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Italy"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "Italy"}, {"qid": 1372, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Italy were to annex San Marino, how would this change its number of enclaves?", "answer": " Italy would have one less enclave, as San Marino would become part of Italy.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Italy"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Italy"}, {"qid": 1373, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Which has a higher population, Italy or Vatican City?", "answer": " Italy", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Italy"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Italy"}, {"qid": 1374, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the smallest region in Italy by area?", "answer": " Valle d'Aosta", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Italy"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Italy"}, {"qid": 1375, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between Rome and Florence in terms of their importance to Italy?", "answer": " Rome is the capital and largest city, while Florence is known for its cultural and historical significance.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Italy"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "Italy"}, {"qid": 1376, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Italy were to lose its islands, how would that affect its geographic description?", "answer": " Italy would no longer have Sicily and Sardinia, altering its geographic description as a peninsula with significant islands.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Italy"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Italy"}, {"qid": 1377, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Is Italy's population larger than that of Austria?", "answer": " Yes", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Italy"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Italy"}, {"qid": 1378, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which is the oldest university in Italy?", "answer": " The University of Bologna", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Italy"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Italy"}, {"qid": 1379, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the climate in northern Italy compare to that in southern Italy?", "answer": " Northern Italy has a more temperate climate, while southern Italy has a Mediterranean climate.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Italy"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "Italy"}, {"qid": 1380, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Venice were to become completely independent, how would this affect Italy's major urban areas?", "answer": " Italy would have one less major urban area, as Venice would no longer be part of Italy.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Italy"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Italy"}, {"qid": 1381, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Which has a larger population, the United States or Canada?", "answer": " The United States", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United States"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "United States"}, {"qid": 1382, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which state in the United States has the largest land area?", "answer": " Alaska", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United States"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "United States"}, {"qid": 1383, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How is the President of the United States elected?", "answer": " The President of the United States is elected through the Electoral College system.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United States"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "United States"}, {"qid": 1384, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would happen if the United States decided to add a 51st state?", "answer": " If the United States decided to add a 51st state, it would involve adjustments to the flag, potential changes in the allocation of Congressional seats, and possibly shifts in the Electoral College.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United States"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "United States"}, {"qid": 1385, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the smallest state by area in the United States?", "answer": " Rhode Island", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United States"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "United States"}, {"qid": 1386, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Is the population of the United States larger than that of the European Union?", "answer": " No, the population of the European Union is larger than that of the United States.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United States"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "United States"}, {"qid": 1387, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How do the number of Indian reservations in the United States compare to the number of states?", "answer": " There are 326 Indian reservations and 50 states in the United States, so there are more Indian reservations than states.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United States"], "topic_level": false, "class": "sing entity", "hops": "Multi Hops", "entity": "United States"}, {"qid": 1388, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the capital of the United States were moved from Washington, D.C., what changes would be necessary?", "answer": " Moving the capital would require construction of a new governmental infrastructure, legal adjustments, and potentially amending the Constitution.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United States"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "United States"}, {"qid": 1389, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which U.S. state has the highest population?", "answer": " California", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United States"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "United States"}, {"qid": 1390, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What role does the President of the United States play in the federal government?", "answer": " The President of the United States serves as the head of state and government, and is the commander-in-chief of the armed forces.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United States"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "United States"}, {"qid": 1391, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Does the United States have a larger land area than Australia?", "answer": " Yes, the United States has a larger land area than Australia.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United States"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "United States"}, {"qid": 1392, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would be the impact if the United States ceased to claim sovereignty over its island territories?", "answer": " If the United States ceased to claim sovereignty over its island territories, it could lead to changes in citizenship status for residents, shifts in strategic military positions, and potential economic and environmental policy adjustments.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United States"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "United States"}, {"qid": 1393, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most populous city in Germany?", "answer": " Berlin", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Germany"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Germany"}, {"qid": 1394, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Which country borders Germany to the south?", "answer": " Austria and Switzerland", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Germany"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Germany"}, {"qid": 1395, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Is Germany more populous than Denmark?", "answer": " Yes", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Germany"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Germany"}, {"qid": 1396, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Germany were to merge with Austria, what would be the new total area?", "answer": " It would be the sum of Germany's and Austria's current total areas.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Germany"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Germany"}, {"qid": 1397, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which is the largest urban area in Germany?", "answer": " The Ruhr", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Germany"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Germany"}, {"qid": 1398, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the main financial centre in Germany?", "answer": " Frankfurt", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Germany"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Germany"}, {"qid": 1399, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Does Germany have a larger population than France?", "answer": " Yes", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Germany"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Germany"}, {"qid": 1400, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the Ruhr area were to become an independent city, how would it rank in population among German cities?", "answer": " It would be the largest.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Germany"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Germany"}, {"qid": 1401, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which German state has the smallest area?", "answer": " Saarland", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Germany"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Germany"}, {"qid": 1402, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does Germany's geographical location affect its climate?", "answer": " Its location between the Baltic and North Sea to the north and the Alps to the south influences its temperate seasonal climate.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Germany"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "Germany"}, {"qid": 1403, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Is the population density of Germany higher than that of Belgium?", "answer": " No", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Germany"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "Germany"}, {"qid": 1404, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would be the impact on Germany's borders if Poland and Czechia were to unite?", "answer": " Germany would have a single eastern neighbor instead of two.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Germany"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "Germany"}, {"qid": 1405, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the largest city in France?", "answer": " Paris", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["France"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "France"}, {"qid": 1406, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Which country shares the longest border with France?", "answer": " Spain", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["France"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "France"}, {"qid": 1407, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most populous region in France?", "answer": " Île-de-France", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["France"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "France"}, {"qid": 1408, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Is the population of Metropolitan France larger than that of its overseas territories combined?", "answer": " Yes", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["France"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "France"}, {"qid": 1409, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which French overseas territory is the furthest from Metropolitan France?", "answer": " French Polynesia", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["France"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "France"}, {"qid": 1410, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What body of water lies to the north of Metropolitan France?", "answer": " The English Channel", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["France"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "France"}, {"qid": 1411, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would likely happen to the exclusive economic zone of France if it lost its overseas territories?", "answer": " It would significantly decrease in size.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["France"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "France"}, {"qid": 1412, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Which French region is directly adjacent to Italy?", "answer": " Provence-Alpes-Côte d'Azur", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["France"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "France"}, {"qid": 1413, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the highest point in France?", "answer": " Mont Blanc", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["France"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "France"}, {"qid": 1414, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Does France have more land borders or maritime borders?", "answer": " Maritime borders", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["France"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "France"}, {"qid": 1415, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Which overseas region of France is located in South America?", "answer": " French Guiana", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["France"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "France"}, {"qid": 1416, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If France decided to move its capital, which city, being the second-largest, might be considered as a new capital?", "answer": " Marseille", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["France"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "France"}, {"qid": 1417, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Which has a larger population, London or Belfast?", "answer": " London", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United Kingdom"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "United Kingdom"}, {"qid": 1418, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the largest city in the United Kingdom?", "answer": " London", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United Kingdom"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "United Kingdom"}, {"qid": 1419, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between the United Kingdom and Northern Ireland?", "answer": " Northern Ireland is part of the United Kingdom.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United Kingdom"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "United Kingdom"}, {"qid": 1420, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Scotland were to become independent, how many countries would the United Kingdom comprise?", "answer": " Three", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United Kingdom"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "United Kingdom"}, {"qid": 1421, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Is the population of the United Kingdom greater than that of London?", "answer": " Yes", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United Kingdom"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "United Kingdom"}, {"qid": 1422, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which part of the United Kingdom has the smallest population?", "answer": " Northern Ireland", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United Kingdom"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "United Kingdom"}, {"qid": 1423, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the area of the United Kingdom compare to that of Greater London?", "answer": " The area of the United Kingdom is significantly larger than that of Greater London.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United Kingdom"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "United Kingdom"}, {"qid": 1424, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Wales were to leave the United Kingdom, how many capital cities would remain within the country?", "answer": " Two", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United Kingdom"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "United Kingdom"}, {"qid": 1425, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Which is closer to mainland Europe, Northern Ireland or England?", "answer": " England", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United Kingdom"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "United Kingdom"}, {"qid": 1426, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the northernmost capital city within the United Kingdom?", "answer": " Edinburgh", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United Kingdom"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "United Kingdom"}, {"qid": 1427, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What separates the United Kingdom from mainland Europe?", "answer": " The English Channel", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United Kingdom"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "United Kingdom"}, {"qid": 1428, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the population of Northern Ireland were to surpass that of Scotland, which part of the United Kingdom would be the least populated?", "answer": " Wales", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United Kingdom"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "United Kingdom"}, {"qid": 1429, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the size of Russia compare to that of Canada?", "answer": " Russia is larger than Canada, making it the largest country in the world by area.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Russia"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Russia"}, {"qid": 1430, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "What city is known as the cultural capital of Russia?", "answer": " Saint Petersburg is known as Russia's cultural capital.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Russia"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Russia"}, {"qid": 1431, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Why is Moscow significant in Russia?", "answer": " Moscow is significant because it is the capital and largest city of Russia.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Russia"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Russia"}, {"qid": 1432, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Russia were to add another time zone, how many time zones would it span?", "answer": " It would span twelve time zones.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Russia"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Russia"}, {"qid": 1433, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to the United States, how does Russia's population rank globally?", "answer": " Russia is the world's ninth-most populous country, while the United States is the third.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Russia"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Russia"}, {"qid": 1434, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which city has the largest population in Russia?", "answer": " Moscow has the largest population in Russia.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Russia"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Russia"}, {"qid": 1435, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the urbanisation level of Russia affect its city populations?", "answer": " The high level of urbanisation in Russia results in 16 population centres having over a million inhabitants each.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Russia"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Russia"}, {"qid": 1436, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Saint Petersburg were to become the capital of Russia, what would change about its status?", "answer": " It would become the political capital, in addition to being the cultural capital.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Russia"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Russia"}, {"qid": 1437, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does Russia's area compare to that of China?", "answer": " Russia is larger in area than China, making it the largest country in the world.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Russia"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Russia"}, {"qid": 1438, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most populous city in Russia?", "answer": " Moscow is the most populous city in Russia.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Russia"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Russia"}, {"qid": 1439, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What role does Russia's geography play in its global borders?", "answer": " Russia's extensive geography allows it to share land borders with fourteen countries.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Russia"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Russia"}, {"qid": 1440, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Russia were to lose a time zone, how would its global standing as the country with the most time zones be affected?", "answer": " It would still be the country with the most time zones, but it would span ten time zones instead of eleven.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Russia"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Russia"}, {"qid": 1441, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between Tsinghua University and the Ministry of Education of China?", "answer": " Tsinghua University is affiliated with and funded by the Ministry of Education of China.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Tsinghua University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Tsinghua University"}, {"qid": 1442, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which project makes Tsinghua University one of the top universities in China?", "answer": " Project 985.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Tsinghua University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Tsinghua University"}, {"qid": 1443, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the location of Tsinghua University compare to other universities in Beijing?", "answer": " Tsinghua University is located in Haidian, which is a notable educational district in Beijing, hosting several top universities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Tsinghua University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Tsinghua University"}, {"qid": 1444, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the Ministry of Education of China stopped funding, how might this affect Tsinghua University?", "answer": " It would likely face significant financial challenges, potentially affecting its operations and projects.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Tsinghua University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Tsinghua University"}, {"qid": 1445, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What makes Tsinghua University a member of the C9 League?", "answer": " Its high research standards, quality of education, and strategic importance in Chinese higher education policy.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Tsinghua University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Tsinghua University"}, {"qid": 1446, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "Among the initiatives by the Chinese government, which one is Tsinghua University notably a part of for elevating its research standards?", "answer": " The Double First-Class Construction.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Tsinghua University"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "Tsinghua University"}, {"qid": 1447, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to other universities in the C9 League, how does Tsinghua University's location contribute to its status?", "answer": " Being in Beijing, Tsinghua University benefits from proximity to political, cultural, and educational resources, enhancing its status among the C9 League universities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Tsinghua University"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "Tsinghua University"}, {"qid": 1448, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Tsinghua University were to lead a new educational project, how would its affiliation with Project 211 and Project 985 influence its approach?", "answer": " It would likely leverage its experience and standards from these projects to ensure high-quality outcomes and innovation.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Tsinghua University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Tsinghua University"}, {"qid": 1449, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does Tsinghua University's participation in Project 211 affect its academic offerings?", "answer": " It enhances the quality and breadth of its academic programs, aiming to meet international standards of excellence.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Tsinghua University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Tsinghua University"}, {"qid": 1450, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most significant impact of Tsinghua University being part of the Double First-Class Construction on its global ranking?", "answer": " It helps improve its global ranking by focusing on world-class research output and academic excellence.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Tsinghua University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Tsinghua University"}, {"qid": 1451, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "In terms of academic reputation, how does Tsinghua University's membership in the C9 League compare to non-C9 universities in China?", "answer": " Tsinghua University, as a C9 League member, holds a higher academic reputation nationally and internationally compared to non-C9 universities in China.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Tsinghua University"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "Tsinghua University"}, {"qid": 1452, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Tsinghua University were to expand its international collaborations, how would its status as a top university in Project 985 and Project 211 projects influence its choice of global partners?", "answer": " Its status would attract prestigious international universities and research institutions, looking to collaborate with institutions demonstrating high standards of excellence and innovation.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Tsinghua University"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "Tsinghua University"}, {"qid": 1453, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between Peking University and the Ministry of Education of China?", "answer": " Peking University is affiliated with and funded by the Ministry of Education of China.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Peking University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Peking University"}, {"qid": 1454, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the earliest year in which Peking University was established?", "answer": " 1898", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Peking University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Peking University"}, {"qid": 1455, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does Peking University's affiliation with the Ministry of Education compare to that of other public universities in China?", "answer": " Like many other public universities in China, Peking University is affiliated with the Ministry of Education, indicating a direct relationship in terms of funding and governance.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Peking University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Peking University"}, {"qid": 1456, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the significance of Peking University being part of the C9 League?", "answer": " Being part of the C9 League signifies Peking University's status as one of the top nine universities in China, highlighting its excellence in education and research.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Peking University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Peking University"}, {"qid": 1457, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Peking University were to expand its campus, in which district of Beijing would it likely do so, considering its current location?", "answer": " Haidian, Beijing", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Peking University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Peking University"}, {"qid": 1458, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "When considering the founding years of universities in China, where does Peking University stand?", "answer": " Peking University is among the oldest universities in China, having been established in 1898.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Peking University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Peking University"}, {"qid": 1459, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the location of Peking University in Haidian district benefit its students and faculty?", "answer": " The location in Haidian district, a major educational and technological hub in Beijing, provides Peking University's students and faculty with access to a vibrant academic and research environment.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Peking University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Peking University"}, {"qid": 1460, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to other universities in the C9 League, how does Peking University's foundation year stand?", "answer": " Peking University, founded in 1898, is one of the earliest established universities among the C9 League members.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Peking University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Peking University"}, {"qid": 1461, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the highest position that Peking University has achieved in global university rankings?", "answer": " Peking University has consistently been ranked among the top universities globally, achieving high rankings in various international university ranking systems.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Peking University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Peking University"}, {"qid": 1462, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What role did Peking University play in the now-defunct Project 211 and Project 985?", "answer": " Peking University was a key participant in both Project 211 and Project 985, which were initiatives by the Chinese government to enhance the research standards and quality of higher education in China.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Peking University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Peking University"}, {"qid": 1463, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Peking University were to lead a new educational reform, how might its status within the C9 League influence its approach?", "answer": " Given its status within the C9 League, Peking University would likely leverage its influential position and extensive resources to pioneer innovative educational reforms, setting benchmarks for excellence in higher education.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Peking University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Peking University"}, {"qid": 1464, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "Among the universities in Beijing, which one has the longest history of establishment?", "answer": " Peking University, established in 1898, is among the universities in Beijing with the longest history.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Peking University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Peking University"}, {"qid": 1465, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the staff number at Zhejiang University compare to that of Peking University?", "answer": " This question cannot be directly answered without specific staff numbers for both universities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Zhejiang University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Zhejiang University"}, {"qid": 1466, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest department within Zhejiang University?", "answer": " The specific oldest department at Zhejiang University is not provided in the information available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Zhejiang University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Zhejiang University"}, {"qid": 1467, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Considering its affiliation, how does Zhejiang University's relationship with the Ministry of Education impact its policies?", "answer": " As Zhejiang University is affiliated with the Ministry of Education, its policies are likely influenced by national education standards and regulations set by the ministry.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Zhejiang University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Zhejiang University"}, {"qid": 1468, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Zhejiang University decided to open a new campus abroad, how would this impact its staff number?", "answer": " Opening a new campus abroad would likely increase Zhejiang University's staff number to manage and operate the new campus.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Zhejiang University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Zhejiang University"}, {"qid": 1469, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the academic reputation of Zhejiang University compare to that of Tsinghua University?", "answer": " Without specific rankings or metrics, it's not possible to directly compare the academic reputations of Zhejiang University and Tsinghua University.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Zhejiang University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Zhejiang University"}, {"qid": 1470, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which program at Zhejiang University is considered the most competitive for admissions?", "answer": " The specific program considered most competitive for admissions at Zhejiang University is not provided in the available information.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Zhejiang University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Zhejiang University"}, {"qid": 1471, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does Zhejiang University's participation in Project 985 influence its research output?", "answer": " Participation in Project 985 likely enhances Zhejiang University's research output by providing additional funding and resources aimed at elevating research quality and capacity.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Zhejiang University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Zhejiang University"}, {"qid": 1472, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Zhejiang University introduced a new STEM (Science, Technology, Engineering, and Mathematics) program, what might be the potential benefits for its research capabilities?", "answer": " Introducing a new STEM program could significantly enhance Zhejiang University's research capabilities by attracting talented researchers and students, fostering innovation, and encouraging interdisciplinary collaborations.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Zhejiang University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Zhejiang University"}, {"qid": 1473, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the international student population at Zhejiang University compare to that at Fudan University?", "answer": " This question cannot be directly answered without specific data on the international student populations of both Zhejiang University and Fudan University.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Zhejiang University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Zhejiang University"}, {"qid": 1474, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the highest-ranked engineering program at Zhejiang University according to global rankings?", "answer": " The specific highest-ranked engineering program at Zhejiang University according to global rankings is not provided in the available information.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Zhejiang University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Zhejiang University"}, {"qid": 1475, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What role does Zhejiang University's location in Hangzhou play in its academic collaborations with industries?", "answer": " Zhejiang University's location in Hangzhou, a major economic and technological hub, likely facilitates close academic collaborations with industries, enhancing research, innovation, and practical learning opportunities for students.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Zhejiang University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Zhejiang University"}, {"qid": 1476, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Zhejiang University were to double its research budget, what impact could this have on its global research standing?", "answer": " Doubling its research budget could significantly improve Zhejiang University's global research standing by allowing for more extensive research projects, attracting top researchers, and increasing research publications and patents.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Zhejiang University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Zhejiang University"}, {"qid": 1477, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the staff number of Fudan University compare to that of Shanghai Jiao Tong University?", "answer": " This requires up-to-date data for a precise comparison.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Fudan University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Fudan University"}, {"qid": 1478, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest university in Shanghai?", "answer": " Fudan University, founded in 1905.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Fudan University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Fudan University"}, {"qid": 1479, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How is Fudan University related to the Ministry of Education?", "answer": " Fudan University is affiliated with the Ministry of Education.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Fudan University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Fudan University"}, {"qid": 1480, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would happen if Fudan University decided to become a private university?", "answer": " It would lose its affiliation with the Ministry of Education and possibly its co-funding with the Shanghai Municipal Government.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Fudan University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Fudan University"}, {"qid": 1481, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compare the founding years of Fudan University and Peking University. Which is older?", "answer": " Peking University is older, founded in 1898, compared to Fudan University founded in 1905.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Fudan University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Fudan University"}, {"qid": 1482, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which department at Fudan University has the most academic staff?", "answer": " This requires specific data not provided.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Fudan University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Fudan University"}, {"qid": 1483, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What role does the Shanghai Municipal Government play in Fudan University's funding?", "answer": " The Shanghai Municipal Government co-funds Fudan University along with the Ministry of Education.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Fudan University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Fudan University"}, {"qid": 1484, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Fudan University opened a new campus abroad, how would its relationship with the Ministry of Education change?", "answer": " The relationship might be expanded to include international cooperation but would likely remain under the guidance of the Ministry of Education.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Fudan University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Fudan University"}, {"qid": 1485, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the location of Fudan University compare to that of Tsinghua University?", "answer": " Fudan University is located in Shanghai, while Tsinghua University is in Beijing.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Fudan University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Fudan University"}, {"qid": 1486, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the highest-ranked faculty at Fudan University?", "answer": " This requires specific ranking information not provided.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Fudan University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Fudan University"}, {"qid": 1487, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Describe the partnership between Fudan University and the Shanghai Municipal Government.", "answer": " The Shanghai Municipal Government co-funds Fudan University, indicating a strong partnership aimed at promoting educational development.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Fudan University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Fudan University"}, {"qid": 1488, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would be the impact on Fudan University's international programs if relations between China and the United States were to improve significantly?", "answer": " There could be an increase in joint programs, student exchanges, and collaborative research projects.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Fudan University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Fudan University"}, {"qid": 1489, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest university in Jiangsu, if Nanjing University was founded in 1902?", "answer": " Nanjing University", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Nanjing University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Nanjing University"}, {"qid": 1490, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Who sponsors Nanjing University?", "answer": " The Ministry of Education", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Nanjing University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Nanjing University"}, {"qid": 1491, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Which projects is Nanjing University a part of?", "answer": " Project 211, Project 985, and the Double First-Class Construction", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Nanjing University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Nanjing University"}, {"qid": 1492, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Is Nanjing University's founding year before or after Peking University's founding year of 1898?", "answer": " After", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Nanjing University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Nanjing University"}, {"qid": 1493, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the highest-ranking league that Nanjing University is a member of?", "answer": " C9 League", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Nanjing University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Nanjing University"}, {"qid": 1494, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Where is Nanjing University located within China?", "answer": " Nanjing, Jiangsu", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Nanjing University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Nanjing University"}, {"qid": 1495, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Nanjing University decided to double its staff number, how many people would be working there, assuming they currently have 3,000 staff members?", "answer": " 6,000", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Nanjing University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Nanjing University"}, {"qid": 1496, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the location of Nanjing University compare to that of Shanghai Jiao Tong University in terms of proximity to the capital of China?", "answer": " Nanjing University is farther from the capital than Shanghai Jiao Tong University.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Nanjing University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Nanjing University"}, {"qid": 1497, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the earliest project that Nanjing University became a part of?", "answer": " Project 211", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Nanjing University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Nanjing University"}, {"qid": 1498, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Which ministry is Nanjing University affiliated with?", "answer": " The Ministry of Education", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Nanjing University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Nanjing University"}, {"qid": 1499, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would be the consequence if Nanjing University left the C9 League?", "answer": " It would lose its status as a top-ranking university in China.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Nanjing University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Nanjing University"}, {"qid": 1500, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to Tsinghua University, how does Nanjing University's affiliation with the Ministry of Education differ?", "answer": " There is no difference; both are affiliated with the Ministry of Education.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Nanjing University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Nanjing University"}, {"qid": 1501, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the staff number of Xi'an Jiaotong University compare to that of Shanghai Jiao Tong University?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Xi'an Jiaotong University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Xi'an Jiaotong University"}, {"qid": 1502, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest university between Xi'an Jiaotong University and Peking University?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Xi'an Jiaotong University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Xi'an Jiaotong University"}, {"qid": 1503, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Who is the president of Xi'an Jiaotong University and what is the university's founding year?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Xi'an Jiaotong University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Xi'an Jiaotong University"}, {"qid": 1504, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Xi'an Jiaotong University were to double its staff number, how many staff members would it have?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Xi'an Jiaotong University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Xi'an Jiaotong University"}, {"qid": 1505, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the student population of Xi'an Jiaotong University compare to Tsinghua University?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Xi'an Jiaotong University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Xi'an Jiaotong University"}, {"qid": 1506, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which university has a larger campus area, Xi'an Jiaotong University or Fudan University?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Xi'an Jiaotong University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Xi'an Jiaotong University"}, {"qid": 1507, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between the president of Xi'an Jiaotong University and the year the university was established in terms of their roles in the institution's history?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Xi'an Jiaotong University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Xi'an Jiaotong University"}, {"qid": 1508, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Xi'an Jiaotong University decided to open a new campus in another country, how would that affect its total number of campuses?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Xi'an Jiaotong University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Xi'an Jiaotong University"}, {"qid": 1509, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to the number of faculties in Xi'an Jiaotong University, how does the number of faculties in Beijing University of Technology stand?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Xi'an Jiaotong University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Xi'an Jiaotong University"}, {"qid": 1510, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "Among Xi'an Jiaotong University, Zhejiang University, and Nanjing University, which has the highest number of affiliated hospitals?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Xi'an Jiaotong University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Xi'an Jiaotong University"}, {"qid": 1511, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the founding year of Xi'an Jiaotong University influence its current academic reputation in China?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Xi'an Jiaotong University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Xi'an Jiaotong University"}, {"qid": 1512, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Xi'an Jiaotong University were to merge with another top university in China, what might be the impact on its global university rankings?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Xi'an Jiaotong University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Xi'an Jiaotong University"}, {"qid": 1513, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the affiliation of the University of Science and Technology of China compare to that of a typical public university in China?", "answer": " The University of Science and Technology of China is affiliated with the Chinese Academy of Sciences, unlike most public universities in China that are typically affiliated directly with the Ministry of Education of China.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Science and Technology of China"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Science and Technology of China"}, {"qid": 1514, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "What makes the University of Science and Technology of China unique in terms of its funding sources compared to other public universities in China?", "answer": " It is co-funded by the Chinese Academy of Sciences, the Ministry of Education of China, and the Anhui Provincial Government, which is a unique combination of funding sources compared to other public universities in China.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Science and Technology of China"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Science and Technology of China"}, {"qid": 1515, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between the University of Science and Technology of China and the Chinese Academy of Sciences?", "answer": " The University of Science and Technology of China is affiliated with the Chinese Academy of Sciences.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Science and Technology of China"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Science and Technology of China"}, {"qid": 1516, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the Ministry of Education of China stops its co-funding, how might the University of Science and Technology of China be affected?", "answer": " The university might have to seek additional funding from other sources or reduce its expenses to compensate for the loss of co-funding from the Ministry of Education of China.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Science and Technology of China"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Science and Technology of China"}, {"qid": 1517, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the earliest founding year among the elite universities in China, including the University of Science and Technology of China?", "answer": " The University of Science and Technology of China, founded in 1958, is among the earliest of the elite universities established in China.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Science and Technology of China"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Science and Technology of China"}, {"qid": 1518, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the location of the University of Science and Technology of China influence its academic collaborations within Anhui Province?", "answer": " Being located in Hefei, Anhui Province, the University of Science and Technology of China is strategically positioned to foster academic collaborations with local research institutions and industries, leveraging its proximity to enhance innovation and technology transfer within the region.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Science and Technology of China"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Science and Technology of China"}, {"qid": 1519, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Science and Technology of China were to double its staff number, how might this impact its research output?", "answer": " Doubling its staff number could significantly increase the university's research output, provided the additional staff are effectively integrated into its research programs and have access to adequate resources.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Science and Technology of China"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Science and Technology of China"}, {"qid": 1520, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to other universities affiliated with the Chinese Academy of Sciences, how does the University of Science and Technology of China's location in Hefei impact its academic focus?", "answer": " The University of Science and Technology of China's location in Hefei allows it to have a unique focus on scientific and technological disciplines that are prioritized by regional development plans, potentially differing from other universities affiliated with the Chinese Academy of Sciences located in areas with different industrial or technological priorities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Science and Technology of China"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Science and Technology of China"}, {"qid": 1521, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most distinctive feature of the University of Science and Technology of China's partnership with the Anhui Provincial Government compared to other provincial government partnerships with universities?", "answer": " The most distinctive feature is the tripartite funding arrangement involving the Anhui Provincial Government, the Chinese Academy of Sciences, and the Ministry of Education of China, which is a unique model of support and collaboration compared to other provincial government partnerships with universities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Science and Technology of China"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Science and Technology of China"}, {"qid": 1522, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What role does the Ministry of Education play in the governance of the University of Science and Technology of China?", "answer": " The Ministry of Education co-funds the University of Science and Technology of China and likely plays a significant role in its governance, setting educational standards and policies that the university must adhere to.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Science and Technology of China"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Science and Technology of China"}, {"qid": 1523, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would be the potential impact on the University of Science and Technology of China if it became an independent entity separate from the Chinese Academy of Sciences?", "answer": " If the University of Science and Technology of China became independent from the Chinese Academy of Sciences, it might face challenges in maintaining its level of research excellence and funding but could also gain more autonomy in decision-making and academic directions.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Science and Technology of China"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Science and Technology of China"}, {"qid": 1524, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the University of Science and Technology of China's staff number compare to that of similar science and technology universities in China?", "answer": " While specific staff numbers can vary, the University of Science and Technology of China typically has a high number of staff dedicated to research and teaching in science and technology, comparable to or exceeding that of similar institutions in China, reflecting its emphasis on research-intensive education.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Science and Technology of China"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Science and Technology of China"}, {"qid": 1525, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the staff number at Shanghai Jiao Tong University compare to that of Fudan University?", "answer": " The staff number comparison requires specific data from both universities, which can vary over time.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Shanghai Jiao Tong University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Shanghai Jiao Tong University"}, {"qid": 1526, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest university in Shanghai?", "answer": " Shanghai Jiao Tong University is one of the oldest universities in Shanghai, founded in 1896.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Shanghai Jiao Tong University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Shanghai Jiao Tong University"}, {"qid": 1527, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How is Shanghai Jiao Tong University affiliated with the Chinese government?", "answer": " Shanghai Jiao Tong University is affiliated with the Ministry of Education of China.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Shanghai Jiao Tong University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Shanghai Jiao Tong University"}, {"qid": 1528, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Shanghai Jiao Tong University decided to open a new campus, how would that affect its relationship with the Ministry of Education?", "answer": " Opening a new campus would likely require coordination with the Ministry of Education, potentially strengthening the relationship through increased collaboration.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Shanghai Jiao Tong University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Shanghai Jiao Tong University"}, {"qid": 1529, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Between Shanghai Jiao Tong University and Tsinghua University, which has a higher number of students enrolled in engineering programs?", "answer": " Specific enrollment numbers can vary, but both universities are renowned for their engineering programs in China.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Shanghai Jiao Tong University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Shanghai Jiao Tong University"}, {"qid": 1530, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which project, 211 or 985, has included more top universities in China, including Shanghai Jiao Tong University?", "answer": " Both Project 211 and Project 985 have included top universities in China, but Project 985 is more exclusive.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Shanghai Jiao Tong University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Shanghai Jiao Tong University"}, {"qid": 1531, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What role does the Double First-Class Construction play in the development of Shanghai Jiao Tong University?", "answer": " The Double First-Class Construction aims to develop world-class universities and disciplines, directly supporting SJTU's development towards excellence in education and research.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Shanghai Jiao Tong University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Shanghai Jiao Tong University"}, {"qid": 1532, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Shanghai Jiao Tong University were to lead a new research initiative under the Double First-Class Construction, what area might it focus on?", "answer": " Given its strong engineering and technology programs, SJTU might focus on areas like artificial intelligence, sustainable energy, or biotechnology.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Shanghai Jiao Tong University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Shanghai Jiao Tong University"}, {"qid": 1533, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the international student population at Shanghai Jiao Tong University compare to that of Peking University?", "answer": " Both universities attract a significant number of international students, but specific numbers can vary by academic year.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Shanghai Jiao Tong University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Shanghai Jiao Tong University"}, {"qid": 1534, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most popular undergraduate program at Shanghai Jiao Tong University?", "answer": " Popular programs include engineering, business, and computer science, but the most popular can vary by enrollment numbers and year.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Shanghai Jiao Tong University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Shanghai Jiao Tong University"}, {"qid": 1535, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does Shanghai Jiao Tong University's location in Shanghai influence its research and academic collaborations?", "answer": " Being in Shanghai, a global financial and technological hub, enhances SJTU's opportunities for industry partnerships and international collaborations.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Shanghai Jiao Tong University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Shanghai Jiao Tong University"}, {"qid": 1536, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Shanghai Jiao Tong University were to double its research budget, in which fields might it invest the most?", "answer": " Likely fields for increased investment include AI, renewable energy, quantum computing, and biomedicine, reflecting global research trends and SJTU's strengths.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Shanghai Jiao Tong University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Shanghai Jiao Tong University"}, {"qid": 1537, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of the Harbin Institute of Technology compare to the founding year of Tsinghua University?", "answer": " The Harbin Institute of Technology was founded in 1920, whereas Tsinghua University was founded in 1911, making Tsinghua University older.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harbin Institute of Technology"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Harbin Institute of Technology"}, {"qid": 1538, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest engineering university in China, considering the Harbin Institute of Technology's founding year?", "answer": " The Harbin Institute of Technology, founded in 1920, is among the oldest, but not the oldest; universities like Tsinghua University (founded in 1911) are older.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harbin Institute of Technology"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Harbin Institute of Technology"}, {"qid": 1539, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What role does the Harbin Institute of Technology play in China's Double First-Class Construction initiative?", "answer": " The Harbin Institute of Technology is designated as a participant in the Double First-Class Construction initiative, aiming to develop world-class universities and disciplines in China.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harbin Institute of Technology"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Harbin Institute of Technology"}, {"qid": 1540, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the Harbin Institute of Technology were to expand its campus, what government ministry would likely be involved in the approval process?", "answer": " The Ministry of Industry and Information Technology would likely be involved in the approval process for the expansion of the Harbin Institute of Technology's campus.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harbin Institute of Technology"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Harbin Institute of Technology"}, {"qid": 1541, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the staff number at the Harbin Institute of Technology compare to that of Peking University?", "answer": " As of my last update, specific staff numbers are needed to accurately compare, but both universities are large, prestigious institutions in China with significant numbers of faculty and staff.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harbin Institute of Technology"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "Harbin Institute of Technology"}, {"qid": 1542, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which university has the most extensive campus area, Harbin Institute of Technology or Shanghai Jiao Tong University?", "answer": " Detailed campus area figures are needed for a direct comparison, but both universities have large campuses in major Chinese cities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harbin Institute of Technology"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "Harbin Institute of Technology"}, {"qid": 1543, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the affiliation with the Ministry of Industry and Information Technology influence the research focus of the Harbin Institute of Technology?", "answer": " The affiliation likely steers the Harbin Institute of Technology's research focus towards engineering, technology, and industry-relevant projects, aligning with national industrial and technological development goals.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harbin Institute of Technology"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "Harbin Institute of Technology"}, {"qid": 1544, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the Harbin Institute of Technology were to start a new research center focused on renewable energy, which existing programs would most likely be involved?", "answer": " Existing programs in engineering, especially electrical engineering and materials science, would likely be involved in a new renewable energy research center.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harbin Institute of Technology"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "Harbin Institute of Technology"}, {"qid": 1545, "topic": "C9 League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "In terms of project involvement, how does Harbin Institute of Technology's participation in Project 211 and Project 985 compare to that of Fudan University?", "answer": " Both the Harbin Institute of Technology and Fudan University are involved in Project 211 and Project 985, indicating their status as top-tier universities in China with high levels of research activity and government support.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harbin Institute of Technology"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Harbin Institute of Technology"}, {"qid": 1546, "topic": "C9 League", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most prestigious engineering university in China, considering Harbin Institute of Technology's reputation?", "answer": " While the Harbin Institute of Technology is highly prestigious, especially in engineering, it's difficult to single out the most prestigious as other universities like Tsinghua University also have very strong reputations in engineering.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harbin Institute of Technology"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Harbin Institute of Technology"}, {"qid": 1547, "topic": "C9 League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the location of Harbin Institute of Technology in Harbin affect its academic focus and student life?", "answer": " The location in Harbin, a major city in northeastern China, likely influences the Harbin Institute of Technology to focus on areas of importance to the region's economy and climate, and offers students a unique cultural and social experience due to the city's history and climate.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harbin Institute of Technology"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Harbin Institute of Technology"}, {"qid": 1548, "topic": "C9 League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the Harbin Institute of Technology were to collaborate internationally on space technology, which country's institutions would be most likely to partner with?", "answer": " Given China's active collaboration in space technology, countries with advanced space research programs like the United States (NASA), Russia (Roscosmos), or European Union (European Space Agency) would be likely partners.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harbin Institute of Technology"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Harbin Institute of Technology"}, {"qid": 178, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the start year of University A compare to University B?", "answer": [["name", "startyear"], []], "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": [], "topic_level": true, "sql": "SELECT name, startyear FROM EuropeanUniversityAssociation WHERE name IN ('University A', 'University B');"}, {"qid": 179, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which university has the most staff members?", "answer": [["name", "MAX(staffnumber)"], [[null, null]]], "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": [], "topic_level": true, "sql": "SELECT name, MAX(staffnumber) FROM EuropeanUniversityAssociation;"}, {"qid": 180, "topic": "European University Association", "type": "Aggregation", "category": "Statistical Reasoning", "question": "What is the total number of staff members across all universities?", "answer": [["SUM(staffnumber)"], [[null]]], "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": [], "topic_level": true, "sql": "SELECT SUM(staffnumber) FROM EuropeanUniversityAssociation;"}, {"qid": 181, "topic": "European University Association", "type": "Distribution Compliance", "category": "Statistical Reasoning", "question": "How many universities were started after the year 2000?", "answer": [["COUNT(*)"], [[0]]], "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": [], "topic_level": true, "sql": "SELECT COUNT(*) FROM EuropeanUniversityAssociation WHERE startyear > 2000;"}, {"qid": 182, "topic": "European University Association", "type": "Correlation Analysis", "category": "Statistical Reasoning", "question": "Is there a correlation between the start year and the number of staff members at universities?", "answer": [["startyear", "staffnumber"], []], "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": [], "topic_level": true, "sql": "SELECT startyear, staffnumber FROM EuropeanUniversityAssociation;"}, {"qid": 183, "topic": "European University Association", "type": "Variance Analysis", "category": "Statistical Reasoning", "question": "What is the variance in the start years of all universities?", "answer": [], "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": [], "topic_level": true, "sql": "SELECT VAR_POP(startyear) FROM EuropeanUniversityAssociation;"}, {"qid": 184, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How do the locations of University C and University D compare?", "answer": [["name", "location"], []], "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": [], "topic_level": true, "sql": "SELECT name, location FROM EuropeanUniversityAssociation WHERE name IN ('University C', 'University D');"}, {"qid": 185, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which university was founded first?", "answer": [["name", "MIN(startyear)"], [[null, null]]], "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": [], "topic_level": true, "sql": "SELECT name, MIN(startyear) FROM EuropeanUniversityAssociation;"}, {"qid": 186, "topic": "European University Association", "type": "Aggregation", "category": "Statistical Reasoning", "question": "What is the average number of staff members per university?", "answer": [["AVG(staffnumber)"], [[null]]], "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": [], "topic_level": true, "sql": "SELECT AVG(staffnumber) FROM EuropeanUniversityAssociation;"}, {"qid": 187, "topic": "European University Association", "type": "Distribution Compliance", "category": "Statistical Reasoning", "question": "How many universities have a president with the first name starting with \"J\"?", "answer": [["COUNT(*)"], [[0]]], "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": [], "topic_level": true, "sql": "SELECT COUNT(*) FROM EuropeanUniversityAssociation WHERE president LIKE 'J%';"}, {"qid": 188, "topic": "European University Association", "type": "Correlation Analysis", "category": "Statistical Reasoning", "question": "Is there a relationship between the location and the number of staff members?", "answer": [["location", "staffnumber"], []], "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": [], "topic_level": true, "sql": "SELECT location, staffnumber FROM EuropeanUniversityAssociation;"}, {"qid": 189, "topic": "European University Association", "type": "Variance Analysis", "category": "Statistical Reasoning", "question": "How does the variance in staff numbers compare between universities founded before and after 1990?", "answer": [], "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": [], "topic_level": true, "sql": "SELECT VAR_POP(staffnumber) FROM EuropeanUniversityAssociation WHERE startyear < 1990;"}, {"qid": 3781, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of Columbia University compare to Harvard University?", "answer": " Columbia University was founded in 1754, making it younger than Harvard University, which was established in 1636.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Columbia University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Columbia University"}, {"qid": 3782, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest university in the United States?", "answer": " Harvard University is the oldest, established in 1636, making Columbia University, founded in 1754, not the oldest.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Columbia University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Columbia University"}, {"qid": 3783, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Why is Columbia University considered an Ivy League school?", "answer": " Columbia University is considered an Ivy League school due to its longstanding history of academic excellence, significant endowment, and membership in the Ivy League group of elite, private universities in the Northeastern US.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Columbia University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Columbia University"}, {"qid": 3784, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would happen if Columbia University decided to relocate outside of New York City?", "answer": " If Columbia University decided to relocate outside of New York City, it would likely face significant logistical challenges, potential backlash from students and alumni, and the need to reestablish its identity and connections in a new location.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Columbia University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Columbia University"}, {"qid": 3785, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which Ivy League university has the largest number of staff?", "answer": " As of my last update, Harvard University employs the largest number of staff among the Ivy League universities, not Columbia University.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Columbia University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Columbia University"}, {"qid": 3786, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does Columbia University's establishment year compare to that of Yale University?", "answer": " Columbia University was established in 1754, making it younger than Yale University, which was founded in 1701.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Columbia University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Columbia University"}, {"qid": 3787, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What led to Columbia University being established as King's College in 1754?", "answer": " Columbia University was established as King's College in 1754 due to the efforts of Anglican community leaders who sought to create a college to provide their sons with a higher education in the arts and sciences.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Columbia University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Columbia University"}, {"qid": 3788, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Columbia University had never been founded, what would be the impact on higher education in New York?", "answer": " If Columbia University had never been founded, the landscape of higher education in New York would be significantly different, potentially leaving a gap in the availability of Ivy League education in the state and affecting the development of academic research and cultural institutions in New York City.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Columbia University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Columbia University"}, {"qid": 3789, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the youngest Ivy League university?", "answer": " Cornell University is the youngest Ivy League university, established in 1865, making Columbia University, founded in 1754, not the youngest.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Columbia University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Columbia University"}, {"qid": 3790, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the student population of Columbia University compare to that of Princeton University?", "answer": " Columbia University has a larger total student population compared to Princeton University, with Columbia offering a wide range of undergraduate, graduate, and professional programs.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Columbia University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Columbia University"}, {"qid": 3791, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the historical significance of Columbia University's original name, King's College?", "answer": " The historical significance of Columbia University's original name, King's College, lies in its colonial origins, symbolizing the institution's establishment under the patronage of the British crown prior to the American Revolution.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Columbia University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Columbia University"}, {"qid": 3792, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What if Columbia University had remained King's College and continued to operate under British rule?", "answer": " If Columbia University had remained King's College and continued to operate under British rule, it might have maintained a curriculum and governance aligned with British educational standards and possibly played a different role in American education and society, potentially affecting its evolution into a globally recognized university.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Columbia University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Columbia University"}, {"qid": 3793, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which university is the oldest institution of higher learning in the United States?", "answer": " Harvard University", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harvard University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Harvard University"}, {"qid": 3794, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Who was Harvard University named after?", "answer": " John Harvard", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harvard University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Harvard University"}, {"qid": 3795, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Where does Harvard University rank in terms of prestige worldwide?", "answer": " It is one of the most prestigious universities in the world.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harvard University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Harvard University"}, {"qid": 3796, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What type of university is Harvard University?", "answer": " It is a private Ivy League research university.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harvard University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Harvard University"}, {"qid": 3797, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "In what city is Harvard University located?", "answer": " Cambridge, Massachusetts", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harvard University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Harvard University"}, {"qid": 3798, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What was Harvard University originally founded as?", "answer": " Harvard College", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harvard University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Harvard University"}, {"qid": 3799, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of Harvard University compare to that of Yale University?", "answer": " Harvard University was founded earlier, in 1636, compared to Yale University.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harvard University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Harvard University"}, {"qid": 3800, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the founding year of the oldest institution of higher learning in the United States?", "answer": " 1636", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harvard University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Harvard University"}, {"qid": 3801, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Harvard University decided to move its location, which city would no longer be its home?", "answer": " Cambridge, Massachusetts", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harvard University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Harvard University"}, {"qid": 3802, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What was the profession of John Harvard, the first benefactor of Harvard University?", "answer": " Puritan clergyman", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harvard University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Harvard University"}, {"qid": 3803, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to other Ivy League universities, how does Harvard's founding year stand?", "answer": " Harvard University has the earliest founding year among all Ivy League universities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harvard University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Harvard University"}, {"qid": 3804, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the primary focus of Harvard University?", "answer": " It focuses on research and is known for its influence, wealth, and high rankings.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harvard University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Harvard University"}, {"qid": 3805, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What was the original name of Princeton University when it was founded in 1746?", "answer": " College of New Jersey", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Princeton University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Princeton University"}, {"qid": 3806, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "In which year did the College of New Jersey officially become Princeton University?", "answer": " 1896", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Princeton University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Princeton University"}, {"qid": 3807, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the location of Princeton University's main campus?", "answer": " Princeton, New Jersey", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Princeton University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Princeton University"}, {"qid": 3808, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest institution of higher education in the United States, considering Princeton University is the fourth-oldest?", "answer": " Harvard University", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Princeton University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Princeton University"}, {"qid": 3809, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of Princeton University compare to the founding year of Harvard University?", "answer": " Princeton University was founded in 1746, which is 140 years after Harvard University was founded in 1636.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Princeton University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Princeton University"}, {"qid": 3810, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "From which city did Princeton University move to its current location in Princeton, New Jersey?", "answer": " Newark", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Princeton University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Princeton University"}, {"qid": 3811, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Before the institution was named Princeton University in 1896, what was its name after moving from Newark?", "answer": " College of New Jersey", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Princeton University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Princeton University"}, {"qid": 3812, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Princeton University had not changed its name from the College of New Jersey, what would have been its name today?", "answer": " College of New Jersey", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Princeton University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Princeton University"}, {"qid": 3813, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which colonial college became a university first among the nine chartered before the American Revolution?", "answer": " Harvard University", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Princeton University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Princeton University"}, {"qid": 3814, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the youngest Ivy League institution, considering Princeton is one of the oldest?", "answer": " Cornell University", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Princeton University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Princeton University"}, {"qid": 3815, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Princeton University decided to move its campus back to Newark, how would its location change be described?", "answer": " From Princeton, New Jersey, to Newark, New Jersey", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Princeton University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Princeton University"}, {"qid": 3816, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What was the sequence of cities in which Princeton University was located before settling in its current location?", "answer": " Elizabeth, Newark, Princeton", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Princeton University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Princeton University"}, {"qid": 3817, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest institution of higher education in the United States?", "answer": " Harvard University", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Yale University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Yale University"}, {"qid": 3818, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which Ivy League university is located the furthest north?", "answer": " Dartmouth College", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Yale University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Yale University"}, {"qid": 3819, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How is Yale University related to the American Revolution?", "answer": " It is one of the nine colonial colleges chartered before the American Revolution.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Yale University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Yale University"}, {"qid": 3820, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What distinguishes Yale University's founding year among Ivy League institutions?", "answer": " It is the third-oldest institution of higher education in the United States.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Yale University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Yale University"}, {"qid": 3821, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Is Yale University older than Princeton University?", "answer": " Yes", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Yale University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Yale University"}, {"qid": 3822, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What might have happened if Yale University had been founded after the American Revolution?", "answer": " It might not have been classified as one of the nine colonial colleges.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Yale University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Yale University"}, {"qid": 3823, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What Ivy League university has the highest number of staff?", "answer": " Harvard University", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Yale University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Yale University"}, {"qid": 3824, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Why is Yale University considered prestigious?", "answer": " Due to its influence, wealth, and high rankings.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Yale University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Yale University"}, {"qid": 3825, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Yale University decided to move its location, how would that affect its historical significance?", "answer": " It could potentially diminish its historical connection to New Haven, Connecticut, and its colonial roots.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Yale University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Yale University"}, {"qid": 3826, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Which has a larger campus area, Yale University or Columbia University?", "answer": " Yale University", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Yale University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Yale University"}, {"qid": 3827, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What if Yale University was not a part of the Ivy League?", "answer": " It would still be recognized for its academic excellence but might not have the same level of prestige associated with the Ivy League.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Yale University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Yale University"}, {"qid": 3828, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does Yale University's founding year contribute to its prestige among American universities?", "answer": " Its status as the third-oldest institution of higher education in the United States contributes to its historical prestige.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Yale University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Yale University"}, {"qid": 3829, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest Ivy League institution of higher education in the United States?", "answer": " Brown University", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brown University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Brown University"}, {"qid": 3830, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Where does Brown University rank in terms of its founding year among the Ivy League universities?", "answer": " Seventh", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brown University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Brown University"}, {"qid": 3831, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How did Brown University's policy on the religious affiliation of students differ from other colleges at the time of its founding?", "answer": " It was the first U.S. college to codify that admission and instruction of students was to be equal regardless of the religious affiliation of students.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brown University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Brown University"}, {"qid": 3832, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What was the original name of Brown University at its founding in 1764?", "answer": " The College in the English Colony of Rhode Island and Providence Plantations", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brown University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Brown University"}, {"qid": 3833, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to other Ivy League universities founded before the American Revolution, how does Brown University's founding year stand?", "answer": " It is one of nine colonial colleges chartered before the American Revolution.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brown University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Brown University"}, {"qid": 3834, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Brown University decided to implement a new policy that prioritizes applicants from Rhode Island, how would this align with its historical admission policies?", "answer": " It would be a departure from its historical policy of equal admission regardless of the religious affiliation, potentially adding a geographical preference.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brown University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Brown University"}, {"qid": 3835, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which Ivy League university is located in Providence, Rhode Island?", "answer": " Brown University", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brown University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Brown University"}, {"qid": 3836, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does Brown University's location compare with other Ivy League universities?", "answer": " It is the only Ivy League university located in Providence, Rhode Island.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brown University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Brown University"}, {"qid": 3837, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What significant educational policy did Brown University first introduce in the United States?", "answer": " The policy that admission and instruction of students was to be equal regardless of the religious affiliation of students.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brown University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Brown University"}, {"qid": 3838, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Brown University were to relocate, how would that affect its status as the seventh-oldest institution of higher education in the United States?", "answer": " Its status as the seventh-oldest institution would not change, but its historical significance to Providence, Rhode Island, would be impacted.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brown University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Brown University"}, {"qid": 3839, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What makes Brown University unique among the colonial colleges chartered before the American Revolution?", "answer": " It was the first to codify equal admission and instruction regardless of the religious affiliation of students.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brown University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Brown University"}, {"qid": 3840, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "In comparison to its Ivy League peers, what is distinctive about Brown University's founding principles regarding religious affiliation?", "answer": " It uniquely codified the principle of equal admission and instruction regardless of religious affiliation, setting it apart from other Ivy League peers at the time of its founding.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brown University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Brown University"}, {"qid": 3841, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the student body size at Cornell University compare to that of other Ivy League universities as of fall 2023?", "answer": " The student body size at Cornell University, with over 16,000 undergraduate and 10,000 graduate students, is one of the largest among the Ivy League universities as of fall 2023.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cornell University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Cornell University"}, {"qid": 3842, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest part of Cornell University's campus?", "answer": " The oldest part of Cornell University's campus is Morrill Hall, one of the original buildings constructed when the university was founded in 1865.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cornell University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Cornell University"}, {"qid": 3843, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What role did Ezra Cornell and Andrew Dickson White play in the establishment of Cornell University?", "answer": " Ezra Cornell and Andrew Dickson White were the co-founders of Cornell University, established in 1865, with Ezra Cornell providing the initial endowment and land, and Andrew Dickson White serving as the first president.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cornell University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Cornell University"}, {"qid": 3844, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Cornell University decided to open a new campus outside of the United States, how would it decide on the location?", "answer": " If Cornell University decided to open a new campus outside of the United States, it would likely consider factors such as the presence of potential partner institutions, the demand for higher education in the area, the political and economic stability of the location, and the ability to uphold its academic standards and values abroad.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cornell University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Cornell University"}, {"qid": 3845, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the number of countries represented in Cornell University's student body in fall 2023 compare with its Ivy League peers?", "answer": " With students from 130 countries as of fall 2023, Cornell University's student body is among the most internationally diverse within the Ivy League.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cornell University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Cornell University"}, {"qid": 3846, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most popular undergraduate program at Cornell University as of fall 2023?", "answer": " As of fall 2023, the most popular undergraduate program at Cornell University is likely one in the College of Arts and Sciences or the College of Engineering, given their historical popularity and breadth of offerings.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cornell University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Cornell University"}, {"qid": 3847, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the founding principle of being a co-educational and nonsectarian institution influence Cornell University's admissions policy?", "answer": " The founding principle of being a co-educational and nonsectarian institution influences Cornell University's admissions policy by ensuring that it maintains an open and inclusive policy towards applicants of all genders and religious backgrounds, focusing on merit and potential.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cornell University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Cornell University"}, {"qid": 3848, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Cornell University were to significantly expand its engineering department, what implications might this have for its staff numbers and campus facilities?", "answer": " If Cornell University were to significantly expand its engineering department, it would likely see an increase in staff numbers to accommodate the larger student body and a need for expanded or new campus facilities, such as laboratories and classrooms, to ensure it maintains its high educational standards.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cornell University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Cornell University"}, {"qid": 3849, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the diversity of Cornell University's student body in fall 2023 compare to that of its founding in 1865?", "answer": " The diversity of Cornell University's student body in fall 2023, with students from all 50 U.S. states and 130 countries, is significantly greater than at its founding in 1865, reflecting a broadening of its admissions policies and global reach over time.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cornell University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Cornell University"}, {"qid": 3850, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is considered the most significant research contribution of Cornell University in the 21st century?", "answer": " While it is subjective, one of the most significant research contributions of Cornell University in the 21st century could be considered its advancements in nanotechnology, interdisciplinary life sciences, or its contributions to the development of the Mars Rover missions in collaboration with NASA.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cornell University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Cornell University"}, {"qid": 3851, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How has Cornell University's land-grant status influenced its academic and research programs?", "answer": " Cornell University's land-grant status has influenced its academic and research programs by committing it to public service, leading to a strong emphasis on applied sciences and extension services that address social, economic, and environmental challenges.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cornell University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Cornell University"}, {"qid": 3852, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Cornell University were to double its graduate student population, what changes might be necessary in terms of housing, facilities, and academic programs?", "answer": " If Cornell University were to double its graduate student population, significant changes would be necessary, including the expansion of housing facilities, enhancement of academic and research facilities to accommodate the increased demand, and potentially the development of new academic programs to cater to the broader interests and specializations of a larger graduate student body.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cornell University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Cornell University"}, {"qid": 3853, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the founding year of Dartmouth College and who was its founder?", "answer": " Dartmouth College was founded in 1769 by Eleazar Wheelock.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Dartmouth College"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Dartmouth College"}, {"qid": 3854, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which Ivy League university is located in Hanover, New Hampshire?", "answer": " Dartmouth College.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Dartmouth College"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Dartmouth College"}, {"qid": 3855, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does Dartmouth College's founding year compare to other Ivy League universities?", "answer": " Dartmouth College, founded in 1769, is one of the oldest, being one of the nine colonial colleges chartered before the American Revolution.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Dartmouth College"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Dartmouth College"}, {"qid": 3856, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is Dartmouth College best known for among Ivy League universities?", "answer": " Dartmouth College is best known for being among the most prestigious undergraduate colleges in the United States.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Dartmouth College"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Dartmouth College"}, {"qid": 3857, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Who was the president of Dartmouth College at the turn of the 20th century when it emerged into national prominence?", "answer": " The specific president at the exact turn of the 20th century is not directly provided, but Dartmouth has had several leaders who contributed to its national prominence around that time.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Dartmouth College"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Dartmouth College"}, {"qid": 3858, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Dartmouth College had not been established by Eleazar Wheelock in 1769, how might American higher education be different?", "answer": " Without Dartmouth College, American higher education might lack one of its earliest models of a private Ivy League research university, potentially affecting the evolution of liberal arts education and research in the United States.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Dartmouth College"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Dartmouth College"}, {"qid": 3859, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What makes Dartmouth College unique among the Ivy League universities in terms of its location?", "answer": " Dartmouth College's unique aspect among Ivy League universities regarding its location is its setting in Hanover, New Hampshire, providing a more rural and intimate campus environment compared to its peers.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Dartmouth College"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Dartmouth College"}, {"qid": 3860, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the number of staff at Dartmouth College support its research and undergraduate focus?", "answer": " The number of staff at Dartmouth College, while not specified, supports its research and undergraduate focus by providing a low student-to-faculty ratio, facilitating close mentoring, and fostering a strong research environment.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Dartmouth College"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Dartmouth College"}, {"qid": 3861, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to its founding, how has Dartmouth College's staff size changed by the 21st century?", "answer": " By the 21st century, Dartmouth College's staff size has significantly increased compared to its founding, reflecting its growth in student population, academic offerings, and research capabilities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Dartmouth College"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Dartmouth College"}, {"qid": 3862, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Dartmouth College decided to open a new campus in another country, what factors would need to be considered based on its history and identity?", "answer": " Factors would include maintaining its commitment to undergraduate education and research excellence, preserving its close-knit community and liberal arts focus, and aligning with its historical values and mission.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Dartmouth College"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Dartmouth College"}, {"qid": 3863, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest part of Dartmouth College's campus?", "answer": " The oldest part of Dartmouth College's campus is not specified in the provided information, but historic buildings like Dartmouth Hall, originally constructed in the 18th century, are among its earliest structures.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Dartmouth College"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Dartmouth College"}, {"qid": 3864, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does Dartmouth College's rural campus setting influence its academic and community life?", "answer": " Dartmouth College's rural campus setting in Hanover, New Hampshire, fosters a close-knit community atmosphere, encourages outdoor activities among its student body and staff, and contributes to a focused, immersive academic environment.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Dartmouth College"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Dartmouth College"}, {"qid": 3865, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest university in the United States that precedes the University of Pennsylvania?", "answer": " Harvard University", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pennsylvania"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Pennsylvania"}, {"qid": 3866, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which Ivy League university located in Philadelphia is the oldest?", "answer": " University of Pennsylvania", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pennsylvania"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Pennsylvania"}, {"qid": 3867, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Who was the founder and first president of the University of Pennsylvania?", "answer": " Benjamin Franklin", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pennsylvania"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Pennsylvania"}, {"qid": 3868, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the University of Pennsylvania's founding relate to the U.S. Declaration of Independence?", "answer": " The University of Pennsylvania was chartered prior to the U.S. Declaration of Independence.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pennsylvania"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "University of Pennsylvania"}, {"qid": 3869, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would be the consequence for the University of Pennsylvania if it decided to relocate to another city?", "answer": " The University would potentially lose its historical significance and connection to Philadelphia, potentially impacting its identity, student recruitment, and alumni network.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pennsylvania"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Pennsylvania"}, {"qid": 3870, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Pennsylvania had not been founded by Benjamin Franklin, how might its academic focus differ today?", "answer": " Without Franklin's influence, the University might not have emphasized training leaders in academia, commerce, and public service as strongly.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pennsylvania"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Pennsylvania"}, {"qid": 3871, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the number of staff at the University of Pennsylvania compare to other Ivy League institutions?", "answer": " The staff number can vary, but generally, the University of Pennsylvania is among the larger Ivy League institutions in terms of staff size, though specific comparisons require current data.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pennsylvania"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Pennsylvania"}, {"qid": 3872, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to its founding, how has the academic focus of the University of Pennsylvania evolved?", "answer": " The University has expanded from Franklin's initial focus on training leaders in academia, commerce, and public service to include a wide range of disciplines and research areas.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pennsylvania"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "University of Pennsylvania"}, {"qid": 3873, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the ranking of the University of Pennsylvania among Ivy League universities in terms of its founding year?", "answer": " Fourth-oldest, though this is challenged and some argue it is the fifth-oldest.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pennsylvania"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Pennsylvania"}, {"qid": 3874, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What city is the University of Pennsylvania located in?", "answer": " Philadelphia, Pennsylvania", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pennsylvania"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Pennsylvania"}, {"qid": 3875, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Pennsylvania were to establish a new campus, what factors would likely influence its location choice?", "answer": " Factors would likely include historical significance, accessibility, potential for academic and research collaborations, and the ability to attract students and staff.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pennsylvania"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Pennsylvania"}, {"qid": 3876, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the University of Pennsylvania's approach to interdisciplinary studies compare to that of other Ivy League universities?", "answer": " Penn is known for its strong emphasis on interdisciplinary studies, often encouraging collaboration across different schools and departments, which is a characteristic shared with, but varies in execution compared to, other Ivy League universities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pennsylvania"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Pennsylvania"}, {"qid": 3877, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What led to the founding of the University of Cambridge?", "answer": " Disputes between students and Oxford townsfolk led some Oxford academics to flee northeast to Cambridge, where they established the University of Cambridge in 1209.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Oxford"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Oxford"}, {"qid": 3878, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest university in the English-speaking world?", "answer": " The University of Oxford.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Oxford"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Oxford"}, {"qid": 3879, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which university is the world's second-oldest in continuous operation?", "answer": " The University of Oxford.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Oxford"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Oxford"}, {"qid": 3880, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What significant event in 1167 contributed to the growth of the University of Oxford?", "answer": " Henry II banned English students from attending the University of Paris, which contributed to the growth of the University of Oxford.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Oxford"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Oxford"}, {"qid": 3881, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How do the University of Oxford and the University of Cambridge collectively refer to themselves?", "answer": " Oxbridge.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Oxford"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Oxford"}, {"qid": 3882, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How did the University of Oxford's relationship with the University of Paris influence its development?", "answer": " The ban on English students attending the University of Paris in 1167 led to the rapid growth of the University of Oxford.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Oxford"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Oxford"}, {"qid": 3883, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What might have happened to the University of Oxford if Henry II had not banned English students from attending the University of Paris?", "answer": " The University of Oxford might not have grown as rapidly or become as prominent as it did.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Oxford"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Oxford"}, {"qid": 3884, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the significance of the year 1096 for the University of Oxford?", "answer": " It marks the earliest evidence of teaching at the University of Oxford, making it the oldest university in the English-speaking world.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Oxford"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Oxford"}, {"qid": 3885, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the disputes between students and Oxford townsfolk had not occurred, how might the history of English universities be different?", "answer": " The University of Cambridge might not have been established.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Oxford"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Oxford"}, {"qid": 3886, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What common features do the University of Oxford and the University of Cambridge share?", "answer": " They share many common features, including their collegiate structure, traditions, and academic focus, which is why they are jointly referred to as Oxbridge.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Oxford"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Oxford"}, {"qid": 3887, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to other universities in the English-speaking world, how does the University of Oxford's age rank?", "answer": " It is the oldest.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Oxford"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Oxford"}, {"qid": 3888, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What makes the University of Oxford unique in terms of its historical operation?", "answer": " It is the world's second-oldest university in continuous operation.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Oxford"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Oxford"}, {"qid": 3889, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of the University of Cambridge compare to that of the University of Oxford?", "answer": " The University of Cambridge, founded in 1209, was established after the University of Oxford, making Oxford the older institution.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Cambridge"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Cambridge"}, {"qid": 3890, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest university in continuous operation in the world?", "answer": " The University of Cambridge is the world's third-oldest university in continuous operation.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Cambridge"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Cambridge"}, {"qid": 3891, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What event led to the founding of the University of Cambridge?", "answer": " The founding of the University of Cambridge followed the arrival of scholars who left the University of Oxford for Cambridge after a dispute with local townspeople.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Cambridge"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Cambridge"}, {"qid": 3892, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the scholars had not had a dispute with the townspeople of Oxford, what might have been the impact on the establishment of the University of Cambridge?", "answer": " If the scholars had not had a dispute, the University of Cambridge might not have been established when it was, as the university's founding was directly linked to the scholars leaving Oxford for Cambridge.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Cambridge"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Cambridge"}, {"qid": 3893, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which university has the older continuous operation, the University of Cambridge or the University of Bologna?", "answer": " The University of Bologna has the older continuous operation when compared to the University of Cambridge.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Cambridge"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Cambridge"}, {"qid": 3894, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the University of Cambridge's approach to collegiate education compare to that of modern universities?", "answer": " The University of Cambridge's approach to collegiate education, focusing on small-group teaching and strong college affiliations, is distinct from many modern universities which may prioritize large lectures and departmental affiliations.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Cambridge"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Cambridge"}, {"qid": 3895, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What common features are shared between the University of Cambridge and the University of Oxford?", "answer": " The University of Cambridge and the University of Oxford share many common features, including their collegiate structure, tutorial system, and a strong focus on tradition and history.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Cambridge"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Cambridge"}, {"qid": 3896, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Cambridge were to move its location, what would be the impact on its historical significance?", "answer": " If the University of Cambridge were to move its location, it could significantly impact its historical significance, as its current location in Cambridge, England, contributes to its identity and long-standing history.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Cambridge"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Cambridge"}, {"qid": 3897, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to universities founded in the 20th century, how does the University of Cambridge's age stand out?", "answer": " Compared to universities founded in the 20th century, the University of Cambridge, founded in 1209, stands out as significantly older, highlighting its long history and tradition in education.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Cambridge"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Cambridge"}, {"qid": 3898, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the ranking of the University of Cambridge in terms of its age among global universities?", "answer": " The University of Cambridge is the world's third-oldest university in continuous operation, making it one of the very oldest institutions of higher education globally.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Cambridge"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Cambridge"}, {"qid": 3899, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the location of the University of Cambridge contribute to its academic environment?", "answer": " The location of the University of Cambridge in Cambridge, England, contributes to its academic environment by providing a historic and inspiring setting that fosters learning, research, and a sense of tradition among students and faculty.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Cambridge"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Cambridge"}, {"qid": 3900, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Cambridge had not been founded following a dispute at Oxford, how might the academic landscape of England look today?", "answer": " If the University of Cambridge had not been founded following a dispute at Oxford, the academic landscape of England might look significantly different today, potentially with less competition and diversity in higher education, and possibly affecting the development and prestige of English universities globally.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Cambridge"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Cambridge"}, {"qid": 3901, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the University of Southampton's founding year compare to that of the University of Oxford?", "answer": " The University of Southampton was founded in 1952, much later than the University of Oxford, which was established in around 1096.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Southampton"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Southampton"}, {"qid": 3902, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest research university in the Russell Group, considering the University of Southampton is a member?", "answer": " The University of Oxford, established around 1096, is the oldest research university in the Russell Group.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Southampton"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Southampton"}, {"qid": 3903, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What relationship does the University of Southampton have with the Russell Group?", "answer": " The University of Southampton is a founding member of the Russell Group of research-intensive universities in the United Kingdom.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Southampton"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Southampton"}, {"qid": 3904, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Southampton were to merge with another Russell Group university, what would be the impact on its research capabilities?", "answer": " If the University of Southampton merged with another Russell Group university, it would likely see an increase in research capabilities, resources, and collaboration opportunities, potentially enhancing its reputation and output in various fields of study.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Southampton"], "topic_level": false, "class": "sing entity", "hops": "Multi hop", "entity": "University of Southampton"}, {"qid": 3905, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the staff number at the University of Southampton compare to that of the University of Cambridge?", "answer": " The University of Southampton has fewer staff members compared to the University of Cambridge, which is one of the largest employers in its region with thousands of staff.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Southampton"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Southampton"}, {"qid": 3906, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which university has the most modern campus, the University of Southampton or the University of Edinburgh?", "answer": " While both universities have modern facilities, the University of Southampton is known for its continuous investment in campus development and state-of-the-art facilities, making it a contender for having a more modern campus compared to the historic University of Edinburgh.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Southampton"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Southampton"}, {"qid": 3907, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the significance of the University of Southampton's location in England?", "answer": " The University of Southampton's location in England positions it strategically for collaboration with industry, access to funding, and participation in cutting-edge research within the UK and Europe.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Southampton"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Southampton"}, {"qid": 3908, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would be the implications if the University of Southampton decided to significantly expand its staff number over the next five years?", "answer": " If the University of Southampton significantly expanded its staff number over the next five years, it could enhance its teaching capabilities, broaden its research scope, and potentially improve its student-to-staff ratio, leading to a more personalized education experience and increased research output.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Southampton"], "topic_level": false, "class": "sing entity", "hops": "Multi hop", "entity": "University of Southampton"}, {"qid": 3909, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the University of Southampton's research output compare to that of Imperial College London?", "answer": " The University of Southampton has a strong research output, especially in engineering and computer science, but Imperial College London, with its focus on science, engineering, medicine, and business, is often ranked higher globally in terms of research output and impact.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Southampton"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Southampton"}, {"qid": 3910, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which is more research-intensive, the University of Southampton or the University of Leeds?", "answer": " Both the University of Southampton and the University of Leeds are members of the Russell Group, known for being research-intensive. However, specific areas of research intensity may vary between the two, with each university having its own set of strengths.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Southampton"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Southampton"}, {"qid": 3911, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the University of Southampton's participation in the Russell Group benefit its students?", "answer": " The University of Southampton's participation in the Russell Group benefits its students by providing access to high-quality teaching, cutting-edge research opportunities, and better prospects for funding and employment due to the university's reputation as a research-intensive institution.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Southampton"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Southampton"}, {"qid": 3912, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Southampton opened a new research center in artificial intelligence, what could be the potential outcomes for the university and its students?", "answer": " Opening a new research center in artificial intelligence at the University of Southampton could lead to advancements in AI research, attract top-tier faculty and students, foster industry collaborations, enhance the university's reputation in technology and innovation, and prepare students for high-demand careers in AI and machine learning.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Southampton"], "topic_level": false, "class": "sing entity", "hops": "Multi hop", "entity": "University of Southampton"}, {"qid": 3913, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the significance of the University of Edinburgh being founded by the town council under the authority of a royal charter from King James VI in 1582?", "answer": " The founding of the University of Edinburgh under the authority of a royal charter from King James VI in 1582 signifies its establishment as an official educational institution with royal endorsement, marking its importance and legitimacy in the realm of higher education from its inception.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Edinburgh"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Edinburgh"}, {"qid": 3914, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What makes the University of Edinburgh one of the oldest universities in the English-speaking world?", "answer": " The University of Edinburgh's establishment in 1582 and its continuous operation since 1583 make it the sixth-oldest university in continuous operation in the English-speaking world.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Edinburgh"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Edinburgh"}, {"qid": 3915, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How did the University of Edinburgh contribute to the city's nickname \"Athens of the North\"?", "answer": " The University of Edinburgh played a crucial role during the Scottish Enlightenment by being a leading intellectual centre, which contributed significantly to Edinburgh being nicknamed the \"Athens of the North\" due to the city's intellectual and cultural prominence.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Edinburgh"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Edinburgh"}, {"qid": 3916, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which ancient university is based in Edinburgh, Scotland, and contributes to its historical intellectual prominence?", "answer": " The University of Edinburgh is the ancient university based in Edinburgh, Scotland, contributing to its historical intellectual prominence.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Edinburgh"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Edinburgh"}, {"qid": 3917, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to other ancient universities in Scotland, where does the University of Edinburgh rank in terms of its founding year?", "answer": " The University of Edinburgh, founded in 1582, is one of Scotland's four ancient universities and ranks as the sixth-oldest university in continuous operation in the English-speaking world, placing it among the earliest established in Scotland.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Edinburgh"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Edinburgh"}, {"qid": 3918, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What might have happened if the University of Edinburgh had not been founded under the authority of a royal charter from King James VI?", "answer": " If the University of Edinburgh had not been founded under the authority of a royal charter from King James VI, it might not have gained the official recognition and legitimacy needed to become a leading intellectual centre, potentially impacting its development and the educational landscape in Scotland.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Edinburgh"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Edinburgh"}, {"qid": 3919, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the founding year of the University of Edinburgh reflect its status among English-speaking world universities?", "answer": " The founding year of the University of Edinburgh in 1582 reflects its status as the sixth-oldest university in continuous operation in the English-speaking world, highlighting its long history and tradition in higher education.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Edinburgh"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Edinburgh"}, {"qid": 3920, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What aspect of the University of Edinburgh's contribution to the Scottish Enlightenment was most significant?", "answer": " The most significant aspect of the University of Edinburgh's contribution to the Scottish Enlightenment was its role as a leading intellectual centre, which significantly influenced the cultural and intellectual development of Edinburgh and contributed to its nickname as the \"Athens of the North.\"", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Edinburgh"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Edinburgh"}, {"qid": 3921, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "In the context of Scotland's ancient universities, how does the University of Edinburgh compare in terms of its influence during the Scottish Enlightenment?", "answer": " In the context of Scotland's ancient universities, the University of Edinburgh stands out for its considerable influence during the Scottish Enlightenment, playing a crucial role in intellectual and cultural advancements that contributed to Edinburgh's reputation as the \"Athens of the North.\"", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Edinburgh"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Edinburgh"}, {"qid": 3922, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What if the University of Edinburgh had not played a central role during the Scottish Enlightenment?", "answer": " If the University of Edinburgh had not played a central role during the Scottish Enlightenment, Edinburgh might not have achieved its significant intellectual and cultural status, potentially impacting the advancement of ideas and the city's nickname as the \"Athens of the North.\"", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Edinburgh"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Edinburgh"}, {"qid": 3923, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the University of Edinburgh's establishment in 1582 under a royal charter impact its international reputation?", "answer": " The establishment of the University of Edinburgh in 1582 under a royal charter impacts its international reputation by highlighting its historical significance, royal endorsement, and long-standing tradition in higher education, enhancing its prestige and recognition globally.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Edinburgh"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Edinburgh"}, {"qid": 3924, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest university in the English-speaking world, and how does the University of Edinburgh's founding year compare?", "answer": " The oldest university in the English-speaking world is the University of Oxford, founded in 1096. The University of Edinburgh, founded in 1582, is the sixth-oldest university in continuous operation in the English-speaking world, indicating its significant but comparatively more recent establishment.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Edinburgh"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Edinburgh"}, {"qid": 3925, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest social sciences institution among the member institutions of the University of London?", "answer": " The London School of Economics and Political Science (LSE)", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["London School of Economics"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "London School of Economics"}, {"qid": 3926, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Who founded the London School of Economics?", "answer": " Sidney Webb, Beatrice Webb, Graham Wallas, and George Bernard Shaw", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["London School of Economics"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "London School of Economics"}, {"qid": 3927, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of the London School of Economics compare to the University of London?", "answer": " LSE was founded in 1895, after the University of London was established in 1836.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["London School of Economics"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "London School of Economics"}, {"qid": 3928, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "When did LSE start awarding degrees in its own name, making it one of the most recent institutions to do so within the University of London?", "answer": " 2008", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["London School of Economics"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "London School of Economics"}, {"qid": 3929, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the specialty of the London School of Economics within the academic world?", "answer": " Social sciences", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["London School of Economics"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "London School of Economics"}, {"qid": 3930, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the founders of the London School of Economics had not included Sidney Webb, how might the focus of LSE's curriculum be different today?", "answer": " The curriculum might have less emphasis on the social reforms and economics influenced by the Fabian Society.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["London School of Economics"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "London School of Economics"}, {"qid": 3931, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Is the London School of Economics older or younger than University College London within the University of London system?", "answer": " Younger, University College London was founded in 1826.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["London School of Economics"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "London School of Economics"}, {"qid": 3932, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What year did LSE become a university in its own right within the University of London, marking a significant development in its history?", "answer": " 2022", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["London School of Economics"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "London School of Economics"}, {"qid": 3933, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Who were the members of the Fabian Society that founded LSE?", "answer": " Sidney Webb, Beatrice Webb, Graham Wallas, and George Bernard Shaw", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["London School of Economics"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "London School of Economics"}, {"qid": 3934, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If LSE had not joined the University of London in 1900, how might its academic recognition and degree-awarding powers have been affected?", "answer": " LSE might have taken longer to gain academic recognition and degree-awarding powers, potentially limiting its growth and international reputation.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["London School of Economics"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "London School of Economics"}, {"qid": 3935, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to when it was founded, how has the focus of LSE's curriculum evolved over time?", "answer": " While still specializing in social sciences, LSE has expanded its curriculum to include a wider range of subjects within this field.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["London School of Economics"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "London School of Economics"}, {"qid": 3936, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What makes LSE unique among the colleges of the University of London in terms of its founding principles?", "answer": " Its founding by members of the Fabian Society, emphasizing social reforms and economics.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["London School of Economics"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "London School of Economics"}, {"qid": 3937, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What was the vision of Prince Albert that led to the foundation of Imperial College London?", "answer": " Prince Albert envisioned a cultural area in South Kensington including museums, colleges, and the Royal Albert Hall, which eventually led to the foundation of Imperial College London.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Imperial College London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Imperial College London"}, {"qid": 3938, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How did the Imperial College School of Medicine come into existence?", "answer": " The Imperial College School of Medicine was formed through a merger with St Mary's Hospital Medical School in 1988.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Imperial College London"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Imperial College London"}, {"qid": 3939, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "When was the Imperial College Business School opened by Queen Elizabeth II?", "answer": " 2004", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Imperial College London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Imperial College London"}, {"qid": 3940, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the start year of Imperial College London compare to the start year of the University of Oxford?", "answer": " Imperial College London was founded in 1907, which is significantly later than the University of Oxford, which was established around 1096.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Imperial College London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Imperial College London"}, {"qid": 3941, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the earliest college that merged to form Imperial College London?", "answer": " The earliest colleges that merged were the Royal College of Science, the Royal School of Mines, and the City and Guilds of London Institute in 1907.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Imperial College London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Imperial College London"}, {"qid": 3942, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Where is Imperial College London located?", "answer": " London, England", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Imperial College London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Imperial College London"}, {"qid": 3943, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Imperial College London had not merged with St Mary's Hospital Medical School, how would its medical education offerings differ today?", "answer": " Without the merger with St Mary's Hospital Medical School, Imperial College London might offer a more limited range of medical education programs and possibly lack the extensive medical research facilities it has today.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Imperial College London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Imperial College London"}, {"qid": 3944, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What year marked the formation of the Imperial College School of Medicine?", "answer": " 1988", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Imperial College London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Imperial College London"}, {"qid": 3945, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What entities merged to form Imperial College London in 1907?", "answer": " The Royal College of Science, the Royal School of Mines, and the City and Guilds of London Institute merged to form Imperial College London.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Imperial College London"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Imperial College London"}, {"qid": 3946, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Imperial College London had not been founded, what impact might this have had on scientific research in the UK?", "answer": " The absence of Imperial College London could have resulted in a significant reduction in the UK's scientific research output, potentially affecting the country's position in global science and technology fields.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Imperial College London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Imperial College London"}, {"qid": 3947, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the location of Imperial College London compare to Cambridge University in terms of their city settings?", "answer": " Imperial College London is located in London, England, offering an urban setting, whereas Cambridge University is located in the city of Cambridge, England, providing a more traditional and collegiate atmosphere.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Imperial College London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Imperial College London"}, {"qid": 3948, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What major event in 2004 involved Queen Elizabeth II at Imperial College London?", "answer": " The opening of the Imperial College Business School by Queen Elizabeth II.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Imperial College London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Imperial College London"}, {"qid": 3949, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest university in the English-speaking world?", "answer": " The University of Glasgow is the fourth-oldest, so the oldest is the University of Oxford.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Glasgow"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Glasgow"}, {"qid": 3950, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which university in Scotland has the largest total enrolment?", "answer": " The University of Glasgow", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Glasgow"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Glasgow"}, {"qid": 3951, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Who founded the University of Glasgow?", "answer": " The University of Glasgow was founded by papal bull.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Glasgow"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Glasgow"}, {"qid": 3952, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "In what century was the University of Glasgow part of the Scottish Enlightenment?", "answer": " 18th century", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Glasgow"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Glasgow"}, {"qid": 3953, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Is the University of Glasgow older than the University of Edinburgh?", "answer": " Yes", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Glasgow"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Glasgow"}, {"qid": 3954, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the primary language of instruction at the University of Glasgow?", "answer": " English", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Glasgow"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Glasgow"}, {"qid": 3955, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which of the ancient universities of Scotland is the largest by postgraduate enrolment?", "answer": " The University of Glasgow is the second-largest, so the largest is the University of Edinburgh.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Glasgow"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Glasgow"}, {"qid": 3956, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Glasgow were to open another campus, which country would be a strategic choice considering its historical connections?", "answer": " Considering its historical connections during the Scottish Enlightenment, a strategic choice might be a country that was significantly influenced by the Enlightenment, such as the United States or France.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Glasgow"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Glasgow"}, {"qid": 3957, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would happen if the University of Glasgow decided to become a private university?", "answer": " It would likely face significant changes in funding, tuition fees, and possibly its structure of governance.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Glasgow"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Glasgow"}, {"qid": 3958, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the significance of the papal bull in the founding of the University of Glasgow?", "answer": " The papal bull signifies the official approval by the Pope, granting the University of Glasgow the status and privileges of a university.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Glasgow"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Glasgow"}, {"qid": 3959, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the rank of the University of Glasgow among the universities in the English-speaking world by its founding year?", "answer": " Fourth-oldest", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Glasgow"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Glasgow"}, {"qid": 3960, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to the University of Aberdeen, which university has a larger total enrolment?", "answer": " The University of Glasgow", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Glasgow"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Glasgow"}, {"qid": 3961, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest member institution of the federal University of London?", "answer": " University College London", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University College London"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University College London"}, {"qid": 3962, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which university in the United Kingdom has the largest postgraduate enrolment?", "answer": " University College London", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University College London"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University College London"}, {"qid": 3963, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How is University College London affiliated with the University of London?", "answer": " It is a member institution of the federal University of London.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University College London"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University College London"}, {"qid": 3964, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What type of university is University College London recognized as?", "answer": " A public research university", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University College London"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University College London"}, {"qid": 3965, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to other member institutions of the University of London, where does University College London rank in terms of total enrolment?", "answer": " It is the second-largest university by total enrolment.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University College London"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University College London"}, {"qid": 3966, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the staff number of University College London compare to other universities in London?", "answer": " The specific staff number is not provided, comparison cannot be made without further data.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University College London"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University College London"}, {"qid": 3967, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Where is the largest campus of University College London located?", "answer": " In London, England.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University College London"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University College London"}, {"qid": 3968, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If University College London decided to increase its research focus, how might this affect its ranking among UK universities?", "answer": " It could potentially improve its ranking, especially in research-specific rankings.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University College London"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "University College London"}, {"qid": 3969, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would be the implications for University College London if it left the University of London federation?", "answer": " It would operate independently from the federal University of London, potentially affecting its collaboration, resources, and recognition.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University College London"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "University College London"}, {"qid": 3970, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does University College London's enrolment size relate to its status within the UK's higher education landscape?", "answer": " Its large enrolment size contributes to its status as one of the leading universities in the UK.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University College London"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "University College London"}, {"qid": 3971, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would happen if University College London suddenly doubled its staff number?", "answer": " It could potentially expand its research capabilities and course offerings, assuming the infrastructure and resources are adequately scaled.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University College London"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University College London"}, {"qid": 3972, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What year was the oldest university within the University of London federation founded?", "answer": " University College London was founded in 1826, making it one of the oldest member institutions.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University College London"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University College London"}, {"qid": 3973, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the staff number at Queen Mary University of London compare to the staff number at King's College London?", "answer": " This requires current staff numbers for both institutions, which can vary over time. ", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen Mary University of London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Queen Mary University of London"}, {"qid": 3974, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Is the start year of Queen Mary University of London earlier than that of Imperial College London?", "answer": " Yes, Queen Mary University of London (1887) was founded earlier than Imperial College London (1907).", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen Mary University of London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Queen Mary University of London"}, {"qid": 3975, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest faculty at Queen Mary University of London?", "answer": " The Faculty of Medicine, part of Queen Mary's heritage since its merger with the London Hospital Medical College.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen Mary University of London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Queen Mary University of London"}, {"qid": 3976, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which research university in East London has the highest number of staff members?", "answer": " As of the last data, Queen Mary University of London could be a contender, but accurate numbers would require current data.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen Mary University of London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Queen Mary University of London"}, {"qid": 3977, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does Queen Mary University of London's membership in the University of London benefit its students?", "answer": " Membership in the University of London allows QMUL students access to a broader range of resources, libraries, and research opportunities across the federal university.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen Mary University of London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Queen Mary University of London"}, {"qid": 3978, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What role does the location of Queen Mary University of London in Mile End, East London play in its research focus?", "answer": " The location in Mile End, East London, influences QMUL's research focus on urban studies, public health, and social sciences, reflecting the diverse and dynamic environment of its surroundings.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen Mary University of London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Queen Mary University of London"}, {"qid": 3979, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Queen Mary University of London decided to expand its campus, what would be the potential benefits for the Mile End community?", "answer": " Potential benefits could include job creation, increased local investment, enhanced educational opportunities, and improved community facilities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen Mary University of London"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Queen Mary University of London"}, {"qid": 3980, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would happen if Queen Mary University of London merged with another university in London?", "answer": " A merger could lead to a consolidation of resources, expanded academic offerings, and potentially greater international recognition. However, it could also bring challenges such as cultural integration and administrative restructuring.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen Mary University of London"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Queen Mary University of London"}, {"qid": 3981, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the international student population at Queen Mary University of London compare to that of University College London?", "answer": " Both universities have a large international student body, but specific numbers can vary by year. Historically, University College London tends to have a higher proportion of international students.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen Mary University of London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Queen Mary University of London"}, {"qid": 3982, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most popular undergraduate course at Queen Mary University of London?", "answer": " Popularity can vary by application numbers and trends, but courses like Law, Medicine, and Computer Science are traditionally highly sought after.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen Mary University of London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Queen Mary University of London"}, {"qid": 3983, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the historical significance of the name \"Queen Mary\" in the context of Queen Mary University of London?", "answer": " The university is named after Mary of Teck, the wife of King George V. The name reflects its historical roots and royal charter received in the early 20th century.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen Mary University of London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Queen Mary University of London"}, {"qid": 3984, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Queen Mary University of London introduced a new faculty focused on space research, what could be the potential impacts on its engineering and physics departments?", "answer": " Introducing a space research faculty could lead to enhanced interdisciplinary collaboration, attract additional funding and research talent, and expand the academic offerings in related engineering and physics programs.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen Mary University of London"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Queen Mary University of London"}, {"qid": 3985, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the start year of the University of Birmingham compare to the establishment year of Queen's College, Birmingham?", "answer": " The University of Birmingham, receiving its royal charter in 1900, was established after Queen's College, Birmingham, which was founded in 1825.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Birmingham"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Birmingham"}, {"qid": 3986, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the foundation of the University of Birmingham compare to that of Mason Science College?", "answer": " The University of Birmingham was established later, receiving its royal charter in 1900, while Mason Science College was established earlier in 1875.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Birmingham"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Birmingham"}, {"qid": 3987, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What was the first English civic university to receive its own royal charter?", "answer": " The University of Birmingham.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Birmingham"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Birmingham"}, {"qid": 3988, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which university was the first English unitary university?", "answer": " The University of Birmingham.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Birmingham"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Birmingham"}, {"qid": 3989, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Why is the University of Birmingham considered a 'red brick' university?", "answer": " It is considered a 'red brick' university because it was the first English civic university to receive its own royal charter, indicating its historical and architectural significance as part of the wave of universities established in industrial cities during the Victorian era.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Birmingham"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Birmingham"}, {"qid": 3990, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What makes the University of Birmingham a founding member of the Russell Group?", "answer": " Its status as a public research university with a strong emphasis on research excellence and a high volume of research activities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Birmingham"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Birmingham"}, {"qid": 3991, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How is the University of Birmingham connected to the international network of research universities, Universitas 21?", "answer": " The University of Birmingham is a founding member of Universitas 21, an international network of research-intensive universities aimed at fostering global student mobility and collaboration.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Birmingham"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Birmingham"}, {"qid": 3992, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Birmingham had not received its royal charter in 1900, how would its status as a 'red brick' university be affected?", "answer": " Without its royal charter, the University of Birmingham might not have been recognized as the first English civic or 'red brick' university, affecting its historical status.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Birmingham"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Birmingham"}, {"qid": 3993, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would happen to the University of Birmingham's membership in the Russell Group if it significantly reduced its research activities?", "answer": " If the University of Birmingham significantly reduced its research activities, it could potentially risk its membership status in the Russell Group, which values high research activity and output.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Birmingham"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Birmingham"}, {"qid": 3994, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Birmingham were to leave Universitas 21, how would its international collaboration efforts be affected?", "answer": " Leaving Universitas 21 might reduce the University of Birmingham's opportunities for international research collaborations and student exchanges, potentially impacting its global outreach and reputation.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Birmingham"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Birmingham"}, {"qid": 3995, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the significance of the University of Birmingham's location in Birmingham, England?", "answer": " Its location in Birmingham, England, positions the University of Birmingham as a central institution in a large, diverse city, contributing to the city's educational, cultural, and economic development.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Birmingham"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Birmingham"}, {"qid": 3996, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the University of Birmingham's foundation as the first English unitary university impact its academic structure?", "answer": " Being the first English unitary university impacts its academic structure by emphasizing a unified approach to higher education, where teaching and research are integrated under one institution, setting a precedent for future universities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Birmingham"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Birmingham"}, {"qid": 3997, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which cultural asset owned by the University of Manchester is a UNESCO World Heritage Site?", "answer": " Jodrell Bank Observatory", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Manchester"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Manchester"}, {"qid": 3998, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How did the current University of Manchester form?", "answer": " The current University of Manchester was formed in 2004 following the merger of the University of Manchester Institute of Science and Technology (UMIST) and the Victoria University of Manchester.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Manchester"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Manchester"}, {"qid": 3999, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the University of Manchester's founding year compare to the establishment of the civic university movement?", "answer": " The University of Manchester, in its current form, was established in 2004, which is significantly later than the civic university movement of the late 19th century.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Manchester"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Manchester"}, {"qid": 4000, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest cultural asset owned by the University of Manchester?", "answer": " The John Rylands Library", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Manchester"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Manchester"}, {"qid": 4001, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What movement is the University of Manchester a product of?", "answer": " The University of Manchester is a product of the civic university movement of the late 19th century.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Manchester"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Manchester"}, {"qid": 4002, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Manchester were to open another cultural asset, based on its current collections what type might it be?", "answer": " Given its current collections, it might open another art gallery or historical archive.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Manchester"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Manchester"}, {"qid": 4003, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which part of the University of Manchester campus is closest to Manchester City Centre?", "answer": " The main campus on Oxford Road is south of Manchester City Centre and is the closest.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Manchester"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Manchester"}, {"qid": 4004, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What led to the formation of the current University of Manchester?", "answer": " The merger of the University of Manchester Institute of Science and Technology (UMIST) and the Victoria University of Manchester in 2004 led to the formation of the current University of Manchester.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Manchester"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Manchester"}, {"qid": 4005, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the University of Manchester's focus on cultural assets compare to other universities?", "answer": " The University of Manchester owns and operates a significant number of major cultural assets compared to many other universities, showcasing a strong focus on cultural preservation and public engagement.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Manchester"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Manchester"}, {"qid": 4006, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Manchester were to merge with another university, what type of institution might complement its current strengths?", "answer": " An institution with strong engineering, technology, or natural sciences programs might complement its current strengths, considering its history with UMIST.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Manchester"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Manchester"}, {"qid": 4007, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most visited cultural asset owned by the University of Manchester?", "answer": " The Manchester Museum", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Manchester"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Manchester"}, {"qid": 4008, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the significance of the John Rylands Library to the University of Manchester?", "answer": " The John Rylands Library is a significant cultural asset owned by the University of Manchester, known for its extensive collection of rare books and manuscripts, enhancing the university's academic and cultural prestige.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Manchester"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Manchester"}, {"qid": 4009, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the staff number at King's College London compare to that of Queen Mary University of London?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["King's College London"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "King's College London"}, {"qid": 4010, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest department at King's College London?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["King's College London"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "King's College London"}, {"qid": 4011, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Who is the president of King's College London, and what is their background?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["King's College London"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "King's College London"}, {"qid": 4012, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If King's College London were to open a new campus, where might it be located?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["King's College London"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "King's College London"}, {"qid": 4013, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of King's College London compare to that of University College London?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["King's College London"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "King's College London"}, {"qid": 4014, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which college in London has the highest number of staff members, including King's College London?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["King's College London"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "King's College London"}, {"qid": 4015, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the academic focus of King's College London's president influence the university's research priorities?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["King's College London"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "King's College London"}, {"qid": 4016, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If King's College London were to double its staff number, how would that impact its research output?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["King's College London"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "King's College London"}, {"qid": 4017, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the student population at King's College London compare to that of Imperial College London?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["King's College London"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "King's College London"}, {"qid": 4018, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most popular course offered at King's College London?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["King's College London"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "King's College London"}, {"qid": 4019, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between King's College London and the University of London?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["King's College London"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "King's College London"}, {"qid": 4020, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If King's College London were to merge with another university, which university would be the best fit and why?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["King's College London"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "King's College London"}, {"qid": 4021, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest university in England?", "answer": " University of Oxford", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Durham University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Durham University"}, {"qid": 4022, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which university was the first to open in England after Oxford and Cambridge?", "answer": " Durham University", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Durham University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Durham University"}, {"qid": 4023, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How was Durham University founded?", "answer": " By an Act of Parliament in 1832 and incorporated by royal charter in 1837.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Durham University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Durham University"}, {"qid": 4024, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What makes Durham University a collegiate university?", "answer": " Its main functions are divided between the academic departments of the university and its 17 colleges.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Durham University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Durham University"}, {"qid": 4025, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between Durham University's departments and colleges?", "answer": " The departments perform research and provide teaching to students, while the colleges are responsible for their domestic arrangements and welfare.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Durham University"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "Durham University"}, {"qid": 4026, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of Durham University compare to that of Oxford and Cambridge?", "answer": " Durham University was founded more than 600 years after Oxford and Cambridge.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Durham University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Durham University"}, {"qid": 4027, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Where is England's third-oldest university located?", "answer": " Durham", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Durham University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Durham University"}, {"qid": 4028, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What significant event in Durham University's history occurred in 1837?", "answer": " It was incorporated by royal charter.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Durham University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Durham University"}, {"qid": 4029, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If a new college were to be added to Durham University, how would its main functions likely be divided?", "answer": " Between academic departments for research and teaching, and the new college for domestic arrangements and welfare of its students.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Durham University"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "Durham University"}, {"qid": 4030, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to other universities in England, how does Durham University's founding date rank in terms of age?", "answer": " It is the third-oldest university in England.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Durham University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Durham University"}, {"qid": 4031, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What was the first university to open in England, following a gap of more than 600 years?", "answer": " Durham University", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Durham University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Durham University"}, {"qid": 4032, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What legal processes were involved in the establishment of Durham University?", "answer": " An Act of Parliament in 1832 and incorporation by royal charter in 1837.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Durham University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Durham University"}, {"qid": 4033, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Which is older, the Merchant Venturers' school that is a root of the University of Bristol or University College, Bristol?", "answer": " The Merchant Venturers' school is older.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Bristol"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Bristol"}, {"qid": 4034, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the earliest founding entity associated with the University of Bristol?", "answer": " The Merchant Venturers' school founded in 1595.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Bristol"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Bristol"}, {"qid": 4035, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How is the University of Bristol related to the Russell Group?", "answer": " The University of Bristol is a member of the Russell Group.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Bristol"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Bristol"}, {"qid": 4036, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Bristol was not located in Bristol, where might it have been established given its historical roots?", "answer": " It might have been established in a city with significant historical or educational importance in England, such as London or Oxford.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Bristol"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Bristol"}, {"qid": 4037, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Which came first, the royal charter of the University of Bristol or the establishment of University College, Bristol?", "answer": " The establishment of University College, Bristol came first.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Bristol"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Bristol"}, {"qid": 4038, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most significant historical root of the University of Bristol?", "answer": " The Merchant Venturers' school founded in 1595.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Bristol"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Bristol"}, {"qid": 4039, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What connection does the University of Bristol have with the city of Bristol?", "answer": " The University of Bristol is located in Bristol, England, and is an integral part of the city's educational and research community.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Bristol"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Bristol"}, {"qid": 4040, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Bristol decided to expand its campus, which area in Bristol might be considered suitable for this expansion?", "answer": " An area in Bristol that could be considered suitable for expansion would likely be one with sufficient space for development while being accessible to students and staff, such as areas with existing university properties or near educational districts.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Bristol"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Bristol"}, {"qid": 4041, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Comparing the founding dates, which is more recent, the royal charter of the University of Bristol or the founding of University College, Bristol?", "answer": " The royal charter of the University of Bristol is more recent.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Bristol"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Bristol"}, {"qid": 4042, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What was the earliest form of higher education in Bristol leading to the establishment of the University of Bristol?", "answer": " The Merchant Venturers' school founded in 1595.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Bristol"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Bristol"}, {"qid": 4043, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the University of Bristol's status as a red brick university contribute to its identity?", "answer": " Being a red brick university contributes to the University of Bristol's identity by associating it with a group of universities that are among the oldest and most prestigious research universities in the UK, emphasizing its long-standing tradition of academic excellence.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Bristol"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Bristol"}, {"qid": 4044, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Bristol were to establish a new research institute, what area of study might it focus on based on its Russell Group membership?", "answer": " Based on its Russell Group membership, the new research institute might focus on areas of study such as engineering, medicine, or environmental sciences, which are typical strengths of Russell Group universities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Bristol"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Bristol"}, {"qid": 4045, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest university in Nottingham?", "answer": " The University of Nottingham", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Nottingham"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Nottingham"}, {"qid": 4046, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How did The University of Nottingham initially start before gaining its university status?", "answer": " It started as University College Nottingham in 1881.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Nottingham"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Nottingham"}, {"qid": 4047, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "When did the earliest founding university in Nottingham start?", "answer": " 1881", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Nottingham"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Nottingham"}, {"qid": 4048, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What significant change happened to University College Nottingham in 1948?", "answer": " It was granted a royal charter.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Nottingham"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Nottingham"}, {"qid": 4049, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of The University of Nottingham compare to universities founded in the 20th century?", "answer": " It was founded earlier, in 1881.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Nottingham"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Nottingham"}, {"qid": 4050, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What if The University of Nottingham did not receive a royal charter in 1948, how would it be classified today?", "answer": " It might still be classified as a college or a university college.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Nottingham"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Nottingham"}, {"qid": 4051, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What was the original name of The University of Nottingham when it was founded?", "answer": " University College Nottingham", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Nottingham"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Nottingham"}, {"qid": 4052, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most significant milestone for The University of Nottingham in the 20th century?", "answer": " Being granted a royal charter in 1948.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Nottingham"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Nottingham"}, {"qid": 4053, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If The University of Nottingham was to be founded today, what year would it be?", "answer": " 2023", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Nottingham"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Nottingham"}, {"qid": 4054, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Who is responsible for granting a royal charter to The University of Nottingham?", "answer": " The British monarchy", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Nottingham"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Nottingham"}, {"qid": 4055, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to universities founded in the 19th century, how does The University of Nottingham's founding year stand?", "answer": " It was founded in the later part of the 19th century, in 1881.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Nottingham"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Nottingham"}, {"qid": 4056, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the primary location of The University of Nottingham?", "answer": " Nottingham, England", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Nottingham"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Nottingham"}, {"qid": 4057, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the significance of the University of Liverpool being referred to as the Original Red Brick?", "answer": " The term \"Original Red Brick\" signifies the University of Liverpool's status as the first of the six red brick civic universities, highlighting its pioneering role in the development of higher education in industrial cities during the late 19th and early 20th centuries.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Liverpool"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Liverpool"}, {"qid": 4058, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "When did the University of Liverpool receive its Royal Charter, making it one of the oldest universities to gain this status in England?", "answer": " 1903", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Liverpool"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Liverpool"}, {"qid": 4059, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the University of Liverpool's founding year compare to the founding years of other red brick universities?", "answer": " Founded in 1881 and gaining its Royal Charter in 1903, the University of Liverpool is among the earliest of the red brick universities, which were established in the late 19th and early 20th centuries.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Liverpool"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Liverpool"}, {"qid": 4060, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What role does the University of Liverpool play in the Russell Group?", "answer": " The University of Liverpool is a founding member of the Russell Group, indicating its commitment to high-quality research and teaching alongside other leading UK universities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Liverpool"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Liverpool"}, {"qid": 4061, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would be the impact on the University of Liverpool's research capabilities if it decided to leave the Russell Group?", "answer": " Leaving the Russell Group could potentially impact the University of Liverpool's research capabilities by reducing collaborative opportunities, affecting its reputation, and possibly influencing funding prospects.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Liverpool"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Liverpool"}, {"qid": 4062, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the location of the University of Liverpool, making it unique among other UK universities?", "answer": " Liverpool, England", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Liverpool"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Liverpool"}, {"qid": 4063, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Why is the University of Liverpool's management school notable?", "answer": " The university management school is notable for being triple crown accredited, a prestigious recognition that places it among the top business schools worldwide.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Liverpool"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Liverpool"}, {"qid": 4064, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the size of the University of Liverpool's faculty and departments compare to other Russell Group universities?", "answer": " With three faculties organized into 35 departments and schools, the University of Liverpool is comparable in size and structure to other Russell Group universities, which are also known for their comprehensive range of disciplines and research-intensive focus.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Liverpool"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Liverpool"}, {"qid": 4065, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Liverpool were to expand its number of departments, how might this affect its standing within the N8 Research Partnership?", "answer": " Expanding its number of departments could enhance the University of Liverpool's standing within the N8 Research Partnership by broadening its research capabilities and collaboration opportunities across more disciplines.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Liverpool"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Liverpool"}, {"qid": 4066, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What makes the University of Liverpool's founding year significant compared to other universities worldwide?", "answer": " Its founding year of 1881 makes the University of Liverpool one of the older universities worldwide, signifying its long history and contribution to higher education and research.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Liverpool"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Liverpool"}, {"qid": 4067, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the University of Liverpool's participation in the N8 Group benefit its research collaboration efforts?", "answer": " Participation in the N8 Group enhances the University of Liverpool's research collaboration efforts by providing a platform for sharing resources, expertise, and facilities with other leading research universities in the north of England, thereby facilitating more impactful and wide-reaching research projects.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Liverpool"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Liverpool"}, {"qid": 4068, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would be the consequences for the University of Liverpool if it lost its triple crown accreditation for its management school?", "answer": " Losing its triple crown accreditation could significantly impact the University of Liverpool's management school by diminishing its reputation, potentially affecting student recruitment, and reducing collaboration opportunities with other top business schools globally.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Liverpool"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Liverpool"}, {"qid": 4069, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What was the original name of the University of Leeds when it was established in 1874?", "answer": " Yorkshire College of Science", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Leeds"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Leeds"}, {"qid": 4070, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Which two institutions merged to form Yorkshire College, later known as the University of Leeds?", "answer": " Yorkshire College of Science and Leeds School of Medicine", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Leeds"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Leeds"}, {"qid": 4071, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "In what year did the Yorkshire College become part of the federal Victoria University?", "answer": " 1887", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Leeds"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Leeds"}, {"qid": 4072, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "When was the royal charter granted to the University of Leeds by King Edward VII?", "answer": " 1904", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Leeds"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Leeds"}, {"qid": 4073, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest constituent part of the University of Leeds, considering its founding institutions?", "answer": " Leeds School of Medicine, established in 1831", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Leeds"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Leeds"}, {"qid": 4074, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the establishment year of the University of Leeds compare to the founding year of the University of Manchester?", "answer": " The University of Leeds was established in 1874, after Owens College, which became the University of Manchester, was founded in 1851.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Leeds"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Leeds"}, {"qid": 4075, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Which institution became part of the federal Victoria University first, the University of Leeds or University College Liverpool?", "answer": " Owens College (which became the University of Manchester) joined the federal Victoria University before the University of Leeds.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Leeds"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Leeds"}, {"qid": 4076, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the Leeds School of Medicine had not merged with Yorkshire College of Science, what might have been the impact on the formation of the University of Leeds?", "answer": " The University of Leeds might not have formed in its current structure, potentially lacking the medical faculty integration.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Leeds"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Leeds"}, {"qid": 4077, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What if the University of Leeds had not received a royal charter in 1904?", "answer": " It might not have gained its independent university status, impacting its development and expansion.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Leeds"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Leeds"}, {"qid": 4078, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Who granted the University of Leeds its royal charter in 1904?", "answer": " King Edward VII", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Leeds"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Leeds"}, {"qid": 4079, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which component of the University of Leeds has the longest history?", "answer": " Leeds School of Medicine, established in 1831", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Leeds"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Leeds"}, {"qid": 4080, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to the University of Liverpool, which institution joined the federal Victoria University later?", "answer": " University College Liverpool (which became the University of Liverpool) joined the federal Victoria University after the University of Leeds.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Leeds"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Leeds"}, {"qid": 4081, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What name was given to the University of Sheffield when it was granted a royal charter in 1905?", "answer": " The University of Sheffield", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Sheffield"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Sheffield"}, {"qid": 4082, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which institution among Sheffield Medical School, Firth College, and Sheffield Technical School was founded first?", "answer": " Sheffield Medical School in 1828", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Sheffield"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Sheffield"}, {"qid": 4083, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Where is the University of Sheffield located?", "answer": " Sheffield, South Yorkshire, England", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Sheffield"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Sheffield"}, {"qid": 4084, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of the University of Sheffield compare to its grant of a royal charter?", "answer": " The founding year (1897 as University College of Sheffield) predates the grant of a royal charter (1905).", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Sheffield"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Sheffield"}, {"qid": 4085, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the earliest predecessor institution of the University of Sheffield?", "answer": " Sheffield Medical School in 1828", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Sheffield"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Sheffield"}, {"qid": 4086, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Who granted the University of Sheffield its royal charter?", "answer": " King Edward VII", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Sheffield"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Sheffield"}, {"qid": 4087, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Sheffield decided to open a new campus, in which city is it currently located that could influence its choice?", "answer": " Sheffield", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Sheffield"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Sheffield"}, {"qid": 4088, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the location of the University of Sheffield compare to other universities in South Yorkshire?", "answer": " It is located in Sheffield, making it one of the universities situated in South Yorkshire.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Sheffield"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Sheffield"}, {"qid": 4089, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which year marks the beginning of the University of Sheffield's history?", "answer": " 1828, with the founding of Sheffield Medical School", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Sheffield"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Sheffield"}, {"qid": 4090, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What was the sequence of institutional evolutions leading to the establishment of the University of Sheffield?", "answer": " Sheffield Medical School in 1828, Firth College in 1879, Sheffield Technical School in 1884, University College of Sheffield in 1897, and finally the University of Sheffield in 1905.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Sheffield"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Sheffield"}, {"qid": 4091, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Sheffield were to celebrate the anniversary of its royal charter, which year would mark the centennial celebration?", "answer": " 2005", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Sheffield"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Sheffield"}, {"qid": 4092, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to its founding as University College of Sheffield in 1897, how many years later did it receive the royal charter?", "answer": " 8 years later, in 1905", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Sheffield"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Sheffield"}, {"qid": 4093, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the staff number at Newcastle University compare to its overseas campuses in Singapore and Malaysia?", "answer": " The staff number at Newcastle University's main campus in Newcastle upon Tyne is likely higher than its overseas campuses in Singapore and Malaysia due to it being the primary campus.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Newcastle University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Newcastle University"}, {"qid": 4094, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest part of Newcastle University?", "answer": " The oldest part of Newcastle University is the Armstrong Building, which has been part of the university since its foundation in 1834.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Newcastle University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Newcastle University"}, {"qid": 4095, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Why is Newcastle University considered a red brick university?", "answer": " Newcastle University is considered a red brick university because it is one of the UK's traditional civic universities established in the industrial cities in the late 19th and early 20th centuries, distinguished by their red brick buildings.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Newcastle University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Newcastle University"}, {"qid": 4096, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Newcastle University decided to open another overseas campus, how would the staff numbers be initially affected?", "answer": " If Newcastle University opened another overseas campus, the initial staff numbers at the new campus would likely start smaller and grow over time as the campus expands its facilities and student intake.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Newcastle University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Newcastle University"}, {"qid": 4097, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the research output of Newcastle University compare to other Russell Group universities?", "answer": " The research output of Newcastle University is competitive within the Russell Group, with the university being recognized for its research intensity and contributions across various fields.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Newcastle University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Newcastle University"}, {"qid": 4098, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which campus of Newcastle University is the largest in terms of area?", "answer": " The Newcastle upon Tyne campus is the largest in terms of area among Newcastle University's campuses, including those overseas.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Newcastle University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Newcastle University"}, {"qid": 4099, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does being a member of the Russell Group impact Newcastle University's research initiatives?", "answer": " Being a member of the Russell Group impacts Newcastle University's research initiatives by providing it with greater access to research funding, collaborations, and partnerships, enhancing its research profile and output.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Newcastle University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Newcastle University"}, {"qid": 4100, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would be the impact on Newcastle University's international collaborations if it left the Russell Group?", "answer": " If Newcastle University left the Russell Group, it might face challenges in maintaining or expanding its international collaborations, as its Russell Group membership signifies high research standards and attractiveness to global partners.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Newcastle University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Newcastle University"}, {"qid": 4101, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to when it was founded, how has Newcastle University's staff size changed?", "answer": " Since its founding, Newcastle University's staff size has significantly increased, reflecting its growth in student population, academic offerings, and research activities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Newcastle University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Newcastle University"}, {"qid": 4102, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most awarded department at Newcastle University in terms of research grants?", "answer": " The specific department at Newcastle University that has received the most research grants can vary, but departments in medical sciences and engineering traditionally secure substantial funding due to the high costs and societal importance of their research.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Newcastle University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Newcastle University"}, {"qid": 4103, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What role does Newcastle University's location in Newcastle upon Tyne play in its academic focus and research?", "answer": " Newcastle University's location in Newcastle upon Tyne plays a significant role in shaping its academic focus and research, with strong ties to local industry, culture, and societal needs driving initiatives in engineering, sustainability, and health sciences.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Newcastle University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Newcastle University"}, {"qid": 4104, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Newcastle University were to significantly expand its Malaysia campus, what academic areas might it prioritize based on regional needs?", "answer": " If Newcastle University were to significantly expand its Malaysia campus, it might prioritize academic areas such as tropical medicine, environmental sciences, and engineering, reflecting regional needs and challenges.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Newcastle University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Newcastle University"}, {"qid": 4105, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What initiative led to the founding of the University of Warwick in 1965?", "answer": " The University of Warwick was founded as part of a government initiative to expand higher education.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Warwick"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Warwick"}, {"qid": 4106, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which department at the University of Warwick was established first?", "answer": " The Warwick Business School was established first in 1967.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Warwick"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Warwick"}, {"qid": 4107, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of Warwick Law School compare to the Warwick Manufacturing Group?", "answer": " The Warwick Law School was founded in 1968, earlier than the Warwick Manufacturing Group which was founded in 1980.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Warwick"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Warwick"}, {"qid": 4108, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What entities were incorporated by the University of Warwick, and in which years?", "answer": " The University of Warwick incorporated Coventry College of Education in 1979 and Horticulture Research International in 2004.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Warwick"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Warwick"}, {"qid": 4109, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which school within the University of Warwick was established most recently?", "answer": " Warwick Medical School was established most recently in 2000.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Warwick"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Warwick"}, {"qid": 4110, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Warwick Manufacturing Group had not been founded in 1980, which would have been the latest founded department before Warwick Medical School?", "answer": " Warwick Law School, founded in 1968, would have been the latest founded department before Warwick Medical School.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Warwick"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Warwick"}, {"qid": 4111, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to the incorporation of Coventry College of Education, how later was Horticulture Research International incorporated into the University of Warwick?", "answer": " Horticulture Research International was incorporated 25 years later, in 2004.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Warwick"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Warwick"}, {"qid": 4112, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the location of the University of Warwick in relation to Coventry?", "answer": " The University of Warwick is located on the outskirts of Coventry between the West Midlands and Warwickshire, England.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Warwick"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Warwick"}, {"qid": 4113, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the purpose behind the founding of the University of Warwick in 1965?", "answer": " The purpose was to expand higher education as part of a government initiative.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Warwick"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Warwick"}, {"qid": 4114, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Warwick did not incorporate Horticulture Research International in 2004, how would its academic diversity be affected?", "answer": " Without incorporating Horticulture Research International, the University of Warwick might have had reduced academic diversity in the field of horticulture and agricultural sciences.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Warwick"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Warwick"}, {"qid": 4115, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the establishment year of Warwick Business School compare to that of Warwick Medical School?", "answer": " Warwick Business School was established far earlier, in 1967, compared to Warwick Medical School in 2000.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Warwick"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Warwick"}, {"qid": 4116, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Out of all the schools and departments at the University of Warwick, which was founded as part of the initial establishment in 1965?", "answer": " None of the listed schools (Warwick Business School, Warwick Law School, Warwick Manufacturing Group, Warwick Medical School) were founded as part of the initial establishment in 1965; they were established in subsequent years.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Warwick"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Warwick"}, {"qid": 4117, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the staff number at Queen's University Belfast compare to that of the University of Edinburgh?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen's University Belfast"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Queen's University Belfast"}, {"qid": 4118, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Is the start year of Queen's University Belfast earlier than that of Oxford University?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen's University Belfast"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Queen's University Belfast"}, {"qid": 4119, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Who was the first president of Queen's University Belfast?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen's University Belfast"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Queen's University Belfast"}, {"qid": 4120, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest building on the campus of Queen's University Belfast?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen's University Belfast"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Queen's University Belfast"}, {"qid": 4121, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What impact did the founding of Queen's University Belfast have on education in Northern Ireland?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen's University Belfast"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Queen's University Belfast"}, {"qid": 4122, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does Queen's University Belfast contribute to the local economy of Belfast?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen's University Belfast"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Queen's University Belfast"}, {"qid": 4123, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would happen if Queen's University Belfast decided to double its staff number?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen's University Belfast"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Queen's University Belfast"}, {"qid": 4124, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Queen's University Belfast were to expand its campus, how might that affect the surrounding community?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen's University Belfast"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Queen's University Belfast"}, {"qid": 4125, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which department at Queen's University Belfast has the highest number of research publications?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen's University Belfast"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Queen's University Belfast"}, {"qid": 4126, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How has the research output of Queen's University Belfast influenced global academic standards?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen's University Belfast"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Queen's University Belfast"}, {"qid": 4127, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Queen's University Belfast were to host the largest international academic conference in Europe, what preparations would be necessary?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen's University Belfast"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Queen's University Belfast"}, {"qid": 4128, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to Cambridge University, how diverse is the student population at Queen's University Belfast?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen's University Belfast"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Queen's University Belfast"}, {"qid": 4129, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the main location of the University of York?", "answer": " York, England", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of York"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of York"}, {"qid": 4130, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "When was the University of York established, making it its oldest founding date?", "answer": " 1963", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of York"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of York"}, {"qid": 4131, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What type of university is the University of York classified as?", "answer": " Public collegiate research university", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of York"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of York"}, {"qid": 4132, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the University of York's focus on research and education manifest in its organizational structure?", "answer": " Through more than thirty departments and centres covering a wide range of subjects", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of York"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of York"}, {"qid": 4133, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of the University of York compare to that of universities established in the 19th century?", "answer": " The University of York was established later, in 1963", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of York"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of York"}, {"qid": 4134, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most distinctive feature of the University of York's academic offerings?", "answer": " A wide range of subjects across more than thirty departments and centres", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of York"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of York"}, {"qid": 4135, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of York were to open another department, what existing range of subjects might it complement?", "answer": " It would complement the wide range of subjects already offered", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of York"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of York"}, {"qid": 4136, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What might be the impact on the staff number if the University of York were to expand its research facilities?", "answer": " The staff number might increase to support the expanded research facilities", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of York"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of York"}, {"qid": 4137, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to universities founded in the early 20th century, how does the University of York's establishment year stand?", "answer": " The University of York was established later, in 1963", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of York"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of York"}, {"qid": 4138, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What signifies the University of York's status as a public institution?", "answer": " Its classification as a public collegiate research university", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of York"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of York"}, {"qid": 4139, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What aspect of the University of York is most reflected in its expansion since 1963?", "answer": " The expansion in the number of departments and centres", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of York"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of York"}, {"qid": 4140, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of York were to establish a new campus, in which area might it logically expand based on its current academic offerings?", "answer": " It would logically expand in an area that complements its wide range of academic subjects", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of York"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of York"}, {"qid": 4141, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What was the original name of Cardiff University when it was established in 1883?", "answer": " University College of South Wales and Monmouthshire", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cardiff University"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "Cardiff University"}, {"qid": 4142, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "When did Cardiff University become an independent university awarding its own degrees?", "answer": " 2005", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cardiff University"], "topic_level": false, "class": "sing entity", "hops": "Multi Hop", "entity": "Cardiff University"}, {"qid": 4143, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "When was Cardiff University founded relative to other universities in Wales?", "answer": " 1883, making it one of the oldest universities in Wales", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cardiff University"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "Cardiff University"}, {"qid": 4144, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does Cardiff University's start year compare to the University of Wales Trinity Saint David?", "answer": " Cardiff University was established in 1883, making it older than the University of Wales Trinity Saint David which was formed through a merger in 2010.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cardiff University"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "Cardiff University"}, {"qid": 4145, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What name did Cardiff University adopt in 1999 before becoming its legal name in 2005?", "answer": " Cardiff University", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cardiff University"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "Cardiff University"}, {"qid": 4146, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What significant change occurred at Cardiff University in 1997 regarding its degree-awarding status?", "answer": " It received degree-awarding powers in 1997.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cardiff University"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "Cardiff University"}, {"qid": 4147, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Cardiff University had not merged with the University of Wales Institute of Science and Technology in 1988, what might have been its name today?", "answer": " University College, Cardiff", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cardiff University"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "Cardiff University"}, {"qid": 4148, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What was the sequence of name changes for Cardiff University from its establishment until it received its current name?", "answer": " University College of South Wales and Monmouthshire (1883), University College, Cardiff (1972), University of Wales College, Cardiff (1988), University of Wales, Cardiff (1996), Cardiff University (1999).", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cardiff University"], "topic_level": false, "class": "sing entity", "hops": "Multi Hop", "entity": "Cardiff University"}, {"qid": 4149, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most recent name change that Cardiff University underwent to become its current name?", "answer": " It adopted the operating name of Cardiff University in 1999 and became its legal name in 2005.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cardiff University"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "Cardiff University"}, {"qid": 4150, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Cardiff University decided to rename itself in 2023, what would be the process involved?", "answer": " The process would likely involve internal discussions, approval from the university's governing bodies, possible consultation with stakeholders, and legal steps to formalize the new name.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cardiff University"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "Cardiff University"}, {"qid": 4151, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the location of Cardiff University compare to that of Swansea University?", "answer": " Cardiff University is located in Cardiff, the capital city of Wales, while Swansea University is located in Swansea, a coastal city in Wales.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cardiff University"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "Cardiff University"}, {"qid": 4152, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "When did Cardiff University last change its legal name?", "answer": " 2005", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cardiff University"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "Cardiff University"}, {"qid": 4153, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between St Luke's College and the University of Exeter?", "answer": " St Luke's College is one of the predecessor institutions of the University of Exeter.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Exeter"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Exeter"}, {"qid": 4154, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which institution among the University of Exeter's predecessors was established first?", "answer": " St Luke's College was established first in 1838.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Exeter"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Exeter"}, {"qid": 4155, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of the Camborne School of Mines compare to the founding year of the Exeter School of Art?", "answer": " The Camborne School of Mines was founded in 1888, which is later than the founding year of the Exeter School of Art in 1863.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Exeter"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Exeter"}, {"qid": 4156, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most recent predecessor institution of the University of Exeter before it received its royal charter?", "answer": " The Camborne School of Mines, established in 1888, is the most recent predecessor.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Exeter"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Exeter"}, {"qid": 4157, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What does the suffix Exon. signify in relation to the University of Exeter?", "answer": " The suffix Exon. (from the Latin Exoniensis) is given to honorary and academic degrees from the University of Exeter.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Exeter"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Exeter"}, {"qid": 4158, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Exeter were to open a new campus, based on its historical naming conventions, what suffix might be used to denote degrees from this new campus?", "answer": " The suffix might be similar to Exon. to denote its connection to the University of Exeter.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Exeter"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Exeter"}, {"qid": 4159, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which of the University of Exeter's campuses is located in the city of its main administration?", "answer": " The main campus of the University of Exeter is located in the city of Exeter, Devon.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Exeter"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Exeter"}, {"qid": 4160, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How did the University of Exeter's status change in 1955?", "answer": " The University of Exeter received its royal charter in 1955, officially forming it as a university.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Exeter"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "University of Exeter"}, {"qid": 4161, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compare the locations of the University of Exeter's campuses in terms of their geographical area.", "answer": " The main campus of the University of Exeter is in Exeter, Devon, in the West Country of England, other locations would be compared based on their specific geographical area within or outside this region.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Exeter"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "University of Exeter"}, {"qid": 4162, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Exeter were to celebrate the anniversary of its royal charter, how many years would it be celebrating in 2025?", "answer": " The University of Exeter would be celebrating its 70th anniversary in 2025.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Exeter"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Exeter"}, {"qid": 4163, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which predecessor institution of the University of Exeter was established closest to the 20th century?", "answer": " The Camborne School of Mines, established in 1888, was the closest to the 20th century.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Exeter"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Exeter"}, {"qid": 4164, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the significance of Exeter, Devon to the University of Exeter?", "answer": " Exeter, Devon is significant as the location of the main campus of the University of Exeter.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Exeter"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Exeter"}, {"qid": 4165, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Which is larger in area, Canada or the United States?", "answer": " Canada", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Canada"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Canada"}, {"qid": 4166, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most populous city in Canada?", "answer": " Toronto", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Canada"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Canada"}, {"qid": 4167, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does Canada's population density compare to its large geographical size?", "answer": " Canada is sparsely inhabited relative to its large geographical size.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Canada"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Canada"}, {"qid": 4168, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Canada were to add another territory, how would this affect its status as the second-largest country by total area?", "answer": " It would potentially increase its total area, reinforcing its status as the second-largest country by total area.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Canada"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Canada"}, {"qid": 4169, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Which has a longer coastline, Canada or the combined coastlines of the Mediterranean countries?", "answer": " Canada", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Canada"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Canada"}, {"qid": 4170, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which Canadian province has the smallest population?", "answer": " Prince Edward Island", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Canada"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Canada"}, {"qid": 4171, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between Canada's vast geography and its meteorological diversity?", "answer": " Canada's vast geography contributes to its wide range of meteorological regions, from Arctic weather in the north to more temperate climates in the south.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Canada"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Canada"}, {"qid": 4172, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Canada were to significantly increase its population, how might this affect its urban areas?", "answer": " It would likely lead to expansion and further development of urban areas, possibly increasing the density in cities like Toronto, Montreal, and Vancouver.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Canada"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Canada"}, {"qid": 4173, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Is Canada's population greater than that of Australia?", "answer": " Yes", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Canada"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Canada"}, {"qid": 4174, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the longest river in Canada?", "answer": " The Mackenzie River", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Canada"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Canada"}, {"qid": 4175, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the length of Canada's border with the United States compare to other international land borders?", "answer": " It is the longest international land border in the world.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Canada"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Canada"}, {"qid": 4176, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If global warming leads to significant ice melting in the Arctic, how might Canada's northern coastline change?", "answer": " It might become more navigable, opening new shipping routes and possibly altering the coastline.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Canada"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Canada"}, {"qid": 4177, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Which is larger in area, Tokyo or Shikoku?", "answer": " Shikoku", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Japan"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Japan"}, {"qid": 4178, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most populous prefecture in Japan?", "answer": " Tokyo", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Japan"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Japan"}, {"qid": 4179, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does Japan's location in the Pacific Ring of Fire affect its susceptibility to natural disasters?", "answer": " Japan's location on the Pacific Ring of Fire makes it prone to destructive earthquakes and tsunamis.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Japan"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Japan"}, {"qid": 4180, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If a new island were to emerge in the Sea of Japan, under which country's jurisdiction would it likely fall?", "answer": " Japan", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Japan"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Japan"}, {"qid": 4181, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Is the population density higher in Tokyo or Osaka?", "answer": " Tokyo", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Japan"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Japan"}, {"qid": 4182, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which city in Japan has the highest number of foreign residents?", "answer": " Tokyo", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Japan"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Japan"}, {"qid": 4183, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the geography of Japan influence its climate?", "answer": " Japan's mountainous terrain influences its climate by creating variations in weather patterns across different regions, with the Pacific coast experiencing milder winters and the Sea of Japan coast facing heavy snowfall.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Japan"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Japan"}, {"qid": 4184, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Japan were to open a new administrative prefecture, what would be the total number of prefectures?", "answer": " 48", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Japan"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Japan"}, {"qid": 4185, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Which has a greater land area, Kyushu or Hokkaido?", "answer": " Hokkaido", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Japan"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Japan"}, {"qid": 4186, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest university in Japan?", "answer": " Keio University", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Japan"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Japan"}, {"qid": 4187, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Why is Tokyo considered a significant global financial center?", "answer": " Tokyo is considered a significant global financial center due to its large economy, the presence of major multinational corporations, and its status as one of the world's largest stock exchanges.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Japan"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Japan"}, {"qid": 4188, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If a tsunami were to hit the eastern coast of Japan, which major island would be first affected?", "answer": " Honshu", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Japan"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Japan"}, {"qid": 4189, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the largest city in Italy?", "answer": " Rome", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Italy"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Italy"}, {"qid": 4190, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which Italian city has the highest population?", "answer": " Rome", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Italy"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Italy"}, {"qid": 4191, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What borders Italy to the north?", "answer": " The Alps", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Italy"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Italy"}, {"qid": 4192, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does Italy's geographical location contribute to its climate diversity?", "answer": " Its extended peninsula into the Mediterranean Sea and the presence of the Alps on its northern border contribute to its climate diversity by creating variations in weather patterns from the coast to the mountains.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Italy"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Italy"}, {"qid": 4193, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Is Italy larger in area than Switzerland?", "answer": " Yes", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Italy"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Italy"}, {"qid": 4194, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Does Italy have a higher population than Austria?", "answer": " Yes", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Italy"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Italy"}, {"qid": 4195, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which island is the largest that belongs to Italy?", "answer": " Sicily", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Italy"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Italy"}, {"qid": 4196, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the significance of Vatican City's location within Italy?", "answer": " Vatican City is an independent city-state enclaved within Rome, Italy, making Italy the only country to have two separate sovereign entities within its borders.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Italy"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Italy"}, {"qid": 4197, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Italy were to lose all its islands, how would its geography change?", "answer": " Italy would lose significant territory including Sicily and Sardinia, altering its geographical shape and reducing its coastline length.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Italy"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Italy"}, {"qid": 4198, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would happen if the Alps no longer bordered Italy to the north?", "answer": " The natural barrier protecting Italy from northern invasions would be removed, potentially altering historical invasions and climate patterns.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Italy"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Italy"}, {"qid": 4199, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does Italy's border with France influence its cultural exchanges?", "answer": " The border facilitates the exchange of goods, people, and cultural practices, enriching the cultural diversity in the border regions of both countries.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Italy"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Italy"}, {"qid": 4200, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Has Italy a larger population than San Marino?", "answer": " Yes", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Italy"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Italy"}, {"qid": 4201, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the largest state by area in the United States?", "answer": " Alaska", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United States"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "United States"}, {"qid": 4202, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which state has the smallest population in the United States?", "answer": " Wyoming", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United States"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "United States"}, {"qid": 4203, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Is the population of California larger than Texas?", "answer": " Yes", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United States"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "United States"}, {"qid": 4204, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the location of Alaska compare to the contiguous United States?", "answer": " Alaska is located to the northwest of the contiguous United States.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United States"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "United States"}, {"qid": 4205, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What separates Hawaii from the mainland United States?", "answer": " The Pacific Ocean", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United States"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "United States"}, {"qid": 4206, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Puerto Rico becomes a state, how many states would the United States have?", "answer": " 51", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United States"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "United States"}, {"qid": 4207, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would happen if the United States decided to sell Alaska back to Russia?", "answer": " The United States would have one less state, and its total land area would decrease.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United States"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "United States"}, {"qid": 4208, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which U.S. state has the highest number of Indian reservations?", "answer": " Arizona", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United States"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "United States"}, {"qid": 4209, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the size of the United States' exclusive economic zone compare to its land area?", "answer": " The United States' exclusive economic zone is the second-largest in the world, extending beyond its third-largest land area.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United States"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "United States"}, {"qid": 4210, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Does the United States have a larger population than Indonesia?", "answer": " No", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United States"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "United States"}, {"qid": 4211, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Washington D.C. gains statehood, what would be its rank in terms of population size among the states?", "answer": " It would be among the states with the smallest populations.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United States"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "United States"}, {"qid": 4212, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most populous state in the United States?", "answer": " California", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United States"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "United States"}, {"qid": 4213, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most populous city in Germany?", "answer": " Berlin", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Germany"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Germany"}, {"qid": 4214, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which state in Germany has the highest population?", "answer": " North Rhine-Westphalia", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Germany"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Germany"}, {"qid": 4215, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the largest urban area in Germany?", "answer": " The Ruhr", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Germany"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Germany"}, {"qid": 4216, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the capital city of Germany?", "answer": " Berlin", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Germany"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Germany"}, {"qid": 4217, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What countries border Germany to the east?", "answer": " Poland and Czechia", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Germany"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Germany"}, {"qid": 4218, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the main financial centre of Germany?", "answer": " Frankfurt", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Germany"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Germany"}, {"qid": 4219, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Does Germany have a higher population than Austria?", "answer": " Yes", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Germany"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Germany"}, {"qid": 4220, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Is Berlin larger than Munich in terms of population within Germany?", "answer": " Yes", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Germany"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Germany"}, {"qid": 4221, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Germany decided to merge its two least populous states, would it still have more than 15 states?", "answer": " Yes", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Germany"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Germany"}, {"qid": 4222, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Berlin were to become an independent city-state, how many states would Germany be composed of?", "answer": " 15", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Germany"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Germany"}, {"qid": 4223, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Germany annexed Austria, would it border Italy?", "answer": " Yes", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Germany"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Germany"}, {"qid": 4224, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the Ruhr area became the most populous city in Germany, would it surpass Berlin in population?", "answer": " It already is the largest urban area, but not classified as a single city.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Germany"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Germany"}, {"qid": 4225, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the size of France's exclusive economic zone compare to other countries in the world?", "answer": " It has one of the largest discontiguous exclusive economic zones in the world.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["France"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "France"}, {"qid": 4226, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the largest city and main cultural and commercial centre of France?", "answer": " Paris.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["France"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "France"}, {"qid": 4227, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What type of government does France have?", "answer": " France is a semi-presidential republic.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["France"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "France"}, {"qid": 4228, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If France decided to add another region, how many integral regions would it have?", "answer": " It would have nineteen integral regions.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["France"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "France"}, {"qid": 4229, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to its neighbors, how extensive is France's maritime border with the United Kingdom?", "answer": " France shares a significant maritime border with the United Kingdom to the northwest.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["France"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "France"}, {"qid": 4230, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which region of France is furthest south?", "answer": " The region bordering Andorra and Spain is the furthest south.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["France"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "France"}, {"qid": 4231, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does France's location influence its cultural interactions with neighboring countries?", "answer": " Its central location in Western Europe and borders with multiple countries facilitate a rich cultural exchange and influence from and with Belgium, Luxembourg, Germany, Switzerland, Italy, Monaco, Andorra, Spain, and the United Kingdom.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["France"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "France"}, {"qid": 4232, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If France were to lose all of its overseas regions and territories, how would its exclusive economic zone be affected?", "answer": " Its exclusive economic zone would be significantly reduced, losing one of the largest discontiguous exclusive economic zones statuses.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["France"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "France"}, {"qid": 4233, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does France's population compare to that of its overseas regions?", "answer": " Metropolitan France has a much larger population compared to its overseas regions and territories.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["France"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "France"}, {"qid": 4234, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most populous region of France?", "answer": " Île-de-France, where Paris is located, is the most populous region.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["France"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "France"}, {"qid": 4235, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the semi-presidential system of France affect its political structure?", "answer": " The semi-presidential system divides executive functions between a President and a Prime Minister, affecting the political balance and operations within its government.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["France"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "France"}, {"qid": 4236, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If France's population were to increase by 2 million in the next year, what would be its new total population?", "answer": " It would be 70.4 million.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["France"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "France"}, {"qid": 4237, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the largest city in the United Kingdom?", "answer": " London", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United Kingdom"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "United Kingdom"}, {"qid": 4238, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the population of London compare to that of the entire United Kingdom?", "answer": " The population of London is significantly smaller than that of the entire United Kingdom, with London's wider metropolitan area having a population of 14.9 million out of the UK's total estimated population of 67,596,281 people in 2022.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United Kingdom"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "United Kingdom"}, {"qid": 4239, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Which part of the United Kingdom shares a land border with the Republic of Ireland?", "answer": " Northern Ireland", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United Kingdom"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "United Kingdom"}, {"qid": 4240, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which country in the United Kingdom has its capital at Edinburgh?", "answer": " Scotland", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United Kingdom"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "United Kingdom"}, {"qid": 4241, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the significance of the English Channel for the United Kingdom?", "answer": " The English Channel separates the United Kingdom from continental Europe.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United Kingdom"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "United Kingdom"}, {"qid": 4242, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would be the implications if the United Kingdom decided to expand its territory?", "answer": " Expanding its territory could lead to international disputes, changes in diplomatic relations, and potential alterations in trade agreements.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United Kingdom"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "United Kingdom"}, {"qid": 4243, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which sea is located to the west of the United Kingdom?", "answer": " The Atlantic Ocean", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United Kingdom"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "United Kingdom"}, {"qid": 4244, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Why is Northern Ireland unique within the United Kingdom?", "answer": " Northern Ireland is unique within the United Kingdom because it is the only part that shares a land border with another sovereign country, the Republic of Ireland.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United Kingdom"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "United Kingdom"}, {"qid": 4245, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How do the sizes of England, Scotland, Wales, and Northern Ireland compare within the United Kingdom?", "answer": " England is the largest part, followed by Scotland, Wales, and then Northern Ireland in terms of both land area and population.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United Kingdom"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "United Kingdom"}, {"qid": 4246, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the United Kingdom decided to build a new capital city, what factors should be considered?", "answer": " Factors would include geographical location, economic impact, accessibility, historical significance, and environmental sustainability.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United Kingdom"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "United Kingdom"}, {"qid": 4247, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the smallest country in the United Kingdom by population?", "answer": " Northern Ireland", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United Kingdom"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "United Kingdom"}, {"qid": 4248, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the total area of the United Kingdom compare to that of London?", "answer": " The total area of the United Kingdom is vastly larger than that of London, with the UK covering an area of 94,354 square miles (244,376 km2) compared to London's much smaller geographical footprint.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United Kingdom"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "United Kingdom"}, {"qid": 4249, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the largest city in Russia?", "answer": " Moscow", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Russia"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Russia"}, {"qid": 4250, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which city is considered Russia's cultural capital?", "answer": " Saint Petersburg", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Russia"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Russia"}, {"qid": 4251, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does Russia's population rank globally?", "answer": " Ninth-most populous", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Russia"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Russia"}, {"qid": 4252, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the capital city of Russia?", "answer": " Moscow", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Russia"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Russia"}, {"qid": 4253, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is Russia's position in terms of global area size?", "answer": " Largest", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Russia"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Russia"}, {"qid": 4254, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How many time zones does Russia extend across?", "answer": " Eleven", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Russia"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Russia"}, {"qid": 4255, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If a new city in Russia grows to have over a million inhabitants, how would it change the current count of such cities?", "answer": " It would increase from 16 to 17.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Russia"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Russia"}, {"qid": 4256, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How many countries share land borders with Russia?", "answer": " Fourteen", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Russia"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Russia"}, {"qid": 4257, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which city has the largest population in Russia?", "answer": " Moscow", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Russia"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Russia"}, {"qid": 4258, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Russia were to gain another time zone, how many time zones would it span?", "answer": " Twelve", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Russia"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Russia"}, {"qid": 4259, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to its neighbors, how does Russia's land area size rank?", "answer": " Largest among its neighbors", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Russia"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Russia"}, {"qid": 4260, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the total number of population centres in Russia with over a million inhabitants?", "answer": " 16", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Russia"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Russia"}, {"qid": 4261, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the staff number of Tsinghua University compare to that of Peking University?", "answer": " This question requires current data for both universities. As of my last update, specific staff numbers for each institution were not provided, making a direct comparison impossible without up-to-date information.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Tsinghua University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Tsinghua University"}, {"qid": 4262, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest university among Tsinghua University, Fudan University, and Shanghai Jiao Tong University?", "answer": " Tsinghua University was established in 1911, Fudan University in 1905, and Shanghai Jiao Tong University in 1896, making Shanghai Jiao Tong University the oldest among them.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Tsinghua University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Tsinghua University"}, {"qid": 4263, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How is Tsinghua University affiliated with the Chinese government?", "answer": " Tsinghua University is affiliated with and funded by the Ministry of Education of China.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Tsinghua University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Tsinghua University"}, {"qid": 4264, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would happen to Tsinghua University's funding if it decided to operate independently from the Ministry of Education of China?", "answer": " If Tsinghua University decided to operate independently from the Ministry of Education of China, it would likely lose its government funding and would have to find alternative sources of revenue to support its operations.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Tsinghua University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Tsinghua University"}, {"qid": 4265, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Is the location of Tsinghua University more central in Beijing compared to the University of Chinese Academy of Sciences?", "answer": " Both Tsinghua University and the University of Chinese Academy of Sciences are located in the Haidian district of Beijing, but without specific geographical coordinates, it's difficult to definitively say which is more central without current mapping data.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Tsinghua University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Tsinghua University"}, {"qid": 4266, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which university has a longer history, Tsinghua University or Beijing Normal University?", "answer": " Tsinghua University was established in 1911, while Beijing Normal University was established in 1902, making Beijing Normal University older.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Tsinghua University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Tsinghua University"}, {"qid": 4267, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What role does Tsinghua University play in China's Project 985?", "answer": " Tsinghua University is a key participant in China's Project 985, aiming to develop world-class universities in the 21st century and enhance research capacities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Tsinghua University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Tsinghua University"}, {"qid": 4268, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Tsinghua University were to expand its campus to another city, how might this affect its membership in the C9 League?", "answer": " Expansion to another city would not necessarily affect Tsinghua University's membership in the C9 League, as membership is based on the university's overall performance and contribution to higher education in China, not its geographic location.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Tsinghua University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Tsinghua University"}, {"qid": 4269, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to other C9 League members, where does Tsinghua University stand in terms of research output?", "answer": " Specific rankings can fluctuate, but Tsinghua University is generally regarded as one of the top institutions within the C9 League in terms of research output.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Tsinghua University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Tsinghua University"}, {"qid": 4270, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most prestigious faculty department at Tsinghua University?", "answer": " Prestige can be subjective and vary by field, but Tsinghua University is particularly renowned for its engineering and computer science departments.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Tsinghua University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Tsinghua University"}, {"qid": 4271, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does Tsinghua University's location in Haidian, Beijing, contribute to its academic environment?", "answer": " Haidian district, being a major education and technology hub in Beijing, provides Tsinghua University with access to numerous research institutions, tech companies, and a vibrant academic community, enriching its academic environment.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Tsinghua University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Tsinghua University"}, {"qid": 4272, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would the impact be on Tsinghua University's international collaborations if diplomatic relations between China and other countries were to deteriorate?", "answer": " Deterioration in diplomatic relations could hinder Tsinghua University's international collaborations, affecting academic exchanges, joint research projects, and potentially leading to reduced opportunities for students and faculty.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Tsinghua University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Tsinghua University"}, {"qid": 4273, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the affiliation of Peking University?", "answer": " The Ministry of Education of China", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Peking University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Peking University"}, {"qid": 4274, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "In which district is Peking University located?", "answer": " Haidian", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Peking University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Peking University"}, {"qid": 4275, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest university in Beijing?", "answer": " Peking University", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Peking University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Peking University"}, {"qid": 4276, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Is Peking University more affiliated with the Ministry of Education of China than other local universities in Beijing?", "answer": " It is directly affiliated with the Ministry of Education of China, similar to other top universities but with significant prestige and history, making it a key institution.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Peking University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Peking University"}, {"qid": 4277, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What initiatives is Peking University a part of?", "answer": " Double First-Class Construction and the C9 League", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Peking University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Peking University"}, {"qid": 4278, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Peking University decided to increase its staff, by which ministry would the funding likely be approved?", "answer": " The Ministry of Education of China", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Peking University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Peking University"}, {"qid": 4279, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which university in China is part of the prestigious C9 League?", "answer": " Peking University", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Peking University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Peking University"}, {"qid": 4280, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to other C9 League universities, where does Peking University stand in terms of its founding year?", "answer": " It is one of the oldest, founded in 1898.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Peking University"], "topic_level": false, "class": "sing entity", "hops": "Multi hop", "entity": "Peking University"}, {"qid": 4281, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What was Peking University a part of before those projects were discontinued?", "answer": " Project 211 and Project 985", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Peking University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Peking University"}, {"qid": 4282, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Peking University were to open a new campus, in which district of Beijing would it likely be located, based on its current location?", "answer": " Haidian", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Peking University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Peking University"}, {"qid": 4283, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which sector does the primary funding source of Peking University belong to?", "answer": " Public sector, through the Ministry of Education of China", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Peking University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Peking University"}, {"qid": 4284, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the staff number at Peking University compare to that of other universities in the C9 League?", "answer": " Peking University has a significant number of staff, but the exact comparison depends on the specific metrics and current data of each university in the C9 League.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Peking University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Peking University"}, {"qid": 4285, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of Zhejiang University compare to that of Peking University?", "answer": " Zhejiang University was founded in 1897, which is later than the founding year of Peking University in 1898.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Zhejiang University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Zhejiang University"}, {"qid": 4286, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest department within Zhejiang University?", "answer": " The oldest department at Zhejiang University is the Department of Physics, established in 1922.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Zhejiang University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Zhejiang University"}, {"qid": 4287, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What relationship does Zhejiang University have with the Ministry of Education?", "answer": " Zhejiang University is affiliated with the Ministry of Education.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Zhejiang University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Zhejiang University"}, {"qid": 4288, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Zhejiang University were to open a new campus in the United States, which existing campus's size would it most likely resemble?", "answer": " It would most likely resemble the size of the Zijingang Campus, which is the largest campus of Zhejiang University.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Zhejiang University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Zhejiang University"}, {"qid": 4289, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the number of staff at Zhejiang University compare to that at Tsinghua University?", "answer": " Zhejiang University has over 3,741 faculty members, which is fewer than Tsinghua University's staff count.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Zhejiang University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Zhejiang University"}, {"qid": 4290, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which project does Zhejiang University rank highest in national importance, Project 985 or Project 211?", "answer": " Both Project 985 and Project 211 are of high national importance, but Project 985 is more selective, making Zhejiang University's participation in it slightly more prestigious.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Zhejiang University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Zhejiang University"}, {"qid": 4291, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the role of the president at Zhejiang University?", "answer": " The president of Zhejiang University is responsible for the overall administration and academic leadership of the university.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Zhejiang University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Zhejiang University"}, {"qid": 4292, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Zhejiang University decided to double its research budget, in which field might it achieve the most significant breakthrough?", "answer": " Given its strong emphasis on engineering and technology, doubling the research budget might lead to significant breakthroughs in artificial intelligence or renewable energy.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Zhejiang University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Zhejiang University"}, {"qid": 4293, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does Zhejiang University's location in Hangzhou compare to Shanghai's universities in terms of student life?", "answer": " Zhejiang University, located in Hangzhou, offers a more scenic and historical environment compared to the bustling urban life of Shanghai's universities, potentially providing a different student life experience.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Zhejiang University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Zhejiang University"}, {"qid": 4294, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most highly ranked faculty at Zhejiang University?", "answer": " The Faculty of Engineering at Zhejiang University is highly ranked both nationally and internationally.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Zhejiang University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Zhejiang University"}, {"qid": 4295, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does Project 985 influence Zhejiang University's academic standards?", "answer": " Project 985 influences Zhejiang University's academic standards by providing additional funding and resources, aiming to elevate its research output and academic excellence to world-class standards.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Zhejiang University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Zhejiang University"}, {"qid": 4296, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Zhejiang University were to collaborate with an Ivy League school on a joint degree program, which department would most likely lead this initiative?", "answer": " The Department of Computer Science and Technology would most likely lead this initiative, given its strong international reputation and research capabilities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Zhejiang University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Zhejiang University"}, {"qid": 4297, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the staff number at Fudan University compare to that of Shanghai Jiao Tong University?", "answer": " This cannot be answered without specific data on the staff numbers at both universities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Fudan University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Fudan University"}, {"qid": 4298, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest department at Fudan University?", "answer": " This cannot be answered without specific historical data on the departments of Fudan University.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Fudan University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Fudan University"}, {"qid": 4299, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What role does the Shanghai Municipal Government play in the funding of Fudan University?", "answer": " The Shanghai Municipal Government co-funds Fudan University along with the Ministry of Education.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Fudan University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Fudan University"}, {"qid": 4300, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Fudan University were to open a new faculty tomorrow, what ministry would it likely be affiliated with?", "answer": " It would likely be affiliated with the Ministry of Education.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Fudan University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Fudan University"}, {"qid": 4301, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Is the student to staff ratio at Fudan University higher than that at Tsinghua University?", "answer": " This cannot be answered without specific data on student and staff numbers at both universities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Fudan University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Fudan University"}, {"qid": 4302, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which building in Fudan University has the most floors?", "answer": " This cannot be answered without specific data on the buildings of Fudan University.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Fudan University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Fudan University"}, {"qid": 4303, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How is Fudan University's affiliation with the Ministry of Education reflected in its academic programs?", "answer": " This cannot be answered without specific details on how the affiliation influences the academic programs.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Fudan University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Fudan University"}, {"qid": 4304, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Fudan University were to become a private institution, how might its funding sources change?", "answer": " It would likely rely more on tuition fees, private donations, and possibly corporate sponsorships instead of government funding.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Fudan University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Fudan University"}, {"qid": 4305, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to Beijing University, how many more faculties does Fudan University have?", "answer": " This cannot be answered without specific data on the number of faculties at both universities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Fudan University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Fudan University"}, {"qid": 4306, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most popular major at Fudan University?", "answer": " This cannot be answered without specific enrollment data for each major at Fudan University.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Fudan University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Fudan University"}, {"qid": 4307, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does Fudan University's collaboration with the Shanghai Municipal Government impact its research initiatives?", "answer": " The collaboration likely provides additional funding and resources, enhancing the university's capacity for research.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Fudan University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Fudan University"}, {"qid": 4308, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Fudan University were to establish a campus abroad, which country would it most likely be in, based on current international partnerships?", "answer": " This cannot be answered without specific data on Fudan University's international partnerships.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Fudan University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Fudan University"}, {"qid": 4309, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the staff number of Nanjing University compare to that of a similarly ranked institution within the C9 League?", "answer": " The staff number at Nanjing University is comparable to other C9 League institutions, but specific numbers vary based on department size and funding.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Nanjing University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Nanjing University"}, {"qid": 4310, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest department at Nanjing University?", "answer": " The Department of Chinese Language and Literature is among the oldest departments at Nanjing University.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Nanjing University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Nanjing University"}, {"qid": 4311, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How is Nanjing University affiliated with the Ministry of Education in China?", "answer": " Nanjing University is directly affiliated and sponsored by the Ministry of Education of China, aligning it closely with national educational policies and funding.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Nanjing University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Nanjing University"}, {"qid": 4312, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would happen if Nanjing University decided to leave the C9 League?", "answer": " If Nanjing University decided to leave the C9 League, it might impact its prestige, funding opportunities, and collaborative research projects with other elite universities in China.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Nanjing University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Nanjing University"}, {"qid": 4313, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does Nanjing University's participation in Project 985 compare to its involvement in the Double First-Class Construction?", "answer": " Nanjing University's participation in Project 985 laid the foundation for its involvement in the Double First-Class Construction, with both initiatives aiming to enhance research capabilities and academic excellence.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Nanjing University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Nanjing University"}, {"qid": 4314, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which project has had the largest impact on Nanjing University's development, Project 211, Project 985, or the Double First-Class Construction?", "answer": " The Double First-Class Construction has had the largest impact recently, building upon the foundation established by Project 211 and Project 985 to further elevate Nanjing University's status.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Nanjing University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Nanjing University"}, {"qid": 4315, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the location of Nanjing University in Jiangsu, China, influence its academic collaborations with other institutions in the region?", "answer": " Being located in Jiangsu, China, facilitates Nanjing University's academic collaborations with other prestigious institutions in the region, leveraging geographical proximity to strengthen research partnerships and academic exchanges.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Nanjing University"], "topic_level": false, "class": "sing entity", "hops": "Multi hop", "entity": "Nanjing University"}, {"qid": 4316, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Nanjing University were to double its staff number, how might this affect its ranking among the C9 League universities?", "answer": " Doubling its staff number could potentially improve Nanjing University's ranking among the C9 League universities if it leads to increased research output, enhanced teaching quality, and more international collaborations.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Nanjing University"], "topic_level": false, "class": "sing entity", "hops": "Multi hop", "entity": "Nanjing University"}, {"qid": 4317, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to other universities in Jiangsu, how does Nanjing University's affiliation with the Ministry of Education stand out?", "answer": " Nanjing University's direct affiliation with the Ministry of Education distinguishes it from other universities in Jiangsu by providing it with more direct access to governmental resources and support.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Nanjing University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Nanjing University"}, {"qid": 4318, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most significant benefit of Nanjing University being part of the Double First-Class Construction initiative?", "answer": " The most significant benefit is the enhanced funding and support for developing world-class disciplines and research centers, elevating its global academic reputation.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Nanjing University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Nanjing University"}, {"qid": 4319, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What role does the C9 League membership play in shaping the academic and research environment at Nanjing University?", "answer": " The C9 League membership plays a crucial role in shaping Nanjing University's academic and research environment by fostering high standards of research excellence, encouraging competitive academic culture, and facilitating elite network collaborations.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Nanjing University"], "topic_level": false, "class": "sing entity", "hops": "Multi hop", "entity": "Nanjing University"}, {"qid": 4320, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Nanjing University were to initiate a new global partnership program, how could its Project 985 legacy influence the program's success?", "answer": " Its Project 985 legacy could significantly influence the program's success by leveraging its established reputation for academic excellence and research innovation to attract prestigious international partners and enhance global collaborations.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Nanjing University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Nanjing University"}, {"qid": 4321, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the start year of Xi'an Jiaotong University compare to that of Tsinghua University?", "answer": " Xi'an Jiaotong University was founded in 1896, which is earlier than Tsinghua University's founding year of 1911.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Xi'an Jiaotong University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Xi'an Jiaotong University"}, {"qid": 4322, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest department at Xi'an Jiaotong University?", "answer": " The School of Mechanical Engineering, established shortly after the university's founding in 1896, is among the oldest.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Xi'an Jiaotong University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Xi'an Jiaotong University"}, {"qid": 4323, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How is the president of Xi'an Jiaotong University chosen?", "answer": " The president of Xi'an Jiaotong University is typically appointed by the national government, in consultation with academic and administrative bodies within the university.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Xi'an Jiaotong University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Xi'an Jiaotong University"}, {"qid": 4324, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would happen if Xi'an Jiaotong University decided to move its location to another city?", "answer": " If Xi'an Jiaotong University moved to another city, it would involve massive logistical challenges, potential changes in its student and faculty composition, and possibly impact its reputation and historical significance.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Xi'an Jiaotong University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Xi'an Jiaotong University"}, {"qid": 4325, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compare the number of staff at Xi'an Jiaotong University to that of Peking University.", "answer": " As of my last update, Xi'an Jiaotong University has a smaller staff number compared to Peking University, which is one of the largest employers among Chinese universities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Xi'an Jiaotong University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Xi'an Jiaotong University"}, {"qid": 4326, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which faculty member at Xi'an Jiaotong University has the longest tenure?", "answer": " The faculty member with the longest tenure at Xi'an Jiaotong University would likely be one who has been teaching since the early days of their career, possibly spanning several decades, though specific names are subject to current faculty records.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Xi'an Jiaotong University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Xi'an Jiaotong University"}, {"qid": 4327, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between Xi'an Jiaotong University's staff number and its academic output?", "answer": " Generally, a higher staff number at Xi'an Jiaotong University correlates with increased academic output, as more faculty members can conduct research, supervise students, and contribute to publications and patents.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Xi'an Jiaotong University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Xi'an Jiaotong University"}, {"qid": 4328, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Xi'an Jiaotong University doubled its research budget, how would this impact its global ranking?", "answer": " Doubling the research budget of Xi'an Jiaotong University could significantly enhance its research capabilities, potentially improving its global ranking by attracting high-caliber faculty, funding more research projects, and increasing the quantity and quality of publications.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Xi'an Jiaotong University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Xi'an Jiaotong University"}, {"qid": 4329, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the foundation year of Xi'an Jiaotong University compare to that of Shanghai Jiao Tong University?", "answer": " Xi'an Jiaotong University was founded in 1896, making it older than Shanghai Jiao Tong University, which was founded in 1896 as well but is generally considered to have been officially founded in 1921 when it became a university.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Xi'an Jiaotong University"], "topic_level": false, "class": "sing entity", "hops": "No hop", "entity": "Xi'an Jiaotong University"}, {"qid": 4330, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which building on Xi'an Jiaotong University's campus is the oldest?", "answer": " The oldest building on Xi'an Jiaotong University's campus is likely one of the original structures from the early 20th century, but specific buildings are subject to the university's historical records.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Xi'an Jiaotong University"], "topic_level": false, "class": "sing entity", "hops": "No hop", "entity": "Xi'an Jiaotong University"}, {"qid": 4331, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What role does the President of Xi'an Jiaotong University play in its administration?", "answer": " The President of Xi'an Jiaotong University plays a central role in its administration, overseeing academic, financial, and strategic decisions, and representing the university in external affairs.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Xi'an Jiaotong University"], "topic_level": false, "class": "sing entity", "hops": "No hop", "entity": "Xi'an Jiaotong University"}, {"qid": 4332, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would occur if Xi'an Jiaotong University decided to only offer graduate programs?", "answer": " If Xi'an Jiaotong University decided to offer only graduate programs, it would lead to a significant shift in its educational focus, potentially affecting its undergraduate population, altering its curriculum structure, and impacting its overall mission and diversity.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Xi'an Jiaotong University"], "topic_level": false, "class": "sing entity", "hops": "No hop", "entity": "Xi'an Jiaotong University"}, {"qid": 4333, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of the University of Science and Technology of China compare to that of Peking University?", "answer": " The University of Science and Technology of China was founded in 1958, while Peking University was founded in 1898, making Peking University older.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Science and Technology of China"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Science and Technology of China"}, {"qid": 4334, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest department within the University of Science and Technology of China?", "answer": " The Department of Modern Physics, established at the founding of the university in 1958, is one of the oldest departments.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Science and Technology of China"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Science and Technology of China"}, {"qid": 4335, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between the University of Science and Technology of China and the Chinese Academy of Sciences?", "answer": " The University of Science and Technology of China is affiliated with the Chinese Academy of Sciences.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Science and Technology of China"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Science and Technology of China"}, {"qid": 4336, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Science and Technology of China decided to open a new campus, which existing department might be prioritized to move there?", "answer": " The Department of Advanced Materials might be prioritized due to its innovative research and potential for growth.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Science and Technology of China"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Science and Technology of China"}, {"qid": 4337, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which president of the University of Science and Technology of China had the longest tenure?", "answer": " Information on specific tenures of the presidents of the University of Science and Technology of China is not provided, but typically, university presidents in China serve for about 4-5 years.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Science and Technology of China"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Science and Technology of China"}, {"qid": 4338, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the funding for the University of Science and Technology of China relate to its affiliations?", "answer": " The University of Science and Technology of China is co-funded by the Chinese Academy of Sciences, the Ministry of Education of China, and the Anhui Provincial Government, reflecting its strong affiliation with these entities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Science and Technology of China"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Science and Technology of China"}, {"qid": 4339, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the student population at the University of Science and Technology of China compare to that of Tsinghua University?", "answer": " As of the last available data, Tsinghua University has a larger student population compared to the University of Science and Technology of China.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Science and Technology of China"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Science and Technology of China"}, {"qid": 4340, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Science and Technology of China were to establish a new research institute, what field might it focus on given current global trends?", "answer": " Given current global trends, a new research institute might focus on artificial intelligence and robotics.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Science and Technology of China"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Science and Technology of China"}, {"qid": 4341, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What role does the Anhui Provincial Government play in the operation of the University of Science and Technology of China?", "answer": " The Anhui Provincial Government co-funds the University of Science and Technology of China, supporting its operation and development.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Science and Technology of China"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Science and Technology of China"}, {"qid": 4342, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most internationally recognized achievement of the University of Science and Technology of China?", "answer": " The University of Science and Technology of China is internationally recognized for its achievements in quantum communication research.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Science and Technology of China"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Science and Technology of China"}, {"qid": 4343, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the number of staff at the University of Science and Technology of China compare with that of Shanghai Jiao Tong University?", "answer": " Shanghai Jiao Tong University typically has a larger staff number compared to the University of Science and Technology of China, reflecting its broader range of departments and facilities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Science and Technology of China"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Science and Technology of China"}, {"qid": 4344, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Science and Technology of China were to collaborate on a space mission, which department would most likely take the lead?", "answer": " The Department of Astronomy would most likely take the lead on a space mission collaboration due to its focus on space sciences and technology.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Science and Technology of China"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Science and Technology of China"}, {"qid": 4345, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest university in Shanghai?", "answer": " Shanghai Jiao Tong University", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Shanghai Jiao Tong University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Shanghai Jiao Tong University"}, {"qid": 4346, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which university in Shanghai has the highest number of staff members?", "answer": " Shanghai Jiao Tong University", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Shanghai Jiao Tong University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Shanghai Jiao Tong University"}, {"qid": 4347, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between Shanghai Jiao Tong University and the Ministry of Education of China?", "answer": " Shanghai Jiao Tong University is affiliated with the Ministry of Education of China.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Shanghai Jiao Tong University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Shanghai Jiao Tong University"}, {"qid": 4348, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does Shanghai Jiao Tong University contribute to China's Double First-Class Construction project?", "answer": " Shanghai Jiao Tong University is part of the Double First-Class Construction project, aiming to develop world-class education and research in China.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Shanghai Jiao Tong University"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "Shanghai Jiao Tong University"}, {"qid": 4349, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the staff number at Shanghai Jiao Tong University compare to that of Fudan University?", "answer": " The staff number at Shanghai Jiao Tong University is likely comparable to that of Fudan University, as both are major universities in Shanghai.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Shanghai Jiao Tong University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Shanghai Jiao Tong University"}, {"qid": 4350, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would happen if Shanghai Jiao Tong University decided to no longer affiliate with the Ministry of Education of China?", "answer": " If Shanghai Jiao Tong University decided to no longer affiliate with the Ministry of Education of China, it may have to seek alternative sources of funding and governance, potentially impacting its programs and international collaborations.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Shanghai Jiao Tong University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Shanghai Jiao Tong University"}, {"qid": 4351, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which project does Shanghai Jiao Tong University rank higher in national importance, Project 211 or Project 985?", "answer": " Shanghai Jiao Tong University is a key participant in both Project 211 and Project 985, with Project 985 being considered more prestigious and indicating higher national importance.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Shanghai Jiao Tong University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Shanghai Jiao Tong University"}, {"qid": 4352, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What impact has Shanghai Jiao Tong University's participation in Project 211 had on its research capabilities?", "answer": " Participation in Project 211 has significantly enhanced Shanghai Jiao Tong University's research capabilities, providing it with more resources and opportunities for cutting-edge research and development.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Shanghai Jiao Tong University"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "Shanghai Jiao Tong University"}, {"qid": 4353, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to other universities in Shanghai, how does Shanghai Jiao Tong University's involvement in international collaborations stand out?", "answer": " Shanghai Jiao Tong University's involvement in international collaborations stands out due to its high level of engagement in global research partnerships and academic exchange programs, more so than most other universities in Shanghai.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Shanghai Jiao Tong University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Shanghai Jiao Tong University"}, {"qid": 4354, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would be the impact on Shanghai's education ecosystem if Shanghai Jiao Tong University ceased to exist?", "answer": " If Shanghai Jiao Tong University ceased to exist, Shanghai's education ecosystem would lose a major research and higher education institution, negatively affecting the city's status as an educational and technological hub.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Shanghai Jiao Tong University"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "Shanghai Jiao Tong University"}, {"qid": 4355, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most significant contribution of Shanghai Jiao Tong University to China's higher education landscape?", "answer": " The most significant contribution of Shanghai Jiao Tong University to China's higher education landscape is its leading role in research and innovation, particularly in engineering and technology.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Shanghai Jiao Tong University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Shanghai Jiao Tong University"}, {"qid": 4356, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does Shanghai Jiao Tong University's location in Shanghai influence its academic and research endeavors?", "answer": " Shanghai Jiao Tong University's location in Shanghai, a global financial and technological hub, significantly influences its academic and research endeavors by providing access to a vibrant community of industries, research institutions, and international collaborations.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Shanghai Jiao Tong University"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "Shanghai Jiao Tong University"}, {"qid": 4357, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between the Harbin Institute of Technology and the Ministry of Industry and Information Technology?", "answer": " The Harbin Institute of Technology is affiliated with the Ministry of Industry and Information Technology.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harbin Institute of Technology"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Harbin Institute of Technology"}, {"qid": 4358, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the Harbin Institute of Technology relate to Project 211 and Project 985?", "answer": " The Harbin Institute of Technology is part of both Project 211 and Project 985.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harbin Institute of Technology"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Harbin Institute of Technology"}, {"qid": 4359, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the earliest start year among Chinese universities involved in the Double First-Class Construction, including the Harbin Institute of Technology?", "answer": " The specific start year of the Harbin Institute of Technology or other universities in the context of their involvement in the Double First-Class Construction would be needed to answer this accurately. ", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harbin Institute of Technology"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Harbin Institute of Technology"}, {"qid": 4360, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the staff number at Harbin Institute of Technology compare to that of other universities in Heilongjiang?", "answer": " To answer this, specific staff numbers for the Harbin Institute of Technology and other universities in Heilongjiang would be required.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harbin Institute of Technology"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Harbin Institute of Technology"}, {"qid": 4361, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would be the implications for the Harbin Institute of Technology if it were no longer affiliated with the Ministry of Industry and Information Technology?", "answer": " If the Harbin Institute of Technology were no longer affiliated with the Ministry of Industry and Information Technology, it could impact its funding, research opportunities, and its status in national projects like Project 211 and Project 985.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harbin Institute of Technology"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Harbin Institute of Technology"}, {"qid": 4362, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "In what way is the Harbin Institute of Technology involved with the Double First-Class Construction initiative?", "answer": " The Harbin Institute of Technology is part of the Double First-Class Construction initiative, aiming to develop world-class universities and disciplines.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harbin Institute of Technology"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Harbin Institute of Technology"}, {"qid": 4363, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Among the universities affiliated with the Ministry of Industry and Information Technology, where does the Harbin Institute of Technology rank in terms of its foundation year?", "answer": " Specific data on the foundation years of all universities affiliated with the Ministry of Industry and Information Technology would be required to accurately determine the Harbin Institute of Technology's rank by foundation year.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harbin Institute of Technology"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Harbin Institute of Technology"}, {"qid": 4364, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to other Project 985 universities, how large is the staff at Harbin Institute of Technology?", "answer": " Specific staff numbers of the Harbin Institute of Technology and comparisons with other Project 985 universities would be needed to answer this.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harbin Institute of Technology"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Harbin Institute of Technology"}, {"qid": 4365, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the Harbin Institute of Technology decided to expand its campus to another city, how would this affect its status in Project 211 and Project 985?", "answer": " Expanding its campus might not directly affect its status in Project 211 and Project 985, which are based on academic, research quality, and other criteria, though logistical and quality maintenance challenges could indirectly influence its standing.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harbin Institute of Technology"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Harbin Institute of Technology"}, {"qid": 4366, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the significance of the Harbin Institute of Technology being located in Nan'gang, Harbin for its academic and research environment?", "answer": " Being located in Nan'gang, Harbin, could provide the Harbin Institute of Technology with unique geographical advantages, such as proximity to various industries and research institutes, contributing to its academic and research environment.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harbin Institute of Technology"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Harbin Institute of Technology"}, {"qid": 4367, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which engineering university in China, including Harbin Institute of Technology, began its operations first?", "answer": " Specific founding years of each engineering university in China, including the Harbin Institute of Technology, would be required to determine which one began its operations first.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harbin Institute of Technology"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Harbin Institute of Technology"}, {"qid": 4368, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would happen to the Harbin Institute of Technology's participation in the Double First-Class Construction if it significantly reduced its research output?", "answer": " If the Harbin Institute of Technology significantly reduced its research output, it could jeopardize its participation and standing in the Double First-Class Construction initiative, which emphasizes research excellence.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harbin Institute of Technology"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Harbin Institute of Technology"}, {"qid": 4369, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Who was the earliest U.S. president to be involved in the founding of the University of Virginia?", "answer": " Thomas Jefferson", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Virginia"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Virginia"}, {"qid": 4370, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest part of the University of Virginia campus?", "answer": " The Academical Village", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Virginia"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Virginia"}, {"qid": 4371, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does Thomas Jefferson's role relate to the University of Virginia?", "answer": " Thomas Jefferson founded the University of Virginia and designed its original courses of study and architecture.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Virginia"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Virginia"}, {"qid": 4372, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the number of professional schools at the University of Virginia compare to the number of its undergraduate schools?", "answer": " There are fewer professional schools than undergraduate schools, with three professional schools and eight undergraduate schools.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Virginia"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Virginia"}, {"qid": 4373, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What UNESCO World Heritage Site is contained within the University of Virginia?", "answer": " The Academical Village", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Virginia"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Virginia"}, {"qid": 4374, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Who was the sitting president of the United States at the time of the University of Virginia's foundation?", "answer": " James Monroe", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Virginia"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Virginia"}, {"qid": 4375, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the significance of the Board of Visitors in relation to the University of Virginia's foundation?", "answer": " The original governing Board of Visitors included three U.S. presidents (Jefferson, Madison, Monroe), indicating their key roles and support in the university's foundation.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Virginia"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Virginia"}, {"qid": 4376, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Thomas Jefferson had not been involved in its foundation, how might the University of Virginia be different today?", "answer": " Without Jefferson's involvement, the University of Virginia might have different architecture, courses of study, and possibly a different founding philosophy, impacting its historical and educational significance.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Virginia"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Virginia"}, {"qid": 4377, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which school within the University of Virginia was established first?", "answer": " This question cannot be directly answered with the provided information, but the original establishment included an Academical Village designed for a comprehensive education.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Virginia"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Virginia"}, {"qid": 4378, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to its inception, how has the University of Virginia's campus size changed by now?", "answer": " The campus has expanded significantly from its original design to include a central campus of 1,135 acres, indicating substantial growth.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Virginia"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Virginia"}, {"qid": 4379, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How do the three professional schools at the University of Virginia contribute to its reputation as a public research university?", "answer": " The School of Law, the Darden School of Business, and the School of Medicine enhance the university's reputation by providing advanced education and research opportunities in their respective fields.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Virginia"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Virginia"}, {"qid": 4380, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would be the impact on the University of Virginia if the Academical Village were no longer a UNESCO World Heritage Site?", "answer": " Losing the UNESCO World Heritage status could potentially decrease the historical prestige and global recognition of the University of Virginia, possibly affecting tourism and funding related to the preservation of historical sites.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Virginia"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Virginia"}, {"qid": 4381, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What was the original location of the University of Auckland when it was founded?", "answer": " Initially located in a repurposed courthouse.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Auckland"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Auckland"}, {"qid": 4382, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "As of 2024, what is the rank of the University of Auckland in terms of enrolment size in New Zealand?", "answer": " It is the largest university in New Zealand by enrolment.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Auckland"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Auckland"}, {"qid": 4383, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the enrolment size of the University of Auckland compare to other universities in New Zealand as of 2024?", "answer": " The University of Auckland has the largest enrolment size compared to other universities in New Zealand.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Auckland"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Auckland"}, {"qid": 4384, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What was the founding year of the University of Auckland?", "answer": " 1883.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Auckland"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Auckland"}, {"qid": 4385, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which campus of the University of Auckland is the largest?", "answer": " The question cannot be directly answered with the information provided, as the specifics of the largest campus are not given.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Auckland"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Auckland"}, {"qid": 4386, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Auckland decided to open a new campus, how would it compare in size to its current largest campus?", "answer": " The question is hypothetical and cannot be answered with the information provided.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Auckland"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Auckland"}, {"qid": 4387, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How has the University of Auckland expanded in terms of physical location since its establishment?", "answer": " It has grown from being initially located in a repurposed courthouse to having three major campuses in central Auckland.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Auckland"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "University of Auckland"}, {"qid": 4388, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to its founding year, how has the number of students at the University of Auckland changed by 2024?", "answer": " The number of students has increased significantly, with approximately 43,000 students enrolled as of 2024.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Auckland"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Auckland"}, {"qid": 4389, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the status of the University of Auckland in terms of research in New Zealand?", "answer": " The question cannot be directly answered with the information provided, as the specifics of research status are not given.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Auckland"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Auckland"}, {"qid": 4390, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Auckland were to merge with another university, how would that affect its status as the largest university by enrolment in New Zealand?", "answer": " The question is hypothetical and cannot be answered with the information provided, but it implies that such a merger could potentially further increase its size and status.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Auckland"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Auckland"}, {"qid": 4391, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Who was the president of the University of Auckland as of 2024?", "answer": " The question cannot be directly answered with the information provided, as the name of the president as of 2024 is not given.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Auckland"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Auckland"}, {"qid": 4392, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the staff number at the University of Auckland compare to its student enrolment?", "answer": " The question cannot be directly answered with the information provided, as specific staff numbers are not given.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Auckland"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Auckland"}, {"qid": 4393, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between Shanghai Jiao Tong University and the Ministry of Education of China?", "answer": " Shanghai Jiao Tong University is affiliated with the Ministry of Education of China.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Shanghai Jiao Tong University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Shanghai Jiao Tong University"}, {"qid": 4394, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "When was the earliest founding year among major universities in Shanghai?", "answer": " 1896", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Shanghai Jiao Tong University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Shanghai Jiao Tong University"}, {"qid": 4395, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the staff number at Shanghai Jiao Tong University compare to Fudan University?", "answer": " The question requires specific staff numbers for both universities to accurately compare, which are not provided.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Shanghai Jiao Tong University"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "Shanghai Jiao Tong University"}, {"qid": 4396, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How is Shanghai Jiao Tong University involved in Project 211 and Project 985?", "answer": " Shanghai Jiao Tong University is part of both Project 211 and Project 985, indicating its status as a top Chinese university receiving significant government support for developing into a world-class institution.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Shanghai Jiao Tong University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Shanghai Jiao Tong University"}, {"qid": 4397, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the location of the most prestigious university in Shanghai?", "answer": " Shanghai, China", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Shanghai Jiao Tong University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Shanghai Jiao Tong University"}, {"qid": 4398, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Shanghai Jiao Tong University decided to expand its campus, where in Shanghai would be the best location considering its current status?", "answer": " The best location would depend on various factors such as available space, proximity to other educational resources, and strategic importance but is not specified.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Shanghai Jiao Tong University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Shanghai Jiao Tong University"}, {"qid": 4399, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the significance of Shanghai Jiao Tong University being part of the Double First-Class Construction project?", "answer": " Being part of the Double First-Class Construction project signifies Shanghai Jiao Tong University's commitment and government support to developing into a world-class university with first-class disciplines.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Shanghai Jiao Tong University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Shanghai Jiao Tong University"}, {"qid": 4400, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to other Project 985 universities, where does Shanghai Jiao Tong University rank in terms of academic reputation?", "answer": " The question requires specific academic reputation rankings which are not provided but implies that SJTU is highly regarded among Project 985 universities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Shanghai Jiao Tong University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Shanghai Jiao Tong University"}, {"qid": 4401, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What year was the oldest university in Project 985 established?", "answer": " 1896, if referring to Shanghai Jiao Tong University as one of the oldest in the project.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Shanghai Jiao Tong University"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "Shanghai Jiao Tong University"}, {"qid": 4402, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Shanghai Jiao Tong University were to open a new faculty, which area should it specialize in to maintain its competitive edge?", "answer": " The area of specialization would depend on current academic trends and market demands but is not specified.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Shanghai Jiao Tong University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Shanghai Jiao Tong University"}, {"qid": 4403, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "In what ways does Shanghai Jiao Tong University contribute to Shanghai's status as an educational hub?", "answer": " By being a top-ranked university affiliated with significant government projects (Project 211, Project 985, Double First-Class Construction), it attracts both domestic and international students and scholars, enhancing Shanghai's educational reputation.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Shanghai Jiao Tong University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Shanghai Jiao Tong University"}, {"qid": 4404, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of Shanghai Jiao Tong University compare to Tsinghua University?", "answer": " SJTU was founded in 1896, while Tsinghua University was established in 1911, making SJTU older.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Shanghai Jiao Tong University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Shanghai Jiao Tong University"}, {"qid": 4405, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the number of campuses of Monterrey Institute of Technology and Higher Education compare to that of most universities in Mexico?", "answer": " The Monterrey Institute of Technology and Higher Education, with its 35 campuses, has significantly more campuses than most universities in Mexico.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Monterrey Institute of Technology and Higher Education"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Monterrey Institute of Technology and Higher Education"}, {"qid": 4406, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest campus of the Monterrey Institute of Technology and Higher Education?", "answer": " The Monterrey Campus is the oldest campus of the Monterrey Institute of Technology and Higher Education.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Monterrey Institute of Technology and Higher Education"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Monterrey Institute of Technology and Higher Education"}, {"qid": 4407, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How has the location of the Monterrey Institute of Technology and Higher Education's main campus influenced its development as a leading university in Mexico?", "answer": " The location of the Monterrey Institute of Technology and Higher Education's main campus in Monterrey, a major industrial and business center in Mexico, has significantly contributed to its development as a leading university by facilitating strong ties with the business community, enhancing research opportunities, and attracting top faculty and students.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Monterrey Institute of Technology and Higher Education"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Monterrey Institute of Technology and Higher Education"}, {"qid": 4408, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the Monterrey Institute of Technology and Higher Education were to open a new campus, how might it decide on the location?", "answer": " If the Monterrey Institute of Technology and Higher Education were to open a new campus, it might decide on the location based on factors such as demand for higher education in the area, the potential for community and industry partnerships, and the opportunity to expand its research and innovation capabilities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Monterrey Institute of Technology and Higher Education"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Monterrey Institute of Technology and Higher Education"}, {"qid": 4409, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What year was the Monterrey Institute of Technology and Higher Education founded, and how does it rank in age compared to other private universities in Mexico?", "answer": " The Monterrey Institute of Technology and Higher Education was founded in 1943, making it one of the oldest private universities in Mexico.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Monterrey Institute of Technology and Higher Education"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Monterrey Institute of Technology and Higher Education"}, {"qid": 4410, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the staff number of the Monterrey Institute of Technology and Higher Education reflect its commitment to quality education?", "answer": " The staff number of the Monterrey Institute of Technology and Higher Education reflects its commitment to quality education by ensuring a low student-to-faculty ratio, which facilitates personalized attention and mentoring for students.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Monterrey Institute of Technology and Higher Education"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Monterrey Institute of Technology and Higher Education"}, {"qid": 4411, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to public universities in Mexico, how does the student-to-faculty ratio at Monterrey Institute of Technology and Higher Education stand?", "answer": " The student-to-faculty ratio at Monterrey Institute of Technology and Higher Education is generally lower compared to public universities in Mexico, indicating a more personalized educational approach.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Monterrey Institute of Technology and Higher Education"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Monterrey Institute of Technology and Higher Education"}, {"qid": 4412, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the Monterrey Institute of Technology and Higher Education decided to focus solely on engineering programs, how might this affect its campus locations?", "answer": " If the Monterrey Institute of Technology and Higher Education decided to focus solely on engineering programs, this might lead to a consolidation of campuses around industrial and technological hubs to better serve the needs of engineering students and foster stronger industry connections.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Monterrey Institute of Technology and Higher Education"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Monterrey Institute of Technology and Higher Education"}, {"qid": 4413, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Who was the first president of the Monterrey Institute of Technology and Higher Education, and how has the leadership role evolved since its founding?", "answer": " The first president of the Monterrey Institute of Technology and Higher Education was Leon Avila Gómez. Since its founding, the leadership role has evolved to adapt to the expanding structure and mission of the university, focusing on innovation, internationalization, and research.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Monterrey Institute of Technology and Higher Education"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Monterrey Institute of Technology and Higher Education"}, {"qid": 4414, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the Monterrey Institute of Technology and Higher Education's presence in 35 locations across Mexico impact its national education contribution?", "answer": " The Monterrey Institute of Technology and Higher Education's presence in 35 locations across Mexico significantly impacts its national education contribution by providing accessible, high-quality education to a broader segment of the Mexican population and fostering regional development.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Monterrey Institute of Technology and Higher Education"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Monterrey Institute of Technology and Higher Education"}, {"qid": 4415, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the research output of Monterrey Institute of Technology and Higher Education compare to other private universities in Mexico?", "answer": " The research output of Monterrey Institute of Technology and Higher Education is among the highest for private universities in Mexico, due to its extensive resources, numerous campuses, and strong focus on research and innovation.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Monterrey Institute of Technology and Higher Education"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Monterrey Institute of Technology and Higher Education"}, {"qid": 4416, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the Monterrey Institute of Technology and Higher Education were to merge with another university, what factors would likely influence the choice of the partner institution?", "answer": " If the Monterrey Institute of Technology and Higher Education were to merge with another university, factors likely influencing the choice of the partner institution would include the complementary nature of academic programs, shared values and vision for higher education, research synergies, and geographic strategic value to expand its educational influence.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Monterrey Institute of Technology and Higher Education"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Monterrey Institute of Technology and Higher Education"}, {"qid": 4417, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What entity was the University of Hong Kong formerly known as before it was established in its current name in 1911?", "answer": " It was known as the Hong Kong College of Medicine for Chinese.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Hong Kong"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Hong Kong"}, {"qid": 4418, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Where is the University of Hong Kong located?", "answer": " It is located in Pok Fu Lam, Hong Kong Island, Hong Kong.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Hong Kong"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Hong Kong"}, {"qid": 4419, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest tertiary institution in Hong Kong?", "answer": " The University of Hong Kong.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Hong Kong"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Hong Kong"}, {"qid": 4420, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of the University of Hong Kong compare to other universities in Hong Kong?", "answer": " The University of Hong Kong, founded in 1911, is the oldest tertiary institution in Hong Kong.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Hong Kong"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Hong Kong"}, {"qid": 4421, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Who founded the Hong Kong College of Medicine for Chinese, which later became the University of Hong Kong?", "answer": " The London Missionary Society.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Hong Kong"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Hong Kong"}, {"qid": 4422, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Hong Kong had not been established as a university in 1911, what institution would have continued to provide medical education in Hong Kong?", "answer": " The Hong Kong College of Medicine for Chinese.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Hong Kong"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Hong Kong"}, {"qid": 4423, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Among the universities in Hong Kong, which one was the first to be formally established?", "answer": " The University of Hong Kong.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Hong Kong"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Hong Kong"}, {"qid": 4424, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to other public research universities in Hong Kong, where does the University of Hong Kong rank in terms of its establishment year?", "answer": " It ranks as the oldest, having been formally established in 1911.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Hong Kong"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Hong Kong"}, {"qid": 4425, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the London Missionary Society had not founded the Hong Kong College of Medicine for Chinese, what might have been the impact on higher education in Hong Kong?", "answer": " There could have been a delay or different development path in the establishment of higher education and medical education in Hong Kong.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Hong Kong"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Hong Kong"}, {"qid": 4426, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What kind of university is the University of Hong Kong classified as?", "answer": " It is classified as a public research university.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Hong Kong"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Hong Kong"}, {"qid": 4427, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which university in Hong Kong has the distinction of being the oldest tertiary institution?", "answer": " The University of Hong Kong.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Hong Kong"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Hong Kong"}, {"qid": 4428, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Hong Kong had chosen a different location than Pok Fu Lam, how might its development and accessibility have differed?", "answer": " The development and accessibility might have been influenced by factors specific to the new location, such as transportation links, proximity to other educational institutions, and the surrounding community's resources.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Hong Kong"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Hong Kong"}, {"qid": 4429, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How did the University of Connecticut's name change over time since its founding?", "answer": " It was founded as the Storrs Agricultural School in 1881, became a public land grant college in 1893, and took its current name, the University of Connecticut, in 1939.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Connecticut"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Connecticut"}, {"qid": 4430, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What was the earliest program established at the University of Connecticut after it took its current name in 1939?", "answer": " Social work, nursing, and graduate programs were established in the decade following 1939.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Connecticut"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Connecticut"}, {"qid": 4431, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of the University of Connecticut compare to that of Harvard University?", "answer": " The University of Connecticut was founded in 1881, much later than Harvard University, which was founded in 1636.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Connecticut"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Connecticut"}, {"qid": 4432, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Connecticut had not become a public land grant college, how might its development have differed?", "answer": " Without land grant status, the University of Connecticut might not have expanded its academic programs and facilities as extensively, possibly limiting its growth and the diversity of its educational offerings.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Connecticut"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Connecticut"}, {"qid": 4433, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What led to the establishment of UConn Health during the 1960s?", "answer": " The establishment of new medical and dental schools led to the creation of UConn Health during the 1960s.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Connecticut"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "University of Connecticut"}, {"qid": 4434, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most significant accreditation the University of Connecticut holds?", "answer": " The University of Connecticut is accredited by the New England Commission of Higher Education, which is a significant accreditation indicating the quality of its educational programs.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Connecticut"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "University of Connecticut"}, {"qid": 4435, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to other public universities established in the 19th century, how does the University of Connecticut's range of programs compare?", "answer": " The University of Connecticut offers a wide range of programs including social work, nursing, graduate programs, and medical and dental schools, which may be comparable or more diverse than other public universities established in the same era depending on the specific institutions in question.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Connecticut"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "University of Connecticut"}, {"qid": 4436, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Connecticut had not been accredited by the New England Commission of Higher Education, what might have been the impact?", "answer": " Without accreditation from the New England Commission of Higher Education, the University of Connecticut might have faced challenges in establishing the credibility of its programs, attracting students and faculty, and securing funding and resources.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Connecticut"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "University of Connecticut"}, {"qid": 4437, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What relationship does the University of Connecticut have with the town of Storrs-Mansfield?", "answer": " The main campus of the University of Connecticut is located in Storrs-Mansfield, Connecticut, making it an integral part of the town's community and its development.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Connecticut"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Connecticut"}, {"qid": 4438, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What was the first healthcare facility established by the University of Connecticut?", "answer": " UConn Health, established during the 1960s, was the first healthcare facility established by the University of Connecticut for its medical and dental schools.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Connecticut"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Connecticut"}, {"qid": 4439, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the student population of the University of Connecticut compare to that of the University of California, Berkeley?", "answer": " The specific student population numbers would need to be checked for the current year, but traditionally, both universities have large student populations, with the University of California, Berkeley often having a higher enrollment due to its size and range of programs.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Connecticut"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Connecticut"}, {"qid": 4440, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Connecticut decided to open another campus outside of the United States, what might be the first step in the process?", "answer": " The first step might involve conducting feasibility studies to assess the demand for higher education services in the target location, followed by securing approvals, accreditation, and partnerships necessary for establishing an international campus.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Connecticut"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Connecticut"}, {"qid": 4441, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What was the original name of Princeton University when it was founded in 1746?", "answer": " College of New Jersey", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Princeton University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Princeton University"}, {"qid": 4442, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "In what year did Princeton University officially become known by its current name?", "answer": " 1896", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Princeton University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Princeton University"}, {"qid": 4443, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How many times did Princeton University relocate before settling in its current location in Princeton?", "answer": " Twice", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Princeton University"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "Princeton University"}, {"qid": 4444, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest institution of higher education in the United States, if Princeton University is the fourth-oldest?", "answer": " Harvard University", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Princeton University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Princeton University"}, {"qid": 4445, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Among the Ivy League universities, where does Princeton rank in terms of its founding year?", "answer": " Fourth", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Princeton University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Princeton University"}, {"qid": 4446, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of Princeton University compare to that of Harvard University?", "answer": " Princeton University was founded later than Harvard University.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Princeton University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Princeton University"}, {"qid": 4447, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Is Princeton University older than Yale University?", "answer": " No", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Princeton University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Princeton University"}, {"qid": 4448, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Princeton University had not been renamed in 1896, what would it be called today?", "answer": " College of New Jersey", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Princeton University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Princeton University"}, {"qid": 4449, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Princeton University decided to move its campus back to Newark, how many times would it have relocated in total?", "answer": " Three", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Princeton University"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "Princeton University"}, {"qid": 4450, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What led to Princeton University being chartered before the American Revolution?", "answer": " It was one of the nine colonial colleges chartered before the American Revolution.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Princeton University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Princeton University"}, {"qid": 4451, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to the University of Pennsylvania, which institution was founded first?", "answer": " Princeton University", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Princeton University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Princeton University"}, {"qid": 4452, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which Ivy League university has the most recent founding year if Princeton is the fourth-oldest?", "answer": " Cornell University", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Princeton University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Princeton University"}, {"qid": 4453, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Who founded the University of Southern California?", "answer": " Robert Maclay Widney", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Southern California"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Southern California"}, {"qid": 4454, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "In what year was the University of Southern California founded?", "answer": " 1880", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Southern California"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Southern California"}, {"qid": 4455, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest private research university in California?", "answer": " University of Southern California (USC)", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Southern California"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Southern California"}, {"qid": 4456, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Where is the University of Southern California located?", "answer": " Los Angeles, California, United States", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Southern California"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Southern California"}, {"qid": 4457, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How many students are enrolled at the University of Southern California?", "answer": " More than 49,000 students", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Southern California"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Southern California"}, {"qid": 4458, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Is the University of Southern California older than Stanford University?", "answer": " Yes", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Southern California"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Southern California"}, {"qid": 4459, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which university in California has the highest enrollment?", "answer": " University of Southern California (USC)", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Southern California"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Southern California"}, {"qid": 4460, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Southern California was not founded in 1880, how would its historical significance change?", "answer": " It would not be considered the oldest private research university in California.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Southern California"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Southern California"}, {"qid": 4461, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What if the University of Southern California was located in San Francisco instead of Los Angeles?", "answer": " It would have a different local impact and possibly different regional affiliations.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Southern California"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Southern California"}, {"qid": 4462, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the highest ranking department at the University of Southern California?", "answer": " This question cannot be answered directly without specifying a ranking criteria.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Southern California"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Southern California"}, {"qid": 4463, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the student enrollment at the University of Southern California compare to that of UCLA?", "answer": " USC has a high enrollment, but specific comparison requires current data for both universities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Southern California"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Southern California"}, {"qid": 4464, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What type of university is the University of Southern California classified as?", "answer": " Private research university", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Southern California"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Southern California"}, {"qid": 4465, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the name of the oldest institution of higher learning in the United States that was founded as Harvard College?", "answer": " Harvard University", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harvard University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Harvard University"}, {"qid": 4466, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which university is considered to be the most prestigious in the world and is located in Cambridge, Massachusetts?", "answer": " Harvard University", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harvard University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Harvard University"}, {"qid": 4467, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of Harvard University compare to other Ivy League schools?", "answer": " Harvard University, founded in 1636, is the oldest institution of higher learning in the United States and predates other Ivy League schools.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harvard University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Harvard University"}, {"qid": 4468, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Who was the first benefactor of Harvard College, which later became known as Harvard University?", "answer": " John Harvard", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harvard University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Harvard University"}, {"qid": 4469, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the name of the university that holds the title of being the oldest institution of higher education in the United States?", "answer": " Harvard University", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harvard University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Harvard University"}, {"qid": 4470, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If a new benefactor were to donate more than John Harvard, would the university potentially be renamed?", "answer": " The question is hypothetical and speculative; traditionally, Harvard University has retained its name in honor of its first benefactor, John Harvard, and it is unlikely to change due to its historical significance and legacy.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harvard University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Harvard University"}, {"qid": 4471, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to other Ivy League institutions, where does Harvard University rank in terms of its founding year?", "answer": " Harvard University is the oldest, founded in 1636, making it the first among the Ivy League institutions in terms of its founding year.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harvard University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Harvard University"}, {"qid": 4472, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "In what city is the most prestigious university, Harvard University, located?", "answer": " Cambridge, Massachusetts", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harvard University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Harvard University"}, {"qid": 4473, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What was the original name of Harvard University when it was founded in 1636?", "answer": " Harvard College", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harvard University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Harvard University"}, {"qid": 4474, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Harvard University decided to open another campus, would it still be considered the oldest institution of higher learning in the United States?", "answer": " Yes, the original Harvard University campus would still be considered the oldest institution of higher learning in the United States, regardless of any new campuses.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harvard University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Harvard University"}, {"qid": 4475, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the location of Harvard University in Cambridge, Massachusetts, compare to other prestigious universities in terms of academic environment and historical significance?", "answer": " Harvard University's location in Cambridge, Massachusetts, offers a unique academic environment and historical significance that is highly regarded, often compared favorably to other prestigious universities both nationally and internationally.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harvard University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Harvard University"}, {"qid": 4476, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the rank of Harvard University among the Ivy League schools in terms of wealth?", "answer": " Harvard University is considered one of the wealthiest, if not the wealthiest, among the Ivy League schools.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harvard University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Harvard University"}, {"qid": 4477, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest part of Vanderbilt University's campus?", "answer": " The original campus buildings from the founding period in 1873.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Vanderbilt University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Vanderbilt University"}, {"qid": 4478, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the staff number at Vanderbilt University compare to that of similar private research universities?", "answer": " Vanderbilt University has a competitive staff number compared to similar private research universities, though specifics can vary based on department and research focus.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Vanderbilt University"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "Vanderbilt University"}, {"qid": 4479, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Why was Vanderbilt University named after Cornelius Vanderbilt?", "answer": " Vanderbilt University was named after Cornelius Vanderbilt in honor of his $1 million endowment, intended to support the university's establishment and contribute to healing the sectional wounds of the American Civil War.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Vanderbilt University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Vanderbilt University"}, {"qid": 4480, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What might have happened if Cornelius Vanderbilt had not provided the initial endowment for Vanderbilt University?", "answer": " Without Cornelius Vanderbilt's initial $1 million endowment, Vanderbilt University might have struggled to establish itself as a prominent research institution or could have had a significantly delayed founding.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Vanderbilt University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Vanderbilt University"}, {"qid": 4481, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which Vanderbilt University president has served for the longest period?", "answer": " The specific president with the longest tenure is not provided, but this information can be found in Vanderbilt University's historical records.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Vanderbilt University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Vanderbilt University"}, {"qid": 4482, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does Vanderbilt University's location in Nashville benefit its students compared to universities in more rural locations?", "answer": " Vanderbilt University's location in Nashville offers students access to a vibrant city with cultural, internship, and employment opportunities not as readily available to universities in more rural locations.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Vanderbilt University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Vanderbilt University"}, {"qid": 4483, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does Vanderbilt University's founding mission relate to its current research initiatives?", "answer": " Vanderbilt University's founding mission, influenced by Cornelius Vanderbilt's hope for healing post-Civil War wounds, aligns with its current research initiatives by fostering interdisciplinary studies aimed at solving complex societal issues.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Vanderbilt University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Vanderbilt University"}, {"qid": 4484, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Vanderbilt University decided to become a public institution, what changes might occur regarding its funding and admission policies?", "answer": " As a public institution, Vanderbilt University might receive state funding, which could affect its tuition structure, financial aid policies, and potentially lead to changes in admission policies to accommodate a broader range of students.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Vanderbilt University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Vanderbilt University"}, {"qid": 4485, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most popular major at Vanderbilt University?", "answer": " The most popular major can vary year by year, but historically, disciplines such as Economics, Engineering, and Political Science have been highly popular among undergraduates.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Vanderbilt University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Vanderbilt University"}, {"qid": 4486, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to its founding year, how has the number of staff at Vanderbilt University changed?", "answer": " Since its founding in 1873, the number of staff at Vanderbilt University has significantly increased, reflecting the university's growth in student population, academic programs, and research initiatives.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Vanderbilt University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Vanderbilt University"}, {"qid": 4487, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What relationship does Vanderbilt University have with the Southeastern Conference?", "answer": " Vanderbilt University is a founding member of the Southeastern Conference and has been the conference's only private school since 1966, participating in athletic competitions and academic collaborations.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Vanderbilt University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Vanderbilt University"}, {"qid": 4488, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Vanderbilt University had not been founded in Nashville, how might its development have differed?", "answer": " If Vanderbilt University had been founded in a different location, its development might have been influenced by the local culture, economic opportunities, and academic landscape of that area, potentially leading to different areas of academic focus and community engagement.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Vanderbilt University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Vanderbilt University"}, {"qid": 4489, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What was the primary reason for founding Stanford University?", "answer": " Stanford University was founded in memory of Leland Stanford Jr., the only child of Leland Stanford and his wife, Jane, to promote public welfare by exercising an influence in behalf of humanity and civilization.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Stanford University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Stanford University"}, {"qid": 4490, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Who was the first president of Stanford University?", "answer": " The first president of Stanford University was David Starr Jordan.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Stanford University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Stanford University"}, {"qid": 4491, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the start year of Stanford University compare with the founding year of Harvard University?", "answer": " Stanford University was founded in 1885, which is 233 years after Harvard University was founded in 1636.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Stanford University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Stanford University"}, {"qid": 4492, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What was the impact of the 1906 San Francisco earthquake on Stanford University?", "answer": " The 1906 San Francisco earthquake caused significant damage to much of the Stanford University campus, leading to financial struggles.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Stanford University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Stanford University"}, {"qid": 4493, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What role did Frederick Terman play in the development of Silicon Valley?", "answer": " Frederick Terman, as a university provost, inspired an entrepreneurial culture at Stanford University that helped build a self-sufficient local industry, which later became known as Silicon Valley.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Stanford University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Stanford University"}, {"qid": 4494, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Where is Stanford University located?", "answer": " Stanford University is located in Stanford, California.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Stanford University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Stanford University"}, {"qid": 4495, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What might have happened to Stanford University if the 1906 San Francisco earthquake had not occurred?", "answer": " If the 1906 San Francisco earthquake had not occurred, Stanford University might not have faced the subsequent financial struggles and damage to its campus, potentially altering its development trajectory.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Stanford University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Stanford University"}, {"qid": 4496, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the location of Stanford University compare to that of MIT?", "answer": " Stanford University is located in Stanford, California, on the west coast of the United States, while MIT is located in Cambridge, Massachusetts, on the east coast.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Stanford University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Stanford University"}, {"qid": 4497, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the founding year of Stanford University?", "answer": " Stanford University was founded in 1885.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Stanford University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Stanford University"}, {"qid": 4498, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Who founded Stanford University and why?", "answer": " Leland Stanford, a railroad magnate and senator, and his wife, Jane, founded Stanford University in memory of their only child, Leland Jr., to promote public welfare by exercising an influence in behalf of humanity and civilization.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Stanford University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Stanford University"}, {"qid": 4499, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What if Leland Stanford had not been a senator and railroad magnate, would Stanford University still have been founded?", "answer": " If Leland Stanford had not been a senator and railroad magnate, it is uncertain if Stanford University would have been founded, as his financial resources and influence played a significant role in its establishment.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Stanford University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Stanford University"}, {"qid": 4500, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the staff number of Stanford University compare to that of a small liberal arts college?", "answer": " Stanford University, as a major research institution, employs a significantly larger number of staff compared to a small liberal arts college.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Stanford University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Stanford University"}, {"qid": 4501, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What was the original name of Columbia University when it was established in 1754?", "answer": " King's College", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Columbia University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Columbia University"}, {"qid": 4502, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is Columbia University's rank in terms of age among higher education institutions in the United States?", "answer": " Fifth-oldest", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Columbia University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Columbia University"}, {"qid": 4503, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "In which city is Columbia University located?", "answer": " New York City", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Columbia University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Columbia University"}, {"qid": 4504, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What type of university is Columbia University classified as?", "answer": " Private Ivy League research university", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Columbia University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Columbia University"}, {"qid": 4505, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of Columbia University compare to Princeton University?", "answer": " Columbia University was established earlier than Princeton University.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Columbia University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Columbia University"}, {"qid": 4506, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Columbia University had not been established as King's College in 1754, how might the landscape of higher education in New York be different today?", "answer": " There might have been a delay in the development of higher education in New York or a different institution could have taken its place as the oldest.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Columbia University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Columbia University"}, {"qid": 4507, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest part of Columbia University's campus?", "answer": " The grounds of Trinity Church where it was originally established.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Columbia University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Columbia University"}, {"qid": 4508, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Who is the president of Columbia University?", "answer": " This answer may vary depending on the current date, so please check the latest information.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Columbia University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Columbia University"}, {"qid": 4509, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How has the location of Columbia University changed from its founding to the present day?", "answer": " It moved from the grounds of Trinity Church in Manhattan to its present location in Morningside Heights.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Columbia University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Columbia University"}, {"qid": 4510, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Columbia University decided to open another campus, what factors would need to be considered?", "answer": " Location, funding, academic programs, staff recruitment, and student accommodation.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Columbia University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Columbia University"}, {"qid": 4511, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which department at Columbia University is ranked the highest nationally?", "answer": " This answer may vary depending on the current rankings, so please check the latest information.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Columbia University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Columbia University"}, {"qid": 4512, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the number of staff at Columbia University compare to that of Harvard University?", "answer": " This answer requires current data for both universities, so please check the latest information.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Columbia University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Columbia University"}, {"qid": 4513, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What was the original purpose of founding New York University in 1832?", "answer": " NYU was founded as a non-denominational all-male institution with a curriculum focused on a secular education.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["New York University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "New York University"}, {"qid": 4514, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Who founded New York University and in what year?", "answer": " Albert Gallatin founded New York University in 1832.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["New York University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "New York University"}, {"qid": 4515, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Where did New York University originally establish its main campus after moving in 1833?", "answer": " After moving in 1833, NYU established its main campus in Greenwich Village surrounding Washington Square Park.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["New York University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "New York University"}, {"qid": 4516, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which campus of New York University is the oldest?", "answer": " The main campus in Greenwich Village is the oldest, established after the university moved in 1833.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["New York University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "New York University"}, {"qid": 4517, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of New York University compare to that of Columbia University?", "answer": " New York University was founded in 1832, which is later than Columbia University's founding in 1754.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["New York University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "New York University"}, {"qid": 4518, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most recent addition to New York University in terms of campus expansion?", "answer": " The most recent addition is the engineering school in Brooklyn's MetroTech Center.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["New York University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "New York University"}, {"qid": 4519, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What might have happened if New York University had not moved its main campus to Greenwich Village in 1833?", "answer": " If NYU had not moved, it might not have been able to expand and evolve into the prominent urban university it is today.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["New York University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "New York University"}, {"qid": 4520, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "For what purpose was New York University chartered by the New York State Legislature in 1831?", "answer": " NYU was chartered for the purpose of establishing a secular, non-denominational all-male institution for higher education.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["New York University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "New York University"}, {"qid": 4521, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which part of New York University's campus is considered its main historical site?", "answer": " The main historical site of NYU is its campus in Greenwich Village surrounding Washington Square Park.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["New York University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "New York University"}, {"qid": 4522, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the location of New York University's main campus compare to that of Columbia University's main campus?", "answer": " NYU's main campus is located in Greenwich Village, while Columbia University's main campus is located in Morningside Heights, showcasing different neighborhoods in New York City.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["New York University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "New York University"}, {"qid": 4523, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What if New York University had remained an all-male institution?", "answer": " If NYU had remained an all-male institution, it would have limited its student diversity and possibly lagged in academic and social advancements.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["New York University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "New York University"}, {"qid": 4524, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What significant campus addition did New York University make in Brooklyn?", "answer": " NYU made a significant addition by establishing an engineering school in Brooklyn's MetroTech Center.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["New York University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "New York University"}, {"qid": 4525, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the primary location of Texas A&M University?", "answer": " College Station, Texas", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Texas A&M University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Texas A&M University"}, {"qid": 4526, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Who was the first president of Texas A&M University?", "answer": " Thomas S. Gathright", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Texas A&M University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Texas A&M University"}, {"qid": 4527, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "In what year was Texas A&M University founded?", "answer": " 1876", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Texas A&M University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Texas A&M University"}, {"qid": 4528, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How many staff members are employed at Texas A&M University?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Texas A&M University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Texas A&M University"}, {"qid": 4529, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Does Texas A&M University have more staff than the University of Texas at Austin?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Texas A&M University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Texas A&M University"}, {"qid": 4530, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which location is Texas A&M University primarily based in?", "answer": " College Station, Texas", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Texas A&M University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Texas A&M University"}, {"qid": 4531, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the main focus of Texas A&M University?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Texas A&M University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Texas A&M University"}, {"qid": 4532, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Texas A&M University were to open another campus, which city would likely be chosen based on geographical diversity?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Texas A&M University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Texas A&M University"}, {"qid": 4533, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest college within Texas A&M University?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Texas A&M University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Texas A&M University"}, {"qid": 4534, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to other universities in Texas, where does Texas A&M rank in terms of student population size?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Texas A&M University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Texas A&M University"}, {"qid": 4535, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What type of research is Texas A&M University known for?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Texas A&M University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Texas A&M University"}, {"qid": 4536, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Texas A&M University were to merge with another university, what would be a potential name for the new institution?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Texas A&M University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Texas A&M University"}, {"qid": 4537, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the northernmost campus of the University of California system?", "answer": " University of California, Davis", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Davis"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, Davis"}, {"qid": 4538, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What was the original name of the University of California, Davis when it was founded in 1905?", "answer": " University Farm", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Davis"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, Davis"}, {"qid": 4539, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "In what year did the University of California, Davis become the seventh campus of the University of California system?", "answer": " 1959", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Davis"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, Davis"}, {"qid": 4540, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of the University of California, Davis compare to the founding years of other University of California campuses?", "answer": " It was founded in 1905, making it one of the earlier campuses but not the first.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Davis"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of California, Davis"}, {"qid": 4541, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which campus of the University of California system is located furthest north?", "answer": " University of California, Davis", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Davis"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, Davis"}, {"qid": 4542, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What type of university is the University of California, Davis?", "answer": " A public land-grant research university", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Davis"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, Davis"}, {"qid": 4543, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of California, Davis had not transitioned from University Farm to a full university campus, what aspect of its identity might have remained the same?", "answer": " Its focus on agriculture", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Davis"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, Davis"}, {"qid": 4544, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to the other campuses of the University of California system, where does the size of the staff at UC Davis rank?", "answer": " This information is not provided directly, but UC Davis is one of the larger campuses in terms of student enrollment.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Davis"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, Davis"}, {"qid": 4545, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest campus of the University of California system?", "answer": " University of California, Berkeley", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Davis"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, Davis"}, {"qid": 4546, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If UC Davis had remained solely an agricultural branch, what major academic expansion might it have missed out on?", "answer": " Diversification into other research areas beyond agriculture", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Davis"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, Davis"}, {"qid": 4547, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What city is the University of California, Davis located in?", "answer": " Davis, California", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Davis"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, Davis"}, {"qid": 4548, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the focus of UC Davis compare to other University of California campuses?", "answer": " UC Davis has a strong emphasis on agriculture, veterinary, and environmental sciences compared to some other campuses which may focus on other disciplines.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Davis"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, Davis"}, {"qid": 4549, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest private research university in Chicago?", "answer": " The University of Chicago", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Chicago"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Chicago"}, {"qid": 4550, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How is the University of Chicago related to the Hyde Park neighborhood?", "answer": " The University of Chicago's main campus is located in the Hyde Park neighborhood.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Chicago"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Chicago"}, {"qid": 4551, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Is the University of Chicago larger in staff number than other private universities in Chicago?", "answer": " This is subjective; specific staff numbers are needed for a definitive answer.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Chicago"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Chicago"}, {"qid": 4552, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which university in Chicago has the most Nobel laureates affiliated?", "answer": " The University of Chicago", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Chicago"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Chicago"}, {"qid": 4553, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between the University of Chicago and research?", "answer": " The University of Chicago is a private research university.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Chicago"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Chicago"}, {"qid": 4554, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Chicago decided to open a new campus, how would it compare to its main campus in Hyde Park in terms of location?", "answer": " This is hypothetical and would depend on the chosen location for the new campus.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Chicago"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Chicago"}, {"qid": 4555, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What year was the oldest university in Chicago established?", "answer": " 1890 (The University of Chicago)", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Chicago"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Chicago"}, {"qid": 4556, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Who was the president of the University of Chicago at its founding?", "answer": " William Rainey Harper", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Chicago"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Chicago"}, {"qid": 4557, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to other universities in Illinois, where does the University of Chicago rank in terms of academic reputation?", "answer": " The University of Chicago is highly ranked, often considered one of the top universities in Illinois and globally for academic reputation.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Chicago"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Chicago"}, {"qid": 4558, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Chicago were to double its staff number, how many staff members would it have?", "answer": " This is hypothetical and requires the current staff number for a precise answer.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Chicago"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Chicago"}, {"qid": 4559, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which university in Illinois has the highest number of enrolled students?", "answer": " This question is not directly about the University of Chicago; specific enrollment numbers are required for a definitive answer.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Chicago"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Chicago"}, {"qid": 4560, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the significance of the year 1890 for the University of Chicago?", "answer": " It is the year the University of Chicago was founded.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Chicago"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Chicago"}, {"qid": 4561, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between The University of Texas at Austin and the University of Texas System?", "answer": " The University of Texas at Austin is the flagship institution of the University of Texas System.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Texas at Austin"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Texas at Austin"}, {"qid": 4562, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the largest institution in the University of Texas System as of Fall 2022?", "answer": " The University of Texas at Austin.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Texas at Austin"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Texas at Austin"}, {"qid": 4563, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How is the founding year of The University of Texas at Austin related to its status within the University of Texas System?", "answer": " Founded in 1883, it is the flagship institution, indicating its long-standing and prominent position within the University of Texas System.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Texas at Austin"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Texas at Austin"}, {"qid": 4564, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the student population of The University of Texas at Austin compare to other institutions in the University of Texas System as of Fall 2022?", "answer": " The University of Texas at Austin has the largest student population in the system.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Texas at Austin"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Texas at Austin"}, {"qid": 4565, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What role does the president play at The University of Texas at Austin?", "answer": " The president serves as the chief executive officer of the university.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Texas at Austin"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Texas at Austin"}, {"qid": 4566, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If The University of Texas at Austin were to open a new research facility, how would it potentially impact its status within the University of Texas System?", "answer": " It could enhance its reputation as the flagship institution by expanding its research capabilities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Texas at Austin"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Texas at Austin"}, {"qid": 4567, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "In what way is the location of The University of Texas at Austin significant to its identity?", "answer": " Being located in Austin, Texas, it benefits from and contributes to the cultural and political vibrancy of the state's capital, reinforcing its status as a key public research institution.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Texas at Austin"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Texas at Austin"}, {"qid": 4568, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would be the implications if The University of Texas at Austin significantly increased its staff number?", "answer": " Increasing its staff number could improve student support, research output, and overall institutional ranking, further solidifying its flagship status.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Texas at Austin"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Texas at Austin"}, {"qid": 4569, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "As of Fall 2022, which institution has the largest student body within the University of Texas System?", "answer": " The University of Texas at Austin.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Texas at Austin"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Texas at Austin"}, {"qid": 4570, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the founding year of The University of Texas at Austin contribute to its historical significance within the state of Texas?", "answer": " Founded in 1883, its long history contributes to its prestigious position in Texas' higher education landscape, serving as a testament to its enduring legacy and influence.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Texas at Austin"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Texas at Austin"}, {"qid": 4571, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If The University of Texas at Austin were to become an independent entity separate from the University of Texas System, how would that change its operations?", "answer": " It would require establishing its independent governance, funding mechanisms, and administrative structures, potentially leading to more autonomous decision-making but also greater responsibility for self-sustainability.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Texas at Austin"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Texas at Austin"}, {"qid": 4572, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to when it was founded in 1883, how has The University of Texas at Austin's role in public education evolved?", "answer": " Since its founding in 1883, The University of Texas at Austin has significantly expanded its academic offerings, research initiatives, and influence in public education, evolving from a state college to a leading public research university.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Texas at Austin"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Texas at Austin"}, {"qid": 4573, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the location of the University of Kansas' main campus relate to its branch campuses within the Kansas City metropolitan area?", "answer": " The University of Kansas' main campus is located in Lawrence, Kansas, while its branch campuses within the Kansas City metropolitan area are situated on the Kansas side, including the university's medical school and hospital in Kansas City, Kansas, and the Edwards Campus in Overland Park.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Kansas"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Kansas"}, {"qid": 4574, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the University of Kansas' classification among \"R1", "answer": " The University of Kansas' classification as an \"R1", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Kansas"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Kansas"}, {"qid": 4575, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest campus of the University of Kansas?", "answer": " The Lawrence campus is the oldest campus of the University of Kansas.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Kansas"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Kansas"}, {"qid": 4576, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the staff number at the University of Kansas' main campus in Lawrence compare to that at its medical school in Kansas City?", "answer": " The staff number at the University of Kansas' main campus in Lawrence is generally larger due to it being the primary campus, encompassing a wider range of academic departments and administrative functions, compared to the specialized staff at its medical school in Kansas City, Kansas.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Kansas"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Kansas"}, {"qid": 4577, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Kansas were to open a new branch campus, how might its membership in the Association of American Universities influence the choice of location?", "answer": " If the University of Kansas were to open a new branch campus, its membership in the Association of American Universities might influence the choice of location by prioritizing areas that could support high-level research activities and contribute to the university's mission of excellence in education, research, and public service, potentially favoring locations with existing academic or research infrastructure.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Kansas"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Kansas"}, {"qid": 4578, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How is the University of Kansas' Edwards Campus in Overland Park integrated into its overall academic structure?", "answer": " The University of Kansas' Edwards Campus in Overland Park is integrated into its overall academic structure by offering a variety of undergraduate and graduate programs tailored to meet the needs of working professionals, part-time students, and those seeking continuing education opportunities, thus expanding the university's reach and accessibility within the Kansas City metropolitan area.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Kansas"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Kansas"}, {"qid": 4579, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which branch of the University of Kansas is most focused on medical education?", "answer": " The branch of the University of Kansas most focused on medical education is its medical school located in Kansas City, Kansas.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Kansas"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Kansas"}, {"qid": 4580, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the research activity at the University of Kansas' main campus in Lawrence compare to its agricultural education center in rural north Douglas County?", "answer": " The research activity at the University of Kansas' main campus in Lawrence is more diverse and extensive, encompassing a wide range of disciplines and leading to its classification among \"R1", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Kansas"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Kansas"}, {"qid": 4581, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would be the impact on research activities if the University of Kansas' main campus significantly expanded its facilities?", "answer": " If the University of Kansas' main campus significantly expanded its facilities, the impact on research activities could include an increase in research capacity and productivity, the ability to attract more high-caliber faculty and researchers, and enhanced opportunities for interdisciplinary collaboration, further solidifying its status among \"R1", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Kansas"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Kansas"}, {"qid": 4582, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the University of Kansas' membership in the Association of American Universities reflect upon its research sites outside of Lawrence?", "answer": " The University of Kansas' membership in the Association of American Universities reflects upon its research sites outside of Lawrence by underscoring the university's commitment to maintaining high standards of research excellence and innovation not just in its main campus but across all its locations, thereby enhancing the university's overall reputation and contribution to knowledge creation and dissemination.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Kansas"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Kansas"}, {"qid": 4583, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most significant branch campus of the University of Kansas in terms of research in the medical field?", "answer": " The most significant branch campus of the University of Kansas in terms of research in the medical field is its medical school in Kansas City, Kansas.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Kansas"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Kansas"}, {"qid": 4584, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How do the educational offerings at the University of Kansas' Edwards Campus in Overland Park compare to those at its main campus in Lawrence?", "answer": " The educational offerings at the University of Kansas' Edwards Campus in Overland Park are more focused on providing professional, continuing education, and graduate degree programs tailored to meet the needs of working professionals and non-traditional students, whereas the main campus in Lawrence offers a broader range of undergraduate and graduate programs across various disciplines, serving a more traditional student body.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Kansas"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Kansas"}, {"qid": 4585, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the significance of the Golden Dome at the University of Notre Dame?", "answer": " The Golden Dome is a highly recognizable landmark of the University of Notre Dame, symbolizing the university's rich history and tradition in academics and faith.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Notre Dame"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Notre Dame"}, {"qid": 4586, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the Word of Life mural at the University of Notre Dame reflect its Catholic identity?", "answer": " The Word of Life mural, also known as \"Touchdown Jesus,\" reflects the University of Notre Dame's Catholic identity through its religious imagery, portraying Jesus and saints in a way that integrates faith with campus life.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Notre Dame"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Notre Dame"}, {"qid": 4587, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest building on the University of Notre Dame campus?", "answer": " Old College is the oldest building on the University of Notre Dame campus, serving as a symbol of the university's long history since its founding in 1842.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Notre Dame"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Notre Dame"}, {"qid": 4588, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which landmark at the University of Notre Dame is the most visited by tourists?", "answer": " The Basilica of the Sacred Heart is the most visited landmark at the University of Notre Dame, attracting visitors with its stunning Gothic architecture and religious importance.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Notre Dame"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Notre Dame"}, {"qid": 4589, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the student population at the University of Notre Dame compare to that of other private Catholic universities in the United States?", "answer": " The University of Notre Dame has a larger student population compared to many other private Catholic universities in the United States, reflecting its status as a major research institution.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Notre Dame"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Notre Dame"}, {"qid": 4590, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the size of the University of Notre Dame's campus compare to other universities in Indiana?", "answer": " The University of Notre Dame's campus, at 1,261 acres, is larger than many other university campuses in Indiana, offering extensive facilities and green spaces.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Notre Dame"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Notre Dame"}, {"qid": 4591, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would happen if the University of Notre Dame decided to remove the Golden Dome?", "answer": " Removing the Golden Dome would likely cause significant backlash from alumni and students, as it is a central symbol of the university's identity and heritage.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Notre Dame"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Notre Dame"}, {"qid": 4592, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Notre Dame were to significantly expand its campus, how might this impact the local community of Notre Dame, Indiana?", "answer": " A significant expansion of the University of Notre Dame's campus could lead to both positive and negative impacts on the local community, including economic growth and potential concerns over space and resources.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Notre Dame"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Notre Dame"}, {"qid": 4593, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does Notre Dame Stadium contribute to the university's culture?", "answer": " Notre Dame Stadium plays a crucial role in the university's culture by hosting football games that are central to school spirit, alumni engagement, and the overall collegiate experience at Notre Dame.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Notre Dame"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Notre Dame"}, {"qid": 4594, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to when it was founded in 1842, how has the staff number at the University of Notre Dame changed over the years?", "answer": " Since its founding in 1842, the staff number at the University of Notre Dame has significantly increased, reflecting the university's growth in both academic programs and student enrollment.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Notre Dame"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Notre Dame"}, {"qid": 4595, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most iconic feature of the University of Notre Dame's football stadium?", "answer": " The most iconic feature of the University of Notre Dame's football stadium is \"Touchdown Jesus,\" a large mural visible from the stadium that has become synonymous with Notre Dame football.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Notre Dame"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Notre Dame"}, {"qid": 4596, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Notre Dame were to establish a new research institute, what area of study might it focus on to align with its mission?", "answer": " If the University of Notre Dame were to establish a new research institute, it might focus on areas related to social justice, environmental sustainability, or ethics, aligning with its Catholic mission and tradition of service.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Notre Dame"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Notre Dame"}, {"qid": 4597, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the year Catholic University of America was founded compare to the founding year of Georgetown University?", "answer": " The Catholic University of America was founded in 1887, while Georgetown University was founded earlier, in 1789.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Catholic University of America"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Catholic University of America"}, {"qid": 4598, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest Catholic university in the United States?", "answer": " Georgetown University is the oldest Catholic university in the United States, not the Catholic University of America.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Catholic University of America"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Catholic University of America"}, {"qid": 4599, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What role did Pope Leo XIII play in the establishment of the Catholic University of America?", "answer": " Pope Leo XIII approved the establishment of the Catholic University of America in 1887, making it a pontifical university of the Catholic Church in the United States.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Catholic University of America"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Catholic University of America"}, {"qid": 4600, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the Catholic University of America decided to open a new campus in another country, how would it affect its status as the only institution of higher education founded by the United States Conference of Catholic Bishops?", "answer": " Opening a new campus in another country would not affect its status as the only institution of higher education founded by the United States Conference of Catholic Bishops, as this status is based on its founding, not its locations.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Catholic University of America"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Catholic University of America"}, {"qid": 4601, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What makes the Catholic University of America unique among higher education institutions in the United States?", "answer": " The Catholic University of America is unique because it is the only institution of higher education founded by the United States Conference of Catholic Bishops.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Catholic University of America"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Catholic University of America"}, {"qid": 4602, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the Catholic University of America's research classification relate to its academic offerings?", "answer": " Its classification among \"R2", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Catholic University of America"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Catholic University of America"}, {"qid": 4603, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the Catholic University of America's founding year compare to that of Harvard University?", "answer": " The Catholic University of America was founded in 1887, significantly later than Harvard University, which was founded in 1636.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Catholic University of America"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Catholic University of America"}, {"qid": 4604, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the Catholic University of America were to become a public university, how would its founding by the United States Conference of Catholic Bishops be impacted?", "answer": " Becoming a public university would not change its historical founding by the United States Conference of Catholic Bishops, but it might affect its future governance and religious affiliations.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Catholic University of America"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Catholic University of America"}, {"qid": 4605, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "In what way does the Catholic University of America's status as a pontifical university impact its curriculum?", "answer": " As a pontifical university, the Catholic University of America integrates Catholic teachings and values into its curriculum, reflecting its commitment to the Catholic Church's educational mission.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Catholic University of America"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Catholic University of America"}, {"qid": 4606, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most distinctive feature of the Catholic University of America's founding?", "answer": " The most distinctive feature is that it is the only institution of higher education founded by the United States Conference of Catholic Bishops.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Catholic University of America"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Catholic University of America"}, {"qid": 4607, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the size of the staff at the Catholic University of America compare to that of similar-sized universities in Washington, D.C.?", "answer": " Without specific staff numbers for both the Catholic University of America and other similar-sized universities in Washington, D.C., a direct comparison cannot be made, but typically, staff size is influenced by student enrollment and the breadth of academic programs offered.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Catholic University of America"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Catholic University of America"}, {"qid": 4608, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the Catholic University of America were to significantly expand its research activities, how might its classification among research universities change?", "answer": " If the Catholic University of America were to significantly expand its research activities, it might move up to a higher classification, potentially reaching \"R1", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Catholic University of America"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Catholic University of America"}, {"qid": 4609, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between the University of Toronto and King's College?", "answer": " The University of Toronto was originally founded as King's College in 1827 and changed its name to the University of Toronto in 1850 when it became a secular institution.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Toronto"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Toronto"}, {"qid": 4610, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which campus of the University of Toronto is the oldest?", "answer": " The St. George campus is the oldest campus of the University of Toronto.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Toronto"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Toronto"}, {"qid": 4611, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How do the autonomy and character differ among the 11 colleges within the University of Toronto?", "answer": " Each of the 11 colleges within the University of Toronto has substantial autonomy on financial and institutional affairs and significant differences in character and history.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Toronto"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Toronto"}, {"qid": 4612, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How did the University of Toronto transition from a religious to a secular institution?", "answer": " The University of Toronto transitioned from a religious to a secular institution in 1850 when it changed its name from King's College and dropped its affiliation with the Church of England.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Toronto"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Toronto"}, {"qid": 4613, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What might have happened if the University of Toronto did not become a secular institution in 1850?", "answer": " If the University of Toronto did not become a secular institution in 1850, it might have continued to be controlled by the Church of England, potentially affecting its policies, curriculum, and inclusivity.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Toronto"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Toronto"}, {"qid": 4614, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the newest campus of the University of Toronto?", "answer": " The newest campus of the University of Toronto is the Mississauga campus, which was established after the Scarborough campus.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Toronto"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Toronto"}, {"qid": 4615, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What role does Queen's Park play in the location of the University of Toronto?", "answer": " Queen's Park surrounds the grounds of the University of Toronto's St. George campus, placing the university in a central and symbolic location in Toronto.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Toronto"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Toronto"}, {"qid": 4616, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the University of Toronto's founding year compare to other Canadian universities?", "answer": " The University of Toronto, founded in 1827, is one of the oldest universities in Canada.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Toronto"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Toronto"}, {"qid": 4617, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which of the University of Toronto's campuses is the largest by area?", "answer": " The St. George campus is the largest by area among the University of Toronto's campuses.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Toronto"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Toronto"}, {"qid": 4618, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the collegiate system affect the University of Toronto's structure?", "answer": " The collegiate system grants each of the 11 colleges within the University of Toronto substantial autonomy on financial and institutional affairs, leading to a decentralized structure with significant differences in character and history among colleges.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Toronto"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Toronto"}, {"qid": 4619, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What if the University of Toronto only maintained one campus?", "answer": " If the University of Toronto only maintained one campus, it would likely limit its capacity to offer diverse and accessible education to a wider range of students and potentially reduce its research capabilities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Toronto"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Toronto"}, {"qid": 4620, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the student population of the University of Toronto compare to other universities in Ontario?", "answer": " The University of Toronto has one of the largest student populations among universities in Ontario.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Toronto"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Toronto"}, {"qid": 4621, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest part of Boston University?", "answer": " The original campus in Newbury, Vermont, founded in 1839, is the oldest part of Boston University.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Boston University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Boston University"}, {"qid": 4622, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How is Boston University connected to the Association of American Universities?", "answer": " Boston University is a member of the Association of American Universities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Boston University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Boston University"}, {"qid": 4623, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "When was Boston University chartered in Boston, making it officially part of the city?", "answer": " Boston University was chartered in Boston in 1869.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Boston University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Boston University"}, {"qid": 4624, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What was the primary reason for the founding of Boston University?", "answer": " Boston University was founded by a group of Boston Methodists for educational purposes.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Boston University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Boston University"}, {"qid": 4625, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to other universities in Boston, how does Boston University rank in terms of its founding year?", "answer": " Boston University, founded in 1839, is one of the older universities in Boston but not necessarily the oldest.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Boston University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Boston University"}, {"qid": 4626, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Boston University had not been chartered in Boston in 1869, where might it have remained?", "answer": " If it had not been chartered in Boston in 1869, Boston University might have remained in Newbury, Vermont.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Boston University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Boston University"}, {"qid": 4627, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What role does Boston University play in the Boston Consortium for Higher Education?", "answer": " Boston University is a participating member of the Boston Consortium for Higher Education, collaborating with other institutions for educational and operational advancements.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Boston University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Boston University"}, {"qid": 4628, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most significant characteristic of Boston University's founding?", "answer": " The most significant characteristic of Boston University's founding is its establishment by Boston Methodists for educational purposes in 1839.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Boston University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Boston University"}, {"qid": 4629, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the size of Boston University's staff compare to other private research universities in Boston?", "answer": " The specific number of staff at Boston University is not provided, but as a major private research university, it likely has a large staff compared to smaller institutions.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Boston University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Boston University"}, {"qid": 4630, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What if Boston University had decided not to join the Association of American Universities?", "answer": " If Boston University had decided not to join the Association of American Universities, it might have missed out on collaborations and prestige associated with membership in this group of leading research universities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Boston University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Boston University"}, {"qid": 4631, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How did Boston University's location change from its founding to being chartered in Boston?", "answer": " Boston University was originally founded in Newbury, Vermont, in 1839 and was later chartered in Boston, Massachusetts, in 1869, marking its official relocation and expansion within the city.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Boston University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Boston University"}, {"qid": 4632, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Boston University had not moved from Newbury, Vermont, how might its development have differed?", "answer": " If Boston University had not moved from Newbury, Vermont, its development might have been constrained by the smaller size and more limited resources of the rural setting, potentially affecting its growth into a major research university.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Boston University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Boston University"}, {"qid": 4633, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What role has the Massachusetts Institute of Technology played in the development of modern technology and science?", "answer": " A significant role", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Massachusetts Institute of Technology"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Massachusetts Institute of Technology"}, {"qid": 4634, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "When was the earliest established private land-grant research university in Cambridge, Massachusetts?", "answer": " 1861", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Massachusetts Institute of Technology"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Massachusetts Institute of Technology"}, {"qid": 4635, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What type of university is the Massachusetts Institute of Technology?", "answer": " A private land-grant research university", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Massachusetts Institute of Technology"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Massachusetts Institute of Technology"}, {"qid": 4636, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Where is the Massachusetts Institute of Technology located?", "answer": " Cambridge, Massachusetts", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Massachusetts Institute of Technology"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Massachusetts Institute of Technology"}, {"qid": 4637, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which university in Cambridge, Massachusetts was established first?", "answer": " The Massachusetts Institute of Technology (established in 1861)", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Massachusetts Institute of Technology"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Massachusetts Institute of Technology"}, {"qid": 4638, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the establishment year of the Massachusetts Institute of Technology compare to Harvard University?", "answer": " MIT was established later; Harvard University was founded in 1636.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Massachusetts Institute of Technology"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Massachusetts Institute of Technology"}, {"qid": 4639, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the founding year of the Massachusetts Institute of Technology?", "answer": " 1861", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Massachusetts Institute of Technology"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Massachusetts Institute of Technology"}, {"qid": 4640, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would likely happen if the Massachusetts Institute of Technology had not played a significant role in the development of modern technology and science?", "answer": " The progress in many areas of technology and science might have been slower or taken a different path.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Massachusetts Institute of Technology"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Massachusetts Institute of Technology"}, {"qid": 4641, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest private land-grant research university in Cambridge, Massachusetts?", "answer": " The Massachusetts Institute of Technology", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Massachusetts Institute of Technology"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Massachusetts Institute of Technology"}, {"qid": 4642, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the nature of the Massachusetts Institute of Technology's contribution to technology and science?", "answer": " Significant in the development of many areas", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Massachusetts Institute of Technology"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Massachusetts Institute of Technology"}, {"qid": 4643, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the location of the Massachusetts Institute of Technology compare to other leading technological universities in the United States?", "answer": " It is located in Cambridge, Massachusetts, which is a major academic and technological hub along with being close to Harvard University.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Massachusetts Institute of Technology"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Massachusetts Institute of Technology"}, {"qid": 4644, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the Massachusetts Institute of Technology had been established in a different location, how might its impact on technology and science have changed?", "answer": " The impact might have varied depending on the resources, local industry, and academic culture of the new location, potentially influencing the direction and extent of its contributions to technology and science.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Massachusetts Institute of Technology"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Massachusetts Institute of Technology"}, {"qid": 4645, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the staff number at Brown University compare to Harvard University?", "answer": " Data not provided for comparison.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brown University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Brown University"}, {"qid": 4646, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest Ivy League university, and where does Brown University rank in terms of founding years among them?", "answer": " Brown University is the seventh-oldest, with the oldest being Harvard University founded in 1636.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brown University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Brown University"}, {"qid": 4647, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How did Brown University's policy on student admission based on religious affiliation differ from other universities at the time of its founding?", "answer": " Brown University was the first U.S. college to codify that admission and instruction of students was to be equal regardless of the religious affiliation of students.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brown University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Brown University"}, {"qid": 4648, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Brown University decided to open a satellite campus in another country, how would it select the location based on its historical founding principles?", "answer": " The location would likely be chosen based on principles of equality and inclusivity, reflecting its history of non-discrimination in student admission based on religious affiliation.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brown University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Brown University"}, {"qid": 4649, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Among the Ivy League universities founded before the American Revolution, which one has been a leader in non-discriminatory admission policies?", "answer": " Brown University.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brown University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Brown University"}, {"qid": 4650, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the founding year of Brown University contribute to its historical significance among U.S. higher education institutions?", "answer": " Being founded in 1764, it is the seventh-oldest institution of higher education in the United States, making it one of the nine colonial colleges chartered before the American Revolution.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brown University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Brown University"}, {"qid": 4651, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to universities founded in the 20th century, how does Brown University's historical approach to religious affiliation in admissions distinguish it?", "answer": " Brown University's early codification of non-discrimination based on religious affiliation in admissions sets it apart from many universities founded in the 20th century, which may not have had such policies from their inception.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brown University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Brown University"}, {"qid": 4652, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Brown University were to radically change its admission policy today, how might it reflect its original commitment to equality regardless of religious affiliation?", "answer": " The change would likely involve further emphasizing inclusivity and equality, potentially by expanding policies to more explicitly include other marginalized or underrepresented groups.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brown University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Brown University"}, {"qid": 4653, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most distinctive feature of Brown University's founding charter compared to other Ivy League schools?", "answer": " The most distinctive feature is its early commitment to equal admission and instruction of students regardless of their religious affiliation.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brown University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Brown University"}, {"qid": 4654, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How has Brown University's location in Providence, Rhode Island, influenced its development and academic culture since its founding in 1764?", "answer": " Brown University's location in Providence has fostered a close relationship with the city and influenced its academic culture with a focus on community engagement and an environment that encourages intellectual freedom and innovation.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brown University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Brown University"}, {"qid": 4655, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the number of staff at Brown University compare to that of newer public research universities?", "answer": " Data not provided for comparison.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brown University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Brown University"}, {"qid": 4656, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Brown University had not adopted a policy of equal admission regardless of religious affiliation, how might its reputation and student body composition be different today?", "answer": " Without its early commitment to equality, Brown University's reputation might be less progressive, potentially attracting a less diverse student body and possibly impacting its standing among the Ivy League and broader academic community.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brown University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Brown University"}, {"qid": 4657, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of Cornell University compare to that of Princeton University?", "answer": " Cornell University was founded in 1865, which is later than Princeton University's founding year of 1746.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cornell University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Cornell University"}, {"qid": 4658, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest building on Cornell University's campus?", "answer": " Morrill Hall is the oldest building on Cornell University's campus, completed in 1868.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cornell University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Cornell University"}, {"qid": 4659, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Who were the founders of Cornell University and what was their contribution?", "answer": " Ezra Cornell and Andrew Dickson White were the founders of Cornell University. Ezra Cornell offered his farm in Ithaca, New York, as a site and $500,000 of his personal fortune as an initial endowment, while Andrew Dickson White contributed his extensive library and became the university's first president.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cornell University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Cornell University"}, {"qid": 4660, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Cornell University decided to open a new campus in another country, how might it choose the location?", "answer": " Cornell University might choose the location for a new campus based on factors such as the presence of a strong academic community, opportunities for research collaboration, demand for higher education, ease of establishing a campus in accordance with local laws and regulations, and the potential to enhance the university's global presence.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cornell University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Cornell University"}, {"qid": 4661, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the student population of Cornell University compare to that of Harvard University as of fall 2023?", "answer": " As of fall 2023, Cornell University had over 26,000 students (combining undergraduate and graduate), which is larger compared to Harvard University's total student population of about 21,000.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cornell University"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "Cornell University"}, {"qid": 4662, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most popular undergraduate major at Cornell University as of fall 2023?", "answer": " The most popular undergraduate major at Cornell University as of fall 2023 is Computer Science.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cornell University"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "Cornell University"}, {"qid": 4663, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the location of Cornell University contribute to its research in agriculture and life sciences?", "answer": " The location of Cornell University in Ithaca, New York, with its diverse climates and landscapes, provides ample opportunities for hands-on research and experiments in agriculture and life sciences, supporting the university's status as a land-grant institution.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cornell University"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "Cornell University"}, {"qid": 4664, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Cornell University were to significantly expand its engineering department, how might this affect its overall ranking among engineering schools?", "answer": " If Cornell University significantly expanded its engineering department, enhancing its faculty, research facilities, and student resources, it could potentially improve its overall ranking among engineering schools by attracting top faculty and students, leading to higher quality research outputs and academic achievements.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cornell University"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "Cornell University"}, {"qid": 4665, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does Cornell University's staff number compare to that of Columbia University?", "answer": " As of the latest data, Cornell University has a larger total staff number compared to Columbia University, due in part to its extensive research facilities and breadth of academic programs.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cornell University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Cornell University"}, {"qid": 4666, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which department at Cornell University has the highest number of faculty members?", "answer": " The College of Arts and Sciences at Cornell University has the highest number of faculty members, reflecting its broad range of disciplines.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cornell University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Cornell University"}, {"qid": 4667, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What role did Ezra Cornell and Andrew Dickson White play in the establishment of Cornell University?", "answer": " Ezra Cornell provided the land and significant financial resources, while Andrew Dickson White contributed his scholarly resources and served as the first president, jointly establishing Cornell University as a co-educational, nonsectarian institution focusing on both classical and practical studies.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cornell University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Cornell University"}, {"qid": 4668, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would be the impact on student diversity at Cornell University if it were to offer full scholarships to all international students?", "answer": " Offering full scholarships to all international students would likely significantly increase the diversity of the student body at Cornell University by making it more accessible to talented students from a wide range of socio-economic backgrounds and countries.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cornell University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Cornell University"}, {"qid": 4669, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does Yale University's founding year compare to Harvard University's founding year?", "answer": " Yale University was founded in 1701, making it younger than Harvard University, which was founded in 1636.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Yale University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Yale University"}, {"qid": 4670, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest institution of higher education in the United States?", "answer": " Harvard University is the oldest institution of higher education in the United States, founded in 1636, making Yale University the third-oldest as it was founded in 1701.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Yale University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Yale University"}, {"qid": 4671, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Why is Yale University considered one of the most prestigious universities in the world?", "answer": " Yale University is considered one of the most prestigious universities in the world due to its influence, wealth, rankings, and being one of the nine colonial colleges chartered before the American Revolution.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Yale University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Yale University"}, {"qid": 4672, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Yale University had not been chartered before the American Revolution, how might its prestige and historical significance be different today?", "answer": " If Yale University had not been chartered before the American Revolution, its prestige and historical significance might be lesser as it would not have the distinction of being one of the nine original colonial colleges, reducing its historic legacy.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Yale University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Yale University"}, {"qid": 4673, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which Ivy League university has the earliest founding year?", "answer": " Harvard University has the earliest founding year, 1636, among the Ivy League universities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Yale University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Yale University"}, {"qid": 4674, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does Yale University's location compare to Columbia University's location?", "answer": " Yale University is located in New Haven, Connecticut, while Columbia University is located in New York City, New York, making Yale's location smaller and less urban compared to Columbia's.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Yale University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Yale University"}, {"qid": 4675, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What role did Yale University play in the American Revolution?", "answer": " As one of the nine colonial colleges chartered before the American Revolution, Yale University played a significant role in educating leaders and supporters of the revolutionary cause, contributing to its historical importance.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Yale University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Yale University"}, {"qid": 4676, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What if Yale University was located in California instead of Connecticut, how might its history and influence be different?", "answer": " If Yale University was located in California instead of Connecticut, its history and influence could be significantly different, potentially affecting its role in early American history, its development, and possibly its prestige due to a different regional context.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Yale University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Yale University"}, {"qid": 4677, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the third-oldest institution of higher education in the United States?", "answer": " Yale University is the third-oldest institution of higher education in the United States, founded in 1701.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Yale University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Yale University"}, {"qid": 4678, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to Princeton University, how does Yale University's number of staff differ?", "answer": " The specific number of staff at both Yale University and Princeton University can vary year by year, but generally, Yale, being one of the largest Ivy League institutions, might have a larger staff size compared to Princeton, depending on the departments and facilities each university maintains.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Yale University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Yale University"}, {"qid": 4679, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does Yale University's status as one of the nine colonial colleges impact its current academic programs?", "answer": " Yale University's status as one of the nine colonial colleges impacts its current academic programs by providing a rich historical foundation, enabling a wide range of classical and modern disciplines, and attracting high-caliber faculty and students, thereby enhancing its academic prestige and breadth of study.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Yale University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Yale University"}, {"qid": 4680, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Yale University decided to dramatically expand its faculty, how might this affect its student-to-faculty ratio and overall educational quality?", "answer": " If Yale University decided to dramatically expand its faculty, this could lower the student-to-faculty ratio, potentially allowing for more personalized attention and mentorship for each student, which could enhance the overall educational quality and student satisfaction.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Yale University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Yale University"}, {"qid": 4681, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of Brandeis University compare to that of Harvard University?", "answer": " Brandeis University was founded in 1948, whereas Harvard University was founded in 1636, making Harvard significantly older.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brandeis University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Brandeis University"}, {"qid": 4682, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the earliest founded private research university in the Boston City Metropolitan Area?", "answer": " Harvard University, founded in 1636, is the earliest founded private research university in the Boston City Metropolitan Area.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brandeis University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Brandeis University"}, {"qid": 4683, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Who was Brandeis University named after and why?", "answer": " Brandeis University was named after Louis Brandeis, a former Justice of the U.S. Supreme Court, likely due to his contributions to law and justice.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brandeis University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Brandeis University"}, {"qid": 4684, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Brandeis University decided to establish a new campus, how would the location of the new campus be influenced by its current location within the Boston City Metropolitan Area?", "answer": " The location of a new campus would likely be influenced by the desire to maintain proximity to the rich educational and cultural resources of the Boston City Metropolitan Area, while also considering factors such as available land, accessibility, and the university's expansion goals.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brandeis University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Brandeis University"}, {"qid": 4685, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to MIT, how does the staff number at Brandeis University reflect on its focus on research?", "answer": " While specific staff numbers are required for a direct comparison, typically, MIT, with its larger emphasis on engineering and technology, might have a greater number of research staff in those areas, whereas Brandeis University, being a liberal arts and research university, would have a diverse staff across various disciplines, reflecting its broad focus on both research and liberal arts education.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brandeis University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Brandeis University"}, {"qid": 4686, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Among the universities within the Boston City Metropolitan Area, which one has the most diverse range of research disciplines?", "answer": " While subjective and requiring specific metrics to accurately determine, MIT and Harvard are often celebrated for their wide range of research disciplines, but Brandeis University also offers a diverse range of research areas, particularly strong in social sciences, natural sciences, and humanities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brandeis University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Brandeis University"}, {"qid": 4687, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the location of Brandeis University within the Boston City Metropolitan Area enhance its research collaborations?", "answer": " Being located within the Boston City Metropolitan Area allows Brandeis University to easily collaborate with other nearby institutions, hospitals, and companies, leveraging the area's rich educational, technological, and cultural resources to enhance its research output and opportunities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brandeis University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Brandeis University"}, {"qid": 4688, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Brandeis University were to triple its staff number in the next decade, what changes might occur in its research output and academic programs?", "answer": " Tripling its staff number could significantly increase Brandeis University's research output and allow for the expansion of academic programs, potentially introducing new fields of study, enhancing interdisciplinary research, and increasing the university's overall academic and research reputation.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brandeis University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Brandeis University"}, {"qid": 4689, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does Brandeis University's founding year compare to that of MIT?", "answer": " Brandeis University was founded in 1948, while MIT was founded earlier in 1861, making MIT older than Brandeis University.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brandeis University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Brandeis University"}, {"qid": 4690, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most recent private research university established in the Boston City Metropolitan Area?", "answer": " Among the well-known institutions, Brandeis University, founded in 1948, is one of the more recent private research universities established in the Boston City Metropolitan Area.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brandeis University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Brandeis University"}, {"qid": 4691, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What significance does the name \"Brandeis University\" hold in relation to its educational philosophy?", "answer": " The name \"Brandeis University\" signifies a commitment to justice and learning, inspired by Louis Brandeis, a U.S. Supreme Court Justice known for his advocacy for social justice, reflecting the university's dedication to social activism and academic excellence.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brandeis University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Brandeis University"}, {"qid": 4692, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Brandeis University were to become a sector-leading institution in sustainable practices, what might be the potential impact on its curriculum and campus operations?", "answer": " Becoming a sector-leading institution in sustainable practices could lead to the integration of sustainability across its curriculum, fostering a culture of environmental awareness and responsibility among students and staff, and the implementation of green technologies and sustainable operations across campus.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brandeis University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Brandeis University"}, {"qid": 4693, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest colonial college chartered before the American Revolution?", "answer": " Dartmouth College, established in 1769.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Dartmouth College"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Dartmouth College"}, {"qid": 4694, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Who was the founder of Dartmouth College?", "answer": " Eleazar Wheelock.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Dartmouth College"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Dartmouth College"}, {"qid": 4695, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Where is Dartmouth College located?", "answer": " Hanover, New Hampshire.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Dartmouth College"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Dartmouth College"}, {"qid": 4696, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Among the Ivy League universities, which is considered one of the most prestigious for undergraduate education?", "answer": " Dartmouth College.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Dartmouth College"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Dartmouth College"}, {"qid": 4697, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of Dartmouth College compare to Harvard University?", "answer": " Dartmouth College was founded in 1769, whereas Harvard University was founded earlier, in 1636.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Dartmouth College"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Dartmouth College"}, {"qid": 4698, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Who is the president of Dartmouth College as of the latest update?", "answer": " [The answer would need to be updated based on the current year, as college presidents can change.]", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Dartmouth College"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Dartmouth College"}, {"qid": 4699, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would likely happen to the number of staff at Dartmouth College if it significantly expanded its research facilities?", "answer": " The number of staff would likely increase.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Dartmouth College"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Dartmouth College"}, {"qid": 4700, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does Dartmouth College's location compare to Princeton University in terms of the rural-urban setting?", "answer": " Dartmouth College is located in a rural setting in Hanover, New Hampshire, while Princeton University is in a more suburban setting.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Dartmouth College"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Dartmouth College"}, {"qid": 4701, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What makes Dartmouth College unique among the Ivy League universities?", "answer": " Its status as one of the nine colonial colleges chartered before the American Revolution and its strong focus on undergraduate education.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Dartmouth College"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Dartmouth College"}, {"qid": 4702, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does Dartmouth College's undergraduate focus impact its academic programs compared to universities with a heavier emphasis on graduate programs?", "answer": " Dartmouth College likely offers more personalized attention and resources towards undergraduate students and programs.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Dartmouth College"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Dartmouth College"}, {"qid": 4703, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Dartmouth College were to introduce a new revolutionary undergraduate program, how might that affect its national prominence?", "answer": " It could potentially enhance its national prominence by attracting more attention and students interested in innovative education.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Dartmouth College"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Dartmouth College"}, {"qid": 4704, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the staff number at Dartmouth College compare to that of Yale University?", "answer": " [The answer would vary depending on the current year and available data; specific numbers would need to be researched.]", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Dartmouth College"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Dartmouth College"}, {"qid": 4705, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of the University of Pennsylvania compare with Princeton University's founding year?", "answer": " The University of Pennsylvania was chartered in 1740, making it older than Princeton University, which was chartered in 1746.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pennsylvania"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Pennsylvania"}, {"qid": 4706, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest Ivy League university?", "answer": " The University of Pennsylvania, often claimed as the fourth-oldest institution of higher education in the United States, is not the oldest Ivy League university; that title belongs to Harvard University, founded in 1636.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pennsylvania"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Pennsylvania"}, {"qid": 4707, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How is Benjamin Franklin related to the University of Pennsylvania?", "answer": " Benjamin Franklin is the founder and was the first president of the University of Pennsylvania.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pennsylvania"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Pennsylvania"}, {"qid": 4708, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Benjamin Franklin had not founded the University of Pennsylvania, how might American higher education be different today?", "answer": " Without Benjamin Franklin's founding of the University of Pennsylvania, the landscape of American higher education might lack a pioneering institution that combined traditional liberal arts education with practical training, potentially altering the development of interdisciplinary studies and the emphasis on public service in academia.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pennsylvania"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Pennsylvania"}, {"qid": 4709, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the student to faculty ratio at the University of Pennsylvania compare to that of Yale University?", "answer": " The specific student to faculty ratio at the University of Pennsylvania and Yale University would need to be looked up for a current comparison, as these ratios can vary year to year.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pennsylvania"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Pennsylvania"}, {"qid": 4710, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which Ivy League university has the largest campus area?", "answer": " Among the Ivy League universities, Cornell University has the largest campus area, not the University of Pennsylvania.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pennsylvania"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Pennsylvania"}, {"qid": 4711, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What role did Benjamin Franklin's educational philosophy play in the curriculum of the University of Pennsylvania?", "answer": " Benjamin Franklin's educational philosophy, which emphasized practical training in commerce, government, and public service alongside traditional arts and sciences, played a foundational role in shaping the University of Pennsylvania's curriculum, making it one of the first universities in America to offer a well-rounded education aimed at preparing leaders in various fields.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pennsylvania"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Pennsylvania"}, {"qid": 4712, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Pennsylvania were to establish a new campus in another country, what factors would they need to consider to maintain their Ivy League standards?", "answer": " To maintain their Ivy League standards at a new campus abroad, the University of Pennsylvania would need to consider factors such as the quality and qualifications of faculty, adherence to rigorous academic standards, development of a comprehensive liberal arts and professional studies curriculum, the establishment of state-of-the-art research facilities, and the creation of a diverse and intellectually vibrant community.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pennsylvania"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Pennsylvania"}, {"qid": 4713, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to other Ivy League universities, how does the University of Pennsylvania's endowment size rank?", "answer": " The University of Pennsylvania has one of the largest endowments among Ivy League universities, but it is typically smaller than those of Harvard and Yale.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pennsylvania"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Pennsylvania"}, {"qid": 4714, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the highest-ranked business school in the Ivy League?", "answer": " The Wharton School of the University of Pennsylvania is often ranked as the highest or one of the highest-ranked business schools in the Ivy League.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pennsylvania"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Pennsylvania"}, {"qid": 4715, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the University of Pennsylvania's approach to interdisciplinary studies differentiate from traditional university programs?", "answer": " The University of Pennsylvania's approach to interdisciplinary studies differentiates from traditional university programs through its emphasis on integrating knowledge across different disciplines, encouraging collaboration among departments, and offering joint-degree programs that allow students to combine interests in multiple fields, a practice rooted in Benjamin Franklin's educational philosophy.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pennsylvania"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Pennsylvania"}, {"qid": 4716, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would be the impact on the University of Pennsylvania's research output if it doubled its research funding in the next decade?", "answer": " Doubling its research funding in the next decade could significantly increase the University of Pennsylvania's research output, potentially leading to more groundbreaking discoveries, increased publication in prestigious journals, enhanced opportunities for faculty and student research, and a stronger position as a leader in global research and innovation.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pennsylvania"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Pennsylvania"}, {"qid": 4717, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the earliest founded location of Tufts University?", "answer": " Medford and Somerville, Massachusetts", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Tufts University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Tufts University"}, {"qid": 4718, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How did the founding principles of Tufts University influence its evolution from a liberal arts college to a research university?", "answer": " The founding principles of nonsectarianism and inclusivity led to a broadened academic focus and expansion, transforming Tufts from a liberal arts college to a comprehensive research university offering several doctorates.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Tufts University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Tufts University"}, {"qid": 4719, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the significance of the location in Talloires, France, for Tufts University?", "answer": " The Talloires location represents Tufts University's commitment to global education and international collaboration.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Tufts University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Tufts University"}, {"qid": 4720, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Tufts University had not transitioned into a research university, how might its academic offerings differ today?", "answer": " It would likely offer a more limited range of programs, primarily focused on undergraduate liberal arts education without the extensive graduate and doctoral programs.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Tufts University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Tufts University"}, {"qid": 4721, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the staff number at Tufts University compare to other private research universities in Massachusetts?", "answer": " Tufts University has a competitive number of staff compared to other private research universities in Massachusetts, though specific numbers vary by institution.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Tufts University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Tufts University"}, {"qid": 4722, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most recent addition to Tufts University's facilities?", "answer": " The most recent addition is not specified, but Tufts continuously expands its facilities in Medford, Somerville, Boston, Grafton, and internationally in Talloires, France.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Tufts University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Tufts University"}, {"qid": 4723, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does Tufts University's founding as a nonsectarian institution impact its current academic and social environment?", "answer": " The nonsectarian founding contributes to a diverse and inclusive academic community, fostering an environment of openness and intellectual freedom.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Tufts University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Tufts University"}, {"qid": 4724, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Tufts University decided to open another international campus, what might be the potential benefits for its students and faculty?", "answer": " Opening another international campus would likely enhance global learning opportunities, foster international collaborations, and expand the university's global footprint.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Tufts University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Tufts University"}, {"qid": 4725, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to its founding year, how has the number of staff at Tufts University changed by the 21st century?", "answer": " The number of staff has significantly increased since its founding in 1852, reflecting its growth from a small liberal arts college to a large research university.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Tufts University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Tufts University"}, {"qid": 4726, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which facility of Tufts University is the oldest?", "answer": " The original campus in Medford and Somerville, Massachusetts, is the oldest.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Tufts University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Tufts University"}, {"qid": 4727, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What role does the Boston facility play in Tufts University's research and academic programs?", "answer": " The Boston facility, including the health sciences campus, plays a crucial role in medical, dental, and nutritional science research and education.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Tufts University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Tufts University"}, {"qid": 4728, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What if Tufts University had not expanded beyond its original Medford and Somerville campuses, how might its academic scope and reach be different today?", "answer": " Without the expansion, Tufts University's academic scope and reach would likely be more localized, with less emphasis on global education and possibly fewer graduate and professional programs.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Tufts University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Tufts University"}, {"qid": 4729, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between the University of Rochester's founding year and its movement to the current campus next to the Genesee River?", "answer": " The University of Rochester was founded in 1850 and moved to its current campus next to the Genesee River in 1955, indicating a 105-year gap between its founding and the campus relocation.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Rochester"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Rochester"}, {"qid": 4730, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What makes the University of Rochester the largest private employer in Upstate New York?", "answer": " With approximately 30,000 full-time employees, the University of Rochester is the largest private employer in Upstate New York due to its high number of staff.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Rochester"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Rochester"}, {"qid": 4731, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the University of Rochester's staff size compare with other private employers in New York State?", "answer": " The University of Rochester, with approximately 30,000 full-time employees, is the 7th largest private employer in all of New York State.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Rochester"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Rochester"}, {"qid": 4732, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "When did the University of Rochester become the largest private employer in Upstate New York?", "answer": " The text does not specify the exact year the University of Rochester became the largest private employer in Upstate New York.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Rochester"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Rochester"}, {"qid": 4733, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the University of Rochester's location next to the Genesee River affect its campus environment?", "answer": " Being located next to the Genesee River likely provides the University of Rochester with a scenic campus environment, though the text does not provide specific details on this relationship.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Rochester"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Rochester"}, {"qid": 4734, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What might happen to the University of Rochester's ranking as the largest private employer in Upstate New York if it significantly reduces its staff?", "answer": " If the University of Rochester significantly reduces its staff, it could lose its ranking as the largest private employer in Upstate New York.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Rochester"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Rochester"}, {"qid": 4735, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to its founding year, how significant is the year the University of Rochester moved to its current campus?", "answer": " The year the University of Rochester moved to its current campus in 1955 is significant as it marks a major milestone 105 years after its founding in 1850.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Rochester"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Rochester"}, {"qid": 4736, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the significance of the University of Rochester's current campus location in terms of historical timeline?", "answer": " The University of Rochester's move to its current campus next to the Genesee River in 1955 is significant as it represents a new phase in the university's history, 105 years after its founding.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Rochester"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Rochester"}, {"qid": 4737, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How has the University of Rochester's staff size impacted its status in New York State?", "answer": " The University of Rochester's staff size of approximately 30,000 full-time employees has impacted its status by making it the largest private employer in Upstate New York and the 7th largest in all of New York State.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Rochester"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Rochester"}, {"qid": 4738, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Rochester were to expand its campus further, how might that affect its employee count?", "answer": " If the University of Rochester were to expand its campus further, it might increase its employee count to accommodate the expanded operations and services.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Rochester"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Rochester"}, {"qid": 4739, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the University of Rochester's foundation year compare to the year it moved its campus next to the Genesee River?", "answer": " The University of Rochester was founded in 1850, while it moved its campus next to the Genesee River in 1955, showing a difference of 105 years between these two significant dates.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Rochester"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Rochester"}, {"qid": 4740, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What aspect of the University of Rochester's operation makes it stand out as an employer in New York State?", "answer": " The aspect of the University of Rochester’s operation that makes it stand out as an employer in New York State is its large staff size of approximately 30,000 full-time employees, making it the largest private employer in Upstate New York and the 7th largest in all of New York State.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Rochester"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Rochester"}, {"qid": 4741, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the staff number at California Institute of Technology compare to that of MIT?", "answer": " Cannot be answered without specific staff numbers for both institutions.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["California Institute of Technology"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "California Institute of Technology"}, {"qid": 4742, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What year was the California Institute of Technology founded, and how does that rank among other tech institutes in the US?", "answer": " Caltech was founded in 1891, making it one of the oldest technology institutes in the United States.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["California Institute of Technology"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "California Institute of Technology"}, {"qid": 4743, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Who is the president of the California Institute of Technology, and what is their relationship to the university?", "answer": " The president of Caltech serves as the chief executive officer of the university, overseeing all operations and academic affairs.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["California Institute of Technology"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "California Institute of Technology"}, {"qid": 4744, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the California Institute of Technology decided to double its staff, how would that affect its student to faculty ratio?", "answer": " Doubling the staff at Caltech would likely decrease the student to faculty ratio, assuming the number of students remains constant, leading to more personalized attention for each student.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["California Institute of Technology"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "California Institute of Technology"}, {"qid": 4745, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to Harvard University, how does the focus of academic programs at California Institute of Technology differ?", "answer": " Caltech primarily focuses on pure and applied sciences, whereas Harvard offers a broader range of academic disciplines, including humanities, social sciences, and arts.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["California Institute of Technology"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "California Institute of Technology"}, {"qid": 4746, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which has a smaller campus size, California Institute of Technology or Stanford University?", "answer": " California Institute of Technology has a smaller campus size compared to Stanford University.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["California Institute of Technology"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "California Institute of Technology"}, {"qid": 4747, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the location of California Institute of Technology influence its research in seismology?", "answer": " Located in Pasadena, California, near the San Andreas Fault, Caltech's location significantly contributes to its leading research in seismology and earthquake engineering.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["California Institute of Technology"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "California Institute of Technology"}, {"qid": 4748, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If California Institute of Technology were to expand its campus, what areas of research might benefit the most?", "answer": " Areas of research that require large-scale experiments or additional space, such as astronomy, planetary science, and energy science, might benefit the most from campus expansion.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["California Institute of Technology"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "California Institute of Technology"}, {"qid": 4749, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the student body size at California Institute of Technology compare to that of the University of California, Berkeley?", "answer": " The student body size at Caltech is significantly smaller than that of the University of California, Berkeley.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["California Institute of Technology"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "California Institute of Technology"}, {"qid": 4750, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which department at California Institute of Technology is considered the most prestigious in terms of academic achievements?", "answer": " The Division of Physics, Mathematics, and Astronomy at Caltech is often considered among the most prestigious due to its significant contributions and achievements in those fields.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["California Institute of Technology"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "California Institute of Technology"}, {"qid": 4751, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What role does the location of California Institute of Technology play in its collaborations with NASA?", "answer": " Caltech's proximity to NASA's Jet Propulsion Laboratory, which it manages, facilitates close collaborations on space exploration and science missions.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["California Institute of Technology"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "California Institute of Technology"}, {"qid": 4752, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would be the impact on Caltech's research output if it were to form a partnership with a major tech company?", "answer": " Forming a partnership with a major tech company could lead to increased resources for research, enhanced innovation, and potentially greater real-world applications of Caltech's scientific discoveries.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["California Institute of Technology"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "California Institute of Technology"}, {"qid": 4753, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What was the original name of the University of Utah when it was established in 1850?", "answer": " University of Deseret", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Utah"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "University of Utah"}, {"qid": 4754, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "In what year did the University of Utah receive its current name?", "answer": " 1892", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Utah"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "University of Utah"}, {"qid": 4755, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "When did the University of Utah move to its current location in Salt Lake City?", "answer": " 1900", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Utah"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "University of Utah"}, {"qid": 4756, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which is the oldest institution of higher education in Utah?", "answer": " University of Utah", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Utah"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "University of Utah"}, {"qid": 4757, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the establishment year of the University of Utah compare with the year Utah attained statehood?", "answer": " The University of Utah was established before Utah attained statehood.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Utah"], "topic_level": false, "class": "sing entity", "hops": "Multi Hops", "entity": "University of Utah"}, {"qid": 4758, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the flagship university of the Utah System of Higher Education?", "answer": " University of Utah", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Utah"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "University of Utah"}, {"qid": 4759, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "When was the earliest date that the University of Utah was established compared to other universities in Utah?", "answer": " 1850", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Utah"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "University of Utah"}, {"qid": 4760, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Utah had not changed its name in 1892, what would it be called today?", "answer": " University of Deseret", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Utah"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "University of Utah"}, {"qid": 4761, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What led to the University of Utah receiving its current name in 1892?", "answer": " The university received its current name four years before Utah attained statehood.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Utah"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "University of Utah"}, {"qid": 4762, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What makes the University of Utah stand out as the flagship university in the Utah System of Higher Education?", "answer": " Its status as the oldest institution of higher education in Utah and its role in the system.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Utah"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "University of Utah"}, {"qid": 4763, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to when it was established, how has the University of Utah's location changed?", "answer": " It moved to its current location in Salt Lake City in 1900.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Utah"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "University of Utah"}, {"qid": 4764, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What historical event in 1850 contributed to the founding of the University of Utah?", "answer": " The establishment by the General Assembly of the provisional State of Deseret.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Utah"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "University of Utah"}, {"qid": 4765, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between James Buchanan Duke and Duke University's name?", "answer": " Duke University was named in honor of James Buchanan Duke's deceased father, Washington Duke, after James established The Duke Endowment in 1924.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Duke University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Duke University"}, {"qid": 4766, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What year was Duke University founded, making it one of the oldest universities in North Carolina?", "answer": " 1838", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Duke University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Duke University"}, {"qid": 4767, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding location of Duke University compare to its current location?", "answer": " Duke University was originally founded in the present-day city of Trinity in 1838 and moved to Durham in 1892.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Duke University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Duke University"}, {"qid": 4768, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Who were the founders of Duke University?", "answer": " Methodists and Quakers", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Duke University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Duke University"}, {"qid": 4769, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What significant event in 1924 greatly impacted Duke University's history and name?", "answer": " The establishment of The Duke Endowment by James Buchanan Duke in 1924.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Duke University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Duke University"}, {"qid": 4770, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If James Buchanan Duke had not established The Duke Endowment, how might Duke University's name be different today?", "answer": " It might have retained its original name or been named differently, not in honor of Washington Duke.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Duke University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Duke University"}, {"qid": 4771, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the original founding year of Duke University compare to the year it moved to Durham?", "answer": " Duke University was founded in 1838 and moved to Durham in 1892, indicating a difference of 54 years between the two events.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Duke University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Duke University"}, {"qid": 4772, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What type of university is Duke University, and how does this classification affect its educational and research missions?", "answer": " Duke University is a private research university, which emphasizes both high-quality education and significant research contributions.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Duke University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Duke University"}, {"qid": 4773, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What was the original name of Duke University before it was renamed in 1924?", "answer": " The school did not have a specified name mentioned, but it was associated with Methodists and Quakers and located in the city of Trinity before moving to Durham and being named Duke University.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Duke University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Duke University"}, {"qid": 4774, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Duke University had not moved from Trinity to Durham, how might its development and expansion have been different?", "answer": " Its development and expansion might have been constrained by the geographic and economic conditions of Trinity, potentially limiting its growth and influence compared to its current status in Durham.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Duke University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Duke University"}, {"qid": 4775, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to its founding, how has Duke University's focus on research evolved over the years?", "answer": " Duke University's focus on research has significantly evolved and expanded since its founding, with a strong emphasis on high-quality research across various disciplines.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Duke University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Duke University"}, {"qid": 4776, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What makes Duke University's move to Durham in 1892 a pivotal moment in its history?", "answer": " The move to Durham in 1892 was pivotal because it marked the beginning of the university's expansion and transformation into a leading research institution, facilitated by better access to resources and opportunities in Durham.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Duke University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Duke University"}, {"qid": 4777, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of the University of California, Berkeley compare to Stanford University?", "answer": " The University of California, Berkeley was founded in 1868, earlier than Stanford University which was founded in 1885.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Berkeley"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, Berkeley"}, {"qid": 4778, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest campus in the University of California system?", "answer": " The University of California, Berkeley is the oldest campus in the University of California system.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Berkeley"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, Berkeley"}, {"qid": 4779, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Why is the University of California, Berkeley named after George Berkeley?", "answer": " The University of California, Berkeley is named after George Berkeley, an Anglo-Irish philosopher, to honor his contributions to philosophy.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Berkeley"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, Berkeley"}, {"qid": 4780, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would happen if the University of California, Berkeley decided to relocate?", "answer": " If the University of California, Berkeley decided to relocate, it would involve significant logistical, financial, and administrative challenges, impacting students, staff, and the local community.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Berkeley"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, Berkeley"}, {"qid": 4781, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Is the University of California, Berkeley larger in staff number than the University of California, Los Angeles?", "answer": " It depends on the specific year and metrics used for comparison, as staff numbers can vary annually.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Berkeley"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, Berkeley"}, {"qid": 4782, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which campus in the University of California system was founded first?", "answer": " The University of California, Berkeley was founded first in the University of California system.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Berkeley"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of California, Berkeley"}, {"qid": 4783, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What led to the University of California, Berkeley being named after George Berkeley?", "answer": " The University of California, Berkeley was named after George Berkeley due to his influence and contributions to philosophy, reflecting the university's commitment to academic excellence.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Berkeley"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of California, Berkeley"}, {"qid": 4784, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of California, Berkeley had never been founded, how would the University of California system be different today?", "answer": " If the University of California, Berkeley had never been founded, the University of California system might have a different flagship campus, potentially altering the system's development, reputation, and academic focus.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Berkeley"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of California, Berkeley"}, {"qid": 4785, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to when it was founded, how has the number of staff at the University of California, Berkeley changed?", "answer": " Since its founding in 1868, the number of staff at the University of California, Berkeley has significantly increased to accommodate its growth in student population and academic programs.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Berkeley"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of California, Berkeley"}, {"qid": 4786, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most significant reason for the University of California, Berkeley's high ranking among public universities?", "answer": " The most significant reason for the University of California, Berkeley's high ranking among public universities is its strong academic programs, research output, and faculty achievements.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Berkeley"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of California, Berkeley"}, {"qid": 4787, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the University of California, Berkeley's status as a land-grant university influence its mission?", "answer": " The University of California, Berkeley's status as a land-grant university influences its mission by emphasizing public service, agricultural and mechanical arts education, and commitment to providing access to higher education for residents of California.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Berkeley"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of California, Berkeley"}, {"qid": 4788, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What if the University of California, Berkeley had been named after a different philosopher, how might its identity or perception have changed?", "answer": " If the University of California, Berkeley had been named after a different philosopher, its identity or perception might have shifted to more closely reflect the philosophical ideals or contributions of that particular philosopher, potentially influencing its academic focus and cultural values.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Berkeley"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of California, Berkeley"}, {"qid": 4789, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest campus in the University of California system?", "answer": " University of California, Berkeley", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Los Angeles"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, Los Angeles"}, {"qid": 4790, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How did UCLA become part of the University of California system?", "answer": " It was transferred to the University of California to become the Southern Branch of the University of California in 1919.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Los Angeles"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, Los Angeles"}, {"qid": 4791, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which campus is the second-oldest in the University of California system?", "answer": " University of California, Los Angeles (UCLA)", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Los Angeles"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, Los Angeles"}, {"qid": 4792, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What was UCLA's original name when it was established in 1881?", "answer": " The southern branch of the California State Normal School", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Los Angeles"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, Los Angeles"}, {"qid": 4793, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What type of university is UCLA?", "answer": " Public land-grant research university", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Los Angeles"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, Los Angeles"}, {"qid": 4794, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Where is UCLA located in comparison to other University of California campuses?", "answer": " Los Angeles, California", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Los Angeles"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, Los Angeles"}, {"qid": 4795, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "When did the southern branch of the California State Normal School evolve into San José State University?", "answer": " Before its transfer to the University of California system in 1919", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Los Angeles"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, Los Angeles"}, {"qid": 4796, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What if UCLA had not been transferred to the University of California system in 1919?", "answer": " It would have possibly remained a part of the California State Normal School system, potentially not evolving into the major research university it is today.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Los Angeles"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, Los Angeles"}, {"qid": 4797, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of UCLA compare to that of the University of California, Berkeley?", "answer": " UCLA was founded after the University of California, Berkeley, making it younger.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Los Angeles"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, Los Angeles"}, {"qid": 4798, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does UCLA's status as a land-grant university compare to other universities in California?", "answer": " Similar to other land-grant universities in California, UCLA has a mission of teaching, research, and public service.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Los Angeles"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, Los Angeles"}, {"qid": 4799, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the original root of UCLA's academic institution?", "answer": " A normal school known as the southern branch of the California State Normal School", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Los Angeles"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, Los Angeles"}, {"qid": 4800, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What significant change happened to the southern branch of the California State Normal School in 1919?", "answer": " It was transferred to the University of California, becoming the Southern Branch of the University of California.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Los Angeles"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, Los Angeles"}, {"qid": 4801, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest university in the state of Iowa?", "answer": " The University of Iowa", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Iowa"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Iowa"}, {"qid": 4802, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "In which city is the University of Iowa located?", "answer": " Iowa City, Iowa", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Iowa"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Iowa"}, {"qid": 4803, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How many colleges does the University of Iowa have?", "answer": " 12", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Iowa"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Iowa"}, {"qid": 4804, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What type of university is the University of Iowa?", "answer": " Public research university", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Iowa"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Iowa"}, {"qid": 4805, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "When was the University of Iowa founded relative to other universities in Iowa?", "answer": " 1847, making it the oldest university in the state.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Iowa"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Iowa"}, {"qid": 4806, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How many areas of study does the University of Iowa offer?", "answer": " More than 200", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Iowa"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Iowa"}, {"qid": 4807, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How many professional degrees are available at the University of Iowa?", "answer": " 7", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Iowa"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Iowa"}, {"qid": 4808, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Iowa were to add another college, how many colleges would it have?", "answer": " 13", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Iowa"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Iowa"}, {"qid": 4809, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to other universities in Iowa, how does the start year of the University of Iowa rank?", "answer": " It is the oldest, founded in 1847.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Iowa"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Iowa"}, {"qid": 4810, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the University of Iowa's range of study areas compare to typical universities?", "answer": " It offers a wide range with more than 200 areas of study, which is extensive compared to many universities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Iowa"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Iowa"}, {"qid": 4811, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the primary focus of the University of Iowa?", "answer": " It is a public research university.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Iowa"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Iowa"}, {"qid": 4812, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Iowa were to double the number of its professional degrees, how many would it offer?", "answer": " 14", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Iowa"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Iowa"}, {"qid": 4813, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of Carnegie Mellon University compare to that of the University of Pittsburgh?", "answer": " Carnegie Mellon University was founded in 1900, while the University of Pittsburgh was founded earlier, in 1787.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Carnegie Mellon University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Carnegie Mellon University"}, {"qid": 4814, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What was the earliest form of Carnegie Mellon University based on its founding history?", "answer": " The earliest form of Carnegie Mellon University was the Carnegie Technical Schools established in 1900.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Carnegie Mellon University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Carnegie Mellon University"}, {"qid": 4815, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How is Andrew Carnegie related to the founding of Carnegie Mellon University?", "answer": " Andrew Carnegie founded Carnegie Mellon University by establishing the Carnegie Technical Schools in 1900.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Carnegie Mellon University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Carnegie Mellon University"}, {"qid": 4816, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Andrew Carnegie had not founded the Carnegie Technical Schools, what might have been the impact on Pittsburgh's education landscape?", "answer": " Without the foundation of the Carnegie Technical Schools by Andrew Carnegie, Pittsburgh might have lacked a major private research university, potentially affecting the city's development in education, technology, and research.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Carnegie Mellon University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Carnegie Mellon University"}, {"qid": 4817, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the establishment year of the Mellon Institute of Industrial Research compare to the founding year of Carnegie Mellon University?", "answer": " The Mellon Institute of Industrial Research was founded in 1913, which is after Carnegie Mellon University's founding year of 1900.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Carnegie Mellon University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Carnegie Mellon University"}, {"qid": 4818, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What was the most significant change in the institution's name throughout its history?", "answer": " The most significant change in the institution's name was its transition from the Carnegie Institute of Technology to Carnegie Mellon University in 1967.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Carnegie Mellon University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Carnegie Mellon University"}, {"qid": 4819, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How did the merger with the Mellon Institute of Industrial Research contribute to the university's current name?", "answer": " The merger with the Mellon Institute of Industrial Research in 1967 contributed to the university's current name, Carnegie Mellon University, incorporating both the Carnegie and Mellon names.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Carnegie Mellon University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Carnegie Mellon University"}, {"qid": 4820, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What if Carnegie Mellon University had not merged with the Mellon Institute of Industrial Research, how would its reputation as a research institution be affected?", "answer": " Without the merger with the Mellon Institute of Industrial Research, Carnegie Mellon University's reputation as a leading research institution might not be as prominent, given the significant contributions and research advancements associated with the Mellon Institute.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Carnegie Mellon University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Carnegie Mellon University"}, {"qid": 4821, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How do the contributions of Andrew Carnegie to Carnegie Mellon University compare to those of Andrew Mellon and Richard B. Mellon?", "answer": " Andrew Carnegie's contributions laid the foundational establishment of Carnegie Mellon University, while Andrew Mellon and Richard B. Mellon's contributions, particularly through the Mellon Institute of Industrial Research, significantly bolstered the university's research capabilities and led to the expanded focus on industrial research.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Carnegie Mellon University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Carnegie Mellon University"}, {"qid": 4822, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which merger had the most significant impact on the university's development, its formation from the Carnegie Institute of Technology or the addition of the Mellon Institute of Industrial Research?", "answer": " The merger with the Mellon Institute of Industrial Research in 1967 had the most significant impact on the university's development, transforming it into Carnegie Mellon University and greatly enhancing its research capabilities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Carnegie Mellon University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Carnegie Mellon University"}, {"qid": 4823, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "In what way did the location of Carnegie Mellon University in Pittsburgh influence its development and focus areas?", "answer": " The location of Carnegie Mellon University in Pittsburgh, a city with a strong industrial history, influenced its development and focus areas by promoting strong ties with the industrial and technology sectors, leading to an emphasis on engineering, technology, and applied research.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Carnegie Mellon University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Carnegie Mellon University"}, {"qid": 4824, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Carnegie Mellon University had not been located in Pittsburgh, how might its academic and research focus have differed?", "answer": " If Carnegie Mellon University had not been located in Pittsburgh, its academic and research focus might have leaned less towards engineering and technology influenced by the city's industrial background, potentially leading it to develop strengths in different areas depending on its new location's economic and cultural landscape.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Carnegie Mellon University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Carnegie Mellon University"}, {"qid": 4825, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between the University of North Carolina at Chapel Hill's founding and its status as a public university in the United States?", "answer": " The University of North Carolina at Chapel Hill was chartered in 1789 and began enrolling students in 1795, making it one of the oldest public universities in the United States.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of North Carolina at Chapel Hill"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of North Carolina at Chapel Hill"}, {"qid": 4826, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "When compared to other public universities in the United States, how old is the University of North Carolina at Chapel Hill?", "answer": " The University of North Carolina at Chapel Hill is one of the oldest public universities in the United States, having been chartered in 1789.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of North Carolina at Chapel Hill"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of North Carolina at Chapel Hill"}, {"qid": 4827, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the start year of the University of North Carolina at Chapel Hill compare to that of other public universities founded in the 18th century?", "answer": " The University of North Carolina at Chapel Hill, chartered in 1789, is among the earliest public universities founded in the 18th century in the United States.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of North Carolina at Chapel Hill"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of North Carolina at Chapel Hill"}, {"qid": 4828, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What might have happened if the University of North Carolina at Chapel Hill had not been chartered in 1789?", "answer": " If the University of North Carolina at Chapel Hill had not been chartered in 1789, it might not have become one of the oldest public universities in the United States, potentially affecting its historical significance and development.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of North Carolina at Chapel Hill"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of North Carolina at Chapel Hill"}, {"qid": 4829, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which public university in North Carolina has the earliest charter?", "answer": " The University of North Carolina at Chapel Hill has the earliest charter among public universities in North Carolina, chartered in 1789.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of North Carolina at Chapel Hill"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of North Carolina at Chapel Hill"}, {"qid": 4830, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the location of the University of North Carolina at Chapel Hill relate to its name?", "answer": " The University of North Carolina at Chapel Hill is named after its location in Chapel Hill, North Carolina.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of North Carolina at Chapel Hill"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of North Carolina at Chapel Hill"}, {"qid": 4831, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of the University of North Carolina at Chapel Hill compare to the founding years of other universities in North Carolina?", "answer": " The University of North Carolina at Chapel Hill, chartered in 1789, has an earlier founding year than other universities in North Carolina.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of North Carolina at Chapel Hill"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of North Carolina at Chapel Hill"}, {"qid": 4832, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of North Carolina at Chapel Hill decided to significantly increase its staff number, how might this impact the university?", "answer": " If the University of North Carolina at Chapel Hill significantly increased its staff number, it could improve student support and research capabilities, but might also require additional funding and resources.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of North Carolina at Chapel Hill"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of North Carolina at Chapel Hill"}, {"qid": 4833, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest public university in the United States based on its charter year?", "answer": " Based on its charter year of 1789, the University of North Carolina at Chapel Hill is one of the oldest public universities in the United States.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of North Carolina at Chapel Hill"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of North Carolina at Chapel Hill"}, {"qid": 4834, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the significance of the University of North Carolina at Chapel Hill's charter year in the context of American higher education history?", "answer": " The charter year of 1789 signifies the University of North Carolina at Chapel Hill's early contribution to American higher education, marking it as one of the first public universities in the nation and setting a precedent for public higher education.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of North Carolina at Chapel Hill"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of North Carolina at Chapel Hill"}, {"qid": 4835, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to private universities established before 1800, how does the University of North Carolina at Chapel Hill's start year stand?", "answer": " The University of North Carolina at Chapel Hill, with its start year in 1789, was established around the same historical period as some private universities before 1800, making it one of the earliest higher education institutions in the United States, whether public or private.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of North Carolina at Chapel Hill"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of North Carolina at Chapel Hill"}, {"qid": 4836, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What could be the potential consequences if the University of North Carolina at Chapel Hill were to relocate to a different city in North Carolina?", "answer": " Relocating the University of North Carolina at Chapel Hill to a different city in North Carolina could disrupt the university community, require significant logistical and financial resources, and alter its historical connection to Chapel Hill.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of North Carolina at Chapel Hill"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of North Carolina at Chapel Hill"}, {"qid": 4837, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of Johns Hopkins University compare to that of Stanford University, which was founded in 1885?", "answer": " Johns Hopkins University was founded earlier, in 1876.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Johns Hopkins University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Johns Hopkins University"}, {"qid": 4838, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Who was the first president of Johns Hopkins University?", "answer": " Daniel Coit Gilman.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Johns Hopkins University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Johns Hopkins University"}, {"qid": 4839, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How is the location of Johns Hopkins University's main campus related to its graduate campuses abroad?", "answer": " The main campus is located in Baltimore, Maryland, while it has graduate campuses in Italy and China, demonstrating its international presence.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Johns Hopkins University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Johns Hopkins University"}, {"qid": 4840, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Johns Hopkins University decided to open another campus in South America, how would this compare to its existing international campuses?", "answer": " It would be its first campus in South America, expanding its international campus presence beyond Italy, China, and Washington, D.C.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Johns Hopkins University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Johns Hopkins University"}, {"qid": 4841, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the staff number of Johns Hopkins University compare to that of Harvard University?", "answer": " This comparison requires specific data on staff numbers from both universities, which can fluctuate over time.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Johns Hopkins University"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "Johns Hopkins University"}, {"qid": 4842, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the rank of Johns Hopkins University in terms of oldest universities in the United States?", "answer": " Johns Hopkins University, founded in 1876, is not the oldest; universities like Harvard, founded in 1636, are older.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Johns Hopkins University"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "Johns Hopkins University"}, {"qid": 4843, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How is the founding of Johns Hopkins University connected to the development of graduate education in the U.S.?", "answer": " Johns Hopkins University, being the first American university based on the European research institution model, played a pivotal role in emphasizing graduate education and research in the U.S.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Johns Hopkins University"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "Johns Hopkins University"}, {"qid": 4844, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Johns Hopkins University were to double its staff number, how would this impact its position among private universities in the U.S. in terms of staff size?", "answer": " Doubling the staff number could significantly increase its ranking in terms of staff size among private universities in the U.S., depending on the current staff sizes of other institutions.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Johns Hopkins University"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "Johns Hopkins University"}, {"qid": 4845, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the number of international campuses of Johns Hopkins University compare with that of New York University?", "answer": " Both universities have multiple international campuses, but specific numbers can vary.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Johns Hopkins University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Johns Hopkins University"}, {"qid": 4846, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest campus of Johns Hopkins University?", "answer": " The original and main campus located in Baltimore, Maryland.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Johns Hopkins University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Johns Hopkins University"}, {"qid": 4847, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the research output of Johns Hopkins University relate to its founding principle as a research institution?", "answer": " The university's high research output and innovative contributions across various fields are a direct manifestation of its founding principle to advance knowledge through research.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Johns Hopkins University"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "Johns Hopkins University"}, {"qid": 4848, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Johns Hopkins University were to establish a new research center for climate change, how would this align with its historical commitment to research?", "answer": " Establishing a research center for climate change would align closely with its historical commitment to leading and innovating in research, expanding its contributions to addressing global challenges.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Johns Hopkins University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Johns Hopkins University"}, {"qid": 4849, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What was the name of the Scottish merchant whose bequest in 1813 established the precursor to McGill University?", "answer": " James McGill", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["McGill University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "McGill University"}, {"qid": 4850, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What year did McGill University officially change its name from McGill College?", "answer": " 1885", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["McGill University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "McGill University"}, {"qid": 4851, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "When was McGill University founded, making it one of the oldest universities in Canada?", "answer": " 1821", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["McGill University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "McGill University"}, {"qid": 4852, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Which city is McGill University located in?", "answer": " Montreal, Quebec, Canada", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["McGill University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "McGill University"}, {"qid": 4853, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If James McGill had not made his bequest in 1813, what might have been the fate of the university that bears his name?", "answer": " It might not have been established or could have been delayed significantly.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["McGill University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "McGill University"}, {"qid": 4854, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of McGill University compare to that of the University of Toronto?", "answer": " McGill University was founded in 1821, whereas the University of Toronto was founded earlier, in 1827.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["McGill University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "McGill University"}, {"qid": 4855, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the primary language of instruction at McGill University?", "answer": " English", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["McGill University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "McGill University"}, {"qid": 4856, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Who was the president of McGill University as of the knowledge cutoff date in 2023?", "answer": " This answer would require current information as of 2023, which cannot be provided in this format.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["McGill University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "McGill University"}, {"qid": 4857, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If McGill University decided to open a new campus, what city might they consider based on its significance to Canadian education and culture?", "answer": " This is speculative and would depend on various factors including strategic priorities and available resources.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["McGill University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "McGill University"}, {"qid": 4858, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What distinguishes McGill University's medical faculty compared to other Canadian universities?", "answer": " McGill University's medical faculty is one of the oldest in Canada and has a distinguished history of medical research and education.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["McGill University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "McGill University"}, {"qid": 4859, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to Harvard University, how does McGill University's founding year stand?", "answer": " McGill University was founded in 1821, which is later than Harvard University's founding year of 1636.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["McGill University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "McGill University"}, {"qid": 4860, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How many staff members are employed at McGill University as of the most recent data available?", "answer": " This answer would require specific and current data, which cannot be provided in this format.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["McGill University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "McGill University"}, {"qid": 4861, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What was the role of Thomas Jefferson in the foundation of the University of Virginia?", "answer": " Thomas Jefferson founded the University of Virginia, designed its original courses of study, and its architecture.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Virginia"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Virginia"}, {"qid": 4862, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How is the University of Virginia connected to three U.S. Presidents?", "answer": " The University of Virginia's original governing Board of Visitors included Thomas Jefferson, James Madison, and James Monroe, with the latter being the sitting president at the time of its foundation. Jefferson and Madison also served as the first two rectors.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Virginia"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Virginia"}, {"qid": 4863, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What UNESCO World Heritage Site is contained within the University of Virginia?", "answer": " Thomas Jefferson's Academical Village.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Virginia"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Virginia"}, {"qid": 4864, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Who was the founding president of the University of Virginia?", "answer": " Thomas Jefferson.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Virginia"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Virginia"}, {"qid": 4865, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest part of the University of Virginia's campus?", "answer": " Thomas Jefferson's Academical Village.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Virginia"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Virginia"}, {"qid": 4866, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the foundation year of the University of Virginia compare to the presidency of James Monroe?", "answer": " The University of Virginia was founded in 1819, during the presidency of James Monroe.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Virginia"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Virginia"}, {"qid": 4867, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What are the names of the professional schools at the University of Virginia?", "answer": " The School of Law, the Darden School of Business, and the School of Medicine.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Virginia"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Virginia"}, {"qid": 4868, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Thomas Jefferson had not founded the University of Virginia, how might the architecture and courses of study differ today?", "answer": " Without Thomas Jefferson's influence, the University of Virginia might have different architectural designs and courses of study, as he was instrumental in designing both.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Virginia"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Virginia"}, {"qid": 4869, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What role did James Madison and James Monroe play in the establishment of the University of Virginia?", "answer": " James Madison and James Monroe were part of the original governing Board of Visitors, with Madison serving as one of the university's first two rectors and Monroe being a sitting president at the time of its foundation.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Virginia"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Virginia"}, {"qid": 4870, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What makes the University of Virginia's campus unique compared to other universities?", "answer": " The University of Virginia's campus is unique because it contains Thomas Jefferson's Academical Village, a UNESCO World Heritage Site.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Virginia"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Virginia"}, {"qid": 4871, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to its founding, how has the scope of the University of Virginia's academic programs changed?", "answer": " Since its founding, the University of Virginia has expanded from its original courses of study designed by Thomas Jefferson to include eight undergraduate and three professional schools.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Virginia"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Virginia"}, {"qid": 4872, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Virginia had not been founded by Thomas Jefferson in 1819, what impact might that have had on higher education in Virginia?", "answer": " If the University of Virginia had not been founded by Thomas Jefferson in 1819, it might have delayed the development of higher education in Virginia, potentially affecting the state's educational landscape and architecture.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Virginia"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Virginia"}, {"qid": 4873, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of Purdue University compare to the founding year of Indiana University?", "answer": " Purdue University was founded in 1869, while Indiana University was founded earlier in 1820.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Purdue University"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "Purdue University"}, {"qid": 4874, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Is the staff number at Purdue University more or less than at the University of Illinois?", "answer": " This would require current staff numbers for both universities, which are not provided in the initial information.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Purdue University"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "Purdue University"}, {"qid": 4875, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest building on Purdue University's West Lafayette campus?", "answer": " University Hall is one of the oldest buildings, constructed as part of the original campus.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Purdue University"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "Purdue University"}, {"qid": 4876, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Who was the first president of Purdue University?", "answer": " Richard Owen served as the first president of Purdue University, starting in 1872.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Purdue University"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "Purdue University"}, {"qid": 4877, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How did John Purdue contribute to the establishment of Purdue University?", "answer": " John Purdue donated land and money to establish a college of science, technology, and agriculture.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Purdue University"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "Purdue University"}, {"qid": 4878, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What disciplines did Purdue University initially focus on according to its founding mission?", "answer": " The university initially focused on science, technology, and agriculture.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Purdue University"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "Purdue University"}, {"qid": 4879, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does Purdue University's land-grant status influence its research and academic programs?", "answer": " As a land-grant university, Purdue focuses on practical agriculture, science, and engineering disciplines, aiming to make higher education accessible and serve the public interest.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Purdue University"], "topic_level": false, "class": "sing entity", "hops": "Multi Hops", "entity": "Purdue University"}, {"qid": 4880, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What might have happened if John Purdue had not donated land and money for the university?", "answer": " Without John Purdue's donation, the establishment of the university could have been delayed or located elsewhere.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Purdue University"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "Purdue University"}, {"qid": 4881, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Purdue University decided to focus exclusively on agriculture today, how would its academic programs change?", "answer": " The university would likely reduce or eliminate programs not related to agriculture, significantly altering its research and academic landscape.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Purdue University"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "Purdue University"}, {"qid": 4882, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What could be the impact on student enrollment if Purdue University tripled its research funding in technology?", "answer": " Tripling research funding in technology could attract more students interested in tech fields, potentially increasing enrollment in those areas.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Purdue University"], "topic_level": false, "class": "sing entity", "hops": "Multi Hops", "entity": "Purdue University"}, {"qid": 4883, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "How would the founding year of Purdue University being in the 20th century instead of 1869 affect its historical significance?", "answer": " Founding in the 20th century would make Purdue University a younger institution, possibly impacting its development timeline and legacy in science and technology education.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Purdue University"], "topic_level": false, "class": "sing entity", "hops": "Multi Hops", "entity": "Purdue University"}, {"qid": 4884, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the location of Purdue University in West Lafayette, Indiana, contribute to its research and educational missions?", "answer": " The location provides a central position in the Midwest, facilitating agricultural research and collaboration with industries and other educational institutions in the region.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Purdue University"], "topic_level": false, "class": "sing entity", "hops": "Multi Hops", "entity": "Purdue University"}, {"qid": 4885, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest university in the University of Colorado system?", "answer": " University of Colorado Boulder", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Colorado Boulder"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Colorado Boulder"}, {"qid": 4886, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How is CU Boulder classified in terms of research activity?", "answer": " R1", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Colorado Boulder"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Colorado Boulder"}, {"qid": 4887, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which university became a member of the Association of American Universities from Colorado?", "answer": " University of Colorado Boulder", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Colorado Boulder"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Colorado Boulder"}, {"qid": 4888, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does CU Boulder's founding year compare to when Colorado became a state?", "answer": " CU Boulder was founded five months before Colorado became a state.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Colorado Boulder"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Colorado Boulder"}, {"qid": 4889, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between CU Boulder and the state of Colorado in terms of timing?", "answer": " CU Boulder was founded five months before Colorado became a state.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Colorado Boulder"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Colorado Boulder"}, {"qid": 4890, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If CU Boulder were to open a new research center, how would it likely be classified based on its current research activity classification?", "answer": " Very high research activity", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Colorado Boulder"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Colorado Boulder"}, {"qid": 4891, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What makes CU Boulder the flagship university of the University of Colorado system?", "answer": " It is the oldest and most prestigious university in the system.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Colorado Boulder"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Colorado Boulder"}, {"qid": 4892, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Where does CU Boulder rank in terms of research activity among universities in the United States?", "answer": " It is classified among R1", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Colorado Boulder"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Colorado Boulder"}, {"qid": 4893, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If a new faculty is to be added to CU Boulder, how would it fit into the university's status as a member of the Association of American Universities?", "answer": " It would likely enhance CU Boulder's contributions to innovative research and education.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Colorado Boulder"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Colorado Boulder"}, {"qid": 4894, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does CU Boulder's admission to the Association of American Universities compare to other Colorado universities?", "answer": " CU Boulder is the only Colorado university in the Association of American Universities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Colorado Boulder"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Colorado Boulder"}, {"qid": 4895, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What relationship does CU Boulder have with the city it is located in?", "answer": " It is located in Boulder, Colorado, making it an integral part of the city's identity.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Colorado Boulder"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Colorado Boulder"}, {"qid": 4896, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If CU Boulder were to significantly increase its staff number, how might that affect its classification among research universities?", "answer": " An increase in staff could potentially enhance its research capabilities and maintain or improve its R1 classification.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Colorado Boulder"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Colorado Boulder"}, {"qid": 4897, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the name of the university located in Coral Gables, Florida that is known for its research focus?", "answer": " The University of Miami", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Miami"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Miami"}, {"qid": 4898, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "In which city is the University of Miami's Miller School of Medicine located?", "answer": " Miami", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Miami"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Miami"}, {"qid": 4899, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How many colleges and schools does the University of Miami have as of 2023?", "answer": " Ten", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Miami"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Miami"}, {"qid": 4900, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the largest academic unit within the University of Miami based on the number of academic majors and programs?", "answer": " The College of Arts and Sciences", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Miami"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Miami"}, {"qid": 4901, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Which has more students enrolled as of 2023, the Miller School of Medicine or the law school at the University of Miami?", "answer": " The Miller School of Medicine", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Miami"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Miami"}, {"qid": 4902, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Where is the Rosenstiel School of Marine, Atmospheric, and Earth Science of the University of Miami located?", "answer": " Virginia Key", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Miami"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Miami"}, {"qid": 4903, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Miami decided to open a new school focusing on renewable energy, in which existing facility might it be located based on current research focuses?", "answer": " The Rosenstiel School of Marine, Atmospheric, and Earth Science", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Miami"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Miami"}, {"qid": 4904, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which school within the University of Miami offers the widest range of academic majors and programs as of 2023?", "answer": " The College of Arts and Sciences", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Miami"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Miami"}, {"qid": 4905, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Between the main campus and the Rosenstiel School, which location hosts more research facilities for the University of Miami?", "answer": " The main campus", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Miami"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Miami"}, {"qid": 4906, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How is the University of Miami referred to in terms of its abbreviation and nicknames?", "answer": " UM, UMiami, Miami, U of M, and The U", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Miami"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Miami"}, {"qid": 4907, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the University of Miami's rank in terms of student enrollment size within Florida as of 2023?", "answer": " Information not provided", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Miami"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Miami"}, {"qid": 4908, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Miami were to establish a new research facility in renewable energy, which existing academic unit could potentially administer it?", "answer": " The Rosenstiel School of Marine, Atmospheric, and Earth Science", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Miami"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Miami"}, {"qid": 4909, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest campus of Pennsylvania State University?", "answer": " The University Park campus, founded in 1855.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Pennsylvania State University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Pennsylvania State University"}, {"qid": 4910, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How is Pennsylvania State University related to the concept of land-grant universities?", "answer": " Pennsylvania State University was named the state's first land-grant university in 1863.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Pennsylvania State University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Pennsylvania State University"}, {"qid": 4911, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the staff number at Pennsylvania State University compare to that of a smaller public university in Pennsylvania?", "answer": " Pennsylvania State University has a significantly larger staff number due to its multiple campuses and extensive research facilities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Pennsylvania State University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Pennsylvania State University"}, {"qid": 4912, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Pennsylvania State University had not been named the state's first land-grant university, how might its focus and educational offerings differ today?", "answer": " Without the land-grant designation, Pennsylvania State University might have focused less on agricultural and mechanical education and more on liberal arts or other non-land-grant academic disciplines.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Pennsylvania State University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Pennsylvania State University"}, {"qid": 4913, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What year marks the founding of the first land-grant university in Pennsylvania?", "answer": " 1855, with the founding of what would become Pennsylvania State University.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Pennsylvania State University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Pennsylvania State University"}, {"qid": 4914, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Describe the relationship between Pennsylvania State University's founding and the Morrill Land-Grant Acts.", "answer": " Pennsylvania State University, founded in 1855, was later designated as a land-grant university in 1863, benefiting from the Morrill Land-Grant Acts aimed at funding educational institutions by granting federally controlled land to the states.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Pennsylvania State University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Pennsylvania State University"}, {"qid": 4915, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the historical significance of Pennsylvania State University's land-grant status compare to that of its research contributions in the 20th century?", "answer": " The land-grant status established a foundation for agricultural and mechanical education, which was significant for its time, whereas the university's 20th-century research contributions have had a broader impact across various fields, highlighting a shift from primarily agricultural to diverse research endeavors.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Pennsylvania State University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Pennsylvania State University"}, {"qid": 4916, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What if Pennsylvania State University had expanded into an online university in the early 2000s, how would its global presence compare to its current state?", "answer": " An early expansion into online education would likely have significantly increased its global presence and accessibility, potentially making it a leader in online higher education well before many of its peers.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Pennsylvania State University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Pennsylvania State University"}, {"qid": 4917, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the largest college within Pennsylvania State University by enrollment?", "answer": " The College of Liberal Arts is one of the largest colleges by enrollment at Pennsylvania State University.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Pennsylvania State University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Pennsylvania State University"}, {"qid": 4918, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What role does Pennsylvania State University play in the Big Ten Conference?", "answer": " Pennsylvania State University is a member of the Big Ten Conference, participating in a wide range of intercollegiate athletics and competitions.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Pennsylvania State University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Pennsylvania State University"}, {"qid": 4919, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compare the research output of Pennsylvania State University to that of a similarly sized institution in the Big Ten Conference.", "answer": " Pennsylvania State University's research output is comparable to other similarly sized institutions in the Big Ten Conference, with all being significant contributors to academic research in various fields.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Pennsylvania State University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Pennsylvania State University"}, {"qid": 4920, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Pennsylvania State University had been established in a major city like Philadelphia instead of State College, how might its development and campus life have differed?", "answer": " If located in a major city like Philadelphia, Pennsylvania State University might have developed with a greater emphasis on urban studies, public policy, and possibly less focus on agriculture. Campus life would likely be more urban-centric with greater access to city amenities and professional opportunities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Pennsylvania State University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Pennsylvania State University"}, {"qid": 4921, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "When was the University of Oregon founded, and how does this compare to other public universities in Oregon in terms of founding years?", "answer": " The University of Oregon was founded in 1876, making it one of the oldest public universities in Oregon.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Oregon"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Oregon"}, {"qid": 4922, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between the University of Oregon and the Oregon Institute of Marine Biology?", "answer": " The Oregon Institute of Marine Biology is a location of the University of Oregon, specializing in marine biology research.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Oregon"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Oregon"}, {"qid": 4923, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the size of the University of Oregon's staff compare to that of similar public research universities in the Pacific Northwest?", "answer": " The size of the University of Oregon's staff is competitive with similar public research universities in the Pacific Northwest, though specific numbers may vary.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Oregon"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Oregon"}, {"qid": 4924, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would happen if the University of Oregon decided to consolidate its Portland locations into one campus?", "answer": " If the University of Oregon decided to consolidate its Portland locations, it might lead to a more centralized operation in Portland, potentially affecting accessibility for students and the distribution of resources.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Oregon"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Oregon"}, {"qid": 4925, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which location of the University of Oregon is the newest?", "answer": " Specific information on the newest location of the University of Oregon is not provided, but the university has expanded over time with locations in Eugene, Portland, Charleston, and Central Oregon.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Oregon"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Oregon"}, {"qid": 4926, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the University of Oregon's Pine Mountain Observatory contribute to its research capabilities?", "answer": " The Pine Mountain Observatory, being a part of the University of Oregon, enhances the university's research capabilities by providing a facility for astronomical observation and research.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Oregon"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Oregon"}, {"qid": 4927, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the University of Oregon's founding year compare with the establishment of Oregon State University?", "answer": " The University of Oregon was founded in 1876, while Oregon State University was established earlier, in 1868, making OSU older than UO.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Oregon"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Oregon"}, {"qid": 4928, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Oregon were to open another location, what factors would likely influence its decision on where to locate?", "answer": " Factors would likely include the needs of the student population, geographical diversity, specialization of academic programs, and opportunities for research partnerships.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Oregon"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Oregon"}, {"qid": 4929, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest building on the University of Oregon's main campus in Eugene?", "answer": " Deady Hall is one of the oldest buildings on the University of Oregon's main campus in Eugene, completed in 1876.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Oregon"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Oregon"}, {"qid": 4930, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What role does the University of Oregon play in Eugene's community?", "answer": " The University of Oregon plays a significant role in Eugene's community as a major employer, a center for cultural and sporting events, and a hub for academic and research excellence.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Oregon"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Oregon"}, {"qid": 4931, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "In terms of research output, how does the University of Oregon compare to the University of Washington?", "answer": " The University of Oregon and the University of Washington both have strong research outputs, though UW, being a larger institution, may have a broader scope of research activities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Oregon"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Oregon"}, {"qid": 4932, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would be the impact on the University of Oregon if it significantly increased its research funding in renewable energy technologies?", "answer": " Increasing research funding in renewable energy technologies could position the University of Oregon as a leader in this field, potentially leading to advancements in technology, increased grant opportunities, and collaboration with industry.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Oregon"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Oregon"}, {"qid": 4933, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of Washington University in St. Louis compare to the University of Missouri?", "answer": " Washington University in St. Louis was founded in 1853, whereas the University of Missouri was founded earlier, in 1839.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Washington University in St. Louis"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Washington University in St. Louis"}, {"qid": 4934, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Who was the first president of Washington University in St. Louis?", "answer": " The first president of Washington University in St. Louis was Wayman Crow.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Washington University in St. Louis"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Washington University in St. Louis"}, {"qid": 4935, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Why is Washington University in St. Louis named after George Washington?", "answer": " Washington University in St. Louis is named after George Washington, the first president of the United States, to honor his legacy and contributions to the country.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Washington University in St. Louis"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Washington University in St. Louis"}, {"qid": 4936, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would happen if Washington University in St. Louis decided to move its primary campus to another state?", "answer": " If Washington University in St. Louis decided to move its primary campus to another state, it would likely face significant logistical, financial, and regulatory challenges, potentially impacting its identity, community ties, and student enrollment.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Washington University in St. Louis"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Washington University in St. Louis"}, {"qid": 4937, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the staff number of Washington University in St. Louis compare to that of Harvard University?", "answer": " As of my last update, Washington University in St. Louis had a smaller number of staff compared to Harvard University, which is one of the largest employers in Massachusetts.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Washington University in St. Louis"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Washington University in St. Louis"}, {"qid": 4938, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest building on the campus of Washington University in St. Louis?", "answer": " The oldest building on the Washington University in St. Louis campus is Cupples I, built in 1900.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Washington University in St. Louis"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Washington University in St. Louis"}, {"qid": 4939, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the location of Washington University in St. Louis contribute to its research capabilities?", "answer": " The location of Washington University in St. Louis, situated in a major urban center, facilitates collaborations with numerous hospitals, research institutions, and industries, thereby enhancing its research capabilities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Washington University in St. Louis"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Washington University in St. Louis"}, {"qid": 4940, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Washington University in St. Louis had been named after another historical figure, how might that have influenced its identity?", "answer": " If Washington University in St. Louis had been named after another historical figure, its identity and possibly its mission or values might have been influenced by the legacy and values associated with that figure, potentially altering its branding and perception.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Washington University in St. Louis"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Washington University in St. Louis"}, {"qid": 4941, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the endowment size of Washington University in St. Louis compare to that of Stanford University?", "answer": " Washington University in St. Louis has a smaller endowment size compared to Stanford University, which is known for having one of the largest endowments among higher education institutions in the United States.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Washington University in St. Louis"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Washington University in St. Louis"}, {"qid": 4942, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most popular undergraduate major at Washington University in St. Louis?", "answer": " As of my last update, one of the most popular undergraduate majors at Washington University in St. Louis was Psychology.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Washington University in St. Louis"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Washington University in St. Louis"}, {"qid": 4943, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What role does the location of Washington University in St. Louis play in attracting students from across the country?", "answer": " The location of Washington University in St. Louis, in a culturally rich and diverse city with a variety of educational and professional opportunities, plays a significant role in attracting students from across the country seeking a comprehensive education in a vibrant urban setting.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Washington University in St. Louis"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Washington University in St. Louis"}, {"qid": 4944, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What if Washington University in St. Louis established a new campus in Asia, what impact could it have on its global presence?", "answer": " If Washington University in St. Louis established a new campus in Asia, it could significantly enhance its global presence, attract a more diverse student body, and expand its research and academic collaborations internationally.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Washington University in St. Louis"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Washington University in St. Louis"}, {"qid": 4945, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What year was the University of Wisconsin–Madison founded, and how does it compare to the founding years of other major universities in the United States?", "answer": " The University of Wisconsin–Madison was founded in 1848, making it one of the older major universities in the United States, though there are several, like Harvard University founded in 1636, that are older.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Wisconsin–Madison"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Wisconsin–Madison"}, {"qid": 4946, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Who is the current president of the University of Wisconsin–Madison?", "answer": " As of the knowledge cutoff in 2023, the president of the University of Wisconsin System is not a title used; the leadership is instead designated to the Chancellor of UW–Madison, a position that can change and should be looked up for current information.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Wisconsin–Madison"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Wisconsin–Madison"}, {"qid": 4947, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the staff number at the University of Wisconsin–Madison compare to that of the University of Michigan?", "answer": " The University of Wisconsin–Madison and the University of Michigan both have large staffs, with numbers that can vary year by year. Specific numbers should be looked up for current comparisons, but both are among the largest public universities in terms of staff in the United States.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Wisconsin–Madison"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Wisconsin–Madison"}, {"qid": 4948, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Wisconsin–Madison were to open a new campus, how might that affect its staff numbers?", "answer": " Opening a new campus would likely increase the University of Wisconsin–Madison's staff numbers as additional faculty, administration, and support staff would be needed to operate and maintain the new campus facilities and academic programs.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Wisconsin–Madison"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Wisconsin–Madison"}, {"qid": 4949, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the location of the University of Wisconsin–Madison and how does it rank in terms of campus size compared to other Big Ten universities?", "answer": " The University of Wisconsin–Madison is located in Madison, Wisconsin. In terms of campus size, it is one of the larger campuses within the Big Ten Conference, though specific rankings can vary depending on how campus size is measured (total acreage vs. usable space, for example).", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Wisconsin–Madison"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Wisconsin–Madison"}, {"qid": 4950, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What impact has the University of Wisconsin–Madison had on the local Madison economy?", "answer": " The University of Wisconsin–Madison has a significant positive impact on the local Madison economy through employment (being one of the largest employers in the area), student spending, university purchasing, research grants, and the attraction of businesses and professionals to the area.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Wisconsin–Madison"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Wisconsin–Madison"}, {"qid": 4951, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compare the research output of the University of Wisconsin–Madison with that of Stanford University.", "answer": " Both the University of Wisconsin–Madison and Stanford University are renowned for their research outputs, consistently ranking high nationally and internationally across various disciplines. The specific comparison in research output can vary by field, but both are considered leading research institutions.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Wisconsin–Madison"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Wisconsin–Madison"}, {"qid": 4952, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Wisconsin–Madison were to significantly increase its research budget, what areas might see the most development?", "answer": " If the University of Wisconsin–Madison were to significantly increase its research budget, areas that might see the most development could include biotechnology, engineering, computer sciences, and renewable energy, reflecting current global research trends and the university's existing strengths.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Wisconsin–Madison"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Wisconsin–Madison"}, {"qid": 4953, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which department at the University of Wisconsin–Madison has received the most research funding in the past year?", "answer": " The specific department at the University of Wisconsin–Madison that received the most research funding in the past year can vary, but departments like Medicine, Engineering, and Life Sciences often receive substantial research funding due to the high demand and potential impact of their research.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Wisconsin–Madison"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Wisconsin–Madison"}, {"qid": 4954, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the University of Wisconsin–Madison's approach to interdisciplinary studies enhance its academic offerings?", "answer": " The University of Wisconsin–Madison's approach to interdisciplinary studies enhances its academic offerings by encouraging collaboration across different departments and fields, leading to innovative research and teaching methods, broadening the scope of academic programs, and preparing students for complex real-world problems.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Wisconsin–Madison"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Wisconsin–Madison"}, {"qid": 4955, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the student to faculty ratio at the University of Wisconsin–Madison compare to that of the University of California, Berkeley?", "answer": " The student to faculty ratio at the University of Wisconsin–Madison and the University of California, Berkeley are both relatively low compared to many public universities, indicating a commitment to small class sizes and direct interaction between students and faculty. Specific ratios can vary by year and should be looked up for current information.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Wisconsin–Madison"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Wisconsin–Madison"}, {"qid": 4956, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What might be the long-term effects on the University of Wisconsin–Madison if it were to consistently rank as the top public university in the United States?", "answer": " If the University of Wisconsin–Madison were to consistently rank as the top public university in the United States, it might see long-term effects such as increased applications and selectivity, greater research funding opportunities, enhanced reputation and prestige, and stronger alumni support and donations.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Wisconsin–Madison"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Wisconsin–Madison"}, {"qid": 4957, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Which has more staff, Rice University or a typical small liberal arts college?", "answer": " Rice University", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Rice University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Rice University"}, {"qid": 4958, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest research university in Houston, Texas?", "answer": " Rice University", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Rice University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Rice University"}, {"qid": 4959, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How is Rice University related to the Texas Medical Center?", "answer": " Rice University is adjacent to the Texas Medical Center.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Rice University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Rice University"}, {"qid": 4960, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Rice University decided to expand its campus, what nearby area might it consider for expansion?", "answer": " The Houston Museum District", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Rice University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Rice University"}, {"qid": 4961, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to universities established in the 21st century, how does the founding year of Rice University compare?", "answer": " Rice University was founded earlier.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Rice University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Rice University"}, {"qid": 4962, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which university in Houston has the largest campus area?", "answer": " Rice University", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Rice University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Rice University"}, {"qid": 4963, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the location of Rice University benefit its engineering students in terms of proximity to industry?", "answer": " It's close to the Texas Medical Center, offering opportunities in biomedical engineering and related fields.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Rice University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Rice University"}, {"qid": 4964, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Rice University were to open a new research institute, which nearby facility would likely collaborate with it?", "answer": " The Houston Museum District or the Texas Medical Center", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Rice University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Rice University"}, {"qid": 4965, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Is Rice University larger in campus size than the average university in the United States?", "answer": " Yes", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Rice University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Rice University"}, {"qid": 4966, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most distinctive feature of Rice University's campus compared to other universities in Texas?", "answer": " Its adjacency to both the Houston Museum District and the Texas Medical Center", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Rice University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Rice University"}, {"qid": 4967, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the significance of Rice University's founding year in the context of higher education in Texas?", "answer": " It marks the establishment of one of the earliest research universities in Texas.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Rice University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Rice University"}, {"qid": 4968, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would be the impact on Rice University's staff numbers if it decided to significantly expand its research in renewable energy?", "answer": " The staff numbers would likely increase to support the expanded research efforts.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Rice University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Rice University"}, {"qid": 4969, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest campus of Georgia Tech?", "answer": " The main campus in Atlanta, Georgia, established in 1885.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Georgia Tech"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Georgia Tech"}, {"qid": 4970, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How is Georgia Tech related to the University System of Georgia?", "answer": " Georgia Tech is a part of the University System of Georgia.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Georgia Tech"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Georgia Tech"}, {"qid": 4971, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the Atlanta campus of Georgia Tech compare to its satellite campuses in terms of establishment date?", "answer": " The Atlanta campus is the oldest, established in 1885, compared to its later-established satellite campuses.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Georgia Tech"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Georgia Tech"}, {"qid": 4972, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which location of Georgia Tech has the highest number of staff?", "answer": " The main campus in Atlanta, Georgia.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Georgia Tech"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Georgia Tech"}, {"qid": 4973, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Who is the president of Georgia Tech?", "answer": " The answer would depend on the current date as this position changes over time.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Georgia Tech"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Georgia Tech"}, {"qid": 4974, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Georgia Tech were to open another international campus, how would it compare to the existing ones in terms of start year?", "answer": " It would be the newest and established after the current campuses in Savannah, Metz, Shenzhen, and Singapore.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Georgia Tech"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Georgia Tech"}, {"qid": 4975, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Comparing the satellite campuses, which one was established first after the main campus?", "answer": " The Savannah, Georgia campus.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Georgia Tech"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Georgia Tech"}, {"qid": 4976, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most recent international campus opened by Georgia Tech?", "answer": " Without specific opening years provided for each international campus in the prompt, the answer would be speculative based on the provided locations", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Georgia Tech"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Georgia Tech"}, {"qid": 4977, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the role of the president at Georgia Tech?", "answer": " The president serves as the chief executive officer of the Institute, overseeing all academic and administrative operations.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Georgia Tech"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Georgia Tech"}, {"qid": 4978, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Georgia Tech were to double its staff number, how many staff members would it have?", "answer": " The answer would depend on the current number of staff members at the time of the question.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Georgia Tech"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Georgia Tech"}, {"qid": 4979, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the staff number at the Atlanta campus compare to its satellite campuses?", "answer": " The Atlanta campus has a larger number of staff members compared to any of its satellite campuses.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Georgia Tech"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Georgia Tech"}, {"qid": 4980, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which Georgia Tech campus is located furthest from Atlanta?", "answer": " Without specific distances provided in the prompt, the answer would be speculative. However, considering the locations mentioned, the Singapore campus could be considered the furthest from Atlanta.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Georgia Tech"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Georgia Tech"}, {"qid": 4981, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the primary type of research activity classification for the University of California, Irvine?", "answer": " R1", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Irvine"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of California, Irvine"}, {"qid": 4982, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "When did the University of California, Irvine join the Association of American Universities?", "answer": " 1996", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Irvine"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of California, Irvine"}, {"qid": 4983, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How many undergraduate degrees does the University of California, Irvine offer?", "answer": " 87", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Irvine"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of California, Irvine"}, {"qid": 4984, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the total number of graduate and professional degrees offered by the University of California, Irvine?", "answer": " 129", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Irvine"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of California, Irvine"}, {"qid": 4985, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What was the research and development expenditure of the University of California, Irvine in 2021?", "answer": " $523.7 million", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Irvine"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of California, Irvine"}, {"qid": 4986, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How many undergraduates were enrolled at the University of California, Irvine as of Fall 2019?", "answer": " Approximately 30,000", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Irvine"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of California, Irvine"}, {"qid": 4987, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How many graduate students were enrolled at the University of California, Irvine as of Fall 2019?", "answer": " Approximately 6,000", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Irvine"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of California, Irvine"}, {"qid": 4988, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the enrollment of undergraduate students at the University of California, Irvine compare to its graduate students as of Fall 2019?", "answer": " There were approximately 30,000 undergraduates and 6,000 graduate students, indicating a higher number of undergraduates.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Irvine"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "University of California, Irvine"}, {"qid": 4989, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the location of the University of California, Irvine?", "answer": " Irvine, California", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Irvine"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of California, Irvine"}, {"qid": 4990, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What are the types of degrees the University of California, Irvine offers?", "answer": " Undergraduate, graduate, and professional degrees", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Irvine"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of California, Irvine"}, {"qid": 4991, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of California, Irvine were to add a new undergraduate program, how many undergraduate degrees would it then offer?", "answer": " 88", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Irvine"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of California, Irvine"}, {"qid": 4992, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the status of the University of California, Irvine within the University of California system in terms of its founding year?", "answer": " It is one of the ten campuses of the University of California system.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Irvine"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of California, Irvine"}, {"qid": 4993, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the largest public university by area in the state of New York?", "answer": " Stony Brook University", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Stony Brook University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Stony Brook University"}, {"qid": 4994, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Where is Stony Brook University located?", "answer": " Stony Brook, New York", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Stony Brook University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Stony Brook University"}, {"qid": 4995, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the starting year of Stony Brook University?", "answer": " 1957", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Stony Brook University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Stony Brook University"}, {"qid": 4996, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Who is the president of Stony Brook University?", "answer": " The current president as of the last update, but specific name is not provided in the initial information.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Stony Brook University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Stony Brook University"}, {"qid": 4997, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Between Stony Brook University and the University at Buffalo, which are the flagship institutions of the State University of New York system?", "answer": " Both Stony Brook University and the University at Buffalo", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Stony Brook University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Stony Brook University"}, {"qid": 4998, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "How many acres does the campus of the largest public university in New York state cover?", "answer": " Over 1,454 acres", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Stony Brook University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Stony Brook University"}, {"qid": 4999, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "In which county is Stony Brook University located?", "answer": " Suffolk County", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Stony Brook University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Stony Brook University"}, {"qid": 5000, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Stony Brook University decided to open a new college, how many buildings would the campus have in total?", "answer": " 214 buildings, assuming no other buildings are added or removed in the process.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Stony Brook University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Stony Brook University"}, {"qid": 5001, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between Stony Brook University and the State University of New York system?", "answer": " Stony Brook University is one of the flagship institutions of the State University of New York system.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Stony Brook University"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "Stony Brook University"}, {"qid": 5002, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the president of Stony Brook University were to resign, who would typically take over the duties temporarily?", "answer": " The Provost or a Vice President, depending on the university's succession plan.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Stony Brook University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Stony Brook University"}, {"qid": 5003, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which university has the most buildings in the State University of New York system?", "answer": " Stony Brook University, with 213 buildings.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Stony Brook University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Stony Brook University"}, {"qid": 5004, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How many staff members are there at Stony Brook University?", "answer": " The specific number of staff members is not provided in the initial information.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Stony Brook University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Stony Brook University"}, {"qid": 5005, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Which was founded first, Western Reserve University or Case Institute of Technology?", "answer": " Western Reserve University", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Case Western Reserve University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Case Western Reserve University"}, {"qid": 5006, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest component of Case Western Reserve University?", "answer": " Western Reserve University", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Case Western Reserve University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Case Western Reserve University"}, {"qid": 5007, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Why is Case Western Reserve University located in Cleveland, Ohio?", "answer": " It is located in Cleveland, Ohio because it was founded in the Connecticut Western Reserve area, and the Case Institute of Technology was also established in Cleveland through the endowment of Leonard Case Jr.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Case Western Reserve University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Case Western Reserve University"}, {"qid": 5008, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the federation between Western Reserve University and Case Institute of Technology did not happen in 1967, would there still be a Case Western Reserve University today?", "answer": " No, without the federation of the two institutions in 1967, there would not be a Case Western Reserve University as we know it today.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Case Western Reserve University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Case Western Reserve University"}, {"qid": 5009, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Between Western Reserve University and Case Institute of Technology, which had the larger student body at the time of their federation?", "answer": " The question's answer is not directly provided in the provided text.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Case Western Reserve University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Case Western Reserve University"}, {"qid": 5010, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What year marks the beginning of the entity now known as Case Western Reserve University?", "answer": " 1967", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Case Western Reserve University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Case Western Reserve University"}, {"qid": 5011, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the founding of Western Reserve University in 1826 relate to the location choice for Case Western Reserve University?", "answer": " The founding of Western Reserve University in 1826 in the Connecticut Western Reserve area influenced the location choice of Case Western Reserve University in Cleveland, Ohio, as it was a continuation and expansion of educational institutions in that region.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Case Western Reserve University"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "Case Western Reserve University"}, {"qid": 5012, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What might have been the impact on Cleveland's educational landscape if Leonard Case Jr. had not endowed the Case Institute of Technology in 1880?", "answer": " Without Leonard Case Jr.'s endowment, Cleveland might have had one less technological and research institution, potentially impacting the city's development as a center for education and innovation.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Case Western Reserve University"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "Case Western Reserve University"}, {"qid": 5013, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Comparing the founding years, which institution became a part of Case Western Reserve University later, Western Reserve University or Case Institute of Technology?", "answer": " Case Institute of Technology, founded in 1880, became a part of Case Western Reserve University later than Western Reserve University, which was founded in 1826.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Case Western Reserve University"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "Case Western Reserve University"}, {"qid": 5014, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which founding has had a longer lasting impact on Case Western Reserve University's development, Western Reserve University or Case Institute of Technology?", "answer": " The question's answer is not directly provided in the provided text.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Case Western Reserve University"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "Case Western Reserve University"}, {"qid": 5015, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How did the federation of Western Reserve University and Case Institute of Technology in 1967 influence the university's approach to research and education?", "answer": " The federation of Western Reserve University and Case Institute of Technology in 1967 combined the strengths of both institutions, likely enhancing the university's approach to research and education by leveraging the historical focus on liberal arts and technology.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Case Western Reserve University"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "Case Western Reserve University"}, {"qid": 5016, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Case Western Reserve University decided to split back into Western Reserve University and Case Institute of Technology, how might this affect the university's staff numbers?", "answer": " Splitting back into Western Reserve University and Case Institute of Technology could potentially affect the university's staff numbers by requiring a reorganization and possible duplication of administrative and academic positions to support two separate institutions.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Case Western Reserve University"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "Case Western Reserve University"}, {"qid": 5017, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between the University of California, Santa Cruz and the University of California system?", "answer": " The University of California, Santa Cruz is one of the ten campuses in the University of California system.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Santa Cruz"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of California, Santa Cruz"}, {"qid": 5018, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the location of the University of California, Santa Cruz contribute to its campus environment?", "answer": " Located on Monterey Bay, on the edge of the coastal community of Santa Cruz, the main campus lies on 2,001 acres of rolling, forested hills overlooking the Pacific Ocean, contributing to a unique campus environment.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Santa Cruz"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of California, Santa Cruz"}, {"qid": 5019, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What feature of the University of California, Santa Cruz makes it unique among the University of California campuses?", "answer": " Its location on Monterey Bay with 2,001 acres of rolling, forested hills overlooking the Pacific Ocean makes it unique among the University of California campuses.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Santa Cruz"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of California, Santa Cruz"}, {"qid": 5020, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the undergraduate enrollment at the University of California, Santa Cruz for Fall 2023 compare to its graduate enrollment?", "answer": " As of Fall 2023, the undergraduate enrollment at the University of California, Santa Cruz is 17,812, which is significantly higher than its graduate enrollment of 1,952.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Santa Cruz"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of California, Santa Cruz"}, {"qid": 5021, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the largest satellite facility of the University of California, Santa Cruz in terms of research and educational space?", "answer": " The question does not provide enough specific information to determine which of the satellite facilities (the Coastal Science Campus, the Westside Research Park, or the Silicon Valley Center in Santa Clara) is the largest in terms of research and educational space.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Santa Cruz"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "University of California, Santa Cruz"}, {"qid": 5022, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the Coastal Science Campus contribute to the University of California, Santa Cruz's educational and research missions?", "answer": " The Coastal Science Campus, as a satellite facility, contributes to the University of California, Santa Cruz's educational and research missions by providing specialized facilities and resources for coastal science studies and research projects.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Santa Cruz"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "University of California, Santa Cruz"}, {"qid": 5023, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of California, Santa Cruz were to open an eleventh residential college, how might this affect student enrollment numbers?", "answer": " Opening an eleventh residential college could potentially increase student enrollment numbers by offering more housing and resources, thereby accommodating more students.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Santa Cruz"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of California, Santa Cruz"}, {"qid": 5024, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What impact would the establishment of a new research institute at the University of California, Santa Cruz have on its academic reputation?", "answer": " The establishment of a new research institute could positively impact its academic reputation by enhancing research capabilities, attracting renowned faculty, and offering more research opportunities to students.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Santa Cruz"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of California, Santa Cruz"}, {"qid": 5025, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the staff number at the University of California, Santa Cruz compare to its student body size in Fall 2023?", "answer": " The question does not provide specific information on the staff number to accurately compare it to the student body size of 17,812 undergraduates and 1,952 graduates in Fall 2023.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Santa Cruz"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of California, Santa Cruz"}, {"qid": 5026, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What role does the Silicon Valley Center play in the University of California, Santa Cruz’s connection with the technology industry?", "answer": " The Silicon Valley Center in Santa Clara serves as a bridge between the University of California, Santa Cruz and the technology industry by facilitating collaborations, research, and educational programs that engage with the tech industry.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Santa Cruz"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "University of California, Santa Cruz"}, {"qid": 5027, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Among the satellite facilities of the University of California, Santa Cruz, which one is most directly involved with technological research and innovation?", "answer": " The Silicon Valley Center in Santa Clara is the satellite facility of the University of California, Santa Cruz most directly involved with technological research and innovation.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Santa Cruz"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "University of California, Santa Cruz"}, {"qid": 5028, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of California, Santa Cruz were to significantly expand its Coastal Science Campus, how might this impact its research capabilities in marine sciences?", "answer": " Significantly expanding its Coastal Science Campus could greatly enhance the University of California, Santa Cruz's research capabilities in marine sciences by providing more space, resources, and opportunities for in-depth studies and projects in marine and coastal research.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Santa Cruz"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "University of California, Santa Cruz"}, {"qid": 5029, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the founding year of the oldest campus in the University of California system that UC Riverside is part of?", "answer": " 1868", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Riverside"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, Riverside"}, {"qid": 5030, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the size rank of UC Riverside's main campus among the ten University of California campuses?", "answer": " It varies based on specific metrics, but UC Riverside's main campus is one of the larger ones with 1,900 acres.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Riverside"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, Riverside"}, {"qid": 5031, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How is UC Riverside connected to the UC Citrus Experiment Station?", "answer": " UC Riverside was founded as the successor to the UC Citrus Experiment Station.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Riverside"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, Riverside"}, {"qid": 5032, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to other University of California campuses, how does the founding year of UC Riverside rank?", "answer": " UC Riverside, with its predecessor founded in 1907, is among the younger campuses in the University of California system.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Riverside"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of California, Riverside"}, {"qid": 5033, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What was the UC Citrus Experiment Station's role in the development of UC Riverside?", "answer": " The UC Citrus Experiment Station, founded in 1907, played a pivotal role as the precursor to UC Riverside, laying the groundwork for its establishment.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Riverside"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, Riverside"}, {"qid": 5034, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If UC Riverside was to open another branch campus, based on its current locations, where might it logically consider expanding?", "answer": " Given its history and existing locations, a logical expansion could be in areas related to agriculture or technology within California.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Riverside"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, Riverside"}, {"qid": 5035, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which campus within the University of California system is located furthest south?", "answer": " UC San Diego", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Riverside"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, Riverside"}, {"qid": 5036, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the acreage of UC Riverside's main campus compare to that of UC Berkeley?", "answer": " UC Riverside's main campus is larger with 1,900 acres compared to UC Berkeley's approximately 1,232 acres.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Riverside"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, Riverside"}, {"qid": 5037, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the significance of the branch campus in Palm Desert for UC Riverside?", "answer": " The 20-acre branch campus in Palm Desert extends UC Riverside's educational and research missions into the Coachella Valley.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Riverside"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, Riverside"}, {"qid": 5038, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If UC Riverside were to lead a new research initiative in sustainable agriculture, how might it build upon its history with the UC Citrus Experiment Station?", "answer": " UC Riverside could leverage its historical strengths and pioneering work in biological pest control and the use of growth regulators from the UC Citrus Experiment Station era to innovate in sustainable agriculture.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Riverside"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, Riverside"}, {"qid": 5039, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to when it was founded, how has the focus of UC Riverside expanded beyond its original mission?", "answer": " Since its founding as the UC Citrus Experiment Station, UC Riverside has broadened its mission from agricultural research to include a wide range of disciplines in both the sciences and humanities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Riverside"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, Riverside"}, {"qid": 5040, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the newest campus in the University of California system?", "answer": " UC Merced, founded in 2005", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Riverside"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, Riverside"}, {"qid": 5041, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What was the original name of Indiana University Bloomington when it was established in 1820?", "answer": " The state's seminary", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Indiana University Bloomington"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "Indiana University Bloomington"}, {"qid": 5042, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "In what year did the original seminary change its name to \"Indiana College\"?", "answer": " 1829", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Indiana University Bloomington"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "Indiana University Bloomington"}, {"qid": 5043, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the final name change that the institution received in 1838?", "answer": " Indiana University", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Indiana University Bloomington"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "Indiana University Bloomington"}, {"qid": 5044, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the largest campus of Indiana University?", "answer": " Indiana University Bloomington", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Indiana University Bloomington"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "Indiana University Bloomington"}, {"qid": 5045, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How many students approximately study at Indiana University Bloomington?", "answer": " Over 40,000 students", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Indiana University Bloomington"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "Indiana University Bloomington"}, {"qid": 5046, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the student population of Indiana University Bloomington compare to its other campuses?", "answer": " It has the largest student population among all its campuses.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Indiana University Bloomington"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "Indiana University Bloomington"}, {"qid": 5047, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What led to the establishment of Indiana University Bloomington in 1820?", "answer": " It was established as the state's seminary.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Indiana University Bloomington"], "topic_level": false, "class": "sing entity", "hops": "Multi Hops", "entity": "Indiana University Bloomington"}, {"qid": 5048, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What might have happened if Indiana University had not changed its name from \"Indiana College\" to \"Indiana University\" in 1838?", "answer": " It might have continued to be perceived as a college rather than a full-fledged university.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Indiana University Bloomington"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "Indiana University Bloomington"}, {"qid": 5049, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which campus is considered the flagship campus of Indiana University?", "answer": " Indiana University Bloomington", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Indiana University Bloomington"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "Indiana University Bloomington"}, {"qid": 5050, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "When did Indiana University Bloomington gain the \"University\" status in its name?", "answer": " In 1838", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Indiana University Bloomington"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "Indiana University Bloomington"}, {"qid": 5051, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Indiana University Bloomington were to change its name again, what might be a reason for doing so?", "answer": " To better reflect its mission, expansion, or new direction.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Indiana University Bloomington"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "Indiana University Bloomington"}, {"qid": 5052, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What distinguishes Indiana University Bloomington in terms of student population size from other Indiana University campuses?", "answer": " It has the highest number of students.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Indiana University Bloomington"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "Indiana University Bloomington"}, {"qid": 5053, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between Jonas Gilman Clark and Clark University?", "answer": " Jonas Gilman Clark is the namesake and a prominent businessman who provided a large endowment for the founding of Clark University.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Clark University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Clark University"}, {"qid": 5054, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "When was Clark University founded in relation to other private research universities in the United States?", "answer": " Clark University was founded in 1887, making it one of the first modern research universities in the United States.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Clark University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Clark University"}, {"qid": 5055, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to its founding year, when did Clark University first admit undergraduate students?", "answer": " Clark University, founded in 1887, first admitted undergraduate students in 1902.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Clark University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Clark University"}, {"qid": 5056, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How did Clark University transition to include women in its student body?", "answer": " Clark University first enrolled women in 1942, marking its transition to a coeducational institution.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Clark University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Clark University"}, {"qid": 5057, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Jonas Gilman Clark had not provided the endowment for Clark University, what might have been different about its founding?", "answer": " Without Jonas Gilman Clark's endowment, Clark University might not have been founded as one of the first modern research universities in the United States.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Clark University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Clark University"}, {"qid": 5058, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What makes Clark University's location in Worcester, Massachusetts significant compared to other private research universities?", "answer": " Clark University's location in Worcester, Massachusetts, is significant as it is one of the first modern research universities in the United States, contributing to the city's academic and cultural landscape.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Clark University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Clark University"}, {"qid": 5059, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the role of Jonas Gilman Clark in the founding of Clark University compare to the role of benefactors in other private universities?", "answer": " Jonas Gilman Clark's role as a benefactor who provided a large endowment for the founding of Clark University is similar to the role of benefactors at other private universities, although the specific impact and conditions of his contribution are unique to Clark.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Clark University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Clark University"}, {"qid": 5060, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the significance of Clark University's founding date in the context of its academic offerings?", "answer": " The founding date of Clark University in 1887 is significant as it highlights its status as one of the first modern research universities in the United States, with a focus on graduate education initially before expanding to undergraduate programs.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Clark University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Clark University"}, {"qid": 5061, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Clark University had not transitioned to a coeducational institution in 1942, how might its student demographics be different today?", "answer": " If Clark University had not become a coeducational institution in 1942, its student demographics today might have been predominantly male, significantly impacting the diversity and inclusivity of the university community.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Clark University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Clark University"}, {"qid": 5062, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the earliest change in the student body composition at Clark University compared to the inclusion of women and undergraduates?", "answer": " The earliest change in the student body composition at Clark University was the admission of undergraduate students in 1902, which predates the inclusion of women in 1942.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Clark University"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "Clark University"}, {"qid": 5063, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of Clark University compare with the year it first admitted undergraduates in terms of its evolution as an educational institution?", "answer": " Clark University's founding year of 1887 marks its establishment as a modern research university, while the admission of the first undergraduates in 1902 signifies a significant evolution towards a broader educational institution.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Clark University"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "Clark University"}, {"qid": 5064, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the connection between Clark University's original focus on graduate education and its later decision to admit undergraduate students?", "answer": " Clark University's original focus on graduate education reflects its foundation as a research institution, and its later decision to admit undergraduate students in 1902 marks an expansion of its academic mission to provide a more comprehensive education.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Clark University"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "Clark University"}, {"qid": 5065, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relation between Paul Tulane and Tulane University?", "answer": " Paul Tulane provided endowments that led to the institution becoming a private university named after him in 1884.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Tulane University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Tulane University"}, {"qid": 5066, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How did Tulane University originate from the Medical College of Louisiana?", "answer": " Tulane University was founded as the Medical College of Louisiana in 1834 and evolved into a comprehensive university.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Tulane University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Tulane University"}, {"qid": 5067, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which is the oldest law school, Tulane University Law School or another law school founded in 1850?", "answer": " Tulane University Law School, being the 12th oldest law school in the United States, is older than a law school founded in 1850.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Tulane University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Tulane University"}, {"qid": 5068, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What makes Tulane University Medical School stand out in terms of its founding year among medical schools in the United States?", "answer": " Tulane University Medical School is the 15th oldest medical school in the United States, highlighting its long history and establishment in the field of medical education.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Tulane University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Tulane University"}, {"qid": 5069, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of Tulane University compare to Harvard University?", "answer": " Tulane University was founded in 1834, making it younger than Harvard University, which was established in 1636.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Tulane University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Tulane University"}, {"qid": 5070, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Is the Tulane University Medical School older than the Tulane University Law School?", "answer": " No, the Tulane University Law School is older as it is the 12th oldest law school in the United States, whereas the Medical School is the 15th oldest.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Tulane University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Tulane University"}, {"qid": 5071, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Tulane University had not received endowments from Paul Tulane, what might have been different about its status?", "answer": " Without the endowments from Paul Tulane, the university might not have become a private institution named after him in 1884.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Tulane University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Tulane University"}, {"qid": 5072, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would happen if Tulane University decided to revert to a public university today?", "answer": " If Tulane University decided to revert to a public university, it would likely undergo significant changes in governance, funding, and possibly tuition structure.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Tulane University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Tulane University"}, {"qid": 5073, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the endowment by Josephine Louise Newcomb relate to Tulane University's development?", "answer": " Josephine Louise Newcomb's endowment led to the foundation of the H. Sophie Newcomb Memorial College within Tulane University, significantly contributing to its development.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Tulane University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Tulane University"}, {"qid": 5074, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which is the older educational institution, Tulane University or the University of Michigan?", "answer": " The University of Michigan, founded in 1817, is older than Tulane University, which was founded in 1834.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Tulane University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Tulane University"}, {"qid": 5075, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to universities founded in the 20th century, how does Tulane University's founding year stand?", "answer": " As Tulane University was founded in 1834, it is significantly older than universities founded in the 20th century.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Tulane University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Tulane University"}, {"qid": 5076, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Tulane University never transitioned to a private university, how might its academic and financial landscape differ today?", "answer": " Had Tulane University remained a public institution, it might have different funding sources, possibly more state support, potentially lower tuition fees, and different governance structures.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Tulane University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Tulane University"}, {"qid": 5077, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the start year of the University of Nebraska–Lincoln compare to the start year of Harvard University?", "answer": " The University of Nebraska–Lincoln was founded in 1869, while Harvard University was founded in 1636, making Harvard older.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Nebraska–Lincoln"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Nebraska–Lincoln"}, {"qid": 5078, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Who was the first president of the University of Nebraska–Lincoln?", "answer": " Allen R. Benton was the first president of the University of Nebraska–Lincoln.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Nebraska–Lincoln"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Nebraska–Lincoln"}, {"qid": 5079, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What relationship does the University of Nebraska–Lincoln have with the city of Lincoln?", "answer": " The University of Nebraska–Lincoln is located in the city of Lincoln, Nebraska, making the city its home and integral part of its identity.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Nebraska–Lincoln"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Nebraska–Lincoln"}, {"qid": 5080, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Nebraska–Lincoln had to relocate, how would its relationship with the city of Lincoln change?", "answer": " If the University of Nebraska–Lincoln had to relocate, its relationship with the city of Lincoln would change significantly, losing its direct geographical and community connection.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Nebraska–Lincoln"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Nebraska–Lincoln"}, {"qid": 5081, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the maximum number of staff that has ever been employed at the University of Nebraska–Lincoln?", "answer": " The University of Nebraska–Lincoln has employed thousands of staff members over the years, but specific peak numbers would require current or historical staff data.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Nebraska–Lincoln"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Nebraska–Lincoln"}, {"qid": 5082, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the staff number at the University of Nebraska–Lincoln relate to its student population size?", "answer": " The staff number at the University of Nebraska–Lincoln supports its student population size by providing education, administration, and services necessary for a large university.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Nebraska–Lincoln"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Nebraska–Lincoln"}, {"qid": 5083, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the location of the University of Nebraska–Lincoln compare to the University of Nebraska at Omaha in terms of their city's population size?", "answer": " The University of Nebraska–Lincoln is located in Lincoln, which has a smaller population size compared to Omaha, where the University of Nebraska at Omaha is located.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Nebraska–Lincoln"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Nebraska–Lincoln"}, {"qid": 5084, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would happen to the University of Nebraska–Lincoln's staff number if it significantly expanded its campus?", "answer": " If the University of Nebraska–Lincoln significantly expanded its campus, it is likely that the staff number would increase to meet the needs of the larger campus and student body.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Nebraska–Lincoln"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Nebraska–Lincoln"}, {"qid": 5085, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest building on the campus of the University of Nebraska–Lincoln?", "answer": " The oldest building on the campus of the University of Nebraska–Lincoln is University Hall, constructed in 1869.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Nebraska–Lincoln"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Nebraska–Lincoln"}, {"qid": 5086, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of the University of Nebraska–Lincoln compare to the founding year of the Massachusetts Institute of Technology (MIT)?", "answer": " The University of Nebraska–Lincoln was founded in 1869, while the Massachusetts Institute of Technology (MIT) was founded in 1861, making MIT older.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Nebraska–Lincoln"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Nebraska–Lincoln"}, {"qid": 5087, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the University of Nebraska–Lincoln's mission relate to the needs of its home state?", "answer": " The University of Nebraska–Lincoln's mission relates to the needs of its home state by focusing on education, research, and outreach that benefit Nebraska's economy, culture, and social fabric.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Nebraska–Lincoln"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Nebraska–Lincoln"}, {"qid": 5088, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Nebraska–Lincoln were to become the largest university by enrollment in the United States, what changes would need to occur?", "answer": " If the University of Nebraska–Lincoln were to become the largest university by enrollment in the United States, significant expansions in infrastructure, staff, and resources would be necessary to accommodate and support the increased student population.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Nebraska–Lincoln"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Nebraska–Lincoln"}, {"qid": 5089, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the start year of Rutgers University–New Brunswick compare to the founding year of Princeton University?", "answer": " Rutgers University–New Brunswick was founded in 1766, while Princeton University was founded earlier in 1746.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Rutgers University–New Brunswick"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Rutgers University–New Brunswick"}, {"qid": 5090, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Who was the first president of Rutgers University–New Brunswick?", "answer": " Jacob Rutsen Hardenbergh was the first president of Rutgers University–New Brunswick.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Rutgers University–New Brunswick"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Rutgers University–New Brunswick"}, {"qid": 5091, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What role does the president of Rutgers University–New Brunswick play in its administration?", "answer": " The president of Rutgers University–New Brunswick oversees the entire university's administration, policies, and strategic direction.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Rutgers University–New Brunswick"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Rutgers University–New Brunswick"}, {"qid": 5092, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would happen if Rutgers University–New Brunswick decided to move its location to another state?", "answer": " If Rutgers University–New Brunswick decided to move its location to another state, it would involve extensive logistical, legal, and financial challenges, potentially affecting its identity, student population, and historical ties to New Jersey.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Rutgers University–New Brunswick"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Rutgers University–New Brunswick"}, {"qid": 5093, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest part of Rutgers University–New Brunswick?", "answer": " The Queens Campus is the oldest part of Rutgers University–New Brunswick, dating back to the university's founding in 1766.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Rutgers University–New Brunswick"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Rutgers University–New Brunswick"}, {"qid": 5094, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the staff number of Rutgers University–New Brunswick compare to that of Harvard University?", "answer": " Rutgers University–New Brunswick has a staff number that is generally smaller than Harvard University's, considering Harvard's larger endowment and broader research scope.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Rutgers University–New Brunswick"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Rutgers University–New Brunswick"}, {"qid": 5095, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between Rutgers University–New Brunswick and the Big Ten Conference?", "answer": " Rutgers University–New Brunswick is a member of the Big Ten Conference, indicating its participation in a collegiate athletic conference comprising major research universities in the United States.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Rutgers University–New Brunswick"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Rutgers University–New Brunswick"}, {"qid": 5096, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Rutgers University–New Brunswick were to establish a new campus, what factors would need to be considered?", "answer": " Establishing a new campus for Rutgers University–New Brunswick would require consideration of factors such as location, funding, academic programs, faculty recruitment, and the impact on student life and local communities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Rutgers University–New Brunswick"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Rutgers University–New Brunswick"}, {"qid": 5097, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the newest college within Rutgers University–New Brunswick?", "answer": " The Honors College, established in 2015, is among the newest initiatives within Rutgers University–New Brunswick catering to high-achieving students.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Rutgers University–New Brunswick"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Rutgers University–New Brunswick"}, {"qid": 5098, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does Rutgers University–New Brunswick's founding year compare to that of Columbia University?", "answer": " Rutgers University–New Brunswick was founded in 1766, which is later than Columbia University's founding year of 1754.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Rutgers University–New Brunswick"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Rutgers University–New Brunswick"}, {"qid": 5099, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the location of Rutgers University–New Brunswick influence its academic programs?", "answer": " The location of Rutgers University–New Brunswick in central New Jersey, near major urban centers like New York City and Philadelphia, influences its academic programs by offering rich opportunities for research collaborations, internships, and cultural experiences.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Rutgers University–New Brunswick"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Rutgers University–New Brunswick"}, {"qid": 5100, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Rutgers University–New Brunswick were to double its staff number, how might that impact the student-to-faculty ratio?", "answer": " If Rutgers University–New Brunswick were to double its staff number, it could significantly decrease the student-to-faculty ratio, potentially leading to smaller class sizes and more personalized attention for students.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Rutgers University–New Brunswick"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Rutgers University–New Brunswick"}, {"qid": 5101, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Which university had Mary Sue Coleman serve as president for a longer duration, the University of Michigan or the University of Iowa?", "answer": " The University of Michigan", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Mary Sue Coleman"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Mary Sue Coleman"}, {"qid": 5102, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What was the earliest university presidency held by Mary Sue Coleman?", "answer": " The University of Iowa", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Mary Sue Coleman"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Mary Sue Coleman"}, {"qid": 5103, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How did Mary Sue Coleman's role change at the University of Michigan between 2002 and 2022?", "answer": " She served as the 13th president from 2002 to 2014 and then as interim president in 2022.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Mary Sue Coleman"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Mary Sue Coleman"}, {"qid": 5104, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Mary Sue Coleman had not been the interim president in 2022, who might have taken the role at the University of Michigan?", "answer": " This is hypothetical and cannot be answered definitively without speculation.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Mary Sue Coleman"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Mary Sue Coleman"}, {"qid": 5105, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compare the duration of Mary Sue Coleman's presidency at the University of Michigan to her tenure at the University of Iowa.", "answer": " She served longer at the University of Michigan (2002 to 2014) than at the University of Iowa (1995 to 2002).", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Mary Sue Coleman"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Mary Sue Coleman"}, {"qid": 5106, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "During which presidency did Mary Sue Coleman serve the longest period?", "answer": " The University of Michigan", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Mary Sue Coleman"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Mary Sue Coleman"}, {"qid": 5107, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Describe how Mary Sue Coleman's academic career transitioned from chemistry to academic administration.", "answer": " Mary Sue Coleman, originally a chemist, transitioned to academic administration, culminating in presidencies at the University of Iowa and the University of Michigan.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Mary Sue Coleman"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Mary Sue Coleman"}, {"qid": 5108, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Mary Sue Coleman had chosen to remain in chemistry, what impact might that have had on the University of Michigan's leadership?", "answer": " The University of Michigan would have had a different individual as its 13th president, potentially altering its administrative and academic directions.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Mary Sue Coleman"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Mary Sue Coleman"}, {"qid": 5109, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Which of Mary Sue Coleman's university presidencies involved her managing a larger staff, the University of Michigan or the University of Iowa?", "answer": " The University of Michigan, due to its larger size and scope compared to the University of Iowa.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Mary Sue Coleman"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Mary Sue Coleman"}, {"qid": 5110, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most significant academic leadership position held by Mary Sue Coleman?", "answer": " President of the University of Michigan", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Mary Sue Coleman"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Mary Sue Coleman"}, {"qid": 5111, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How did Mary Sue Coleman’s presidency at the University of Michigan impact its global standing?", "answer": " Her presidency likely enhanced its reputation through initiatives and leadership, though specific impacts would require detailed analysis.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Mary Sue Coleman"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Mary Sue Coleman"}, {"qid": 5112, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Mary Sue Coleman had extended her presidency at the University of Iowa instead of moving to the University of Michigan, how might the University of Iowa's direction have changed?", "answer": " The University of Iowa might have continued and possibly expanded upon the initiatives and directions she valued, though specific outcomes are speculative.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Mary Sue Coleman"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Mary Sue Coleman"}, {"qid": 5113, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of the University of Washington compare to Stanford University?", "answer": " The University of Washington was founded in 1861, making it older than Stanford University, which was founded in 1885.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Washington"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Washington"}, {"qid": 5114, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest university on the West Coast of the United States?", "answer": " The University of Washington, founded in 1861.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Washington"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Washington"}, {"qid": 5115, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Who is the president of the University of Washington?", "answer": " The answer can vary over time as university presidents change.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Washington"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Washington"}, {"qid": 5116, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Washington were to move its location, how might this impact its identity as a West Coast university?", "answer": " Moving the location could impact its historical identity and affiliation with the West Coast, potentially affecting its regional reputation and connections.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Washington"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Washington"}, {"qid": 5117, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which university on the West Coast was founded first, the University of Washington or the University of California, Berkeley?", "answer": " The University of Washington was founded in 1861, earlier than the University of California, Berkeley, which was founded in 1868.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Washington"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Washington"}, {"qid": 5118, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What type of university is the University of Washington?", "answer": " The University of Washington is a public research university.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Washington"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Washington"}, {"qid": 5119, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Washington were to double its staff, how would this compare to the current staff number?", "answer": " This would result in twice the current staff number, but the exact figure can vary as staff numbers change over time.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Washington"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Washington"}, {"qid": 5120, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the location of the University of Washington compare to that of Harvard University?", "answer": " The University of Washington is located in Seattle, Washington, on the West Coast of the United States, whereas Harvard University is located in Cambridge, Massachusetts, on the East Coast.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Washington"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Washington"}, {"qid": 5121, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most defining feature of the University of Washington's location?", "answer": " Its location in Seattle, Washington, placing it as a prominent institution on the West Coast of the United States.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Washington"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Washington"}, {"qid": 5122, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the University of Washington's founding year relate to its status among other universities on the West Coast?", "answer": " Being founded in 1861, it is one of the oldest universities on the West Coast, which contributes to its historical prestige and significance in the region.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Washington"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Washington"}, {"qid": 5123, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Washington were to found a new research institute, how might this affect its staff numbers?", "answer": " Establishing a new research institute could potentially increase its staff numbers, depending on the size and scope of the institute.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Washington"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Washington"}, {"qid": 5124, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the academic reputation of the University of Washington compare to that of MIT?", "answer": " Both universities have strong academic reputations, but MIT is often ranked higher in engineering and technology, while the University of Washington is highly regarded for its medical and health sciences programs.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Washington"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Washington"}, {"qid": 5125, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest institution of higher education in Michigan?", "answer": " The University of Michigan", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Michigan"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Michigan"}, {"qid": 5126, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Where is the University of Michigan located?", "answer": " Ann Arbor, Michigan", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Michigan"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Michigan"}, {"qid": 5127, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the University of Michigan's founding year compare to other universities in the United States?", "answer": " It is one of the earliest, founded in 1817.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Michigan"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Michigan"}, {"qid": 5128, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Michigan were to open a new campus, how would its historical significance as the oldest institution in Michigan influence the location choice?", "answer": " The historical significance might influence the choice to ensure the new campus complements its tradition and prestige, possibly choosing a location with historical or strategic importance in Michigan.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Michigan"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Michigan"}, {"qid": 5129, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the University of Michigan's rank in terms of age among American research universities?", "answer": " It is one of the earliest American research universities, founded in 1817.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Michigan"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Michigan"}, {"qid": 5130, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What makes the University of Michigan a founding member of the Association of American Universities?", "answer": " Its early establishment as a research university and significant contributions to higher education.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Michigan"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Michigan"}, {"qid": 5131, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the student population at the University of Michigan in fall 2023 compare to previous years?", "answer": " It enrolled over 52,000 students, indicating growth or fluctuation compared to previous years.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Michigan"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Michigan"}, {"qid": 5132, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would happen if the University of Michigan significantly increased its staff number in 2024?", "answer": " Increasing its staff number could enhance its research capabilities, improve student support, and potentially increase its student capacity.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Michigan"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Michigan"}, {"qid": 5133, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What year was the oldest public university in Michigan founded?", "answer": " 1817", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Michigan"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Michigan"}, {"qid": 5134, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How did the University of Michigan become a member of the Association of American Universities?", "answer": " By being one of the earliest American research universities and maintaining a high standard of research and education.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Michigan"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Michigan"}, {"qid": 5135, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to other public universities in the United States, how does the University of Michigan's student enrollment in 2023 stand?", "answer": " With over 52,000 students enrolled in 2023, it stands as one of the larger student populations among public universities in the U.S.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Michigan"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Michigan"}, {"qid": 5136, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Michigan were to establish a new research institute in 2025, how might its history of being an early research university influence its focus?", "answer": " Its history might influence it to focus on pioneering or innovative research areas, continuing its legacy of leadership in American higher education.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Michigan"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Michigan"}, {"qid": 5137, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between the University of Pittsburgh and the Schenley Farms Historic District?", "answer": " The University of Pittsburgh's 132-acre Pittsburgh campus includes various historic buildings that are part of the Schenley Farms Historic District, most notably its 42-story Gothic revival centerpiece, the Cathedral of Learning.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pittsburgh"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Pittsburgh"}, {"qid": 5138, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the tallest building on the University of Pittsburgh's campus?", "answer": " The Cathedral of Learning.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pittsburgh"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Pittsburgh"}, {"qid": 5139, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the University of Pittsburgh's research classification compare to other universities?", "answer": " Pitt is classified among \"R1", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pittsburgh"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Pittsburgh"}, {"qid": 5140, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the significance of the Association of American Universities membership for the University of Pittsburgh?", "answer": " Membership in the Association of American Universities indicates that the University of Pittsburgh is recognized for its high research activity and academic excellence.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pittsburgh"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Pittsburgh"}, {"qid": 5141, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the University of Pittsburgh's rank in terms of employment in the Pittsburgh metropolitan area?", "answer": " It is the second-largest non-government employer in the Pittsburgh metropolitan area.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pittsburgh"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Pittsburgh"}, {"qid": 5142, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the University of Pittsburgh contribute to the local economy?", "answer": " As the second-largest non-government employer in the Pittsburgh metropolitan area, the University of Pittsburgh significantly contributes to the local economy.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pittsburgh"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Pittsburgh"}, {"qid": 5143, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the Cathedral of Learning needed renovation, how might it affect the University of Pittsburgh's operations?", "answer": " Renovation of the Cathedral of Learning could affect the University of Pittsburgh's operations by requiring the relocation of some classes and offices, potentially disrupting normal campus activities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pittsburgh"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Pittsburgh"}, {"qid": 5144, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to other universities, how does the University of Pittsburgh's student population size rank?", "answer": " With around 28,000 undergraduate and graduate students, the University of Pittsburgh has a significant student population, although specific rankings would require comparison data.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pittsburgh"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Pittsburgh"}, {"qid": 5145, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most notable architectural feature of the University of Pittsburgh?", "answer": " The most notable architectural feature of the University of Pittsburgh is its 42-story Gothic revival centerpiece, the Cathedral of Learning.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pittsburgh"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Pittsburgh"}, {"qid": 5146, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "In what ways does the University of Pittsburgh engage in research activities?", "answer": " The University of Pittsburgh engages in research activities through its classification among \"R1", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pittsburgh"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Pittsburgh"}, {"qid": 5147, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What might be the impact if the University of Pittsburgh were to expand its campus?", "answer": " Expanding its campus could allow the University of Pittsburgh to accommodate more students, offer more resources and facilities, potentially increase its research activities, and further contribute to the local economy.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pittsburgh"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Pittsburgh"}, {"qid": 5148, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the number of schools and colleges at the University of Pittsburgh compare to other universities?", "answer": " With 17 undergraduate and graduate schools and colleges, the University of Pittsburgh offers a wide range of academic programs, which is competitive with many other large research universities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pittsburgh"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Pittsburgh"}, {"qid": 5149, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the location of the University of Minnesota compare to the University of Wisconsin in terms of proximity to state capitals?", "answer": " The University of Minnesota is located in the Twin Cities of Minneapolis and Saint Paul, with Saint Paul being the state capital of Minnesota. This makes it directly adjacent to a state capital. The University of Wisconsin, located in Madison, is also in its state's capital. Therefore, both universities are in close proximity to their respective state capitals, but the University of Minnesota's Twin Cities campus spans across two major cities, including the state capital.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Minnesota"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Minnesota"}, {"qid": 5150, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest building on the University of Minnesota's Twin Cities campus?", "answer": " Pillsbury Hall is one of the oldest buildings on the University of Minnesota's Twin Cities campus.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Minnesota"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Minnesota"}, {"qid": 5151, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the University of Minnesota's land-grant status influence its mission and programs?", "answer": " The University of Minnesota's land-grant status influences its mission and programs by mandating a commitment to research, education, and outreach. This status ensures the university focuses on providing accessible education to residents, conducting research that benefits the community, and engaging in outreach that supports the state and its residents.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Minnesota"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Minnesota"}, {"qid": 5152, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would be the impact on research if the University of Minnesota doubled its research budget?", "answer": " Doubling the University of Minnesota's research budget would likely lead to significant advancements in various fields of study, increase the university's ability to attract and retain top faculty and researchers, expand facilities and resources for research, and potentially lead to more breakthroughs and innovations that could benefit society.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Minnesota"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Minnesota"}, {"qid": 5153, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the staff number at the University of Minnesota compare to that of Harvard University?", "answer": " The staff number at the University of Minnesota is likely to be larger due to its extensive Twin Cities campus and its status as a public land-grant institution with a wide range of programs and colleges. Harvard University, being a private Ivy League institution, may have a smaller staff size but this can vary based on the scope of departments and programs offered.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Minnesota"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Minnesota"}, {"qid": 5154, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which president served the longest term at the University of Minnesota?", "answer": " Cyrus Northrop served as the second president of the University of Minnesota from 1884 to 1911, making him the longest-serving president in the university's history.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Minnesota"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Minnesota"}, {"qid": 5155, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How has the University of Minnesota's location in the Twin Cities affected its partnerships with local industries?", "answer": " The University of Minnesota's location in the Twin Cities has facilitated strong partnerships with local industries due to the proximity to a major metropolitan area. These partnerships have led to collaborative research projects, internship opportunities for students, and the translation of university research into practical applications that benefit the local economy.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Minnesota"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Minnesota"}, {"qid": 5156, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Minnesota were to open a new campus, how might that affect its Twin Cities campus's resources and focus?", "answer": " Opening a new campus could potentially stretch the University of Minnesota's resources, leading to a reallocation of funds and possibly affecting the focus and investment in the Twin Cities campus. However, it could also lead to expanded opportunities for research, collaboration, and student enrollment, potentially enhancing the university's overall mission and impact.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Minnesota"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Minnesota"}, {"qid": 5157, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to other Big Ten universities, where does the University of Minnesota rank in terms of student population?", "answer": " The University of Minnesota often ranks near the top among Big Ten universities in terms of student population due to its large undergraduate and graduate enrollment numbers.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Minnesota"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Minnesota"}, {"qid": 5158, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most popular major at the University of Minnesota?", "answer": " Popular majors at the University of Minnesota vary by year, but fields like Business, Engineering, Biological Sciences, and Psychology often rank high in enrollment.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Minnesota"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Minnesota"}, {"qid": 5159, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What role does the University of Minnesota play in the Twin Cities' cultural and social landscape?", "answer": " The University of Minnesota plays a significant role in the Twin Cities' cultural and social landscape by contributing to the arts, sports, education, and community service initiatives. It hosts cultural events, art exhibitions, and public lectures that enrich the local community, and its sports teams bring together fans from across the region.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Minnesota"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Minnesota"}, {"qid": 5160, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What if the University of Minnesota exclusively focused on STEM fields, how would that impact its liberal arts programs?", "answer": " If the University of Minnesota exclusively focused on STEM fields, its liberal arts programs could see a reduction in funding, resources, and enrollment. This shift could potentially diminish the diversity of academic offerings and affect the university's ability to provide a well-rounded education to its students.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Minnesota"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Minnesota"}, {"qid": 5161, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest undergraduate campus in the University of California system?", "answer": " UC Berkeley", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Santa Barbara"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of California, Santa Barbara"}, {"qid": 5162, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "When did the University of California, Santa Barbara join the University of California system?", "answer": " 1944", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Santa Barbara"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of California, Santa Barbara"}, {"qid": 5163, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What type of university is the University of California, Santa Barbara?", "answer": " Public land-grant research university", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Santa Barbara"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of California, Santa Barbara"}, {"qid": 5164, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Where is the University of California, Santa Barbara located?", "answer": " Santa Barbara County, California, United States", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Santa Barbara"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of California, Santa Barbara"}, {"qid": 5165, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What was the total student enrollment at the University of California, Santa Barbara in 2022?", "answer": " 26,421 students (23,460 undergraduate and 2,961 graduate students)", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Santa Barbara"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of California, Santa Barbara"}, {"qid": 5166, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which campus in the University of California system did UCSB join after?", "answer": " UC Berkeley and UCLA", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Santa Barbara"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of California, Santa Barbara"}, {"qid": 5167, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What was UCSB's original establishment before joining the University of California system?", "answer": " Independent teachers' college", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Santa Barbara"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of California, Santa Barbara"}, {"qid": 5168, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the student enrollment number of UCSB compare to the earliest founding University of California campuses?", "answer": " UCSB has fewer students compared to some of the earlier founded UC campuses like UC Berkeley and UCLA.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Santa Barbara"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of California, Santa Barbara"}, {"qid": 5169, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If UCSB decided to expand its research departments, how might this affect its status among public universities in the future?", "answer": " It could increase its reputation and rankings among public universities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Santa Barbara"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "University of California, Santa Barbara"}, {"qid": 5170, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would be the potential impact on student enrollment if UCSB were to significantly improve its graduate programs?", "answer": " Student enrollment, especially for graduate programs, could increase.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Santa Barbara"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "University of California, Santa Barbara"}, {"qid": 5171, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What significant system did UCSB join in 1909 before becoming part of the University of California system?", "answer": " The ancestor of the California State University system", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Santa Barbara"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of California, Santa Barbara"}, {"qid": 5172, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What ranking does UCSB hold in terms of its age among the undergraduate campuses in the University of California system?", "answer": " Third-oldest", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, Santa Barbara"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of California, Santa Barbara"}, {"qid": 5173, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest land-grant institution in the United States?", "answer": " Michigan State University", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Michigan State University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Michigan State University"}, {"qid": 5174, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How did Michigan State University gain its land-grant status?", "answer": " Michigan State University was designated a land-grant institution in 1863 following the introduction of the Morrill Act in 1862.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Michigan State University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Michigan State University"}, {"qid": 5175, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Is Michigan State University older than the University of Michigan?", "answer": " No, the University of Michigan was founded in 1817, making it older than Michigan State University, which was founded in 1855.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Michigan State University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Michigan State University"}, {"qid": 5176, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the Morrill Act had not been passed, what might have happened to the development of Michigan State University?", "answer": " Without the Morrill Act, Michigan State University might not have received land-grant status, potentially impacting its development and expansion as a major public research university.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Michigan State University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Michigan State University"}, {"qid": 5177, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "When did Michigan State University first become coeducational?", "answer": " 1870", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Michigan State University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Michigan State University"}, {"qid": 5178, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What was Michigan State University's original name at its founding in 1855?", "answer": " Agricultural College of the State of Michigan", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Michigan State University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Michigan State University"}, {"qid": 5179, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the number of alumni from Michigan State University compare to smaller colleges?", "answer": " Michigan State University, with over 634,000 alumni, has a significantly larger alumni network than smaller colleges.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Michigan State University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Michigan State University"}, {"qid": 5180, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What if Michigan State University had not become a land-grant college in 1863?", "answer": " If Michigan State University had not become a land-grant college, it might not have received the federal land grants that supported its growth and development into a major research university.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Michigan State University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Michigan State University"}, {"qid": 5181, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the primary location of Michigan State University?", "answer": " East Lansing, Michigan", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Michigan State University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Michigan State University"}, {"qid": 5182, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How did Michigan State University's role in education change after becoming coeducational in 1870?", "answer": " After becoming coeducational in 1870, Michigan State University expanded its educational offerings and opportunities to both men and women, broadening its impact and inclusivity.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Michigan State University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Michigan State University"}, {"qid": 5183, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to when it was founded, how has Michigan State University's staff size changed?", "answer": " Since its founding in 1855, Michigan State University's staff size has significantly increased to support its growth in student population, academic programs, and research initiatives.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Michigan State University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Michigan State University"}, {"qid": 5184, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Michigan State University did not have facilities across the state, how might its accessibility for students change?", "answer": " Without facilities across the state, Michigan State University might be less accessible to students living far from East Lansing, potentially reducing its geographic diversity and impact.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Michigan State University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Michigan State University"}, {"qid": 5185, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the enrollment size of Ohio State University compare with other universities in the United States?", "answer": " Ohio State University is one of the largest universities by enrollment in the United States.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Ohio State University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Ohio State University"}, {"qid": 5186, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest public university in Ohio?", "answer": " Ohio State University, founded in 1870, is one of the oldest, but not necessarily the oldest as there are other contenders like Ohio University founded in 1804.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Ohio State University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Ohio State University"}, {"qid": 5187, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What relationship does Ohio State University have with the University System of Ohio?", "answer": " Ohio State University is a member of the University System of Ohio.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Ohio State University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Ohio State University"}, {"qid": 5188, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Ohio State University decided to add another college to its current lineup, how many colleges would it have?", "answer": " It would have seventeen colleges.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Ohio State University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Ohio State University"}, {"qid": 5189, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which college at Ohio State University offers the most degree programs?", "answer": " The specific college is not mentioned, but the university offers over 400 degree programs across its sixteen colleges.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Ohio State University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Ohio State University"}, {"qid": 5190, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to other universities, how does Ohio State University rank in terms of the variety of degree programs offered?", "answer": " Ohio State University offers a very high variety of degree programs, with over 400 programs, making it one of the top universities in terms of program diversity.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Ohio State University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Ohio State University"}, {"qid": 5191, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the founding year of Ohio State University relate to its status as a land-grant university?", "answer": " Its founding in 1870 as a public land-grant research university establishes its long-standing commitment to providing public education and research.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Ohio State University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Ohio State University"}, {"qid": 5192, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Ohio State University were to double its graduate student enrollment, how many graduate students would it have?", "answer": " It would have nearly 30,000 graduate students.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Ohio State University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Ohio State University"}, {"qid": 5193, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the rank of Ohio State University in terms of student body size within the United States?", "answer": " Ohio State University is one of the largest universities by enrollment in the United States.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Ohio State University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Ohio State University"}, {"qid": 5194, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the significance of Ohio State University's location in Columbus, Ohio?", "answer": " Its location in Columbus, the state capital of Ohio, places it at a strategic position for partnerships, research opportunities, and as a hub for student activities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Ohio State University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Ohio State University"}, {"qid": 5195, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the number of undergraduate students at Ohio State University compare to its number of graduate students?", "answer": " Ohio State University has nearly 50,000 undergraduate students and nearly 15,000 graduate students, indicating significantly more undergraduates than graduates.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Ohio State University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Ohio State University"}, {"qid": 5196, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Ohio State University were to expand its campus to another location, how would that affect its status within the University System of Ohio?", "answer": " It would likely maintain its status within the University System of Ohio while potentially increasing its reach and influence.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Ohio State University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Ohio State University"}, {"qid": 5197, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What was the initial purpose of establishing Northwestern University in 1851?", "answer": " The initial purpose of establishing Northwestern University was to serve the historic Northwest Territory.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Northwestern University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Northwestern University"}, {"qid": 5198, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Where is Northwestern University's main campus located in relation to Lake Michigan?", "answer": " Northwestern University's main campus is located along the shores of Lake Michigan.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Northwestern University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Northwestern University"}, {"qid": 5199, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which is the oldest chartered university in Illinois?", "answer": " Northwestern University is the oldest chartered university in Illinois.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Northwestern University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Northwestern University"}, {"qid": 5200, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "In what metropolitan area is Northwestern University's main campus situated?", "answer": " Northwestern University's main campus is situated in the Chicago metropolitan area.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Northwestern University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Northwestern University"}, {"qid": 5201, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of Northwestern University compare to other universities in Illinois?", "answer": " Northwestern University, founded in 1851, is the oldest chartered university in Illinois, making it older than other universities in the state.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Northwestern University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Northwestern University"}, {"qid": 5202, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What type of university is Northwestern University?", "answer": " Northwestern University is a private research university.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Northwestern University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Northwestern University"}, {"qid": 5203, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Northwestern University were to open another campus, how might its location be chosen based on the existing campus's location?", "answer": " If Northwestern University were to open another campus, its location might be chosen based on proximity to significant bodies of water or in a metropolitan area, similar to its existing campus along Lake Michigan in the Chicago metropolitan area.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Northwestern University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Northwestern University"}, {"qid": 5204, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What might be the impact on staff numbers if Northwestern University were to significantly expand its research facilities?", "answer": " If Northwestern University were to significantly expand its research facilities, the staff numbers might increase to support the expanded research operations.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Northwestern University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Northwestern University"}, {"qid": 5205, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to universities founded in the same era, how does Northwestern University's focus on research stand out?", "answer": " Compared to universities founded in the same era, Northwestern University's focus on research stands out due to its status as a private research university, indicating a strong emphasis on research activities and output.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Northwestern University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Northwestern University"}, {"qid": 5206, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What makes Northwestern University unique in the context of its founding purpose?", "answer": " What makes Northwestern University unique is its founding purpose to serve the historic Northwest Territory, highlighting its historical significance and mission in the context of its establishment.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Northwestern University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Northwestern University"}, {"qid": 5207, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the location of Northwestern University’s main campus influence its academic and extracurricular activities?", "answer": " The location of Northwestern University's main campus along the shores of Lake Michigan in the Chicago metropolitan area influences its academic and extracurricular activities by providing access to vast resources, opportunities for water-related activities, and connections within a major urban center.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Northwestern University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Northwestern University"}, {"qid": 5208, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Northwestern University were to establish a partnership with another academic institution in the Chicago metropolitan area, what potential benefits might arise from such a collaboration?", "answer": " If Northwestern University were to establish a partnership with another academic institution in the Chicago metropolitan area, potential benefits might include enhanced research opportunities, shared resources, expanded academic programs, and increased networking opportunities for students and faculty.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Northwestern University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Northwestern University"}, {"qid": 5209, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What was the original name of George Washington University when it was chartered in 1821?", "answer": " Columbian College", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["George Washington University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "George Washington University"}, {"qid": 5210, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "In what year was George Washington University, originally named Columbian College, chartered by the United States Congress?", "answer": " 1821", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["George Washington University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "George Washington University"}, {"qid": 5211, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which university is considered the first university to be founded under Washington, D.C.'s jurisdiction?", "answer": " George Washington University", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["George Washington University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "George Washington University"}, {"qid": 5212, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What type of university is George Washington University classified as in terms of research activity?", "answer": " A private federally-chartered research university", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["George Washington University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "George Washington University"}, {"qid": 5213, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does George Washington University's charter differ from private universities not chartered by Congress?", "answer": " George Washington University was chartered by the United States Congress, unlike other private universities that were not.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["George Washington University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "George Washington University"}, {"qid": 5214, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If George Washington University decided to revert to its original name, what would it be called today?", "answer": " Columbian College", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["George Washington University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "George Washington University"}, {"qid": 5215, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the distinction of George Washington University among other universities in terms of its founding jurisdiction?", "answer": " It is the first university founded under Washington, D.C.'s jurisdiction.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["George Washington University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "George Washington University"}, {"qid": 5216, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Considering its status as a federally chartered university, how does George Washington University's founding align with the development of higher education in the United States?", "answer": " As one of the nation's six federally chartered universities, its founding in 1821 marks an early contribution to the establishment of higher education under federal auspices in the United States.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["George Washington University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "George Washington University"}, {"qid": 5217, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of George Washington University compare to other federally chartered universities in the United States?", "answer": " George Washington University was chartered in 1821, making it one of the earliest federally chartered universities in the United States.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["George Washington University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "George Washington University"}, {"qid": 5218, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is George Washington University's ranking in terms of age among federally chartered universities in the United States?", "answer": " As it was chartered in 1821, it is among the oldest of the nation's federally chartered universities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["George Washington University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "George Washington University"}, {"qid": 5219, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the significance of George Washington University's location in Washington, D.C., for its research and educational mission?", "answer": " Being located in Washington, D.C., provides significant opportunities for research collaborations with federal agencies and access to resources unique to the nation's capital, enhancing its research and educational mission.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["George Washington University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "George Washington University"}, {"qid": 5220, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If George Washington University were to become a public institution, how would its federal charter status be affected?", "answer": " If George Washington University became a public institution, its status as a federally chartered private university would change, potentially impacting its governance structure and funding model, although the specifics would depend on the terms of such a transition.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["George Washington University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "George Washington University"}, {"qid": 5221, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest public university in the state of Illinois?", "answer": " The University of Illinois Urbana-Champaign", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Illinois Urbana-Champaign"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Illinois Urbana-Champaign"}, {"qid": 5222, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the student population of the University of Illinois Urbana-Champaign compare with other public universities in the United States?", "answer": " The University of Illinois Urbana-Champaign is one of the largest public universities by enrollment in the United States.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Illinois Urbana-Champaign"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Illinois Urbana-Champaign"}, {"qid": 5223, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which university in the University of Illinois system is the flagship institution?", "answer": " The University of Illinois Urbana-Champaign", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Illinois Urbana-Champaign"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Illinois Urbana-Champaign"}, {"qid": 5224, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the location of the University of Illinois Urbana-Champaign within Illinois compare to other universities in terms of urban vs. rural setting?", "answer": " The University of Illinois Urbana-Champaign is located in the Champaign–Urbana metropolitan area, indicating an urban setting compared to universities in rural settings.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Illinois Urbana-Champaign"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Illinois Urbana-Champaign"}, {"qid": 5225, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Illinois Urbana-Champaign was founded in 1867, how would its age compare to a university founded in 1900?", "answer": " The University of Illinois Urbana-Champaign would be older.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Illinois Urbana-Champaign"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Illinois Urbana-Champaign"}, {"qid": 5226, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What role does the University of Illinois Urbana-Champaign play in the University of Illinois system?", "answer": " It is the flagship institution.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Illinois Urbana-Champaign"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Illinois Urbana-Champaign"}, {"qid": 5227, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to other universities in the United States, where does the University of Illinois Urbana-Champaign rank in terms of student population size?", "answer": " It is one of the largest public universities by enrollment.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Illinois Urbana-Champaign"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Illinois Urbana-Champaign"}, {"qid": 5228, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What year was the earliest founding of a public university in Illinois that is still operational?", "answer": " 1867", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Illinois Urbana-Champaign"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Illinois Urbana-Champaign"}, {"qid": 5229, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Illinois Urbana-Champaign decided to increase its staff numbers, how would that affect its ranking among universities by staff size in the United States?", "answer": " It would potentially increase its ranking among universities by staff size.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Illinois Urbana-Champaign"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Illinois Urbana-Champaign"}, {"qid": 5230, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the founding year of the University of Illinois Urbana-Champaign relate to the development of land-grant universities in the United States?", "answer": " Being established in 1867, it was part of the early wave of land-grant universities developed in the United States.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Illinois Urbana-Champaign"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Illinois Urbana-Champaign"}, {"qid": 5231, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the urban setting of the University of Illinois Urbana-Champaign compare with the settings of other flagship universities in the Midwest?", "answer": " It is located in an urban setting, similar to some other flagship universities in the Midwest, but differs from those in more rural or suburban settings.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Illinois Urbana-Champaign"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Illinois Urbana-Champaign"}, {"qid": 5232, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the rank of the University of Illinois Urbana-Champaign in terms of its founding year among public universities in the United States?", "answer": " It is one of the earlier founded public universities, starting in 1867.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Illinois Urbana-Champaign"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Illinois Urbana-Champaign"}, {"qid": 5233, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest campus of the University of South Florida?", "answer": " The Tampa campus is the oldest campus of the University of South Florida.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of South Florida"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of South Florida"}, {"qid": 5234, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How is the University of South Florida related to the State University System of Florida?", "answer": " The University of South Florida is one of 12 members of the State University System of Florida.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of South Florida"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of South Florida"}, {"qid": 5235, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which campus of the University of South Florida is located in the largest city?", "answer": " The Tampa campus is located in the largest city among the University of South Florida campuses.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of South Florida"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of South Florida"}, {"qid": 5236, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What designates the University of South Florida as a Preeminent State Research University?", "answer": " The Florida Board of Governors designates the University of South Florida as one of three Preeminent State Research Universities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of South Florida"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of South Florida"}, {"qid": 5237, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which college at the University of South Florida offers the widest range of degree programs?", "answer": " It's not specified which college offers the widest range of programs, but USF offers more than 240 undergraduate, graduate, specialist, and doctoral-level degree programs across its 14 colleges.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of South Florida"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of South Florida"}, {"qid": 5238, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the research activity at the University of South Florida compare to other universities in the State University System of Florida?", "answer": " The University of South Florida is classified among \"R1", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of South Florida"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of South Florida"}, {"qid": 5239, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of South Florida decided to open a new campus, how would it potentially affect its membership in the State University System of Florida?", "answer": " If the University of South Florida decided to open a new campus, it would likely remain a member of the State University System of Florida, potentially increasing its contribution to the system through expanded educational offerings and research activities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of South Florida"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of South Florida"}, {"qid": 5240, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What role does the Commission on Colleges of the Southern Association of Colleges and Schools play in relation to the University of South Florida?", "answer": " The Commission on Colleges of the Southern Association of Colleges and Schools accredits the University of South Florida, ensuring it meets established standards for higher education.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of South Florida"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of South Florida"}, {"qid": 5241, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the highest level of degree that the University of South Florida offers?", "answer": " The University of South Florida offers doctoral-level degree programs as its highest level of degree.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of South Florida"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of South Florida"}, {"qid": 5242, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to other campuses, which University of South Florida campus has the most colleges?", "answer": " The Tampa campus, as the main campus, likely has the most colleges compared to the other University of South Florida campuses.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of South Florida"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of South Florida"}, {"qid": 5243, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of South Florida were to become the top research university in Florida, what designation might it receive?", "answer": " If the University of South Florida were to become the top research university in Florida, it might receive higher recognition or rankings among research universities and could possibly be distinguished further by the Florida Board of Governors or receive additional accolades for its research achievements.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of South Florida"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of South Florida"}, {"qid": 5244, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "In what way is the University of South Florida associated with the Association of American Universities (AAU)?", "answer": " The University of South Florida is a member of the Association of American Universities (AAU), indicating its recognition as a leading research university in the United States.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of South Florida"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of South Florida"}, {"qid": 5245, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the University of Florida's start year compare to the founding year of the University of Michigan?", "answer": " The University of Florida traces its origins to 1853, whereas the University of Michigan was founded earlier in 1817.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Florida"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Florida"}, {"qid": 5246, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest university in the State University System of Florida?", "answer": " The University of Florida is the oldest, tracing its origins to 1853.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Florida"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Florida"}, {"qid": 5247, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between the University of Florida and the State University System of Florida?", "answer": " The University of Florida is a senior member of the State University System of Florida.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Florida"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Florida"}, {"qid": 5248, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Florida decided to move its campus, how would this affect its status as the oldest continuous site of higher education in Florida since 1906?", "answer": " Moving the campus would mean the University of Florida would no longer hold the status as the oldest continuous site of higher education in Florida since 1906 on its Gainesville campus.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Florida"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Florida"}, {"qid": 5249, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Comparing the staff numbers, does the University of Florida or the University of California, Berkeley have more faculty members?", "answer": " This would require specific current staff numbers for both universities, which are not provided in the information.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Florida"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Florida"}, {"qid": 5250, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which department at the University of Florida has the highest number of research grants?", "answer": " Specific departmental research grant information is not provided in the initial information.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Florida"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Florida"}, {"qid": 5251, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the University of Florida's land-grant status influence its research priorities?", "answer": " As a land-grant university, the University of Florida's research priorities are influenced by its commitment to serve the public good, focusing on agriculture, engineering, and extension services that benefit the state and its residents.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Florida"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Florida"}, {"qid": 5252, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Florida were to establish a new campus outside of Gainesville, how would this impact its role within the State University System of Florida?", "answer": " Establishing a new campus outside of Gainesville could potentially expand the University of Florida's educational reach and influence within the State University System of Florida, depending on the programs and resources allocated to the new location.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Florida"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Florida"}, {"qid": 5253, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Is the University of Florida older than Florida State University?", "answer": " Yes, the University of Florida traces its origins to 1853, making it older than Florida State University, which was founded in 1851 as a seminary but became a university later.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Florida"], "topic_level": false, "class": "sing entity", "hops": "No hop", "entity": "University of Florida"}, {"qid": 5254, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most popular major at the University of Florida?", "answer": " Specific data on the most popular major at the University of Florida is not provided here.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Florida"], "topic_level": false, "class": "sing entity", "hops": "No hop", "entity": "University of Florida"}, {"qid": 5255, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What makes the University of Florida a land-grant university?", "answer": " The University of Florida's designation as a land-grant university comes from its commitment to providing a practical education that benefits the public, especially in fields like agriculture, science, and engineering, as part of the Morrill Act of 1862.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Florida"], "topic_level": false, "class": "sing entity", "hops": "No hop", "entity": "University of Florida"}, {"qid": 5256, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Florida had not been located in Gainesville since 1906, how might its development have differed?", "answer": " If the University of Florida had not been located in Gainesville since 1906, its development might have been influenced by different geographical, economic, and community factors, potentially leading to differences in campus size, academic focus, and community engagement.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Florida"], "topic_level": false, "class": "sing entity", "hops": "No hop", "entity": "University of Florida"}, {"qid": 5257, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of the University of Maryland, College Park compare to that of the Massachusetts Institute of Technology?", "answer": " The University of Maryland, College Park was founded in 1856, earlier than the Massachusetts Institute of Technology, which was founded in 1861.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Maryland, College Park"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Maryland, College Park"}, {"qid": 5258, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest land-grant university in the University System of Maryland?", "answer": " The University of Maryland, College Park, founded in 1856.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Maryland, College Park"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Maryland, College Park"}, {"qid": 5259, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between the University of Maryland, College Park and the University System of Maryland?", "answer": " The University of Maryland, College Park is the flagship institution of the University System of Maryland.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Maryland, College Park"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Maryland, College Park"}, {"qid": 5260, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would happen if the University of Maryland, College Park decided to become a private institution?", "answer": " It would lose its status as a public land-grant university and potentially alter its funding model, tuition rates, and admission processes.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Maryland, College Park"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Maryland, College Park"}, {"qid": 5261, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compare the student population of the University of Maryland, College Park with that of the University of California, Berkeley.", "answer": " As of my last update, specific numbers are needed for a current comparison, but historically, both institutions have large student populations, with the University of California, Berkeley often having a higher count.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Maryland, College Park"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Maryland, College Park"}, {"qid": 5262, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which university has a larger campus size, the University of Maryland, College Park, or the University of Texas at Austin?", "answer": " The University of Texas at Austin has a larger campus size compared to the University of Maryland, College Park.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Maryland, College Park"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Maryland, College Park"}, {"qid": 5263, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the research output of the University of Maryland, College Park compare to that of other institutions in the University System of Maryland?", "answer": " The University of Maryland, College Park is considered a leading research institution within the University System of Maryland, often having the highest research output.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Maryland, College Park"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Maryland, College Park"}, {"qid": 5264, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would be the impact on research funding if the University of Maryland, College Park significantly advanced its engineering programs?", "answer": " The university would likely see an increase in research funding, particularly from government and industrial partners interested in engineering advancements.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Maryland, College Park"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Maryland, College Park"}, {"qid": 5265, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the faculty size of the University of Maryland, College Park compare to that of Harvard University?", "answer": " As of my last update, specific numbers are needed for a current comparison; however, both universities have large, distinguished faculties, with Harvard typically having a higher faculty count due to its broader range of graduate programs.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Maryland, College Park"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Maryland, College Park"}, {"qid": 5266, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the highest-ranked engineering program at the University of Maryland, College Park?", "answer": " The specific ranking can vary by year and ranking source, but historically, programs like Electrical Engineering and Aerospace Engineering have been highly ranked.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Maryland, College Park"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Maryland, College Park"}, {"qid": 5267, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What role does the President of the University of Maryland, College Park serve within the institution?", "answer": " The President serves as the chief executive officer, overseeing all academic, administrative, and financial operations of the university.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Maryland, College Park"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Maryland, College Park"}, {"qid": 5268, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Maryland, College Park were to double its current number of staff, how might this affect its operations?", "answer": " Doubling the staff could enhance university operations by reducing class sizes, improving student services, and increasing research capacity, but it would also significantly increase operational costs.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Maryland, College Park"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Maryland, College Park"}, {"qid": 5269, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What type of university is the University of Arizona as classified by its founding and governance?", "answer": " The University of Arizona is a public land-grant research university governed by the Arizona Board of Regents.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Arizona"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Arizona"}, {"qid": 5270, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "When was the University of Arizona founded in relation to other universities in Arizona?", "answer": " It was the first university in the Arizona Territory, founded in 1885.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Arizona"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Arizona"}, {"qid": 5271, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the student enrollment at the University of Arizona for Fall 2023 compare to its previous years?", "answer": " The specific comparison to previous years is not provided, but as of Fall 2023, the university enrolled 53,187 students.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Arizona"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Arizona"}, {"qid": 5272, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the role of the Arizona Board of Regents in relation to the University of Arizona?", "answer": " The Arizona Board of Regents governs the University of Arizona.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Arizona"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Arizona"}, {"qid": 5273, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which college at the University of Arizona was established first, the College of Medicine - Tucson or the College of Medicine - Phoenix?", "answer": " The University of Arizona College of Medicine - Tucson was established before the College of Medicine - Phoenix, but the exact founding years need to be checked for precision.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Arizona"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "University of Arizona"}, {"qid": 5274, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Arizona decides to open another college in 2024, how many colleges/schools will it have?", "answer": " It will have 20 separate colleges/schools.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Arizona"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Arizona"}, {"qid": 5275, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the University of Arizona's founding year compare to that of other land-grant universities in the United States?", "answer": " The University of Arizona was founded in 1885, which places it among the earlier land-grant universities established after the Morrill Act of 1862, but specific comparisons require checking each university's founding year.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Arizona"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Arizona"}, {"qid": 5276, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the location of the University of Arizona's main campus in relation to the city of Tucson?", "answer": " The main campus of the University of Arizona is located in Tucson, Arizona.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Arizona"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Arizona"}, {"qid": 5277, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How is the University of Arizona College of Medicine - Phoenix related to the University of Arizona's overall structure?", "answer": " The University of Arizona College of Medicine - Phoenix is one of the colleges/schools within the University of Arizona, extending its medical education and research to Phoenix.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Arizona"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Arizona"}, {"qid": 5278, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Arizona hires 500 new staff members, how will this affect its staff number?", "answer": " The specific current staff number is not provided, but adding 500 new staff members would increase the total staff number from its current count.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Arizona"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Arizona"}, {"qid": 5279, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to other universities governed by the Arizona Board of Regents, where does the University of Arizona stand in terms of its founding year?", "answer": " The University of Arizona, founded in 1885, is the oldest university among those governed by the Arizona Board of Regents.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Arizona"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Arizona"}, {"qid": 5280, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What makes the James E. Rogers College of Law distinct within the University of Arizona?", "answer": " The James E. Rogers College of Law is distinctive for being the University of Arizona's law school, focusing on legal education and research.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Arizona"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Arizona"}, {"qid": 5281, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "When was the earliest public university founded west of the Mississippi River?", "answer": " 1839", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Missouri"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Missouri"}, {"qid": 5282, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between the University of Missouri and the Association of American Universities?", "answer": " The University of Missouri has been a member of the Association of American Universities since 1908.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Missouri"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Missouri"}, {"qid": 5283, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which university is Missouri's largest?", "answer": " The University of Missouri", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Missouri"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Missouri"}, {"qid": 5284, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the University of Missouri compare to other campuses in the University of Missouri System in terms of its flagship status?", "answer": " It is the flagship of the four-campus University of Missouri System.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Missouri"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Missouri"}, {"qid": 5285, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What classification does the University of Missouri have in terms of research activity?", "answer": " R1", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Missouri"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Missouri"}, {"qid": 5286, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the significance of the University of Missouri's location in Columbia, Missouri?", "answer": " It is a public land-grant research university located in Columbia, making it a significant educational institution in Missouri.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Missouri"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Missouri"}, {"qid": 5287, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Missouri was not located in Columbia, how might its impact on Missouri's education landscape change?", "answer": " If it were located elsewhere, its role as a central educational institution in Missouri might be significantly altered, affecting its accessibility and influence in the state.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Missouri"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Missouri"}, {"qid": 5288, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest public university west of the Mississippi River?", "answer": " The University of Missouri, founded in 1839.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Missouri"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Missouri"}, {"qid": 5289, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the University of Missouri's classification as \"R1", "answer": " This classification indicates a very high level of research activity and academic excellence at the University of Missouri.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Missouri"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Missouri"}, {"qid": 5290, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compare the research activity classification of the University of Missouri with other universities not classified as \"R1\".", "answer": " The University of Missouri, classified as \"R1\", has a very high research activity level, whereas universities not classified as \"R1\" have lower levels of research activity.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Missouri"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Missouri"}, {"qid": 5291, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which university in Missouri has the highest research activity level?", "answer": " The University of Missouri", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Missouri"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Missouri"}, {"qid": 5292, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does being a member of the Association of American Universities since 1908 benefit the University of Missouri?", "answer": " Being a member of the Association of American Universities since 1908 benefits the University of Missouri by enhancing its reputation, providing opportunities for collaboration, and affirming its high standards in education and research.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Missouri"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Missouri"}, {"qid": 5293, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the start year of Syracuse University compare to the founding year of Cornell University?", "answer": " Syracuse University was established in 1870, whereas Cornell University was founded in 1865, making Cornell University older by 5 years.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Syracuse University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Syracuse University"}, {"qid": 5294, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest building on the campus of Syracuse University?", "answer": " The Hall of Languages is the oldest building on the campus of Syracuse University, completed in 1873.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Syracuse University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Syracuse University"}, {"qid": 5295, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How is Syracuse University's location related to Downtown Syracuse?", "answer": " Syracuse University is located in the University Hill neighborhood, east and southeast of Downtown Syracuse.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Syracuse University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Syracuse University"}, {"qid": 5296, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would happen if Syracuse University decided to revert to its original sectarian roots?", "answer": " If Syracuse University decided to revert to its original sectarian roots, it might reintegrate religious education and activities closely tied to the Methodist Episcopal Church, potentially affecting its nonsectarian status since 1920 and impacting its diverse student community.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Syracuse University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Syracuse University"}, {"qid": 5297, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which school or college within Syracuse University has the most variety of degree programs?", "answer": " The College of Arts and Sciences at Syracuse University offers the most variety of degree programs, encompassing a wide range of disciplines.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Syracuse University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Syracuse University"}, {"qid": 5298, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the research activity classification of Syracuse University compare to that of Harvard University?", "answer": " Both Syracuse University and Harvard University are classified among \"R1", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Syracuse University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Syracuse University"}, {"qid": 5299, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the architecture of Syracuse University's campus reflect its historical development?", "answer": " The architecture of Syracuse University's campus reflects its historical development through an eclectic mix of styles, ranging from nineteenth-century Romanesque Revival to contemporary buildings, indicating a progression and adaptation over time.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Syracuse University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Syracuse University"}, {"qid": 5300, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would be the impact on Syracuse University's staff number if a new college were added?", "answer": " If a new college were added to Syracuse University, the staff number would likely increase to accommodate the needs for additional administrative support, faculty members, and other personnel required to operate the new college.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Syracuse University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Syracuse University"}, {"qid": 5301, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the size of the staff at Syracuse University compare to the staff size at University of Rochester?", "answer": " The size of the staff at Syracuse University varies, but it typically has a large number of employees to support its extensive academic programs and student services, potentially comparable or larger in size to the staff at the University of Rochester, depending on the specific departments and services compared.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Syracuse University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Syracuse University"}, {"qid": 5302, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most recent building added to Syracuse University's campus?", "answer": " The National Veterans Resource Center (NVRC) at the Daniel and Gayle D’Aniello Building is among the most recent buildings added to Syracuse University's campus, officially opening in 2021.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Syracuse University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Syracuse University"}, {"qid": 5303, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does Syracuse University's nonsectarian status since 1920 affect its student body composition?", "answer": " Syracuse University's nonsectarian status since 1920 allows it to welcome students from diverse religious backgrounds, contributing to a richly varied community in terms of faith, culture, and beliefs.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Syracuse University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Syracuse University"}, {"qid": 5304, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Syracuse University decided to specialize solely in engineering programs, how might that change its classification among research universities?", "answer": " If Syracuse University decided to specialize solely in engineering programs, it might affect its \"R1", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Syracuse University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Syracuse University"}, {"qid": 5305, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between Emory University and John Emory?", "answer": " Emory University was named in honor of Methodist bishop John Emory.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Emory University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Emory University"}, {"qid": 5306, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What led to the founding of Emory University in 1836?", "answer": " It was founded by the Methodist Episcopal Church.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Emory University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Emory University"}, {"qid": 5307, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How far is Emory University's main campus from Downtown Atlanta?", "answer": " 3 miles (4.8 km)", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Emory University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Emory University"}, {"qid": 5308, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest part of Emory University's history?", "answer": " Its founding in 1836.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Emory University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Emory University"}, {"qid": 5309, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the main feature that distinguishes Emory University's location?", "answer": " Its main campus is located in Druid Hills.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Emory University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Emory University"}, {"qid": 5310, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of Emory University compare to the University of Georgia's?", "answer": " Emory University was founded in 1836, whereas the University of Georgia was founded in 1785, making Emory University younger.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Emory University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Emory University"}, {"qid": 5311, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the location of Emory University compare to that of Georgia Tech?", "answer": " Emory University is located in Brookhaven, Georgia, near Druid Hills, while Georgia Tech is located in Atlanta, Georgia.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Emory University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Emory University"}, {"qid": 5312, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What might have happened if Emory University was not named after John Emory?", "answer": " It might have had a different name, potentially not associated with the Methodist Episcopal Church or its historical figures.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Emory University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Emory University"}, {"qid": 5313, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What if Emory University had been established in a different location than Druid Hills?", "answer": " Its campus layout, community relations, and possibly its development trajectory would have been different.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Emory University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Emory University"}, {"qid": 5314, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Emory University decided to significantly expand its staff number, what might be the implications for its Brookhaven campus?", "answer": " It could lead to campus expansion, increased local traffic, and potentially more housing developments in the area.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Emory University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Emory University"}, {"qid": 5315, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to its founding year, how has the role of Emory University in the Methodist Episcopal Church changed?", "answer": " Over time, Emory University has become more secular and diversified in its academic offerings and student body, though it maintains a historical connection to the Methodist Church.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Emory University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Emory University"}, {"qid": 5316, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Emory University had not been founded by the Methodist Episcopal Church, how might its academic and cultural environment be different today?", "answer": " It might have developed with a different set of founding principles, potentially affecting its cultural norms, academic focus, and community engagement priorities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Emory University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Emory University"}, {"qid": 5317, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the southernmost campus of the University of California?", "answer": " University of California, San Diego", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, San Diego"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, San Diego"}, {"qid": 5318, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How is the University of California, San Diego related to the Scripps Institution of Oceanography?", "answer": " The University of California, San Diego was established near the pre-existing Scripps Institution of Oceanography.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, San Diego"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, San Diego"}, {"qid": 5319, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which University of California campus has the second largest student housing capacity in the nation?", "answer": " University of California, San Diego", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, San Diego"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, San Diego"}, {"qid": 5320, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What kind of university is the University of California, San Diego?", "answer": " It is a public land-grant research university.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, San Diego"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, San Diego"}, {"qid": 5321, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Where is the University of California, San Diego located?", "answer": " San Diego, California", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, San Diego"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, San Diego"}, {"qid": 5322, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "When was the earliest campus of the University of California established compared to UC San Diego?", "answer": " Before 1960, as UC San Diego was established in 1960.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, San Diego"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, San Diego"}, {"qid": 5323, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the student enrollment at University of California, San Diego compare to its student housing capacity?", "answer": " It has the second largest student housing capacity in the nation, enrolling 33,096 undergraduate and 9,872 graduate students.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, San Diego"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, San Diego"}, {"qid": 5324, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What type of programs does the University of California, San Diego offer?", "answer": " It offers over 200 undergraduate and graduate degree programs.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, San Diego"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, San Diego"}, {"qid": 5325, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which campus of the University of California is located closest to the Pacific Ocean?", "answer": " University of California, San Diego", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, San Diego"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, San Diego"}, {"qid": 5326, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the acreage of the main campus of UC San Diego?", "answer": " Approximately 1,152 acres", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, San Diego"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, San Diego"}, {"qid": 5327, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If UC San Diego were to expand its campus, how might its proximity to the Pacific Ocean influence its expansion?", "answer": " The expansion might be influenced by available land, environmental concerns, and regulations due to its close proximity to the Pacific Ocean.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, San Diego"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, San Diego"}, {"qid": 5328, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would happen if the University of California, San Diego decided to significantly increase its undergraduate enrollment?", "answer": " It might need to expand its student housing capacity, facilities, and possibly adjust its admission policies or academic programs to accommodate the increase.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of California, San Diego"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of California, San Diego"}, {"qid": 5329, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What type of school did Arizona State University begin as in 1885?", "answer": " Territorial Normal School", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Arizona State University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Arizona State University"}, {"qid": 5330, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What was the primary purpose of the Territorial Normal School that eventually became Arizona State University?", "answer": " To train teachers for the rapidly growing public common schools.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Arizona State University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Arizona State University"}, {"qid": 5331, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Is Arizona State University one of the largest public universities by enrollment in the United States?", "answer": " Yes, it is one of the largest public universities by enrollment in the United States.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Arizona State University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Arizona State University"}, {"qid": 5332, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of Arizona State University compare to the founding years of other public universities in the United States?", "answer": " It was founded in 1885, which makes it older than many public universities in the United States but younger than some others.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Arizona State University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Arizona State University"}, {"qid": 5333, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How did Arizona State University evolve from its original purpose?", "answer": " It evolved from a normal school designed to train teachers into a comprehensive public research university.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Arizona State University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Arizona State University"}, {"qid": 5334, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Arizona State University had not expanded its role beyond teacher training, how might its current status be different?", "answer": " It would likely be a smaller institution focused primarily on education degrees rather than the large, diverse research university it is today.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Arizona State University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Arizona State University"}, {"qid": 5335, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What transformation marked the transition of Territorial Normal School into Arizona State University in terms of its educational scope?", "answer": " The transition from a normal school to a state university, expanding its educational scope beyond teacher training to a wide range of undergraduate and graduate programs.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Arizona State University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Arizona State University"}, {"qid": 5336, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How has the location of Arizona State University within the Phoenix metropolitan area influenced its growth and development?", "answer": " Being located in a rapidly growing metropolitan area has likely contributed to its large enrollment numbers and the expansion of its research and academic programs.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Arizona State University"], "topic_level": false, "class": "sing entity", "hops": "Multiple hops", "entity": "Arizona State University"}, {"qid": 5337, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to its early years, how has the number of staff at Arizona State University changed?", "answer": " The number of staff has significantly increased from its early years to accommodate the growth in student enrollment and expansion of academic and research programs.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Arizona State University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Arizona State University"}, {"qid": 5338, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What role does Arizona State University play in the landscape of public higher education in the United States today?", "answer": " It plays a significant role as one of the largest public universities by enrollment and a leading institution in research and innovation.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Arizona State University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Arizona State University"}, {"qid": 5339, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Arizona State University had remained a small teacher training school, what impact might that have had on the Phoenix metropolitan area?", "answer": " The impact on the Phoenix metropolitan area might have been less significant, with potentially smaller economic and cultural contributions.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Arizona State University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Arizona State University"}, {"qid": 5340, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What was the significance of the 13th Arizona Territorial Legislature in the history of Arizona State University?", "answer": " The 13th Arizona Territorial Legislature was responsible for founding the Territorial Normal School, which would eventually become Arizona State University.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Arizona State University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Arizona State University"}, {"qid": 5341, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What led to the University at Buffalo becoming a part of the State University of New York system?", "answer": " The University at Buffalo merged with the State University of New York system in 1962.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University at Buffalo"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University at Buffalo"}, {"qid": 5342, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "As of 2022, where does the University at Buffalo rank in terms of size within the SUNY system?", "answer": " As of 2022, it is one of two flagship institutions of the SUNY system, making it among the largest.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University at Buffalo"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University at Buffalo"}, {"qid": 5343, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the student population of the University at Buffalo compare to other SUNY institutions as of fall 2020?", "answer": " As of fall 2020, with 32,347 students, the University at Buffalo is the largest public university in the state of New York.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University at Buffalo"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University at Buffalo"}, {"qid": 5344, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "When was the University at Buffalo founded in comparison to other SUNY schools?", "answer": " The University at Buffalo was founded in 1846, making it one of the earliest established schools in the SUNY system.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University at Buffalo"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University at Buffalo"}, {"qid": 5345, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What type of university is the University at Buffalo, and where are its campuses located?", "answer": " The University at Buffalo is a public research university with campuses in Buffalo and Amherst, New York.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University at Buffalo"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University at Buffalo"}, {"qid": 5346, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University at Buffalo decided to open another campus, what precedent does it set for its location preferences based on existing campuses?", "answer": " Based on existing campuses in Buffalo and Amherst, New York, it sets a precedent for selecting locations within the state of New York.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University at Buffalo"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University at Buffalo"}, {"qid": 5347, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the historical significance of the University at Buffalo's founding as a private medical college in 1846?", "answer": " The founding of the University at Buffalo as a private medical college in 1846 marks its origins in medical education and its long history in higher education.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University at Buffalo"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University at Buffalo"}, {"qid": 5348, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What makes the University at Buffalo stand out in terms of its academic offerings compared to other SUNY institutions?", "answer": " With 13 schools and colleges offering a wide range of programs, the University at Buffalo stands out for its broad and diverse academic offerings.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University at Buffalo"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "University at Buffalo"}, {"qid": 5349, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to its founding year, how has the University at Buffalo's role in the SUNY system evolved?", "answer": " Since its founding in 1846 and subsequent merger with the SUNY system in 1962, the University at Buffalo has evolved to become a flagship institution, highlighting its significant growth and development.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University at Buffalo"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "University at Buffalo"}, {"qid": 5350, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University at Buffalo were to split from the SUNY system, how would its historical and current status influence its independent operations?", "answer": " If the University at Buffalo were to split from the SUNY system, its historical significance as a founding institution and its current status as a flagship institution would likely influence its continued emphasis on research and education, maintaining a large student body and diverse academic offerings.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University at Buffalo"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "University at Buffalo"}, {"qid": 5351, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the University at Buffalo's status as a public research university impact its student enrollment and academic structure?", "answer": " As a public research university, the University at Buffalo attracts a large student enrollment of 32,347 as of fall 2020 and supports a wide academic structure with 13 schools and colleges, emphasizing its commitment to research and education.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University at Buffalo"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "University at Buffalo"}, {"qid": 5352, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What distinguishes the University at Buffalo's foundation year within the context of higher education institutions in New York State?", "answer": " Founded in 1846, the University at Buffalo is distinguished as one of the oldest higher education institutions in New York State, underscoring its long-standing contribution to education and research.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University at Buffalo"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "University at Buffalo"}, {"qid": 5353, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is one of the oldest universities in Romania?", "answer": " The University of Bucharest", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Bucharest"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Bucharest"}, {"qid": 5354, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Who founded the University of Bucharest?", "answer": " Prince Alexandru Ioan Cuza", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Bucharest"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Bucharest"}, {"qid": 5355, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What was the University of Bucharest originally before becoming a university?", "answer": " The Princely Academy", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Bucharest"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Bucharest"}, {"qid": 5356, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "For what purpose was the University of Bucharest founded by Prince Alexandru Ioan Cuza?", "answer": " To convert the former Princely Academy into the current University of Bucharest", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Bucharest"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Bucharest"}, {"qid": 5357, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the University of Bucharest compare to other Romanian universities in terms of age?", "answer": " It is one of the oldest Romanian universities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Bucharest"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Bucharest"}, {"qid": 5358, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Bucharest had not been founded in 1864, how might the landscape of Romanian higher education be different?", "answer": " Without one of its oldest universities, the Romanian higher education landscape might lack historical prestige and development, potentially affecting academic and research progress.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Bucharest"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Bucharest"}, {"qid": 5359, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What consortium is the University of Bucharest a member of?", "answer": " The Universitaria Consortium", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Bucharest"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Bucharest"}, {"qid": 5360, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the historical significance of the University of Bucharest's founding date?", "answer": " It marks the transformation from the Princely Academy to one of Romania's oldest universities, indicating a significant development in Romanian higher education.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Bucharest"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Bucharest"}, {"qid": 5361, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the Universitaria Consortium did not include the University of Bucharest, how would it affect the consortium's academic reputation?", "answer": " Excluding one of Romania's oldest and prestigious universities could potentially lower the consortium's overall academic reputation and historical significance.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Bucharest"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Bucharest"}, {"qid": 5362, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding of the University of Bucharest in 1864 compare with the establishment dates of other universities in the Universitaria Consortium?", "answer": " The University of Bucharest's establishment in 1864 makes it one of the oldest, if not the oldest, among the universities in the Universitaria Consortium, highlighting its historical precedence.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Bucharest"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Bucharest"}, {"qid": 5363, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What makes the University of Bucharest's location in Bucharest significant?", "answer": " Being located in the capital city of Romania, Bucharest, adds to its prominence, accessibility, and role in the country's academic and cultural development.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Bucharest"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Bucharest"}, {"qid": 5364, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What was the role of Prince Alexandru Ioan Cuza in the history of the University of Bucharest?", "answer": " He decreed the conversion of the Princely Academy into the University of Bucharest, thereby founding the university in its current form in 1864.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Bucharest"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Bucharest"}, {"qid": 5365, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of the University of Split compare to the founding year of the University of Zagreb?", "answer": " The University of Split was founded in 1974, making it younger than the University of Zagreb, which was founded in 1669.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Split"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Split"}, {"qid": 5366, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the largest faculty at the University of Split in terms of the number of programs offered?", "answer": " It is not specified which of the 13 faculties is the largest by number of programs.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Split"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Split"}, {"qid": 5367, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How is the University of Split related to the city of Split?", "answer": " The University of Split is located in Split, Croatia, making it an integral educational and cultural part of the city.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Split"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Split"}, {"qid": 5368, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Split were to open a new faculty focused on renewable energy, how many faculties would it then have?", "answer": " It would have 14 faculties.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Split"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Split"}, {"qid": 5369, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the number of doctoral degrees awarded by the University of Split compare to those awarded by the University of Dubrovnik?", "answer": " As of 2009, the University of Split awarded a total of 337 doctoral degrees. The comparison number for the University of Dubrovnik is not provided.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Split"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Split"}, {"qid": 5370, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which year had the highest number of graduations at the University of Split up to 2009?", "answer": " The specific year with the highest number of graduations up to 2009 is not provided.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Split"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Split"}, {"qid": 5371, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between the students of the University of Split and the total number of graduates by 2009?", "answer": " As of 2009, approximately 40,000 students have graduated from the University of Split, indicating the cumulative success of its student body.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Split"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Split"}, {"qid": 5372, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Split were to merge with another university in Croatia, how would the staff numbers potentially change?", "answer": " The staff numbers would likely increase, depending on the size and staff numbers of the other university involved in the merger.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Split"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Split"}, {"qid": 5373, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How do the faculty numbers at the University of Split compare to those at the University of Rijeka?", "answer": " The University of Split is organized in 13 faculties. The comparison number for the University of Rijeka is not provided, so a direct comparison cannot be made.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Split"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Split"}, {"qid": 5374, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest faculty within the University of Split?", "answer": " The specific oldest faculty within the University of Split is not provided.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Split"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Split"}, {"qid": 5375, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the number of faculty programs at the University of Split relate to its founding year?", "answer": " The University of Split, founded in 1974, has developed to offer 124 faculty programs, reflecting its growth and expansion since its founding.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Split"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Split"}, {"qid": 5376, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If a new university were established in Split today, how would it compare in age to the University of Split?", "answer": " It would be significantly younger, as the University of Split was founded in 1974.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Split"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Split"}, {"qid": 5377, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What was the main campus size of Blaise Pascal University in acres?", "answer": " 53 acres", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Blaise Pascal University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Blaise Pascal University"}, {"qid": 5378, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What type of institution was Blaise Pascal University before it merged into the University Clermont Auvergne?", "answer": " A public university", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Blaise Pascal University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Blaise Pascal University"}, {"qid": 5379, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What were the satellite locations of Blaise Pascal University apart from its main campus in Clermont-Ferrand?", "answer": " Vichy, Moulins, Montluçon, and Aubière", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Blaise Pascal University"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "Blaise Pascal University"}, {"qid": 5380, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which city was the main campus of Blaise Pascal University located in before it merged into the University Clermont Auvergne?", "answer": " Clermont-Ferrand", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Blaise Pascal University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Blaise Pascal University"}, {"qid": 5381, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Until what year did Blaise Pascal University operate before becoming part of the University Clermont Auvergne?", "answer": " 2016", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Blaise Pascal University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Blaise Pascal University"}, {"qid": 5382, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How did the size of Blaise Pascal University's main campus compare to other universities in France in terms of acreage before its merger?", "answer": " It occupied 53 acres, which might be considered average or large depending on the specific comparison.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Blaise Pascal University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Blaise Pascal University"}, {"qid": 5383, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How did the merger of Blaise Pascal University affect its identity in terms of university naming and structure?", "answer": " It ceased to exist as an independent entity and became part of the University Clermont Auvergne.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Blaise Pascal University"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "Blaise Pascal University"}, {"qid": 5384, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Blaise Pascal University had not merged, what might have been the potential developments in its satellite locations?", "answer": " It's speculative, but potential developments could have included expansion of academic programs, facilities, or partnerships in those locations.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Blaise Pascal University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Blaise Pascal University"}, {"qid": 5385, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What was the official language of instruction at Blaise Pascal University before the merger?", "answer": " French", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Blaise Pascal University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Blaise Pascal University"}, {"qid": 5386, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What was the focus or specialty of Blaise Pascal University in terms of academic disciplines before its integration into the University Clermont Auvergne?", "answer": " This is not specified, but as a comprehensive university, it likely offered a wide range of disciplines.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Blaise Pascal University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Blaise Pascal University"}, {"qid": 5387, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What might have been the impact on the local economy of Clermont-Ferrand if Blaise Pascal University had expanded its campuses instead of merging?", "answer": " The expansion could have potentially boosted the local economy through construction, increased student population, and higher demand for local services.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Blaise Pascal University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Blaise Pascal University"}, {"qid": 5388, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Before the merger, how did Blaise Pascal University contribute to the regional educational landscape in Auvergne?", "answer": " It served as a key institution for higher education, providing academic programs and research opportunities across various disciplines in Clermont-Ferrand and its satellite locations.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Blaise Pascal University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Blaise Pascal University"}, {"qid": 5389, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the main language of instruction at the Vrije Universiteit Brussel?", "answer": " Dutch and English", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Vrije Universiteit Brussel"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Vrije Universiteit Brussel"}, {"qid": 5390, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How many campuses does the Vrije Universiteit Brussel have and what are their names?", "answer": " Four; Brussels Humanities, Science and Engineering Campus, Brussels Health Campus, Brussels Technology Campus, and Brussels Photonics Campus", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Vrije Universiteit Brussel"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Vrije Universiteit Brussel"}, {"qid": 5391, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which campus of the Vrije Universiteit Brussel is located in Gooik?", "answer": " Brussels Photonics Campus", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Vrije Universiteit Brussel"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Vrije Universiteit Brussel"}, {"qid": 5392, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Between the Brussels Humanities, Science and Engineering Campus and the Brussels Technology Campus, which one is located in Elsene?", "answer": " Brussels Humanities, Science and Engineering Campus", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Vrije Universiteit Brussel"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Vrije Universiteit Brussel"}, {"qid": 5393, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the primary language spoken at the Vrije Universiteit Brussel?", "answer": " Dutch and English", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Vrije Universiteit Brussel"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Vrije Universiteit Brussel"}, {"qid": 5394, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "In what city is the Vrije Universiteit Brussel's main campus located?", "answer": " Brussels", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Vrije Universiteit Brussel"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Vrije Universiteit Brussel"}, {"qid": 5395, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If a new faculty focused on space exploration was to be established at the Vrije Universiteit Brussel, on which campus might it most likely be located?", "answer": " Brussels Humanities, Science and Engineering Campus", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Vrije Universiteit Brussel"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Vrije Universiteit Brussel"}, {"qid": 5396, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which campus of the Vrije Universiteit Brussel is focused on health sciences?", "answer": " Brussels Health Campus", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Vrije Universiteit Brussel"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Vrije Universiteit Brussel"}, {"qid": 5397, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Which has a larger focus on engineering, the Brussels Technology Campus or the Brussels Humanities, Science and Engineering Campus?", "answer": " Brussels Humanities, Science and Engineering Campus", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Vrije Universiteit Brussel"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Vrije Universiteit Brussel"}, {"qid": 5398, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What language capabilities would a student need to study at the Vrije Universiteit Brussel?", "answer": " Proficiency in Dutch and English", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Vrije Universiteit Brussel"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Vrije Universiteit Brussel"}, {"qid": 5399, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the Vrije Universiteit Brussel were to open a fifth campus focused on marine biology, what might be a necessary feature of its location?", "answer": " Proximity to water", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Vrije Universiteit Brussel"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Vrije Universiteit Brussel"}, {"qid": 5400, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which campus of the Vrije Universiteit Brussel is the newest?", "answer": " Brussels Photonics Campus", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Vrije Universiteit Brussel"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Vrije Universiteit Brussel"}, {"qid": 5401, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the student population of the University of Southampton compare to that of other Russell Group universities?", "answer": " The University of Southampton's student population is large compared to some Russell Group universities but may be smaller than others, given the diverse sizes of institutions within the Russell Group.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Southampton"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Southampton"}, {"qid": 5402, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest building on the University of Southampton campus?", "answer": " The Hartley Library is one of the oldest buildings on the University of Southampton campus, having been a part of the university since its early days.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Southampton"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Southampton"}, {"qid": 5403, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the University of Southampton's commitment to research impact its ranking among UK universities?", "answer": " The University of Southampton's strong commitment to research significantly contributes to its high ranking among UK universities, especially within the Russell Group.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Southampton"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Southampton"}, {"qid": 5404, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would happen if the University of Southampton decided to leave the Russell Group?", "answer": " If the University of Southampton decided to leave the Russell Group, it might impact its reputation, research collaborations, and possibly its attractiveness to prospective students and staff.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Southampton"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Southampton"}, {"qid": 5405, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the University of Southampton's research output compare to that of Oxford University?", "answer": " The University of Southampton has a strong research output, especially in engineering and physical sciences, but overall, Oxford University may have a broader and higher volume of research output across more disciplines.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Southampton"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Southampton"}, {"qid": 5406, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most popular undergraduate course at the University of Southampton?", "answer": " Courses in Engineering, Medicine, and Business are among the most popular undergraduate courses at the University of Southampton.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Southampton"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Southampton"}, {"qid": 5407, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does being a member of the Russell Group affect the University of Southampton's approach to teaching and research?", "answer": " Being a member of the Russell Group influences the University of Southampton to prioritize research-led teaching, ensuring that courses are informed by the latest research in the field.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Southampton"], "topic_level": false, "class": "sing entity", "hops": "Multiple hops", "entity": "University of Southampton"}, {"qid": 5408, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Southampton were to significantly increase its research budget, how might this affect its global rankings?", "answer": " If the University of Southampton significantly increased its research budget, it could lead to advancements in research quality and output, potentially improving its global rankings.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Southampton"], "topic_level": false, "class": "sing entity", "hops": "Multiple hops", "entity": "University of Southampton"}, {"qid": 5409, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the University of Southampton's faculty to student ratio compare with that of Cambridge University?", "answer": " The University of Southampton has a favorable faculty to student ratio, but Cambridge University typically maintains a lower ratio, indicating more faculty members per student.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Southampton"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Southampton"}, {"qid": 5410, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which department at the University of Southampton has received the most research funding in the past year?", "answer": " The Engineering and Physical Sciences departments at the University of Southampton often receive significant research funding, potentially being the highest funded departments in the past year.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Southampton"], "topic_level": false, "class": "sing entity", "hops": "Multiple hops", "entity": "University of Southampton"}, {"qid": 5411, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the location of the University of Southampton benefit its maritime engineering research?", "answer": " The University of Southampton's coastal location significantly benefits its maritime engineering research by providing direct access to marine testing environments and collaboration opportunities with maritime industries.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Southampton"], "topic_level": false, "class": "sing entity", "hops": "Multiple hops", "entity": "University of Southampton"}, {"qid": 5412, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would be the impact on the local economy if the University of Southampton were to double its number of international students?", "answer": " Doubling the number of international students at the University of Southampton would likely have a positive impact on the local economy through increased spending in the area and potentially attracting more international businesses and partnerships.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Southampton"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Southampton"}, {"qid": 5413, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What was the original name of Vasyl Stus Donetsk National University when it was founded in 1937?", "answer": " It was known as a pedagogical institute.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Donetsk National University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Donetsk National University"}, {"qid": 5414, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "In what year did the pedagogical institute transform into Donetsk State University?", "answer": " 1965", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Donetsk National University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Donetsk National University"}, {"qid": 5415, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "When did Donetsk State University receive its National status?", "answer": " 2000", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Donetsk National University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Donetsk National University"}, {"qid": 5416, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is one of the leading higher educational institutions in Ukraine?", "answer": " Vasyl Stus Donetsk National University", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Donetsk National University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Donetsk National University"}, {"qid": 5417, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the start year of Vasyl Stus Donetsk National University compare to the establishment year of Kyiv-Mohyla Academy?", "answer": " Vasyl Stus Donetsk National University was founded in 1937, much later than the Kyiv-Mohyla Academy.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Donetsk National University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Donetsk National University"}, {"qid": 5418, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would potentially happen to the academic programs at Vasyl Stus Donetsk National University if it lost its National status?", "answer": " It might lead to a decrease in funding and prestige, potentially affecting the quality and variety of its academic programs.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Donetsk National University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Donetsk National University"}, {"qid": 5419, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Vasyl Stus Donetsk National University decided to double its research output, what might be the impact on staff numbers?", "answer": " It could potentially lead to an increase in staff numbers to manage and conduct the additional research projects.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Donetsk National University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Donetsk National University"}, {"qid": 5420, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which university was named after Vasyl Stus?", "answer": " Donetsk National University", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Donetsk National University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Donetsk National University"}, {"qid": 5421, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What was the original location of Vasyl Stus Donetsk National University when it was founded?", "answer": " Donetsk (then Stalino)", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Donetsk National University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Donetsk National University"}, {"qid": 5422, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to other universities in Ukraine, how does the historical significance of Vasyl Stus Donetsk National University stand out?", "answer": " Its transformation from a pedagogical institute to a national university marks it as a significant institution in the educational landscape of Ukraine.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Donetsk National University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Donetsk National University"}, {"qid": 5423, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Vasyl Stus Donetsk National University were to establish a new faculty focused on space research, what would be the first step in the process?", "answer": " The first step would likely involve securing funding and finding qualified staff to lead the new faculty.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Donetsk National University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Donetsk National University"}, {"qid": 5424, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the significance of the year 1965 for Vasyl Stus Donetsk National University?", "answer": " It was the year the institute was transformed into Donetsk State University.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Donetsk National University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Donetsk National University"}, {"qid": 5425, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the staff number at Taras Shevchenko National University of Kyiv compare to that of Kyiv Polytechnic Institute?", "answer": " This question cannot be directly answered without specific staff numbers for both universities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Taras Shevchenko National University of Kyiv"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Taras Shevchenko National University of Kyiv"}, {"qid": 5426, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest university in Kyiv?", "answer": " Taras Shevchenko National University of Kyiv.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Taras Shevchenko National University of Kyiv"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Taras Shevchenko National University of Kyiv"}, {"qid": 5427, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What role does the president of Taras Shevchenko National University of Kyiv play in its administration?", "answer": " The president of Taras Shevchenko National University of Kyiv oversees the entire administration and operations of the university, setting strategic direction and ensuring the institution's academic standards are maintained.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Taras Shevchenko National University of Kyiv"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Taras Shevchenko National University of Kyiv"}, {"qid": 5428, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would happen if Taras Shevchenko National University of Kyiv decided to triple its staff number?", "answer": " Tripling its staff number would likely require significant financial investment, possibly leading to expanded academic offerings, improved student services, and potentially higher rankings, assuming quality is maintained.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Taras Shevchenko National University of Kyiv"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Taras Shevchenko National University of Kyiv"}, {"qid": 5429, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compare the founding year of Taras Shevchenko National University of Kyiv to that of Harvard University.", "answer": " Taras Shevchenko National University of Kyiv was founded after Harvard University.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Taras Shevchenko National University of Kyiv"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Taras Shevchenko National University of Kyiv"}, {"qid": 5430, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which department at Taras Shevchenko National University of Kyiv has the highest number of research publications?", "answer": " This question cannot be directly answered without specific data on research publications by department.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Taras Shevchenko National University of Kyiv"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Taras Shevchenko National University of Kyiv"}, {"qid": 5431, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the location of Taras Shevchenko National University of Kyiv influence its academic collaborations?", "answer": " Being located in Kyiv, the university benefits from proximity to numerous academic, governmental, and industrial institutions, facilitating diverse academic collaborations and opportunities for research and development.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Taras Shevchenko National University of Kyiv"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Taras Shevchenko National University of Kyiv"}, {"qid": 5432, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What might be the impact on student enrollment if Taras Shevchenko National University of Kyiv were to move its campus outside of Kyiv?", "answer": " Moving the campus outside of Kyiv could impact student enrollment negatively due to the change in location, potentially making it less accessible and attractive to students seeking the amenities and opportunities provided by the capital city.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Taras Shevchenko National University of Kyiv"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Taras Shevchenko National University of Kyiv"}, {"qid": 5433, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the academic diversity at Taras Shevchenko National University of Kyiv compare to that of Oxford University?", "answer": " Both universities offer a wide range of academic disciplines, but Oxford University may have a broader international reputation for academic diversity due to its longer history and global recognition.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Taras Shevchenko National University of Kyiv"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Taras Shevchenko National University of Kyiv"}, {"qid": 5434, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most prestigious award received by a faculty member of Taras Shevchenko National University of Kyiv?", "answer": " This question cannot be directly answered without specific information on awards received by faculty members.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Taras Shevchenko National University of Kyiv"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Taras Shevchenko National University of Kyiv"}, {"qid": 5435, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the start year of Taras Shevchenko National University of Kyiv relate to the development of higher education in Ukraine?", "answer": " The start year of Taras Shevchenko National University of Kyiv marks an important period in the development of higher education in Ukraine, establishing a foundation for academic excellence and contributing significantly to the educational and cultural development of the country.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Taras Shevchenko National University of Kyiv"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Taras Shevchenko National University of Kyiv"}, {"qid": 5436, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Taras Shevchenko National University of Kyiv were to establish a new faculty focused on space science, what potential collaborations could it pursue?", "answer": " If a new faculty focused on space science were established, the university could pursue collaborations with national space agencies, other universities with strong space science programs, and private aerospace companies, enhancing research opportunities and academic offerings in this field.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Taras Shevchenko National University of Kyiv"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Taras Shevchenko National University of Kyiv"}, {"qid": 5437, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between the University of Warwick and Coventry College of Education?", "answer": " The University of Warwick incorporated Coventry College of Education in 1979.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Warwick"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "University of Warwick"}, {"qid": 5438, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which school was established first at the University of Warwick?", "answer": " Warwick Business School was established first in 1967.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Warwick"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "University of Warwick"}, {"qid": 5439, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the establishment year of Warwick Law School compare to that of Warwick Medical School?", "answer": " Warwick Law School was established in 1968, which is much earlier than Warwick Medical School, which was established in 2000.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Warwick"], "topic_level": false, "class": "sing entity", "hops": "Multi Hops", "entity": "University of Warwick"}, {"qid": 5440, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest entity established at the University of Warwick?", "answer": " Warwick Business School is the oldest entity established in 1967.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Warwick"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "University of Warwick"}, {"qid": 5441, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the purpose behind the founding of the University of Warwick?", "answer": " The University of Warwick was founded as part of a government initiative to expand higher education in 1965.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Warwick"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "University of Warwick"}, {"qid": 5442, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the Warwick Manufacturing Group (WMG) had not been established, which would be the newest school established before 2000 at the University of Warwick?", "answer": " Warwick Law School, established in 1968, would be the newest before 2000 if WMG had not been established in 1980.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Warwick"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "University of Warwick"}, {"qid": 5443, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most recent school established at the University of Warwick?", "answer": " Warwick Medical School, established in 2000, is the most recent school.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Warwick"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "University of Warwick"}, {"qid": 5444, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How did the University of Warwick expand its research capabilities in 2004?", "answer": " The University of Warwick expanded its research capabilities by incorporating Horticulture Research International in 2004.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Warwick"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "University of Warwick"}, {"qid": 5445, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Warwick decided to establish a new research institute in 2024, which would be the first institute established since?", "answer": " It would be the first institute established since Warwick Medical School in 2000.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Warwick"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "University of Warwick"}, {"qid": 5446, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compare the establishment years of Warwick Law School and Warwick Manufacturing Group (WMG).", "answer": " Warwick Law School was established in 1968, earlier than Warwick Manufacturing Group (WMG) in 1980.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Warwick"], "topic_level": false, "class": "sing entity", "hops": "Multi Hops", "entity": "University of Warwick"}, {"qid": 5447, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the latest addition to the University of Warwick in terms of academic schools?", "answer": " Warwick Medical School, established in 2000, is the latest addition.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Warwick"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "University of Warwick"}, {"qid": 5448, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How is the University of Warwick geographically related to Coventry and Warwickshire?", "answer": " The University of Warwick is located on the outskirts of Coventry, between the West Midlands and Warwickshire, England.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Warwick"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "University of Warwick"}, {"qid": 5449, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the staff number at Mozarteum University Salzburg compare to that of the International Mozarteum Foundation?", "answer": " The staff number at Mozarteum University Salzburg is likely higher given it is a full-fledged university specializing in music, the dramatic arts, and to a lesser degree, graphic arts, whereas the International Mozarteum Foundation might have a smaller staff focused on preservation and promotion of Mozart's work.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Mozarteum University Salzburg"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Mozarteum University Salzburg"}, {"qid": 5450, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest entity under the \"Mozarteum\" moniker in Salzburg?", "answer": " The Mozarteum University Salzburg, as it was established in honour of Wolfgang Amadeus Mozart and is one of the three affiliated but separate entities under the \"Mozarteum\" moniker in Salzburg.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Mozarteum University Salzburg"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Mozarteum University Salzburg"}, {"qid": 5451, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What relationship does the Mozarteum University Salzburg have with Wolfgang Amadeus Mozart?", "answer": " The Mozarteum University Salzburg was established in honour of Salzburg-born musician Wolfgang Amadeus Mozart, highlighting a commemorative relationship.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Mozarteum University Salzburg"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Mozarteum University Salzburg"}, {"qid": 5452, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the Mozarteum University Salzburg were to expand its graphic arts program, how might this impact its staff requirements?", "answer": " Expanding the graphic arts program would likely increase the need for more specialized faculty members proficient in various aspects of graphic arts, thus increasing the staff number.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Mozarteum University Salzburg"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Mozarteum University Salzburg"}, {"qid": 5453, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to the Mozarteum Orchestra Salzburg, which entity focuses more on educational aspects?", "answer": " The Mozarteum University Salzburg focuses more on educational aspects, offering degrees in music, the dramatic arts, and graphic arts, unlike the Mozarteum Orchestra Salzburg which is primarily focused on performance.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Mozarteum University Salzburg"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Mozarteum University Salzburg"}, {"qid": 5454, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which of the three \"Mozarteum\" entities in Salzburg is most directly involved in higher education?", "answer": " The Mozarteum University Salzburg is the most directly involved in higher education, specializing in music, the dramatic arts, and graphic arts education.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Mozarteum University Salzburg"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Mozarteum University Salzburg"}, {"qid": 5455, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the Mozarteum University Salzburg's focus on the dramatic arts contribute to its overall educational mission?", "answer": " The focus on the dramatic arts at Mozarteum University Salzburg contributes to its overall educational mission by providing a comprehensive approach to arts education, fostering creativity, and preparing students for professional careers in various fields of performance.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Mozarteum University Salzburg"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Mozarteum University Salzburg"}, {"qid": 5456, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Mozarteum University Salzburg were to collaborate with a renowned international music school, what could be the potential benefits for its students?", "answer": " Potential benefits could include access to a broader network of professional musicians, opportunities for international exchange programs, enhanced learning experiences from visiting faculty, and increased visibility in the global music community.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Mozarteum University Salzburg"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Mozarteum University Salzburg"}, {"qid": 5457, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the curriculum at Mozarteum University Salzburg compare to that of a typical state university's music department?", "answer": " The curriculum at Mozarteum University Salzburg is likely more specialized and intensive in music, the dramatic arts, and graphic arts, compared to a typical state university's music department which may offer a broader but less focused curriculum.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Mozarteum University Salzburg"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Mozarteum University Salzburg"}, {"qid": 5458, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the primary location of Mozarteum University Salzburg's operations?", "answer": " The primary location of Mozarteum University Salzburg's operations is in Salzburg, Austria.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Mozarteum University Salzburg"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Mozarteum University Salzburg"}, {"qid": 5459, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "In what way does the Mozarteum University Salzburg honor its namesake, Wolfgang Amadeus Mozart?", "answer": " The Mozarteum University Salzburg honors its namesake, Wolfgang Amadeus Mozart, by dedicating its educational mission to the study and promotion of music and arts in line with the legacy of the renowned composer.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Mozarteum University Salzburg"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Mozarteum University Salzburg"}, {"qid": 5460, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What might be the impact on the local arts community if Mozarteum University Salzburg were to significantly increase its focus on graphic arts?", "answer": " The local arts community might see a surge in graphic arts exhibitions, collaborations, and workshops, leading to a more vibrant and diverse cultural scene in Salzburg.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Mozarteum University Salzburg"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Mozarteum University Salzburg"}, {"qid": 5461, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How is the Medical University of Graz related to the Karl-Franzens University of Graz?", "answer": " The Medical University of Graz was a part of the Karl-Franzens University of Graz as a medical faculty since 1863 before becoming an independent entity in 2004.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Medical University of Graz"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Medical University of Graz"}, {"qid": 5462, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What significant change occurred to the medical faculty of Karl-Franzens University of Graz in 2004?", "answer": " The medical faculty of Karl-Franzens University of Graz became an independent institution, known as the Medical University of Graz, on January 1, 2004.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Medical University of Graz"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Medical University of Graz"}, {"qid": 5463, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "When was the Medical University of Graz established as an independent entity?", "answer": " January 1, 2004.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Medical University of Graz"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Medical University of Graz"}, {"qid": 5464, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the start year of the Medical University of Graz as an independent medical university?", "answer": " 2004.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Medical University of Graz"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Medical University of Graz"}, {"qid": 5465, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Is the Medical University of Graz older or younger than the University of Vienna?", "answer": " The Medical University of Graz is younger than the University of Vienna.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Medical University of Graz"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Medical University of Graz"}, {"qid": 5466, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of the Medical University of Graz compare to that of the Medical University of Vienna?", "answer": " The Medical University of Graz, founded as an independent entity in 2004, is younger than the Medical University of Vienna.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Medical University of Graz"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Medical University of Graz"}, {"qid": 5467, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the Medical University of Graz decided to merge back with the Karl-Franzens University of Graz, what would it become?", "answer": " It would become a medical faculty of the Karl-Franzens University of Graz again.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Medical University of Graz"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Medical University of Graz"}, {"qid": 5468, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would happen if the Medical University of Graz doubled its staff number?", "answer": " The staff number at the Medical University of Graz would increase significantly, potentially enhancing its capabilities in teaching and research.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Medical University of Graz"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Medical University of Graz"}, {"qid": 5469, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "In what country is the Medical University of Graz located?", "answer": " Austria.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Medical University of Graz"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Medical University of Graz"}, {"qid": 5470, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What year marked the independence of the Medical University of Graz from the Karl-Franzens University of Graz?", "answer": " 2004.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Medical University of Graz"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Medical University of Graz"}, {"qid": 5471, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to its foundation as a faculty in 1863, how significant was the establishment of the Medical University of Graz as an independent entity in 2004?", "answer": " The establishment of the Medical University of Graz as an independent entity in 2004 was a significant milestone, marking its independence and focus on medical education and research separate from the Karl-Franzens University of Graz.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Medical University of Graz"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Medical University of Graz"}, {"qid": 5472, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the Medical University of Graz were to expand its campus to another city, what would be one potential outcome?", "answer": " One potential outcome could be the extension of its educational and research activities, potentially reaching a larger student population and fostering regional medical research collaborations.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Medical University of Graz"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Medical University of Graz"}, {"qid": 5473, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the primary focus of HTW Berlin's programs?", "answer": " The primary focus of HTW Berlin's programs includes engineering, computer science, business, culture, and design.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["HTW Berlin"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "HTW Berlin"}, {"qid": 5474, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does HTW Berlin support international students?", "answer": " HTW Berlin supports international students by offering a high proportion of programs and resources, contributing to its 26.4% international student body, one of the highest in Germany.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["HTW Berlin"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "HTW Berlin"}, {"qid": 5475, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which university of applied sciences in Berlin is the largest by student enrollment?", "answer": " HTW Berlin is the largest public University of Applied Sciences in Berlin and Eastern Germany by student enrollment.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["HTW Berlin"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "HTW Berlin"}, {"qid": 5476, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the international student percentage ranking of HTW Berlin among German universities?", "answer": " HTW Berlin has one of the highest proportions of international students at 26.4% among German universities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["HTW Berlin"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "HTW Berlin"}, {"qid": 5477, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the number of programs offered at HTW Berlin compare with other universities of applied sciences in Germany?", "answer": " HTW Berlin offers a wide range of over 75 programs, making it one of the universities with the most diverse program offerings in areas of engineering, computer science, business, culture, and design among universities of applied sciences in Germany.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["HTW Berlin"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "HTW Berlin"}, {"qid": 5478, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What factors contribute to HTW Berlin's attractiveness to international students?", "answer": " Factors contributing to HTW Berlin's attractiveness to international students include its large selection of programs, high proportion of international students, and comprehensive support services.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["HTW Berlin"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "HTW Berlin"}, {"qid": 5479, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If HTW Berlin were to open a new faculty, which area might it focus on based on current trends?", "answer": " Based on current trends, HTW Berlin might focus on opening a new faculty in areas such as sustainable technologies, digital transformation, or artificial intelligence.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["HTW Berlin"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "HTW Berlin"}, {"qid": 5480, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would be the impact on student numbers if HTW Berlin significantly increased its program offerings in digital arts?", "answer": " If HTW Berlin significantly increased its program offerings in digital arts, it could attract more students interested in combining creative disciplines with technology, potentially increasing its overall student numbers.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["HTW Berlin"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "HTW Berlin"}, {"qid": 5481, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which area of study has the highest enrollment at HTW Berlin?", "answer": " While specific enrollment numbers by area of study are not provided, areas like engineering, computer science, and business are traditionally popular and may have high enrollment at HTW Berlin.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["HTW Berlin"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "HTW Berlin"}, {"qid": 5482, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to other universities in Berlin, how does HTW Berlin's focus on practical and applied sciences stand out?", "answer": " HTW Berlin's focus on practical and applied sciences stands out by offering a comprehensive range of hands-on programs in engineering, computer science, business, culture, and design, distinguishing itself from other universities that may have a more theoretical or research-oriented approach.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["HTW Berlin"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "HTW Berlin"}, {"qid": 5483, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "In what ways does HTW Berlin integrate international perspectives into its curriculum?", "answer": " HTW Berlin integrates international perspectives into its curriculum through a high proportion of international students, partnerships with universities worldwide, offering programs in English, and focusing on global economic and cultural issues.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["HTW Berlin"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "HTW Berlin"}, {"qid": 5484, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How has HTW Berlin's location in Berlin influenced its programs and student life?", "answer": " HTW Berlin's location in Berlin, a vibrant and culturally rich city, influences its programs by incorporating local industry partnerships, focusing on innovation and design, and offering students a dynamic cultural and social life.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["HTW Berlin"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "HTW Berlin"}, {"qid": 5485, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the historical origin of the University of Music and Performing Arts Graz?", "answer": " Its roots can be traced back to the music school of the Akademischer Musikverein founded in 1816.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Music and Performing Arts Graz"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Music and Performing Arts Graz"}, {"qid": 5486, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which is the oldest university of music in Austria?", "answer": " The University of Music and Performing Arts Graz.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Music and Performing Arts Graz"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Music and Performing Arts Graz"}, {"qid": 5487, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of the University of Music and Performing Arts Graz compare to the establishment of other Austrian universities?", "answer": " It is the oldest university of music in Austria, with its roots dating back to 1816.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Music and Performing Arts Graz"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Music and Performing Arts Graz"}, {"qid": 5488, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What kind of educational institution is the University of Music and Performing Arts Graz?", "answer": " It is an Austrian university specializing in music and performing arts.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Music and Performing Arts Graz"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Music and Performing Arts Graz"}, {"qid": 5489, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Music and Performing Arts Graz were to open a new campus, what focus would it likely have based on its current specialization?", "answer": " It would likely focus on music and performing arts.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Music and Performing Arts Graz"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Music and Performing Arts Graz"}, {"qid": 5490, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Where is the University of Music and Performing Arts Graz located?", "answer": " Graz, Austria.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Music and Performing Arts Graz"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Music and Performing Arts Graz"}, {"qid": 5491, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What makes the University of Music and Performing Arts Graz unique in its field within Austria?", "answer": " It is the oldest university of music in Austria.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Music and Performing Arts Graz"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Music and Performing Arts Graz"}, {"qid": 5492, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to other music universities in Austria, how does the University of Music and Performing Arts Graz rank in terms of its founding year?", "answer": " It ranks as the oldest, having been founded in 1816.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Music and Performing Arts Graz"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Music and Performing Arts Graz"}, {"qid": 5493, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Music and Performing Arts Graz were to collaborate with a technology university, what kind of program might they create?", "answer": " They might create a program focusing on music technology or digital performance arts.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Music and Performing Arts Graz"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Music and Performing Arts Graz"}, {"qid": 5494, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "In the context of music and performing arts education in Austria, how is the University of Music and Performing Arts Graz distinguished from other institutions?", "answer": " It is distinguished as the oldest institution for music and performing arts education in Austria.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Music and Performing Arts Graz"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Music and Performing Arts Graz"}, {"qid": 5495, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the primary focus of the University of Music and Performing Arts Graz?", "answer": " The primary focus is on music and performing arts education.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Music and Performing Arts Graz"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Music and Performing Arts Graz"}, {"qid": 5496, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the location of the University of Music and Performing Arts Graz influence its programs compared to music universities located in Vienna?", "answer": " Its location in Graz might influence its programs to have a unique regional emphasis or collaboration opportunities distinct from those in Vienna, given the cultural and historical differences between the cities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Music and Performing Arts Graz"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Music and Performing Arts Graz"}, {"qid": 5497, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest institution of higher education in the German-speaking world?", "answer": " University of Giessen", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Giessen"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Giessen"}, {"qid": 5498, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between Justus von Liebig and the University of Giessen?", "answer": " Justus von Liebig is the most famous faculty member of the University of Giessen, and the university is named after him.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Giessen"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Giessen"}, {"qid": 5499, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How is the University Hospital of Giessen related to the University of Marburg?", "answer": " The University Hospital of Giessen, which has two sites including Giessen and Marburg, serves as the teaching hospital of the University of Marburg.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Giessen"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Giessen"}, {"qid": 5500, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to other institutions, how does the size of the University of Giessen rank among public research universities in Germany?", "answer": " The University of Giessen is considered a large public research university in Germany.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Giessen"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Giessen"}, {"qid": 5501, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Who is the most famous faculty member of the University of Giessen?", "answer": " Justus von Liebig", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Giessen"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Giessen"}, {"qid": 5502, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What areas of study does the University of Giessen cover?", "answer": " Arts/humanities, business, dentistry, economics, law, medicine, science, social sciences, and veterinary medicine.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Giessen"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Giessen"}, {"qid": 5503, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If a new faculty in bioengineering is to be added to the University of Giessen, in which existing area would it best fit?", "answer": " Science", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Giessen"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Giessen"}, {"qid": 5504, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What makes the University Hospital of Giessen and Marburg unique in Germany?", "answer": " It is the only private university hospital in Germany.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Giessen"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Giessen"}, {"qid": 5505, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the significance of the year the University of Giessen was founded in the context of German-speaking world's higher education history?", "answer": " It marks the foundation of one of the oldest institutions of higher education in the German-speaking world.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Giessen"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Giessen"}, {"qid": 5506, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Giessen were to establish a new campus, which of its areas of study might be the focus based on its current strengths?", "answer": " Medicine or Science", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Giessen"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Giessen"}, {"qid": 5507, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the University of Giessen's founding year compare to that of newer universities in Germany?", "answer": " The University of Giessen was founded earlier, making it one of the oldest compared to newer universities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Giessen"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Giessen"}, {"qid": 5508, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What role does artificial fertilizer play in the history of the University of Giessen?", "answer": " Artificial fertilizer is linked to Justus von Liebig, the university's most famous faculty member, who is the inventor of artificial fertilizer, highlighting the university's historical contribution to agricultural chemistry.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Giessen"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Giessen"}, {"qid": 5509, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the staff number at the University of Lübeck compare to that of the University of Hamburg?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Lübeck"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Lübeck"}, {"qid": 5510, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest university between the University of Lübeck and the University of Kiel?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Lübeck"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Lübeck"}, {"qid": 5511, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Who is the president of the University of Lübeck, and what is their academic background?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Lübeck"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Lübeck"}, {"qid": 5512, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Lübeck were to double its staff number, how many staff members would it have?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Lübeck"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Lübeck"}, {"qid": 5513, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which has more academic staff, the University of Lübeck or the Technical University of Munich?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Lübeck"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Lübeck"}, {"qid": 5514, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Is the University of Lübeck older or younger than the University of Heidelberg?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Lübeck"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Lübeck"}, {"qid": 5515, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What year was the University of Lübeck founded, and how does that compare to the founding year of the University of Cologne?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Lübeck"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Lübeck"}, {"qid": 5516, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Lübeck were to merge with the University of Hamburg, how many presidents would the new entity have?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Lübeck"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Lübeck"}, {"qid": 5517, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which university has a smaller staff size, the University of Lübeck or the Freie Universität Berlin?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Lübeck"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Lübeck"}, {"qid": 5518, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between the president of the University of Lübeck and the Faculty of Medicine?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Lübeck"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Lübeck"}, {"qid": 5519, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the University of Lübeck's start year compare to the founding year of the University of Freiburg?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Lübeck"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Lübeck"}, {"qid": 5520, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Lübeck decided to open a new campus in Berlin, how many campuses would it have in total?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Lübeck"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Lübeck"}, {"qid": 5521, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the primary focus of the faculties at Reutlingen University?", "answer": " The primary focus of the faculties at Reutlingen University is their industry-driven specialization rather than the sciences located there.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Reutlingen University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Reutlingen University"}, {"qid": 5522, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does Reutlingen University accommodate international students?", "answer": " Reutlingen University has a long tradition as a second home for international students, with over a quarter of the student body coming from countries outside Germany.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Reutlingen University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Reutlingen University"}, {"qid": 5523, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What distinguishes Reutlingen University from common university structures?", "answer": " Reutlingen University is distinguished by the orientation of its faculties being driven by industry specialization rather than the specific sciences.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Reutlingen University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Reutlingen University"}, {"qid": 5524, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What makes Reutlingen University one of the most prestigious universities of applied sciences in Germany?", "answer": " Reutlingen University's top five placements in various rankings and its reputation amongst industry and commerce have made it one of the most prestigious universities of applied sciences in Germany.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Reutlingen University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Reutlingen University"}, {"qid": 5525, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the proportion of international students at Reutlingen University compare to the total student body?", "answer": " A quarter of the students at Reutlingen University are international, indicating that international students make up a significant portion of the total student body.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Reutlingen University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Reutlingen University"}, {"qid": 5526, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What are the main fields of study offered at Reutlingen University?", "answer": " Reutlingen University offers undergraduate and graduate programs in International Business, Engineering, Information, Medical and Natural Science, and Design.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Reutlingen University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Reutlingen University"}, {"qid": 5527, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which school at Reutlingen University is dedicated to the study of textiles and fashion?", "answer": " The School of Textiles & Design at Reutlingen University is dedicated to the study of textiles and fashion.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Reutlingen University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Reutlingen University"}, {"qid": 5528, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Where is Reutlingen University located?", "answer": " Reutlingen University is located in Reutlingen in the southern German state of Baden-Württemberg.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Reutlingen University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Reutlingen University"}, {"qid": 5529, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the student enrollment size at Reutlingen University?", "answer": " The student enrollment at Reutlingen University stands at about 5,500 students.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Reutlingen University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Reutlingen University"}, {"qid": 5530, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If a student is interested in pursuing a degree in International Business, which school within Reutlingen University should they consider?", "answer": " If a student is interested in pursuing a degree in International Business, they should consider the ESB Business School within Reutlingen University.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Reutlingen University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Reutlingen University"}, {"qid": 5531, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What type of university is Reutlingen University?", "answer": " Reutlingen University is a university of applied sciences involved in education and research.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Reutlingen University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Reutlingen University"}, {"qid": 5532, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the proportion of international and exchange students at Reutlingen University?", "answer": " A quarter of the students at Reutlingen University are international and exchange students.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Reutlingen University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Reutlingen University"}, {"qid": 5533, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the number of staff at Mannheim University of Applied Sciences compare to the number of staff at a similar-sized university in Germany?", "answer": " The comparison would depend on the specific universities being compared, as staff numbers can vary widely even among universities of similar sizes.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Mannheim University of Applied Sciences"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Mannheim University of Applied Sciences"}, {"qid": 5534, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest department at Mannheim University of Applied Sciences?", "answer": " The specific oldest department is not provided, but it would likely be one of the original departments related to engineering or informatics, given the university's strong focus on these areas.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Mannheim University of Applied Sciences"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Mannheim University of Applied Sciences"}, {"qid": 5535, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between Fachhochschule Mannheim and Mannheim University of Applied Sciences?", "answer": " Fachhochschule Mannheim is the former name of Mannheim University of Applied Sciences, indicating a renaming and possibly a rebranding of the institution.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Mannheim University of Applied Sciences"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Mannheim University of Applied Sciences"}, {"qid": 5536, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Mannheim University of Applied Sciences decided to double its research output in the next five years, what changes might be necessary in terms of staff numbers?", "answer": " Doubling the research output would likely require a significant increase in both academic and research staff, possibly including hiring more professors, researchers, and support staff to manage increased projects and administrative needs.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Mannheim University of Applied Sciences"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Mannheim University of Applied Sciences"}, {"qid": 5537, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the location of Mannheim University of Applied Sciences influence its partnerships compared to a university located in a rural area of Germany?", "answer": " Being located in Mannheim, a significant urban and economic center, likely facilitates more industry partnerships, internships, and employment opportunities for students compared to a university in a rural area.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Mannheim University of Applied Sciences"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Mannheim University of Applied Sciences"}, {"qid": 5538, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most popular engineering program at Mannheim University of Applied Sciences based on enrollment numbers?", "answer": " The specific most popular engineering program is not provided, but popular programs typically include those in high-demand fields such as mechanical engineering or informatics.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Mannheim University of Applied Sciences"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Mannheim University of Applied Sciences"}, {"qid": 5539, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the bachelor's program in biotechnology at Mannheim University of Applied Sciences prepare students for the industry?", "answer": " The bachelor's program in biotechnology likely combines theoretical knowledge with practical experience, including laboratory work and possibly internships, to prepare students for careers in the biotechnology industry.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Mannheim University of Applied Sciences"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Mannheim University of Applied Sciences"}, {"qid": 5540, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Mannheim University of Applied Sciences were to open a new campus abroad, what factors would need to be considered regarding its staff?", "answer": " Factors would include the need for bilingual staff, expertise in the disciplines offered, understanding of the local education system and culture, and possibly staff willing to relocate or commute.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Mannheim University of Applied Sciences"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Mannheim University of Applied Sciences"}, {"qid": 5541, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the staff to student ratio at Mannheim University of Applied Sciences compare to the national average for universities of applied sciences in Germany?", "answer": " The specific staff to student ratio at Mannheim University of Applied Sciences and the national average are not provided, but such a comparison would highlight how personalized the education at Mannheim might be relative to other institutions.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Mannheim University of Applied Sciences"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Mannheim University of Applied Sciences"}, {"qid": 5542, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which year had the highest number of graduates from Mannheim University of Applied Sciences?", "answer": " The specific year with the highest number of graduates is not provided, but it could be influenced by factors such as enrollment trends and program expansions.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Mannheim University of Applied Sciences"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Mannheim University of Applied Sciences"}, {"qid": 5543, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What impact has the inclusion of social affairs programs at Mannheim University of Applied Sciences had on the student community?", "answer": " The inclusion of social affairs programs likely broadened the academic offerings and attracted a more diverse student body interested in social sciences, potentially fostering a more multidisciplinary and inclusive student community.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Mannheim University of Applied Sciences"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Mannheim University of Applied Sciences"}, {"qid": 5544, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would be the potential benefits for Mannheim University of Applied Sciences if it were to significantly increase its offering in online degree programs?", "answer": " Potential benefits could include attracting a wider, possibly international student base, providing more flexible learning options for working professionals, and enhancing the university's reputation as a forward-thinking institution.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Mannheim University of Applied Sciences"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Mannheim University of Applied Sciences"}, {"qid": 5545, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the staff number at Hochschule Düsseldorf compare to that of a smaller university?", "answer": " The staff number at Hochschule Düsseldorf is higher.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Hochschule Düsseldorf"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Hochschule Düsseldorf"}, {"qid": 5546, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest department at Hochschule Düsseldorf?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Hochschule Düsseldorf"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Hochschule Düsseldorf"}, {"qid": 5547, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between Hochschule Düsseldorf's start year and its development in academic programs?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Hochschule Düsseldorf"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Hochschule Düsseldorf"}, {"qid": 5548, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Hochschule Düsseldorf were to merge with another university, how would the staff numbers potentially change?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Hochschule Düsseldorf"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Hochschule Düsseldorf"}, {"qid": 5549, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the location of Hochschule Düsseldorf compare to universities located in rural areas?", "answer": " Hochschule Düsseldorf is located in an urban area, unlike universities in rural areas.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Hochschule Düsseldorf"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Hochschule Düsseldorf"}, {"qid": 5550, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which year had the highest enrollment at Hochschule Düsseldorf since its start?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Hochschule Düsseldorf"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Hochschule Düsseldorf"}, {"qid": 5551, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the president of Hochschule Düsseldorf influence its academic directions?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Hochschule Düsseldorf"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Hochschule Düsseldorf"}, {"qid": 5552, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Hochschule Düsseldorf were to expand its campus, what effect would it have on the local community?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Hochschule Düsseldorf"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Hochschule Düsseldorf"}, {"qid": 5553, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to its founding year, how has the number of staff at Hochschule Düsseldorf changed?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Hochschule Düsseldorf"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Hochschule Düsseldorf"}, {"qid": 5554, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most popular course at Hochschule Düsseldorf?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Hochschule Düsseldorf"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Hochschule Düsseldorf"}, {"qid": 5555, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the location of Hochschule Düsseldorf impact its student enrollment numbers?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Hochschule Düsseldorf"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Hochschule Düsseldorf"}, {"qid": 5556, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would be the impact on Hochschule Düsseldorf if the president decided to retire suddenly?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Hochschule Düsseldorf"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Hochschule Düsseldorf"}, {"qid": 5557, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the role of the Russian Ministry of Foreign Affairs in the governance of Moscow State Institute of International Relations?", "answer": " The Russian Ministry of Foreign Affairs runs the Moscow State Institute of International Relations.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Moscow State Institute of International Relations"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Moscow State Institute of International Relations"}, {"qid": 5558, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "How is MGIMO ranked in terms of prestige among Russian universities?", "answer": " MGIMO is considered one of the most prestigious and elite universities in Russia.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Moscow State Institute of International Relations"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Moscow State Institute of International Relations"}, {"qid": 5559, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Where is the Moscow State Institute of International Relations located?", "answer": " It is located in Moscow, Russia.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Moscow State Institute of International Relations"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Moscow State Institute of International Relations"}, {"qid": 5560, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the size of the staff at MGIMO compare to other Russian universities?", "answer": " The question cannot be directly answered without specific staff numbers for MGIMO and comparative data from other Russian universities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Moscow State Institute of International Relations"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Moscow State Institute of International Relations"}, {"qid": 5561, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What year was the Moscow State Institute of International Relations established, and how does that compare to the founding years of other prestigious Russian universities?", "answer": " The question cannot be answered without the specific founding year of MGIMO and comparative founding years of other Russian universities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Moscow State Institute of International Relations"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Moscow State Institute of International Relations"}, {"qid": 5562, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Who is the current president of the Moscow State Institute of International Relations?", "answer": " The question cannot be answered without up-to-date information on the current president of MGIMO.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Moscow State Institute of International Relations"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Moscow State Institute of International Relations"}, {"qid": 5563, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If a new campus of MGIMO were to be established, how might the location be chosen?", "answer": " The location for a new MGIMO campus would likely be chosen based on strategic, educational, and logistical considerations by the Russian Ministry of Foreign Affairs and university administration.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Moscow State Institute of International Relations"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Moscow State Institute of International Relations"}, {"qid": 5564, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the primary focus of education and research at the Moscow State Institute of International Relations?", "answer": " The primary focus of education and research at MGIMO is on international relations, political science, and diplomacy.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Moscow State Institute of International Relations"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Moscow State Institute of International Relations"}, {"qid": 5565, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to other institutes of higher education in Russia, how unique is MGIMO's affiliation with the Russian Ministry of Foreign Affairs?", "answer": " MGIMO's direct affiliation with the Russian Ministry of Foreign Affairs is relatively unique among Russian higher education institutions, emphasizing its prestigious status in the field of international relations and diplomacy.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Moscow State Institute of International Relations"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Moscow State Institute of International Relations"}, {"qid": 5566, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would be the implications for MGIMO if the Russian Ministry of Foreign Affairs decided to significantly increase its funding?", "answer": " If the Russian Ministry of Foreign Affairs significantly increased its funding for MGIMO, the institute might expand its facilities, increase its research capabilities, and possibly offer more scholarships and international programs.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Moscow State Institute of International Relations"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Moscow State Institute of International Relations"}, {"qid": 5567, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does MGIMO contribute to the field of international relations globally?", "answer": " MGIMO contributes to the global field of international relations through its high-quality research, the preparation of diplomatic and international affairs professionals, and its international partnerships and collaborations.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Moscow State Institute of International Relations"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Moscow State Institute of International Relations"}, {"qid": 5568, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What makes MGIMO unique compared to other universities in Russia in terms of its student body?", "answer": " MGIMO is unique compared to other Russian universities due to its highly selective admission process, international student body, and focus on preparing students for careers in international diplomacy and foreign affairs.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Moscow State Institute of International Relations"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Moscow State Institute of International Relations"}, {"qid": 5569, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the number of degree programs offered at Bukovinian State Medical University compare to that of a typical medical university in Ukraine?", "answer": " Bukovinian State Medical University offers over 90 degree programs, which is likely above average compared to a typical medical university in Ukraine.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Bukovinian State Medical University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Bukovinian State Medical University"}, {"qid": 5570, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest medical university in Ukraine, and how does Bukovinian State Medical University's founding year compare?", "answer": " The oldest medical university in Ukraine is Bogomolets National Medical University, established in 1841, making Bukovinian State Medical University, not the oldest but a significant historical institution in Ukraine.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Bukovinian State Medical University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Bukovinian State Medical University"}, {"qid": 5571, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the location of Bukovinian State Medical University relate to its impact on the medical education in Western Ukraine?", "answer": " Located in Chernivtsi, Bukovinian State Medical University significantly contributes to medical education in Western Ukraine by providing access to high-quality medical education and healthcare training in the region.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Bukovinian State Medical University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Bukovinian State Medical University"}, {"qid": 5572, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Bukovinian State Medical University were to double its staff number, how might this affect its capacity to offer more specialized degree programs?", "answer": " Doubling its staff number could significantly enhance Bukovinian State Medical University's capacity to offer more specialized degree programs by leveraging the increased faculty expertise and potentially expanding research opportunities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Bukovinian State Medical University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Bukovinian State Medical University"}, {"qid": 5573, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the student-to-staff ratio at Bukovinian State Medical University compare to that of other IV level accredited medical universities in Ukraine?", "answer": " Without specific numbers for both BSMU and other universities, generally, a university like BSMU with a high number of staff and comprehensive degree programs might have a more favorable student-to-staff ratio compared to smaller institutions.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Bukovinian State Medical University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Bukovinian State Medical University"}, {"qid": 5574, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What feature distinguishes Bukovinian State Medical University most significantly from other medical universities in Ukraine?", "answer": " Its membership in the European University Association and being a signatory of the Magna Charta Universitatum distinguish Bukovinian State Medical University from other medical universities in Ukraine by emphasizing its commitment to European educational standards and academic freedom.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Bukovinian State Medical University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Bukovinian State Medical University"}, {"qid": 5575, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the membership of Bukovinian State Medical University in the European University Association benefit its students and faculty?", "answer": " Membership in the European University Association benefits its students and faculty by providing greater opportunities for international collaboration, access to a broader network of research and educational resources, and enhanced recognition of degrees abroad.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Bukovinian State Medical University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Bukovinian State Medical University"}, {"qid": 5576, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Bukovinian State Medical University were to become the leading research institution in Ukraine, what changes would it need to implement?", "answer": " To become the leading research institution in Ukraine, Bukovinian State Medical University would need to significantly increase its research funding, attract top-tier researchers, expand its PhD and research programs, and strengthen international research collaborations.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Bukovinian State Medical University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Bukovinian State Medical University"}, {"qid": 5577, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to medical universities in Eastern Europe, how does Bukovinian State Medical University rank in terms of its international collaborations?", "answer": " While specific rankings are not provided, Bukovinian State Medical University's active participation in the European University Association and adherence to the Magna Charta Universitatum likely place it favorably in terms of international collaborations among medical universities in Eastern Europe.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Bukovinian State Medical University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Bukovinian State Medical University"}, {"qid": 5578, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most significant contribution of Bukovinian State Medical University to the medical community in Ukraine?", "answer": " The most significant contribution of Bukovinian State Medical University is likely its comprehensive education in medicine and healthcare, offering over 90 degree programs and extensive research and training facilities, significantly impacting healthcare standards in Ukraine.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Bukovinian State Medical University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Bukovinian State Medical University"}, {"qid": 5579, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the accreditation level IV of Bukovinian State Medical University influence its curriculum and degree recognition?", "answer": " The IV level of accreditation allows Bukovinian State Medical University to offer a wide range of undergraduate, graduate, and postgraduate programs with curricula that meet national and potentially international standards, ensuring broader recognition of its degrees.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Bukovinian State Medical University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Bukovinian State Medical University"}, {"qid": 5580, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Bukovinian State Medical University were to expand its faculties to include non-medical fields, how might this diversification affect its reputation in the medical education sector?", "answer": " Diversifying into non-medical fields could broaden the university's academic appeal and interdisciplinary research opportunities, but it might need careful management to maintain its strong reputation specifically in medical education by ensuring continued investment and focus on medical programs and research.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Bukovinian State Medical University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Bukovinian State Medical University"}, {"qid": 5581, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest university in Kazan?", "answer": " Kazan Federal University", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Kazan Federal University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Kazan Federal University"}, {"qid": 5582, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What type of institution is Kazan Federal University?", "answer": " Public research university", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Kazan Federal University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Kazan Federal University"}, {"qid": 5583, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Who has the highest position at Kazan Federal University?", "answer": " The president of Kazan Federal University", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Kazan Federal University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Kazan Federal University"}, {"qid": 5584, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the staff number at Kazan Federal University compare to other universities in Kazan?", "answer": " Kazan Federal University has one of the largest staff numbers among universities in Kazan.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Kazan Federal University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Kazan Federal University"}, {"qid": 5585, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the main focus of Kazan Federal University?", "answer": " Research and higher education", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Kazan Federal University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Kazan Federal University"}, {"qid": 5586, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Where is the largest campus of Kazan Federal University located?", "answer": " In Kazan, Russia", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Kazan Federal University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Kazan Federal University"}, {"qid": 5587, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Kazan Federal University were to open a new faculty, what area might it focus on based on current trends?", "answer": " Data Science or Artificial Intelligence", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Kazan Federal University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Kazan Federal University"}, {"qid": 5588, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How has the role of the president influenced the global ranking of Kazan Federal University?", "answer": " The leadership and vision of the president have contributed to improving the university's global ranking through strategic initiatives and international collaborations.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Kazan Federal University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Kazan Federal University"}, {"qid": 5589, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to when it was founded, how has the number of staff at Kazan Federal University changed?", "answer": " The number of staff at Kazan Federal University has significantly increased since it was founded.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Kazan Federal University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Kazan Federal University"}, {"qid": 5590, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most popular course at Kazan Federal University?", "answer": " This information varies over time and depends on student enrollment preferences.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Kazan Federal University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Kazan Federal University"}, {"qid": 5591, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Kazan Federal University were to collaborate with an international university, which area might they focus on?", "answer": " They might focus on collaborative research in areas like biotechnology, environmental science, or physics.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Kazan Federal University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Kazan Federal University"}, {"qid": 5592, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What historical impact has Kazan Federal University had on the city of Kazan?", "answer": " Kazan Federal University has played a crucial role in the educational and cultural development of Kazan, contributing to its reputation as a center of learning and science.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Kazan Federal University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Kazan Federal University"}, {"qid": 5593, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between the University of La Rioja and the project \"Iberus\"?", "answer": " The University of La Rioja earned the Campus International Excellence for the project \"Iberus\", which it presented together with the public universities of Zaragoza, Navarra, and Lleida.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of La Rioja"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of La Rioja"}, {"qid": 5594, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "When was the University of La Rioja first inaugurated?", "answer": " The University of La Rioja was first inaugurated during the 1992–1993 academic year.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of La Rioja"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of La Rioja"}, {"qid": 5595, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How is the University of La Rioja connected to the European Higher Education Area?", "answer": " The University of La Rioja currently teaches Grades 19 adapted to the European Higher Education Area.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of La Rioja"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of La Rioja"}, {"qid": 5596, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which city is the University of La Rioja based in?", "answer": " The University of La Rioja is based in Logroño, La Rioja, Spain.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of La Rioja"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of La Rioja"}, {"qid": 5597, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the University of La Rioja compare to other institutions in terms of its foundation year?", "answer": " The University of La Rioja was founded in 1992, making it relatively newer compared to many other higher education institutions that were established earlier.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of La Rioja"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of La Rioja"}, {"qid": 5598, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What kind of academic programs does the University of La Rioja offer?", "answer": " The University of La Rioja offers a variety of academic programs including Grades 19 adapted to the European Higher Education, a varied program of masters, summer courses, and courses of Spanish language and culture for foreigners.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of La Rioja"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of La Rioja"}, {"qid": 5599, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of La Rioja decided to expand its program offerings, which areas could potentially benefit from such an expansion?", "answer": " Potential areas that could benefit from an expansion of program offerings at the University of La Rioja include new cutting-edge fields such as artificial intelligence, sustainable development, digital humanities, and health sciences.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of La Rioja"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of La Rioja"}, {"qid": 5600, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What unique recognition has the University of La Rioja received?", "answer": " The University of La Rioja has received the unique recognition of Campus International Excellence for the project \"Iberus\".", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of La Rioja"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of La Rioja"}, {"qid": 5601, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the University of La Rioja's inception compare to the establishment of its Iberus project partners?", "answer": " The University of La Rioja was inaugurated in 1992-1993, which might be relatively close or later than the establishment dates of its Iberus project partners (the public universities of Zaragoza, Navarra, and Lleida), highlighting its status as a relatively young institution among them.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of La Rioja"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of La Rioja"}, {"qid": 5602, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What role does the University of La Rioja play in promoting Spanish language and culture to foreigners?", "answer": " The University of La Rioja plays a significant role in promoting Spanish language and culture to foreigners through its varied program of courses designed specifically for them.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of La Rioja"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of La Rioja"}, {"qid": 5603, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What might be the impact on the University of La Rioja's international reputation if it further strengthens its collaboration with the Iberus project partners?", "answer": " Strengthening its collaboration with the Iberus project partners could significantly enhance the University of La Rioja's international reputation by showcasing its commitment to high-quality, collaborative education and research within the European and global context.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of La Rioja"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of La Rioja"}, {"qid": 5604, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the primary location of the University of La Rioja?", "answer": " The primary location of the University of La Rioja is in Logroño, La Rioja, Spain.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of La Rioja"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of La Rioja"}, {"qid": 5605, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the staff number at the University of Stuttgart compare to that of another TU9 member university?", "answer": " The University of Stuttgart has a specific number of staff, but without data on staff numbers from another TU9 member university, a direct comparison cannot be made.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Stuttgart"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Stuttgart"}, {"qid": 5606, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest faculty at the University of Stuttgart?", "answer": " The specific oldest faculty at the University of Stuttgart is not provided, but given its foundation in 1829, faculties related to engineering might be among the oldest due to its focus on technical disciplines.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Stuttgart"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Stuttgart"}, {"qid": 5607, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the University of Stuttgart's membership in TU9 enhance its engineering programs?", "answer": " Being a member of TU9, which is an incorporated society of the largest and most notable German institutes of technology, likely enhances the University of Stuttgart's engineering programs through collaborative research opportunities, shared resources, and a strengthened reputation in the field of engineering.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Stuttgart"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Stuttgart"}, {"qid": 5608, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What if the University of Stuttgart decided to expand its faculties beyond the current 10?", "answer": " If the University of Stuttgart decided to expand its faculties beyond the current 10, it might develop new programs in emerging fields, enhance interdisciplinary research, and potentially attract a wider range of students and faculty.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Stuttgart"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Stuttgart"}, {"qid": 5609, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the University of Stuttgart's founding year compare to other German universities?", "answer": " Founded in 1829, the University of Stuttgart is older than many German universities, but there are others, like the University of Heidelberg founded in 1386, that are older.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Stuttgart"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Stuttgart"}, {"qid": 5610, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which engineering discipline at the University of Stuttgart has the highest number of enrolled students?", "answer": " The specific engineering discipline at the University of Stuttgart with the highest number of enrolled students is not provided, but traditionally, disciplines such as mechanical or electrical engineering are popular among students.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Stuttgart"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Stuttgart"}, {"qid": 5611, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between the University of Stuttgart and the automotive industry in Stuttgart?", "answer": " The University of Stuttgart likely has a strong relationship with the automotive industry in Stuttgart, involving collaboration on research projects, internships for students, and potential employment opportunities, given Stuttgart's reputation as a hub for the automotive industry.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Stuttgart"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Stuttgart"}, {"qid": 5612, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would happen to research output if the University of Stuttgart doubled its staff number?", "answer": " If the University of Stuttgart doubled its staff number, it could significantly increase research output due to more faculty conducting research, leading to more publications, projects, and potentially greater innovation.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Stuttgart"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Stuttgart"}, {"qid": 5613, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Is the University of Stuttgart larger in size compared to other technical universities in Germany?", "answer": " Without specific data on the size of other technical universities in Germany, it's difficult to accurately compare, but as a member of TU9, the University of Stuttgart is among the largest and most notable institutes of technology in Germany.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Stuttgart"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Stuttgart"}, {"qid": 5614, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most notable research achievement of the University of Stuttgart?", "answer": " The most notable research achievement of the University of Stuttgart is not specified, but given its strong programs in engineering, achievements in areas such as automotive engineering, aerospace, or sustainable energy technologies would be likely candidates.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Stuttgart"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Stuttgart"}, {"qid": 5615, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How do the University of Stuttgart's engineering programs benefit from its location in Stuttgart?", "answer": " The University of Stuttgart's engineering programs benefit from its location in Stuttgart through close ties with leading automotive and engineering companies based in the city, providing students with access to industry expertise, internships, and job opportunities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Stuttgart"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Stuttgart"}, {"qid": 5616, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Stuttgart introduced a new faculty focused on artificial intelligence, how might it impact the university's reputation in technology and engineering?", "answer": " Introducing a new faculty focused on artificial intelligence could significantly enhance the University of Stuttgart's reputation in technology and engineering by positioning it at the forefront of AI research and education, potentially attracting more students and research funding.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Stuttgart"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Stuttgart"}, {"qid": 5617, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the staff number at the University of Göttingen compare to the University of Hamburg?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Göttingen"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Göttingen"}, {"qid": 5618, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest department at the University of Göttingen?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Göttingen"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Göttingen"}, {"qid": 5619, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between the University of Göttingen and the Georgia Augusta Association?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Göttingen"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Göttingen"}, {"qid": 5620, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Göttingen decided to double its current number of staff, how many people would be working there?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Göttingen"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Göttingen"}, {"qid": 5621, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which year was the University of Göttingen founded, and how does it rank in age among German universities?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Göttingen"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Göttingen"}, {"qid": 5622, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the role of the president influence the academic direction of the University of Göttingen?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Göttingen"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Göttingen"}, {"qid": 5623, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Göttingen were to open a new campus abroad, how would that affect its global ranking?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Göttingen"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Göttingen"}, {"qid": 5624, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the University of Göttingen's staff size compare to that of the University of Berlin?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Göttingen"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Göttingen"}, {"qid": 5625, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most popular course at the University of Göttingen?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Göttingen"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Göttingen"}, {"qid": 5626, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What partnership networks is the University of Göttingen a part of?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Göttingen"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Göttingen"}, {"qid": 5627, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Göttingen were to merge with another university, what would be the potential benefits and challenges?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Göttingen"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Göttingen"}, {"qid": 5628, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to its founding year, how has the University of Göttingen grown in terms of academic offerings?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Göttingen"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Göttingen"}, {"qid": 5629, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What type of university is the Humboldt University of Berlin?", "answer": " It is a public research university.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Humboldt University of Berlin"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Humboldt University of Berlin"}, {"qid": 5630, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Where is the Humboldt University of Berlin located?", "answer": " It is located in the central borough of Mitte in Berlin, Germany.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Humboldt University of Berlin"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Humboldt University of Berlin"}, {"qid": 5631, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest university in Berlin?", "answer": " Humboldt University of Berlin.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Humboldt University of Berlin"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Humboldt University of Berlin"}, {"qid": 5632, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Is the Humboldt University of Berlin older than the Free University of Berlin?", "answer": " Yes.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Humboldt University of Berlin"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Humboldt University of Berlin"}, {"qid": 5633, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the abbreviation for Humboldt University of Berlin?", "answer": " HU Berlin.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Humboldt University of Berlin"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Humboldt University of Berlin"}, {"qid": 5634, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If a new faculty was to be introduced at Humboldt University of Berlin, who would likely be involved in the decision-making process?", "answer": " The president and administrative staff of the Humboldt University of Berlin.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Humboldt University of Berlin"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Humboldt University of Berlin"}, {"qid": 5635, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which university in Berlin has the central location in Mitte?", "answer": " Humboldt University of Berlin.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Humboldt University of Berlin"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Humboldt University of Berlin"}, {"qid": 5636, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the primary focus of Humboldt University of Berlin?", "answer": " Research and education.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Humboldt University of Berlin"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Humboldt University of Berlin"}, {"qid": 5637, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If a student wanted to study at a public research university in Berlin, where might they apply?", "answer": " Humboldt University of Berlin.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Humboldt University of Berlin"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Humboldt University of Berlin"}, {"qid": 5638, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to other universities in Germany, where does Humboldt University of Berlin rank in terms of age?", "answer": " It is among the oldest universities in Germany.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Humboldt University of Berlin"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Humboldt University of Berlin"}, {"qid": 5639, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which part of Berlin is Humboldt University of Berlin located?", "answer": " It is located in the central borough of Mitte.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Humboldt University of Berlin"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Humboldt University of Berlin"}, {"qid": 5640, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the Humboldt University of Berlin decided to expand, which borough of Berlin might they consider for a new campus?", "answer": " This is hypothetical and would depend on various factors such as available space, strategic importance, and accessibility.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Humboldt University of Berlin"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Humboldt University of Berlin"}, {"qid": 5641, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the founding date of the University of Bonn?", "answer": " 18 October 1818", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Bonn"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Bonn"}, {"qid": 5642, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Who founded the University of Bonn?", "answer": " Frederick William III", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Bonn"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Bonn"}, {"qid": 5643, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is unique about the University of Bonn's status among German universities?", "answer": " It has the title of \"University of Excellence\" under the German Universities Excellence Initiative.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Bonn"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Bonn"}, {"qid": 5644, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the number of professors at the University of Bonn compare to the total staff number?", "answer": " The University of Bonn has 544 professors, but the total staff number is not provided.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Bonn"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Bonn"}, {"qid": 5645, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Where is the University of Bonn located?", "answer": " Bonn, North Rhine-Westphalia, Germany", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Bonn"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Bonn"}, {"qid": 5646, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What was the University of Bonn known as at the time of its founding?", "answer": " Rhein-Universität (Rhine University)", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Bonn"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Bonn"}, {"qid": 5647, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What does the University of Bonn offer in terms of academic programs?", "answer": " Many undergraduate and graduate programs in a range of subjects", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Bonn"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Bonn"}, {"qid": 5648, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What association is the University of Bonn a member of?", "answer": " German U15", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Bonn"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Bonn"}, {"qid": 5649, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Bonn were to open a new faculty, how would it affect the number of professors?", "answer": " It would increase the number of professors.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Bonn"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Bonn"}, {"qid": 5650, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What makes the University of Bonn's foundation year significant in the context of German universities?", "answer": " It was founded in 1818, making it one of the older universities in Germany.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Bonn"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Bonn"}, {"qid": 5651, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What was the predecessor institution to the University of Bonn?", "answer": " Academy of the Prince-elector of Cologne, founded in 1777", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Bonn"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Bonn"}, {"qid": 5652, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Bonn were to expand its campus, in what city would this likely occur?", "answer": " Bonn, North Rhine-Westphalia, Germany", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Bonn"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Bonn"}, {"qid": 5653, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between İzmir Institute of Technology and its president?", "answer": " The president is the head or leader of the İzmir Institute of Technology.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["İzmir Institute of Technology"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "İzmir Institute of Technology"}, {"qid": 5654, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Who has the highest authority at the İzmir Institute of Technology?", "answer": " The president of the İzmir Institute of Technology has the highest authority.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["İzmir Institute of Technology"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "İzmir Institute of Technology"}, {"qid": 5655, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the staff number at İzmir Institute of Technology compare to that of a small startup company?", "answer": " The staff number at İzmir Institute of Technology is significantly higher than that of a small startup company.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["İzmir Institute of Technology"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "İzmir Institute of Technology"}, {"qid": 5656, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the start year of İzmir Institute of Technology relate to its historical development?", "answer": " The start year marks the beginning of İzmir Institute of Technology's operations and is a key point in its historical development.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["İzmir Institute of Technology"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "İzmir Institute of Technology"}, {"qid": 5657, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest technological institution in İzmir?", "answer": " İzmir Institute of Technology is among the oldest technological institutions in İzmir.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["İzmir Institute of Technology"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "İzmir Institute of Technology"}, {"qid": 5658, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would happen if the İzmir Institute of Technology decided to double its staff number?", "answer": " Doubling its staff number could significantly expand the İzmir Institute of Technology's research capabilities and course offerings.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["İzmir Institute of Technology"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "İzmir Institute of Technology"}, {"qid": 5659, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the location of İzmir Institute of Technology compare to urban universities in terms of campus environment?", "answer": " The location of İzmir Institute of Technology likely offers a more spacious and possibly greener campus environment compared to urban universities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["İzmir Institute of Technology"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "İzmir Institute of Technology"}, {"qid": 5660, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which department at İzmir Institute of Technology has the most innovative research projects?", "answer": " The answer would depend on current research projects, but departments like Engineering or Computer Science could be contenders for having the most innovative research projects.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["İzmir Institute of Technology"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "İzmir Institute of Technology"}, {"qid": 5661, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What role does the İzmir Institute of Technology play in the local economy?", "answer": " İzmir Institute of Technology plays a significant role in the local economy by providing education, fostering innovation, and producing skilled graduates.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["İzmir Institute of Technology"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "İzmir Institute of Technology"}, {"qid": 5662, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the İzmir Institute of Technology were to partner with international tech companies, how might its global reputation change?", "answer": " Partnering with international tech companies could significantly enhance İzmir Institute of Technology's global reputation by highlighting its commitment to innovation and global collaboration.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["İzmir Institute of Technology"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "İzmir Institute of Technology"}, {"qid": 5663, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to other technical institutes in Turkey, how does İzmir Institute of Technology rank in terms of academic excellence?", "answer": " İzmir Institute of Technology is considered one of the top technical institutes in Turkey in terms of academic excellence.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["İzmir Institute of Technology"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "İzmir Institute of Technology"}, {"qid": 5664, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most significant achievement of İzmir Institute of Technology since its inception?", "answer": " The most significant achievement could vary based on perspectives but may include advancements in research, significant contributions to technology, or producing notable alumni.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["İzmir Institute of Technology"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "İzmir Institute of Technology"}, {"qid": 5665, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the staff number of Adam Mickiewicz University in Poznań compare to that of the University of Warsaw?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Adam Mickiewicz University in Poznań"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Adam Mickiewicz University in Poznań"}, {"qid": 5666, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest department at Adam Mickiewicz University in Poznań?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Adam Mickiewicz University in Poznań"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Adam Mickiewicz University in Poznań"}, {"qid": 5667, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the location of Adam Mickiewicz University in Poznań influence its academic collaborations?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Adam Mickiewicz University in Poznań"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Adam Mickiewicz University in Poznań"}, {"qid": 5668, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Adam Mickiewicz University in Poznań were to open a new faculty, what would be a likely area of study based on current academic trends?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Adam Mickiewicz University in Poznań"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Adam Mickiewicz University in Poznań"}, {"qid": 5669, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the student population of Adam Mickiewicz University in Poznań compare to that of Jagiellonian University in Kraków?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Adam Mickiewicz University in Poznań"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Adam Mickiewicz University in Poznań"}, {"qid": 5670, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which year had the highest enrollment numbers at Adam Mickiewicz University in Poznań?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Adam Mickiewicz University in Poznań"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Adam Mickiewicz University in Poznań"}, {"qid": 5671, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What role does Adam Mickiewicz University in Poznań play in the local community?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Adam Mickiewicz University in Poznań"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Adam Mickiewicz University in Poznań"}, {"qid": 5672, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Adam Mickiewicz University in Poznań were to collaborate with a tech company, which company would it likely be?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Adam Mickiewicz University in Poznań"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Adam Mickiewicz University in Poznań"}, {"qid": 5673, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the research output of Adam Mickiewicz University in Poznań compare to that of the University of Gdańsk?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Adam Mickiewicz University in Poznań"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Adam Mickiewicz University in Poznań"}, {"qid": 5674, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most popular course at Adam Mickiewicz University in Poznań?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Adam Mickiewicz University in Poznań"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Adam Mickiewicz University in Poznań"}, {"qid": 5675, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the international student body at Adam Mickiewicz University in Poznań enhance its academic environment?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Adam Mickiewicz University in Poznań"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Adam Mickiewicz University in Poznań"}, {"qid": 5676, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Adam Mickiewicz University in Poznań were to establish a branch campus abroad, which country would be the most strategic choice?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Adam Mickiewicz University in Poznań"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Adam Mickiewicz University in Poznań"}, {"qid": 5677, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the number of staff at the Silesian University in Opava compare to the number of staff at a typical small university?", "answer": " The answer would depend on specific data for both the Silesian University in Opava and the typical small university being compared.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Silesian University in Opava"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Silesian University in Opava"}, {"qid": 5678, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest university in Opava, if the Silesian University in Opava was considered?", "answer": " The Silesian University in Opava, as it is the entity in question.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Silesian University in Opava"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Silesian University in Opava"}, {"qid": 5679, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What relationship does the president of the Silesian University in Opava have with the university?", "answer": " The president is the head and represents the Silesian University in Opava.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Silesian University in Opava"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Silesian University in Opava"}, {"qid": 5680, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the Silesian University in Opava decided to double its staff number, how would that affect its faculty-to-student ratio?", "answer": " Doubling the staff number would likely decrease the faculty-to-student ratio, assuming the number of students remains constant, leading to smaller class sizes and potentially more individual attention for students.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Silesian University in Opava"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Silesian University in Opava"}, {"qid": 5681, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the start year of the Silesian University in Opava compare to that of Harvard University?", "answer": " The Silesian University in Opava was founded much later than Harvard University, which was established in 1636.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Silesian University in Opava"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Silesian University in Opava"}, {"qid": 5682, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which department at the Silesian University in Opava has the highest number of staff?", "answer": " The answer would require specific data on the staff numbers of each department, which is not provided.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Silesian University in Opava"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Silesian University in Opava"}, {"qid": 5683, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the significance of the location of the Silesian University in Opava for its academic programs?", "answer": " The location in Opava may influence the university's focus on certain academic programs due to regional history, culture, and economic needs, but specific details would depend on the academic offerings of the university.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Silesian University in Opava"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Silesian University in Opava"}, {"qid": 5684, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the Silesian University in Opava were to merge with another university, how would that affect its independence?", "answer": " A merger with another university would likely reduce the Silesian University in Opava's independence, as decisions and policies might then be made jointly or overseen by a new administrative body.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Silesian University in Opava"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Silesian University in Opava"}, {"qid": 5685, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to universities established in the 20th century, where does the Silesian University in Opava rank in terms of its start year?", "answer": " The Silesian University in Opava, being established within the timeframe of the 20th century, would be among those compared but specific ranking would depend on the exact years of establishment of the other universities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Silesian University in Opava"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Silesian University in Opava"}, {"qid": 5686, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most popular course at the Silesian University in Opava?", "answer": " The answer would require specific enrollment data for each course, which is not provided.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Silesian University in Opava"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Silesian University in Opava"}, {"qid": 5687, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the president's leadership style at the Silesian University in Opava impact the university's culture?", "answer": " The president's leadership style can significantly impact the university's culture by influencing decision-making processes, academic priorities, and the overall working environment, though specifics would depend on the individual's style.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Silesian University in Opava"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Silesian University in Opava"}, {"qid": 5688, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the Silesian University in Opava introduced a new field of study, how would it affect the university's curriculum diversity?", "answer": " Introducing a new field of study would increase the university's curriculum diversity, offering students a broader range of academic options and potentially attracting a wider student body interested in the new discipline.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Silesian University in Opava"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Silesian University in Opava"}, {"qid": 5689, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the staff number at Aydın Adnan Menderes University compare to that of a similarly sized university?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Aydın Adnan Menderes University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Aydın Adnan Menderes University"}, {"qid": 5690, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest department at Aydın Adnan Menderes University?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Aydın Adnan Menderes University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Aydın Adnan Menderes University"}, {"qid": 5691, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How has the leadership style of the current president of Aydın Adnan Menderes University influenced its academic programs?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Aydın Adnan Menderes University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Aydın Adnan Menderes University"}, {"qid": 5692, "topic": "European University Association", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Aydın Adnan Menderes University were to open a new campus, what location would likely be chosen based on its current geographical spread?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Aydın Adnan Menderes University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Aydın Adnan Menderes University"}, {"qid": 5693, "topic": "European University Association", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which faculty at Aydın Adnan Menderes University has the highest number of published research papers?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Aydın Adnan Menderes University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Aydın Adnan Menderes University"}, {"qid": 5694, "topic": "European University Association", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the student to staff ratio at Aydın Adnan Menderes University compare to the national average in Turkey?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Aydın Adnan Menderes University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Aydın Adnan Menderes University"}, {"qid": 5695, "topic": "European University Association", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between Aydın Adnan Menderes University's founding year and its current academic structure?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Aydın Adnan Menderes University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Aydın Adnan Menderes University"}, {"qid": 481, "topic": "Group of Eight", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the start year of Columbia University compare to Harvard University?", "answer": " Columbia University was established in 1754, making it younger than Harvard University, which was founded in 1636.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Columbia University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Columbia University"}, {"qid": 482, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest institution of higher education in the United States?", "answer": " Harvard University.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Columbia University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Columbia University"}, {"qid": 483, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Why was Columbia University originally named King's College?", "answer": " It was named King's College because it was established in 1754 by royal charter of King George II of Great Britain.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Columbia University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Columbia University"}, {"qid": 484, "topic": "Group of Eight", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would happen to the staff number at Columbia University if they decided to expand their engineering department?", "answer": " The staff number at Columbia University would likely increase to accommodate the expansion of the engineering department.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Columbia University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Columbia University"}, {"qid": 485, "topic": "Group of Eight", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the location of Columbia University compare to Stanford University in terms of their urban or rural settings?", "answer": " Columbia University is located in an urban setting in New York City, whereas Stanford University is in a suburban area near Palo Alto, California.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Columbia University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Columbia University"}, {"qid": 486, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which Ivy League university has the highest number of staff?", "answer": " As of my last update, exact staff numbers fluctuate, but traditionally, larger universities like Harvard or Columbia tend to have a higher number of staff due to their extensive research facilities and graduate programs.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Columbia University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Columbia University"}, {"qid": 487, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What led to Columbia University moving its main campus to Morningside Heights?", "answer": " Columbia University moved to Morningside Heights in 1896 due to the need for more space to accommodate its growing student body and the expansion of its academic programs.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Columbia University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Columbia University"}, {"qid": 488, "topic": "Group of Eight", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Columbia University were to merge with New York University, how would that affect its historical status as the fifth-oldest university in the United States?", "answer": " A merger with New York University would not change Columbia University's historical status as the fifth-oldest university in the United States, as historical statuses are based on the original founding dates.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Columbia University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Columbia University"}, {"qid": 489, "topic": "Group of Eight", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to the University of Chicago, how does Columbia University's founding year stand?", "answer": " Columbia University was founded in 1754, making it older than the University of Chicago, which was founded in 1890.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Columbia University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Columbia University"}, {"qid": 490, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which department at Columbia University employs the most staff?", "answer": " The specific department employing the most staff can vary, but typically, departments with extensive research operations, such as the Medical Department or the Engineering Department, employ a larger number of staff.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Columbia University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Columbia University"}, {"qid": 491, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How did the original location of Columbia University on the grounds of Trinity Church influence its development in the early years?", "answer": " The original location of Columbia University on the grounds of Trinity Church in Manhattan provided it with a central location in New York City, facilitating access for students and scholars and helping to establish its reputation as a leading institution of higher education in the early United States.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Columbia University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Columbia University"}, {"qid": 492, "topic": "Group of Eight", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What if Columbia University had decided to remain as King's College and not change its name after the American Revolution?", "answer": " If Columbia University had decided to remain as King's College, it might have faced challenges in shedding its royal associations post-American Revolution, potentially affecting its appeal and support among the newly independent American populace.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Columbia University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Columbia University"}, {"qid": 493, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the name of the oldest institution of higher learning in the United States named after its first benefactor, Puritan clergyman John Harvard?", "answer": " Harvard University", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harvard University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Harvard University"}, {"qid": 494, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which university is considered the most prestigious in the world due to its influence, wealth, and rankings?", "answer": " Harvard University", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harvard University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Harvard University"}, {"qid": 495, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest institution of higher learning in the United States?", "answer": " Harvard University", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harvard University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Harvard University"}, {"qid": 496, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "In which city is Harvard University, a private Ivy League research university, located?", "answer": " Cambridge, Massachusetts", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harvard University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Harvard University"}, {"qid": 497, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What type of university is Harvard University recognized as?", "answer": " A private Ivy League research university", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harvard University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Harvard University"}, {"qid": 498, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "Where does Harvard University rank among institutions of higher learning in terms of age in the United States?", "answer": " First", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harvard University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Harvard University"}, {"qid": 499, "topic": "Group of Eight", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of Harvard University compare to other Ivy League schools?", "answer": " Harvard University is the oldest among them, founded in 1636.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harvard University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Harvard University"}, {"qid": 500, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What was the original name of Harvard University when it was founded in 1636?", "answer": " Harvard College", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harvard University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Harvard University"}, {"qid": 501, "topic": "Group of Eight", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If someone were to donate a significant amount to Harvard University today, could they have the university renamed after them as John Harvard did?", "answer": " It is highly unlikely due to the historical significance and prestige attached to the name Harvard University.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harvard University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Harvard University"}, {"qid": 502, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which university has the oldest founding date among the Ivy League institutions?", "answer": " Harvard University", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harvard University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Harvard University"}, {"qid": 503, "topic": "Group of Eight", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to other Ivy League universities, where does Harvard stand in terms of its wealth?", "answer": " It is one of the wealthiest, if not the wealthiest, Ivy League universities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harvard University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Harvard University"}, {"qid": 504, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What was Harvard University's initial purpose when it was founded in 1636?", "answer": " To educate clergy and civil servants.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harvard University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Harvard University"}, {"qid": 505, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between Princeton University and the College of New Jersey?", "answer": " Princeton University was originally founded as the College of New Jersey in 1746.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Princeton University"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "Princeton University"}, {"qid": 506, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest institution of higher education in the United States, and where does Princeton University rank in terms of its founding year?", "answer": " Harvard University is the oldest institution of higher education in the United States, and Princeton University is the fourth-oldest.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Princeton University"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "Princeton University"}, {"qid": 507, "topic": "Group of Eight", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the location of Princeton University's campus compare to its original location?", "answer": " Princeton University's campus is currently in Princeton, New Jersey, but it was originally founded in Elizabeth, New Jersey, before moving to Newark and then to Princeton.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Princeton University"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "Princeton University"}, {"qid": 508, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "When did Princeton University officially become a university, and how does this date compare to when it was founded?", "answer": " Princeton University officially became a university in 1896, 150 years after it was founded in 1746.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Princeton University"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "Princeton University"}, {"qid": 509, "topic": "Group of Eight", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Princeton University had not moved from Newark to Princeton, how would its location history be different?", "answer": " If Princeton University had not moved from Newark to Princeton, its location history would include only Elizabeth and Newark, excluding its current location in Princeton.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Princeton University"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "Princeton University"}, {"qid": 510, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the significance of Princeton University being one of the nine colonial colleges chartered before the American Revolution?", "answer": " Being one of the nine colonial colleges chartered before the American Revolution signifies Princeton University's historical importance and its early role in American higher education.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Princeton University"], "topic_level": false, "class": "sing entity", "hops": "Multi Hops", "entity": "Princeton University"}, {"qid": 511, "topic": "Group of Eight", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to other Ivy League universities, how does the founding year of Princeton University rank?", "answer": " Princeton University, founded in 1746, is the fourth-oldest Ivy League university, after Harvard (1636), Yale (1701), and Columbia (1754).", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Princeton University"], "topic_level": false, "class": "sing entity", "hops": "Multi Hops", "entity": "Princeton University"}, {"qid": 512, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "What makes Princeton University unique among the Ivy League universities in terms of its location?", "answer": " Princeton University's unique feature among Ivy League universities in terms of location is being situated in Princeton, New Jersey, a smaller town compared to the urban or larger city settings of other Ivy League schools.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Princeton University"], "topic_level": false, "class": "sing entity", "hops": "Multi Hops", "entity": "Princeton University"}, {"qid": 513, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How did Princeton University's official name change reflect its evolution as an institution?", "answer": " The name change from the College of New Jersey to Princeton University in 1896 reflected its evolution from a college to a comprehensive university.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Princeton University"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "Princeton University"}, {"qid": 514, "topic": "Group of Eight", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Princeton University had not been chartered before the American Revolution, how might its historical significance be altered?", "answer": " If Princeton University had not been chartered before the American Revolution, its historical significance might be diminished, as it wouldn't be part of the group of colonial colleges that played key roles in early American education and history.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Princeton University"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "Princeton University"}, {"qid": 515, "topic": "Group of Eight", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the transition from Elizabeth to Newark and finally to Princeton reflect on Princeton University's growth and development?", "answer": " The transition from Elizabeth to Newark and finally to Princeton reflects Princeton University's growth and development by showing a geographical expansion and a commitment to finding a permanent and suitable location for an expanding educational institution.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Princeton University"], "topic_level": false, "class": "sing entity", "hops": "Multi Hops", "entity": "Princeton University"}, {"qid": 516, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "Among the nine colonial colleges, where does Princeton University stand in terms of its establishment year, and how does this relate to its historical prominence?", "answer": " Princeton University stands as the fourth-oldest among the nine colonial colleges, highlighting its early establishment and contributing to its historical prominence in American higher education.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Princeton University"], "topic_level": false, "class": "sing entity", "hops": "Multi Hops", "entity": "Princeton University"}, {"qid": 517, "topic": "Group of Eight", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of Yale University compare to that of Harvard University?", "answer": " Yale University was founded in 1701, making it younger than Harvard University, which was founded in 1636.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Yale University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Yale University"}, {"qid": 518, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which is the oldest institution of higher education in the United States?", "answer": " Harvard University is the oldest institution of higher education in the United States, founded in 1636, before Yale University which was founded in 1701.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Yale University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Yale University"}, {"qid": 519, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What role did Yale University have in the American Revolution?", "answer": " Yale University, being one of the nine colonial colleges chartered before the American Revolution, played a significant role in educating leaders and supporters of the revolutionary cause.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Yale University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Yale University"}, {"qid": 520, "topic": "Group of Eight", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would potentially happen to Yale University's rankings if it suddenly lost half of its financial endowment?", "answer": " If Yale University lost half of its financial endowment, it could potentially face a significant drop in its rankings due to reduced funding for research, scholarships, and facilities, impacting its overall prestige and quality of education.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Yale University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Yale University"}, {"qid": 521, "topic": "Group of Eight", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the staff number of Yale University compare to that of Princeton University?", "answer": " As specific staff numbers can fluctuate, generally, larger universities like Yale might have a higher staff number compared to smaller Ivy League institutions like Princeton, depending on the current year and various departmental expansions.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Yale University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Yale University"}, {"qid": 522, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most prestigious Ivy League university in terms of global rankings?", "answer": " The most prestigious Ivy League university in terms of global rankings often fluctuates between Harvard, Yale, and Princeton, depending on the ranking system and criteria used.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Yale University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Yale University"}, {"qid": 523, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does Yale University's influence in global education compare to its influence in the United States?", "answer": " Yale University's influence in global education is significant, mirroring its influence in the United States, as it attracts students, faculty, and researchers from around the world, contributing to its reputation as a leading global institution of higher learning.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Yale University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Yale University"}, {"qid": 524, "topic": "Group of Eight", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Yale University decided to open a campus in another country, what would be the potential impact on its global standing?", "answer": " If Yale University opened a campus in another country, it could potentially enhance its global standing by increasing its international presence, attracting a diverse student body, and fostering global partnerships, depending on the success and integration of the new campus.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Yale University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Yale University"}, {"qid": 525, "topic": "Group of Eight", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to Columbia University, how does Yale University's location impact its student life?", "answer": " Yale University's location in New Haven, Connecticut, offers a smaller, more close-knit community feel compared to Columbia University's urban campus in New York City, which might impact student life in terms of campus cohesion versus city integration.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Yale University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Yale University"}, {"qid": 526, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the third-oldest institution of higher education in the United States?", "answer": " Yale University is the third-oldest institution of higher education in the United States, founded in 1701.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Yale University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Yale University"}, {"qid": 527, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What makes Yale University one of the most prestigious universities in the world?", "answer": " Yale University's prestige is attributed to its rich history, significant contributions to research and education, influential alumni, substantial financial endowment, and consistently high global rankings among institutions of higher learning.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Yale University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Yale University"}, {"qid": 528, "topic": "Group of Eight", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Yale University significantly expanded its engineering department, how might that affect its overall academic reputation?", "answer": " If Yale University significantly expanded its engineering department, it might enhance its overall academic reputation by diversifying its strengths, attracting more students and faculty in STEM fields, and potentially increasing its contributions to research and innovation in engineering.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Yale University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Yale University"}, {"qid": 529, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between Brown University's founding year and its status among U.S. higher education institutions?", "answer": " Brown University, founded in 1764, is the seventh-oldest institution of higher education in the United States.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brown University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Brown University"}, {"qid": 530, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "As of its founding, where does Brown University rank in terms of age among Ivy League schools?", "answer": " Brown University is the third-oldest Ivy League school, founded in 1764.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brown University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Brown University"}, {"qid": 531, "topic": "Group of Eight", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of Brown University compare to that of Princeton University?", "answer": " Brown University was founded in 1764, making it older than Princeton University, which was founded in 1746.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brown University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Brown University"}, {"qid": 532, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the founding principle of Brown University regarding student admission based on religious affiliation relate to its overall educational philosophy?", "answer": " Brown University's founding principle of equal admission and instruction regardless of religious affiliation is indicative of its broader commitment to inclusivity and diversity in education.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brown University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Brown University"}, {"qid": 533, "topic": "Group of Eight", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What if Brown University had been founded 50 years earlier, how would its historical significance in American education change?", "answer": " If Brown University had been founded in 1714, it would significantly alter its historical significance by making it one of the very first institutions of higher education in the American colonies, possibly influencing earlier educational and social developments in the region.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brown University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Brown University"}, {"qid": 534, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "Where does Brown University stand in terms of student diversity among Ivy League universities?", "answer": " Brown University is highly ranked for its student diversity among Ivy League universities, reflecting its foundational principle of admission without regard to religious affiliation.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brown University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Brown University"}, {"qid": 535, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the significance of Brown University's location in Providence, Rhode Island, in relation to its historical development?", "answer": " Brown University's location in Providence, Rhode Island, is significant for its historical development as it provided a supportive environment for its founding principles of freedom of expression and equal opportunity in education, being located in one of the first colonies to embrace religious freedom.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brown University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Brown University"}, {"qid": 536, "topic": "Group of Eight", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Brown University decided to relocate to another state, how might that affect its identity and historical legacy?", "answer": " Relocating Brown University to another state would significantly impact its identity and historical legacy by disconnecting it from its original setting in Providence, Rhode Island, which is integral to its founding history and principles.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brown University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Brown University"}, {"qid": 537, "topic": "Group of Eight", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to Harvard University, how does Brown University's approach to secularism in education differ?", "answer": " Brown University's approach to secularism, with its policy of equal admission and instruction regardless of religious affiliation from its founding, differs from Harvard University's initial Puritan foundations, showcasing Brown's early commitment to religious and educational freedom.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brown University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Brown University"}, {"qid": 538, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "What makes Brown University unique among the Ivy League in terms of its founding principles?", "answer": " Brown University is unique among the Ivy League for being the first U.S. college to officially codify that admission and instruction of students would be equal regardless of the religious affiliation of students, highlighting its commitment to inclusivity from the outset.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brown University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Brown University"}, {"qid": 539, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the principle of non-discrimination based on religious affiliation at Brown University reflect on its broader impact on American higher education?", "answer": " The principle of non-discrimination based on religious affiliation at Brown University reflects its pioneering role in promoting inclusivity and diversity, influencing broader trends towards these values in American higher education over time.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brown University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Brown University"}, {"qid": 540, "topic": "Group of Eight", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Brown University had not adopted its policy of equal admission regardless of religious affiliation, how might its reputation and student body composition be different today?", "answer": " If Brown University had not adopted its policy of equal admission regardless of religious affiliation, its reputation might lean more towards exclusivity rather than inclusivity, potentially resulting in a less diverse student body composition today.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brown University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Brown University"}, {"qid": 541, "topic": "Group of Eight", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the student body size of Cornell University compare to that of Harvard University?", "answer": " As of fall 2023, Cornell University has over 26,000 students in total, which is larger compared to Harvard University's total enrollment of about 21,000 students.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cornell University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Cornell University"}, {"qid": 542, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest Ivy League university, and how does Cornell University's founding year compare?", "answer": " The oldest Ivy League university is Harvard University, founded in 1636, making Cornell University, founded in 1865, one of the younger Ivy League institutions.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cornell University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Cornell University"}, {"qid": 543, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Who was responsible for founding Cornell University, and what was their vision for the institution?", "answer": " Ezra Cornell and Andrew Dickson White founded Cornell University with the vision of creating an institution where any person could find instruction in any study.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cornell University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Cornell University"}, {"qid": 544, "topic": "Group of Eight", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Cornell University had not been founded by Ezra Cornell and Andrew Dickson White, how might the landscape of Ivy League universities be different today?", "answer": " Without Cornell University, the Ivy League might have had a different composition, potentially lacking a key institution emphasizing co-education, nonsectarianism, and a wide range of studies from its inception.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cornell University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Cornell University"}, {"qid": 545, "topic": "Group of Eight", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to other Ivy League universities, how unique is Cornell University's status as a land-grant institution?", "answer": " Cornell University is unique among Ivy League universities as a land-grant institution, which mandates it to focus on practical subjects alongside the classical studies, a distinction not common among its Ivy peers.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cornell University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Cornell University"}, {"qid": 546, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which Ivy League university has the highest number of international students, and how does Cornell University rank in this regard?", "answer": " As of the latest data, Cornell University ranks highly among Ivy League universities for international student enrollment, though exact comparisons require current enrollment figures.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cornell University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Cornell University"}, {"qid": 547, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the founding of Cornell University as a co-educational institution contrast with the initial male-only policy of many other Ivy League universities?", "answer": " The founding of Cornell University as a co-educational institution marked a significant departure from the male-only admissions policy of most Ivy League universities at the time, demonstrating a commitment to gender inclusivity in higher education.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cornell University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Cornell University"}, {"qid": 548, "topic": "Group of Eight", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Cornell University decided to transition to a sect-specific institution, how would this change its historical nonsectarian stance?", "answer": " Transitioning to a sect-specific institution would fundamentally alter Cornell University's historical stance as a nonsectarian institution, potentially impacting its diverse and inclusive ethos.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cornell University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Cornell University"}, {"qid": 549, "topic": "Group of Eight", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the number of staff at Cornell University compare to that of other major research universities in the United States?", "answer": " Cornell University employs a significant number of staff to support its extensive research and academic programs, generally comparable to other major research universities in the United States, though specific numbers vary.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cornell University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Cornell University"}, {"qid": 550, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "What makes Cornell University's location in Ithaca, New York, distinct among Ivy League schools?", "answer": " Cornell University's location in Ithaca, New York, offers a unique rural setting compared to the more urban locations of many other Ivy League schools, providing a distinct campus atmosphere and community.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cornell University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Cornell University"}, {"qid": 551, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What role did Ezra Cornell and Andrew Dickson White play in the establishment of Cornell University's library system?", "answer": " Ezra Cornell and Andrew Dickson White significantly contributed to the establishment of Cornell University's library system, with Ezra Cornell providing the initial endowment and White contributing his personal book collection.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cornell University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Cornell University"}, {"qid": 552, "topic": "Group of Eight", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Cornell University were to significantly expand its campus in the next decade, how might this affect its relationship with the city of Ithaca?", "answer": " A significant expansion of Cornell University's campus could potentially strengthen its relationship with the city of Ithaca through economic growth and community development, though it might also raise concerns about space and resource allocation.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cornell University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Cornell University"}, {"qid": 553, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between Eleazar Wheelock and Dartmouth College?", "answer": " Eleazar Wheelock is the founder of Dartmouth College.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Dartmouth College"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Dartmouth College"}, {"qid": 554, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which Ivy League university located in Hanover, New Hampshire, was established first?", "answer": " Dartmouth College.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Dartmouth College"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Dartmouth College"}, {"qid": 555, "topic": "Group of Eight", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of Dartmouth College compare to that of Harvard University?", "answer": " Dartmouth College was founded in 1769, later than Harvard University, which was founded in 1636.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Dartmouth College"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Dartmouth College"}, {"qid": 556, "topic": "Group of Eight", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Dartmouth College decided to double its staff number, how many staff members would it have?", "answer": " The answer depends on the current number of staff members at Dartmouth College.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Dartmouth College"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Dartmouth College"}, {"qid": 557, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest Ivy League college in New Hampshire?", "answer": " Dartmouth College.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Dartmouth College"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Dartmouth College"}, {"qid": 558, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Who was the president of Dartmouth College in the year it was established?", "answer": " Eleazar Wheelock.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Dartmouth College"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Dartmouth College"}, {"qid": 559, "topic": "Group of Eight", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to other Ivy League institutions, where does Dartmouth rank in terms of its founding year?", "answer": " Dartmouth College is the ninth oldest, established in 1769, making it one of the later institutions among the Ivy League colleges.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Dartmouth College"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Dartmouth College"}, {"qid": 560, "topic": "Group of Eight", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Dartmouth College were to relocate to another state, what would change about its location?", "answer": " It would no longer be located in Hanover, New Hampshire.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Dartmouth College"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Dartmouth College"}, {"qid": 561, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most prestigious undergraduate college in New Hampshire?", "answer": " Dartmouth College.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Dartmouth College"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Dartmouth College"}, {"qid": 562, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How is Dartmouth College related to the American Revolution?", "answer": " Dartmouth College is one of the nine colonial colleges chartered before the American Revolution.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Dartmouth College"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Dartmouth College"}, {"qid": 563, "topic": "Group of Eight", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Is Dartmouth College older than Princeton University?", "answer": " No, Princeton University was established in 1746, making it older than Dartmouth College, which was established in 1769.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Dartmouth College"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Dartmouth College"}, {"qid": 564, "topic": "Group of Eight", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would be the consequence for Dartmouth College if it left the Ivy League?", "answer": " It would lose its status as an Ivy League institution, potentially affecting its prestige and the perception of its academic and social standing.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Dartmouth College"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Dartmouth College"}, {"qid": 565, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest Ivy League institution of higher education in the United States?", "answer": " The University of Pennsylvania is identified as the fourth-oldest institution, making it not the oldest Ivy League institution. Harvard University is actually the oldest.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pennsylvania"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Pennsylvania"}, {"qid": 566, "topic": "Group of Eight", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of the University of Pennsylvania compare to the signing of the U.S. Declaration of Independence?", "answer": " The University of Pennsylvania was chartered prior to the U.S. Declaration of Independence, with the board of trustees first convened by Benjamin Franklin in 1749.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pennsylvania"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Pennsylvania"}, {"qid": 567, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Who was the founder and first president of the University of Pennsylvania?", "answer": " Benjamin Franklin was the founder and first president of the University of Pennsylvania.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pennsylvania"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Pennsylvania"}, {"qid": 568, "topic": "Group of Eight", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Pennsylvania decides to open a new campus, what city could be a potential location based on its historical significance to the university?", "answer": " Philadelphia, Pennsylvania, could be a potential location due to its historical significance as the original location of the University of Pennsylvania.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pennsylvania"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Pennsylvania"}, {"qid": 569, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "What makes the University of Pennsylvania unique among the Ivy League universities in terms of its foundation?", "answer": " The University of Pennsylvania is unique among Ivy League universities as it was one of nine colonial colleges chartered prior to the U.S. Declaration of Independence, making it one of the oldest higher education institutions in the United States.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pennsylvania"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "University of Pennsylvania"}, {"qid": 570, "topic": "Group of Eight", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the number of staff at the University of Pennsylvania compare to other Ivy League institutions?", "answer": " The exact number of staff at the University of Pennsylvania varies, but it is generally comparable to other Ivy League institutions, all of which are large, research-intensive universities with substantial academic and administrative staff.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pennsylvania"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "University of Pennsylvania"}, {"qid": 571, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between Benjamin Franklin's educational philosophy and the University of Pennsylvania's mission?", "answer": " Benjamin Franklin's educational philosophy, which advocated for training leaders in academia, commerce, and public service, directly influenced the University of Pennsylvania's mission to provide a well-rounded education that prepares students for leadership roles.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pennsylvania"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "University of Pennsylvania"}, {"qid": 572, "topic": "Group of Eight", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Benjamin Franklin had not advocated for the establishment of an educational institution, what might have been the impact on the development of higher education in the United States?", "answer": " Without Benjamin Franklin's advocacy for the establishment of the University of Pennsylvania, the development of higher education in the United States might have been delayed or followed a different trajectory, potentially affecting the spread of educational institutions that combined the study of the classics with practical training.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pennsylvania"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "University of Pennsylvania"}, {"qid": 573, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the ranking of the University of Pennsylvania among Ivy League schools in terms of its establishment date?", "answer": " The University of Pennsylvania ranks as the fourth-oldest Ivy League school in terms of its establishment date, though this is contested and it could arguably be considered the fifth-oldest.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pennsylvania"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Pennsylvania"}, {"qid": 574, "topic": "Group of Eight", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to other colonial colleges, where does the University of Pennsylvania stand in terms of its founding year?", "answer": " The University of Pennsylvania stands as one of the earliest colonial colleges, chartered prior to the U.S. Declaration of Independence, making it one of the first institutions of higher education established in the United States.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pennsylvaia"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Pennsylvaia"}, {"qid": 575, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What role did Benjamin Franklin play in the establishment of the University of Pennsylvania?", "answer": " Benjamin Franklin played a crucial role as the founder and first president of the University of Pennsylvania, advocating for its establishment and shaping its mission and educational philosophy.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pennsylvania"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Pennsylvania"}, {"qid": 576, "topic": "Group of Eight", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Pennsylvania were to expand its academic offerings, what field might it prioritize based on Benjamin Franklin's original vision?", "answer": " Based on Benjamin Franklin's original vision, if the University of Pennsylvania were to expand its academic offerings, it might prioritize fields that train leaders in academia, commerce, and public service, such as business, politics, or public administration.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pennsylvania"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Pennsylvania"}, {"qid": 577, "topic": "Group of Eight", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of the University of Oxford compare to that of the University of Cambridge?", "answer": " The University of Oxford was founded in 1096, making it older than the University of Cambridge, which was established in 1209.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Oxford"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Oxford"}, {"qid": 578, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest university in the English-speaking world?", "answer": " The University of Oxford.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Oxford"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Oxford"}, {"qid": 579, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Why did the University of Oxford experience a rapid growth in 1167?", "answer": " It grew rapidly from 1167 when Henry II banned English students from attending the University of Paris.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Oxford"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Oxford"}, {"qid": 580, "topic": "Group of Eight", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What might have happened to the University of Oxford if Henry II had not banned English students from attending the University of Paris in 1167?", "answer": " The growth of the University of Oxford might have been slower or less significant without the influx of students seeking alternatives to the University of Paris.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Oxford"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Oxford"}, {"qid": 581, "topic": "Group of Eight", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to the University of Cambridge, how does the founding year of the University of Oxford influence its historical significance?", "answer": " Being founded in 1096, the University of Oxford's earlier founding year compared to the University of Cambridge's 1209 contributes to its historical significance as the oldest university in the English-speaking world.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Oxford"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Oxford"}, {"qid": 582, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "Among all universities in the world, which is the second-oldest in continuous operation?", "answer": " The University of Oxford.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Oxford"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Oxford"}, {"qid": 583, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What led to the establishment of the University of Cambridge?", "answer": " Disputes between students and Oxford townsfolk led some Oxford academics to flee northeast to Cambridge, where they established the University of Cambridge in 1209.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Oxford"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Oxford"}, {"qid": 584, "topic": "Group of Eight", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Oxford had not been established in 1096, how might the landscape of higher education in the English-speaking world look today?", "answer": " Without the University of Oxford, the English-speaking world might have seen a delayed development in higher education and possibly a different university holding the title of the oldest university in continuous operation.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Oxford"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Oxford"}, {"qid": 585, "topic": "Group of Eight", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the location of the University of Oxford compare to that of the University of Cambridge in terms of their contributions to the English-speaking academic world?", "answer": " Both universities, due to their historical and prestigious statuses in Oxford and Cambridge respectively, have made significant contributions to the academic world, with neither location being definitively more influential than the other.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Oxford"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Oxford"}, {"qid": 586, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the world's second-oldest university in continuous operation?", "answer": " The University of Oxford.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Oxford"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Oxford"}, {"qid": 587, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What was the consequence of Henry II banning English students from attending the University of Paris for the University of Oxford?", "answer": " The ban led to a rapid increase in the number of students and the growth of the University of Oxford.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Oxford"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Oxford"}, {"qid": 588, "topic": "Group of Eight", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the academics had not fled from Oxford to Cambridge in 1209, what might have been the impact on the University of Oxford's development?", "answer": " If the academics had not fled, the University of Oxford might have maintained a larger body of scholars and possibly limited the immediate need for a new academic institution, potentially affecting the pace of its own development and expansion.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Oxford"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Oxford"}, {"qid": 589, "topic": "Group of Eight", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the start year of the University of Cambridge compare to that of the University of Oxford?", "answer": " The University of Cambridge was founded in 1209, after the University of Oxford, making Oxford the older institution.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Cambridge"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Cambridge"}, {"qid": 590, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest university in continuous operation in the world?", "answer": " The University of Cambridge is the world's third-oldest university in continuous operation.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Cambridge"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Cambridge"}, {"qid": 591, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Who is the president of the University of Cambridge as of the latest update?", "answer": " The University of Cambridge does not have a position titled 'president'; the head of the university is known as the Vice-Chancellor.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Cambridge"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Cambridge"}, {"qid": 592, "topic": "Group of Eight", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Cambridge were to open a new research facility, in which city would it most likely be located?", "answer": " Cambridge, England.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Cambridge"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Cambridge"}, {"qid": 593, "topic": "Group of Eight", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the staff number at the University of Cambridge compare to that of the University of Oxford?", "answer": " Both the University of Cambridge and the University of Oxford have large numbers of staff, but exact numbers can vary year by year.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Cambridge"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Cambridge"}, {"qid": 594, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which university has the longer history, the University of Cambridge or Harvard University?", "answer": " The University of Cambridge has a longer history, having been founded in 1209, compared to Harvard University, which was established in 1636.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Cambridge"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Cambridge"}, {"qid": 595, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What prompted the foundation of the University of Cambridge?", "answer": " The foundation of the University of Cambridge followed the arrival of scholars who left the University of Oxford for Cambridge after a dispute with local townspeople.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Cambridge"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Cambridge"}, {"qid": 596, "topic": "Group of Eight", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If a new college were to be established at the University of Cambridge, what process would it likely follow?", "answer": " The establishment of a new college at the University of Cambridge would likely involve obtaining approval from the university's governing body, securing funding, and adhering to the university's academic and operational standards.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Cambridge"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Cambridge"}, {"qid": 597, "topic": "Group of Eight", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to other UK universities, where does the University of Cambridge rank in terms of age?", "answer": " The University of Cambridge is the second-oldest university in the English-speaking world and the United Kingdom, after the University of Oxford.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Cambridge"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Cambridge"}, {"qid": 598, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most distinctive feature of the University of Cambridge compared to modern universities?", "answer": " The most distinctive feature of the University of Cambridge compared to modern universities is its collegiate system, which combines academic departments with residential and social colleges.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Cambridge"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Cambridge"}, {"qid": 599, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the University of Cambridge's relationship with the University of Oxford affect its operations?", "answer": " The University of Cambridge and the University of Oxford, often referred to as Oxbridge, share many common features and a historical rivalry, but this relationship primarily affects public perception and tradition rather than the day-to-day operations of either university.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Cambridge"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Cambridge"}, {"qid": 600, "topic": "Group of Eight", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What might be the impact if the University of Cambridge significantly expanded its campus?", "answer": " If the University of Cambridge significantly expanded its campus, it could lead to increased student and staff capacity, the development of new academic programs, and potentially more research opportunities, but it might also raise concerns about preserving the historical aspects of the university and the impact on the city of Cambridge.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Cambridge"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Cambridge"}, {"qid": 601, "topic": "Group of Eight", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the research intensity of the University of Southampton compare to other Russell Group universities?", "answer": " The University of Southampton, being a founding member of the Russell Group, is considered to be among the research-intensive universities in the United Kingdom, comparable to other Russell Group universities in terms of research intensity.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Southampton"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Southampton"}, {"qid": 602, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest research university in the Russell Group, including the University of Southampton?", "answer": " The University of Southampton is not the oldest; the University of Oxford, also a member of the Russell Group, is often considered the oldest university in the United Kingdom, having been established before 1167.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Southampton"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Southampton"}, {"qid": 603, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How is the University of Southampton affiliated with the Russell Group?", "answer": " The University of Southampton is a founding member of the Russell Group, which signifies its affiliation as a research-intensive university in the United Kingdom.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Southampton"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Southampton"}, {"qid": 604, "topic": "Group of Eight", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would be the impact on the University of Southampton's research reputation if it left the Russell Group?", "answer": " If the University of Southampton left the Russell Group, it might experience a perceived decrease in its research reputation, as the Russell Group is associated with research-intensive universities in the UK.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Southampton"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Southampton"}, {"qid": 605, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which department at the University of Southampton has the highest number of research publications?", "answer": " The specific department with the highest number of research publications at the University of Southampton would depend on current research outputs, but traditionally, departments like Engineering and Physical Sciences are highly active in research.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Southampton"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Southampton"}, {"qid": 606, "topic": "Group of Eight", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the student-to-staff ratio at the University of Southampton compare to that of other UK universities?", "answer": " The student-to-staff ratio at the University of Southampton is competitive with other UK universities, particularly those within the Russell Group, aiming to provide a conducive learning and research environment.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Southampton"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Southampton"}, {"qid": 607, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between the University of Southampton and its location in Southampton, England?", "answer": " The University of Southampton is located in Southampton, England, serving as a key institution in the city for higher education and research, contributing to the local economy and community development.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Southampton"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Southampton"}, {"qid": 608, "topic": "Group of Eight", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Southampton were to open a new research center, how would this affect its position within the Russell Group?", "answer": " Opening a new research center could potentially strengthen the University of Southampton's position within the Russell Group by enhancing its research capabilities and outputs, aligning with the group's focus on research-intensive activities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Southampton"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Southampton"}, {"qid": 609, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "What year was the University of Southampton founded, and how does this compare to the founding years of other Russell Group universities?", "answer": " The University of Southampton was granted its Royal Charter in 1952, making it relatively younger compared to some other Russell Group universities like the University of Oxford or the University of Cambridge, which were founded centuries earlier.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Southampton"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Southampton"}, {"qid": 610, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What role does the University of Southampton play in the Russell Group?", "answer": " The University of Southampton plays the role of a founding member in the Russell Group, contributing to the consortium's mission of maintaining the highest research and educational standards among UK universities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Southampton"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Southampton"}, {"qid": 611, "topic": "Group of Eight", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the size of the University of Southampton's campus compare to those of other Russell Group universities?", "answer": " The University of Southampton has a sizable campus that is competitive in size with other Russell Group universities, offering a range of facilities and resources for education and research.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Southampton"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Southampton"}, {"qid": 612, "topic": "Group of Eight", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Southampton were to significantly increase its number of staff, how would this affect its research output in comparison to other Russell Group universities?", "answer": " If the University of Southampton significantly increased its number of staff, especially research-active staff, it could potentially increase its research output, making it even more competitive with other Russell Group universities in terms of research productivity and innovation.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Southampton"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Southampton"}, {"qid": 613, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between King James VI and the University of Edinburgh?", "answer": " King James VI granted the royal charter under which the University of Edinburgh was founded.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Edinburgh"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Edinburgh"}, {"qid": 614, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest university in continuous operation in the English-speaking world that precedes the University of Edinburgh?", "answer": " The University of Oxford.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Edinburgh"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Edinburgh"}, {"qid": 615, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "Where does the University of Edinburgh rank in terms of age among Scotland's ancient universities?", "answer": " It is the fourth oldest.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Edinburgh"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Edinburgh"}, {"qid": 616, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How did the University of Edinburgh contribute to the city's nickname \"Athens of the North\"?", "answer": " The university played a crucial role in Edinburgh becoming a leading intellectual centre during the Scottish Enlightenment, contributing to the nickname.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Edinburgh"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Edinburgh"}, {"qid": 617, "topic": "Group of Eight", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of the University of Edinburgh compare to the University of Glasgow?", "answer": " The University of Edinburgh was founded in 1582, making it younger than the University of Glasgow, which was founded in 1451.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Edinburgh"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Edinburgh"}, {"qid": 618, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the University of Edinburgh's ranking among the oldest universities in the English-speaking world?", "answer": " It is the sixth oldest.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Edinburgh"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Edinburgh"}, {"qid": 619, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What initiated the founding of the University of Edinburgh?", "answer": " The town council of Edinburgh, under the authority of a royal charter from King James VI, initiated the founding of the University of Edinburgh.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Edinburgh"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Edinburgh"}, {"qid": 620, "topic": "Group of Eight", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Edinburgh had not been founded, how might Edinburgh's status as an intellectual centre during the Scottish Enlightenment have been affected?", "answer": " Without the University of Edinburgh, Edinburgh might not have become a leading intellectual centre during the Scottish Enlightenment or earned the nickname \"Athens of the North.\"", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Edinburgh"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Edinburgh"}, {"qid": 621, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "What makes the University of Edinburgh unique among Scotland's ancient universities?", "answer": " Its significant role in the Scottish Enlightenment and its contribution to Edinburgh's intellectual reputation.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Edinburgh"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Edinburgh"}, {"qid": 622, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Who was responsible for the official opening of the University of Edinburgh?", "answer": " The town council of Edinburgh was responsible, following the royal charter granted by King James VI.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Edinburgh"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Edinburgh"}, {"qid": 623, "topic": "Group of Eight", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to the University of St Andrews, how does the University of Edinburgh's founding year stand?", "answer": " The University of Edinburgh, founded in 1582, is younger than the University of St Andrews, which was founded in 1413.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Edinburgh"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Edinburgh"}, {"qid": 624, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How has the University of Edinburgh contributed to the city of Edinburgh's global reputation?", "answer": " By being a leading intellectual centre during the Scottish Enlightenment, the University of Edinburgh has contributed significantly to the city's global reputation as an educational and intellectual hub.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Edinburgh"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Edinburgh"}, {"qid": 625, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between the London School of Economics and the University of London?", "answer": " The London School of Economics is a member institution of the University of London.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["London School of Economics"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "London School of Economics"}, {"qid": 626, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Who were the founders of the London School of Economics?", "answer": " Sidney Webb, Beatrice Webb, Graham Wallas, and George Bernard Shaw.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["London School of Economics"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "London School of Economics"}, {"qid": 627, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "When did the London School of Economics become a university in its own right within the University of London?", "answer": " 2022", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["London School of Economics"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "London School of Economics"}, {"qid": 628, "topic": "Group of Eight", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the role of the London School of Economics within the University of London compare before and after 2022?", "answer": " Before 2022, LSE was a member institution that awarded degrees of the University of London, but in 2022 it became a university in its own right within the University of London.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["London School of Economics"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "London School of Economics"}, {"qid": 629, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What specialisation does the London School of Economics focus on?", "answer": " Social sciences.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["London School of Economics"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "London School of Economics"}, {"qid": 630, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "When did the London School of Economics first begin awarding its own degrees?", "answer": " 2008", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["London School of Economics"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "London School of Economics"}, {"qid": 631, "topic": "Group of Eight", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would have happened if LSE had not joined the University of London in 1900?", "answer": " It might not have had the opportunity to establish its first degree courses under the auspices of the university in 1901.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["London School of Economics"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "London School of Economics"}, {"qid": 632, "topic": "Group of Eight", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How do the degree awarding practices at LSE before and after 2008 compare?", "answer": " Before 2008, LSE awarded degrees of the University of London, but after 2008, it began awarding degrees in its own name.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["London School of Economics"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "London School of Economics"}, {"qid": 633, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "What was the founding year of the London School of Economics?", "answer": " 1895", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["London School of Economics"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "London School of Economics"}, {"qid": 634, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "In what year did LSE join the University of London?", "answer": " 1900", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["London School of Economics"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "London School of Economics"}, {"qid": 635, "topic": "Group of Eight", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What if the founders had not established LSE in 1895, how would the landscape of social sciences education in London be different?", "answer": " The landscape of social sciences education in London might have lacked a significant institution dedicated to this field, potentially impacting the development of social sciences studies in the region.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["London School of Economics"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "London School of Economics"}, {"qid": 636, "topic": "Group of Eight", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How did the status of LSE's degree awarding power change from before 2008 to after it became a university in its own right within the University of London in 2022?", "answer": " Before 2008, LSE awarded University of London degrees, from 2008 it awarded degrees in its own name, and in 2022, it achieved the status of a university in its own right within the University of London, marking a significant evolution in its degree awarding power.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["London School of Economics"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "London School of Economics"}, {"qid": 637, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between Imperial College London and the Royal College of Science?", "answer": " The Royal College of Science is one of the founding colleges that merged to form Imperial College London in 1907.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Imperial College London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Imperial College London"}, {"qid": 638, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How did Imperial College London's School of Medicine form?", "answer": " The Imperial College School of Medicine was formed through a merger with St Mary's Hospital Medical School in 1988.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Imperial College London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Imperial College London"}, {"qid": 639, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "What event marked the inception of Imperial College London?", "answer": " The merging of the Royal College of Science, the Royal School of Mines, and the City and Guilds of London Institute in 1907 marked the inception of Imperial College London.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Imperial College London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Imperial College London"}, {"qid": 640, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which school at Imperial College London was opened by Queen Elizabeth II and when?", "answer": " Queen Elizabeth II opened the Imperial College Business School in 2004.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Imperial College London"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Imperial College London"}, {"qid": 641, "topic": "Group of Eight", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the foundation of the Imperial College School of Medicine compare to the original formation of Imperial College London?", "answer": " The Imperial College School of Medicine was founded through a merger in 1988, many years after the original formation of Imperial College London in 1907.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Imperial College London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Imperial College London"}, {"qid": 642, "topic": "Group of Eight", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compare the contribution of Prince Albert and Queen Elizabeth II to the establishment and expansion of Imperial College London.", "answer": " Prince Albert envisioned the cultural area that led to the founding of Imperial College London in 1907, while Queen Elizabeth II contributed to its expansion by opening the Imperial College Business School in 2004.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Imperial College London"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Imperial College London"}, {"qid": 643, "topic": "Group of Eight", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would be the impact on Imperial College London if the Royal College of Science had not merged into it?", "answer": " Without the merger of the Royal College of Science, Imperial College London might have lacked in foundational science education and research capabilities that significantly contributed to its reputation.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Imperial College London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Imperial College London"}, {"qid": 644, "topic": "Group of Eight", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Imperial College London had not formed its School of Medicine in 1988, how would its contribution to medical research and education differ today?", "answer": " Without the formation of its School of Medicine, Imperial College London would likely have a reduced presence and impact in the field of medical research and education.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Imperial College London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Imperial College London"}, {"qid": 645, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What was the vision of Prince Albert for South Kensington, and how did Imperial College London fit into it?", "answer": " Prince Albert envisioned a cultural area in South Kensington that included museums, colleges, and the Royal Albert Hall, with Imperial College London fitting into this vision as a leading public research university formed from several colleges.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Imperial College London"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Imperial College London"}, {"qid": 646, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "When did Imperial College London officially come into existence?", "answer": " Imperial College London officially came into existence in 1907.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Imperial College London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Imperial College London"}, {"qid": 647, "topic": "Group of Eight", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the formation of the Imperial College Business School in 2004 compare to the initial establishment of Imperial College London in terms of expanding academic disciplines?", "answer": " The formation of the Imperial College Business School in 2004 signifies a significant expansion into business education, diversifying the academic disciplines beyond the initial science and engineering focus established in 1907.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Imperial College London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Imperial College London"}, {"qid": 648, "topic": "Group of Eight", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would have been the effect on London's cultural area if Imperial College London had not been established following Prince Albert's vision?", "answer": " Without the establishment of Imperial College London, London's cultural area in South Kensington might have lacked a key educational and research institution, potentially diminishing its cultural and scientific significance.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Imperial College London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Imperial College London"}, {"qid": 649, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest university in the English-speaking world?", "answer": " University of Glasgow is the fourth-oldest, not the oldest. The oldest is the University of Oxford.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Glasgow"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Glasgow"}, {"qid": 650, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How is the University of Glasgow connected to the Scottish Enlightenment?", "answer": " The University of Glasgow was part of the Scottish Enlightenment during the 18th century along with the universities of St Andrews, Aberdeen, and Edinburgh.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Glasgow"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Glasgow"}, {"qid": 651, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which university in Scotland has the largest total enrolment?", "answer": " University of Glasgow", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Glasgow"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Glasgow"}, {"qid": 652, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which university in the United Kingdom has the second-largest postgraduate enrolment?", "answer": " University of Glasgow", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Glasgow"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Glasgow"}, {"qid": 653, "topic": "Group of Eight", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the University of Glasgow's age compare to the University of Edinburgh?", "answer": " The University of Glasgow is older than the University of Edinburgh.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Glasgow"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Glasgow"}, {"qid": 654, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What role did the University of Glasgow play in the 18th century?", "answer": " It was part of the Scottish Enlightenment.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Glasgow"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Glasgow"}, {"qid": 655, "topic": "Group of Eight", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Glasgow decided to open a new campus in another country, which of its characteristics could attract international students?", "answer": " Its status as one of the oldest universities in the English-speaking world, its large enrolment, and its significant postgraduate community.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Glasgow"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Glasgow"}, {"qid": 656, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the ranking of the University of Glasgow among the ancient universities in Scotland in terms of foundation year?", "answer": " It is the fourth-oldest.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Glasgow"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Glasgow"}, {"qid": 657, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What distinguishes the University of Glasgow's founding from other universities in Scotland?", "answer": " It was founded by papal bull.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Glasgow"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Glasgow"}, {"qid": 658, "topic": "Group of Eight", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the postgraduate enrolment at the University of Glasgow compare to that of the University of St Andrews?", "answer": " The University of Glasgow has a larger postgraduate enrolment than the University of St Andrews.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Glasgow"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Glasgow"}, {"qid": 659, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which of Scotland's ancient universities was part of the Scottish Enlightenment and has the largest current total enrolment?", "answer": " University of Glasgow", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Glasgow"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Glasgow"}, {"qid": 660, "topic": "Group of Eight", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Glasgow were to lead a global research project, what historical experience could it draw upon?", "answer": " Its participation in the Scottish Enlightenment.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Glasgow"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Glasgow"}, {"qid": 661, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest member institution of the University of London?", "answer": " University College London", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University College London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University College London"}, {"qid": 662, "topic": "Group of Eight", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Does University College London have a larger total enrolment than Imperial College London?", "answer": " Yes", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University College London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University College London"}, {"qid": 663, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Who is the president of University College London?", "answer": " [The president's name at the knowledge cutoff date]", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University College London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University College London"}, {"qid": 664, "topic": "Group of Eight", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If University College London were to open a new campus abroad, how might that affect its staff numbers?", "answer": " It could potentially increase the staff numbers to accommodate the additional campus operations.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University College London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University College London"}, {"qid": 665, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which university in the United Kingdom has the largest postgraduate enrolment?", "answer": " University College London", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University College London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University College London"}, {"qid": 666, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Where is University College London located?", "answer": " London, England", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University College London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University College London"}, {"qid": 667, "topic": "Group of Eight", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Is University College London larger than Oxford University in terms of total enrolment?", "answer": " Yes", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University College London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University College London"}, {"qid": 668, "topic": "Group of Eight", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would happen to the number of academic staff at University College London if the university doubled its research output?", "answer": " The number of academic staff might increase to support the expanded research activities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University College London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University College London"}, {"qid": 669, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What year was University College London founded?", "answer": " 1826", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University College London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University College London"}, {"qid": 670, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which university has the second-largest total enrolment in the United Kingdom?", "answer": " University College London", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University College London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University College London"}, {"qid": 671, "topic": "Group of Eight", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Does University College London have more staff than the London School of Economics and Political Science?", "answer": " Yes", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University College London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University College London"}, {"qid": 672, "topic": "Group of Eight", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If University College London were to reduce its international student quota, how might this impact its overall enrolment numbers?", "answer": " The overall enrolment numbers might decrease due to the reduction in international students.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University College London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University College London"}, {"qid": 673, "topic": "Group of Eight", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the size of the staff at Queen Mary University of London compare to that of King's College London?", "answer": " This requires specific staff numbers for both institutions which are not provided in the initial information.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen Mary University of London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Queen Mary University of London"}, {"qid": 674, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest college within the University of London, considering Queen Mary University of London as a member?", "answer": " Queen Mary University of London is not the oldest; University College London (UCL) holds that title as it was founded in 1826.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen Mary University of London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Queen Mary University of London"}, {"qid": 675, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Who is the current president of Queen Mary University of London?", "answer": " The current president's name is not provided in the initial information.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen Mary University of London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Queen Mary University of London"}, {"qid": 676, "topic": "Group of Eight", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Queen Mary University of London decided to merge with another university, how might that affect its membership in the University of London?", "answer": " The merger could potentially affect its status and operations within the University of London, depending on the terms of the merger and the policies of the University of London.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen Mary University of London"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Queen Mary University of London"}, {"qid": 677, "topic": "Group of Eight", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does Queen Mary University of London's research output compare to that of Imperial College London?", "answer": " Specific comparative data on research output is not provided in the initial information.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen Mary University of London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Queen Mary University of London"}, {"qid": 678, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most popular course at Queen Mary University of London?", "answer": " The most popular course is not specified in the initial information.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen Mary University of London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Queen Mary University of London"}, {"qid": 679, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What year was Queen Mary University of London established?", "answer": " It was established in 1887.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen Mary University of London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Queen Mary University of London"}, {"qid": 680, "topic": "Group of Eight", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Queen Mary University of London introduced a new STEM program, how would it potentially affect the university's ranking?", "answer": " Introducing a new STEM program could potentially improve the university's ranking by enhancing its academic offerings and research capabilities, but this would depend on the program's success and recognition.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen Mary University of London"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Queen Mary University of London"}, {"qid": 681, "topic": "Group of Eight", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the student diversity at Queen Mary University of London compare to that of the London School of Economics?", "answer": " Specific comparative data on student diversity is not provided in the initial information.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen Mary University of London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Queen Mary University of London"}, {"qid": 682, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which building on the Queen Mary University of London campus is the oldest?", "answer": " The specific oldest building on campus is not identified in the initial information.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen Mary University of London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Queen Mary University of London"}, {"qid": 683, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How many staff members work at Queen Mary University of London?", "answer": " The exact number of staff members is not provided in the initial information.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen Mary University of London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Queen Mary University of London"}, {"qid": 684, "topic": "Group of Eight", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Queen Mary University of London were to open a new campus abroad, how might that impact its global reputation?", "answer": " Opening a new campus abroad could potentially enhance Queen Mary University of London's global reputation by increasing its international presence and opportunities for global collaboration.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen Mary University of London"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Queen Mary University of London"}, {"qid": 685, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest component institution of the University of Birmingham?", "answer": " Queen's College, Birmingham", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Birmingham"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Birmingham"}, {"qid": 686, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "When was the University of Birmingham founded, making it the first English civic 'red brick' university to receive its own royal charter?", "answer": " 1900", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Birmingham"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Birmingham"}, {"qid": 687, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How did the University of Birmingham originate from its predecessor institutions?", "answer": " It received its royal charter in 1900 as a successor to Queen's College, Birmingham and Mason Science College.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Birmingham"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Birmingham"}, {"qid": 688, "topic": "Group of Eight", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Birmingham had not been founded, which institution would have been the oldest civic university in England?", "answer": " Queen's College, Birmingham", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Birmingham"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Birmingham"}, {"qid": 689, "topic": "Group of Eight", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Which was established first, Queen's College, Birmingham or Mason Science College?", "answer": " Queen's College, Birmingham", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Birmingham"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Birmingham"}, {"qid": 690, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "Who was the founding member of the Russell Group, the University of Birmingham or another institution?", "answer": " The University of Birmingham", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Birmingham"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Birmingham"}, {"qid": 691, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What makes the University of Birmingham a 'red brick' university?", "answer": " It was the first English civic university to receive its own royal charter.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Birmingham"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Birmingham"}, {"qid": 692, "topic": "Group of Eight", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Birmingham had not become a founding member of the Russell Group, how would its research status be affected?", "answer": " It might not have been recognized as a leading research university in the UK.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Birmingham"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Birmingham"}, {"qid": 693, "topic": "Group of Eight", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Which came into existence first, the University of Birmingham's royal charter or its membership in Universitas 21?", "answer": " Its royal charter", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Birmingham"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Birmingham"}, {"qid": 694, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "What year marked the University of Birmingham as the first unitary university in England?", "answer": " 1900", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Birmingham"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Birmingham"}, {"qid": 695, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between the University of Birmingham and its predecessor institutions?", "answer": " The University of Birmingham was established as a successor to Queen's College, Birmingham, and Mason Science College.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Birmingham"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Birmingham"}, {"qid": 696, "topic": "Group of Eight", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Sir Josiah Mason had not established Mason Science College, how would the University of Birmingham's foundation be different?", "answer": " It might not have had the same scientific and technical foundation.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Birmingham"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Birmingham"}, {"qid": 697, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What type of university is the University of Manchester classified as, considering its origins in the civic university movement?", "answer": " Red brick university", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Manchester"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Manchester"}, {"qid": 698, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most notable UNESCO World Heritage Site operated by the University of Manchester?", "answer": " Jodrell Bank Observatory", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Manchester"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Manchester"}, {"qid": 699, "topic": "Group of Eight", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of the University of Manchester compare to that of the University of Oxford?", "answer": " The University of Manchester was founded later than the University of Oxford.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Manchester"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Manchester"}, {"qid": 700, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How did the current University of Manchester form, and what historical relationship did the merging institutions share before their union in 2004?", "answer": " The current University of Manchester was formed by the merger of the University of Manchester Institute of Science and Technology (UMIST) and the Victoria University of Manchester, following a century of close collaboration between the two institutions.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Manchester"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Manchester"}, {"qid": 701, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "Among the cultural assets it operates, which is the oldest?", "answer": " The John Rylands Library", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Manchester"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Manchester"}, {"qid": 702, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between the University of Manchester and the Manchester Museum?", "answer": " The University of Manchester owns and operates the Manchester Museum.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Manchester"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Manchester"}, {"qid": 703, "topic": "Group of Eight", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Manchester decided to focus solely on science, technology, engineering, and mathematics (STEM) fields, what major cultural asset might no longer be operated by the university?", "answer": " The Whitworth art gallery", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Manchester"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Manchester"}, {"qid": 704, "topic": "Group of Eight", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to universities established in the 20th century, how does the University of Manchester's founding year stand?", "answer": " The University of Manchester was founded earlier than most universities established in the 20th century.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Manchester"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Manchester"}, {"qid": 705, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Considering its establishment from a merger in 2004, what historical significance does the University of Manchester hold in terms of its founding institutions' reputations in science and technology?", "answer": " The University of Manchester holds historical significance as a major centre for science and technology, stemming from its founding institutions, UMIST and the Victoria University of Manchester, both of which had strong reputations in these fields before their merger.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Manchester"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Manchester"}, {"qid": 706, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the University of Manchester's most significant contribution to global heritage, according to UNESCO?", "answer": " Jodrell Bank Observatory", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Manchester"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Manchester"}, {"qid": 707, "topic": "Group of Eight", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the staff number at the University of Manchester compare to that of newer universities in the UK?", "answer": " The University of Manchester has a larger staff number than most newer universities in the UK.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Manchester"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Manchester"}, {"qid": 708, "topic": "Group of Eight", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Manchester were to become the leading institution for astronomical research, which of its assets would most likely play a crucial role in this achievement?", "answer": " Jodrell Bank Observatory", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Manchester"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Manchester"}, {"qid": 709, "topic": "Group of Eight", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the number of staff at King's College London compare to that of Queen Mary University of London?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["King's College London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "King's College London"}, {"qid": 710, "topic": "Group of Eight", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Is the start year of King's College London earlier or later than University College London?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["King's College London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "King's College London"}, {"qid": 711, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "Who was the first president of King's College London?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["King's College London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "King's College London"}, {"qid": 712, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest department at King's College London?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["King's College London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "King's College London"}, {"qid": 713, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What impact does the location of King's College London have on its student enrollment?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["King's College London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "King's College London"}, {"qid": 714, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the number of staff at King's College London influence its research output?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["King's College London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "King's College London"}, {"qid": 715, "topic": "Group of Eight", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would happen to King's College London if it moved its location to another country?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["King's College London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "King's College London"}, {"qid": 716, "topic": "Group of Eight", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If King's College London increased its staff number by 50%, how would that affect its teaching capabilities?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["King's College London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "King's College London"}, {"qid": 717, "topic": "Group of Eight", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compare the academic reputation of King's College London and Imperial College London in the field of biomedical sciences.", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["King's College London"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "King's College London"}, {"qid": 718, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most awarded department at King's College London in terms of research funding?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["King's College London"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "King's College London"}, {"qid": 719, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the partnership between King's College London and local hospitals enhance medical education?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["King's College London"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "King's College London"}, {"qid": 720, "topic": "Group of Eight", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If King's College London were to create a new campus in Asia, what would be the potential benefits and challenges?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["King's College London"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "King's College London"}, {"qid": 721, "topic": "Group of Eight", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of Durham University compare to that of Oxford and Cambridge?", "answer": " Durham University was founded in 1832, after both Oxford and Cambridge, making it the third-oldest university in England.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Durham University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Durham University"}, {"qid": 722, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest university in England?", "answer": " The oldest university in England is Oxford University.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Durham University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Durham University"}, {"qid": 723, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What role do the colleges of Durham University play in the welfare and domestic arrangements of its students?", "answer": " The colleges of Durham University are responsible for the domestic arrangements and welfare of its students.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Durham University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Durham University"}, {"qid": 724, "topic": "Group of Eight", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Durham University decided to add an 18th college, how would it affect the number of colleges within the university?", "answer": " It would increase the number of colleges within Durham University from 17 to 18.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Durham University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Durham University"}, {"qid": 725, "topic": "Group of Eight", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the staff number at Durham University compare to that of a small-sized university?", "answer": " Durham University, being a large research university, likely has a significantly higher number of staff members compared to a small-sized university.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Durham University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Durham University"}, {"qid": 726, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which college within Durham University was founded first?", "answer": " University College, founded in 1832, is the oldest of Durham's colleges.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Durham University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Durham University"}, {"qid": 727, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How is the president of Durham University involved in its governance?", "answer": " The president of Durham University (typically referred to as the Vice-Chancellor) is the chief executive officer, overseeing the university's daily operations and strategy.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Durham University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Durham University"}, {"qid": 728, "topic": "Group of Eight", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Durham University were to merge with another university, what aspect of its collegiate system might be most challenging to integrate?", "answer": " Integrating the collegiate system, with its specific roles in student welfare and domestic arrangements, would likely be the most challenging aspect due to its unique structure.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Durham University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Durham University"}, {"qid": 729, "topic": "Group of Eight", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to modern universities, how does the age of Durham University highlight its historical significance in England's higher education landscape?", "answer": " As the third-oldest university in England, founded in 1832, Durham University's age underscores its historical significance and pioneering role in expanding England's higher education landscape beyond Oxford and Cambridge.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Durham University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Durham University"}, {"qid": 730, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most significant contribution of Durham University to research in England?", "answer": " Durham University's most significant contribution to research in England is its status as a leading research institution, particularly noted for its strengths in subjects like Physics, Chemistry, and Humanities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Durham University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Durham University"}, {"qid": 731, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What relationship exists between Durham University's academic departments and its colleges?", "answer": " The academic departments of Durham University are responsible for research and teaching, while the colleges focus on domestic arrangements and student welfare, showing a division of responsibilities within the university.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Durham University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Durham University"}, {"qid": 732, "topic": "Group of Eight", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Durham University were to open a new academic department, how might that affect the relationship between the departments and colleges?", "answer": " Opening a new academic department would likely enhance the university's research and teaching capabilities, potentially increasing collaboration with the colleges for student welfare and domestic arrangements, while maintaining their distinct roles.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Durham University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Durham University"}, {"qid": 733, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between the University of Bristol and the Merchant Venturers' school?", "answer": " The University of Bristol can trace its roots back to a Merchant Venturers' school founded in 1595.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Bristol"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Bristol"}, {"qid": 734, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How is University College, Bristol related to the University of Bristol?", "answer": " University College, Bristol, which had been in existence since 1876, is part of the University of Bristol's history, leading up to its establishment with a royal charter in 1909.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Bristol"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Bristol"}, {"qid": 735, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest precursor institution of the University of Bristol?", "answer": " The Merchant Venturers' school founded in 1595 is the oldest precursor institution of the University of Bristol.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Bristol"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Bristol"}, {"qid": 736, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "When did the University of Bristol receive its royal charter, making it officially a university?", "answer": " The University of Bristol received its royal charter in 1909.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Bristol"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Bristol"}, {"qid": 737, "topic": "Group of Eight", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to other Russell Group universities, when was the University of Bristol founded?", "answer": " The University of Bristol, receiving its royal charter in 1909, was founded earlier than some Russell Group universities but later than others such as the University of Oxford or Cambridge.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Bristol"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Bristol"}, {"qid": 738, "topic": "Group of Eight", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Bristol had not received its royal charter in 1909, what might have been its status?", "answer": " If the University of Bristol had not received its royal charter in 1909, it might have remained a university college or similar institution without full university status.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Bristol"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Bristol"}, {"qid": 739, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What led to the University of Bristol receiving a royal charter in 1909?", "answer": " The establishment of University College, Bristol in 1876 and its evolution, along with its roots tracing back to a Merchant Venturers' school founded in 1595, led to the University of Bristol receiving a royal charter in 1909.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Bristol"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Bristol"}, {"qid": 740, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which institution related to the University of Bristol has the earliest founding date?", "answer": " The Merchant Venturers' school, related to the University of Bristol's history, has the earliest founding date in 1595.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Bristol"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Bristol"}, {"qid": 741, "topic": "Group of Eight", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of the University of Bristol compare to the establishment year of the Merchant Venturers' school?", "answer": " The Merchant Venturers' school was founded in 1595, significantly earlier than the founding year of the University of Bristol in 1909.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Bristol"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Bristol"}, {"qid": 742, "topic": "Group of Eight", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the Merchant Venturers' school had not been founded in 1595, how might the history of the University of Bristol be different?", "answer": " If the Merchant Venturers' school had not been founded in 1595, the University of Bristol might not have the same historical roots, potentially affecting its development and establishment as a university.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Bristol"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Bristol"}, {"qid": 743, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What sequence of events led to the establishment of the University of Bristol as it is known today?", "answer": " The founding of the Merchant Venturers' school in 1595, the establishment of University College, Bristol in 1876, and ultimately receiving a royal charter in 1909, are the sequence of events leading to the establishment of the University of Bristol as it is known today.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Bristol"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Bristol"}, {"qid": 744, "topic": "Group of Eight", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Bristol had been founded directly from the Merchant Venturers' school without the intermediary step of University College, Bristol, how might its history be different?", "answer": " If the University of Bristol had been founded directly from the Merchant Venturers' school without the intermediary step of University College, Bristol, its transition to a university might have occurred under different circumstances, potentially altering its development timeline and the nature of its establishment.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Bristol"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Bristol"}, {"qid": 745, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between University College Nottingham and The University of Nottingham?", "answer": " University College Nottingham was the former name of The University of Nottingham before it was granted a royal charter in 1948.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Nottingham"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Nottingham"}, {"qid": 746, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What event in 1948 significantly changed University College Nottingham?", "answer": " In 1948, University College Nottingham was granted a royal charter and became The University of Nottingham.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Nottingham"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Nottingham"}, {"qid": 747, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "When was the University of Nottingham founded relative to other universities in England?", "answer": " The University of Nottingham was founded in 1881, making it one of the older universities in England.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Nottingham"], "topic_level": false, "class": "sing entity", "hops": "No hop", "entity": "University of Nottingham"}, {"qid": 748, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest part of The University of Nottingham's history?", "answer": " The oldest part of The University of Nottingham's history is its founding as University College Nottingham in 1881.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Nottingham"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Nottingham"}, {"qid": 749, "topic": "Group of Eight", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of The University of Nottingham compare to that of other universities in Nottingham?", "answer": " The University of Nottingham, founded in 1881, is older than Nottingham Trent University, which was established in 1992.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Nottingham"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Nottingham"}, {"qid": 750, "topic": "Group of Eight", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Is The University of Nottingham older than the establishment of the University of Oxford?", "answer": " No, The University of Nottingham is not older than the University of Oxford, which was established around 1096.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Nottingham"], "topic_level": false, "class": "sing entity", "hops": "No hop", "entity": "University of Nottingham"}, {"qid": 751, "topic": "Group of Eight", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would be the status of University College Nottingham if it never received a royal charter in 1948?", "answer": " If University College Nottingham never received a royal charter in 1948, it might have remained a college or sought university status through different means at a later time.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Nottingham"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Nottingham"}, {"qid": 752, "topic": "Group of Eight", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If The University of Nottingham decided to revert to its original name, what would it be called?", "answer": " If The University of Nottingham decided to revert to its original name, it would be called University College Nottingham.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Nottingham"], "topic_level": false, "class": "sing entity", "hops": "No hop", "entity": "University of Nottingham"}, {"qid": 753, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What signifies the transformation from University College Nottingham to The University of Nottingham?", "answer": " The granting of a royal charter in 1948 signifies the transformation from University College Nottingham to The University of Nottingham.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Nottingham"], "topic_level": false, "class": "sing entity", "hops": "No hop", "entity": "University of Nottingham"}, {"qid": 754, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "What was a major milestone in the history of The University of Nottingham?", "answer": " A major milestone in the history of The University of Nottingham was being granted a royal charter in 1948.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Nottingham"], "topic_level": false, "class": "sing entity", "hops": "No hop", "entity": "University of Nottingham"}, {"qid": 755, "topic": "Group of Eight", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to the University of Cambridge, how does The University of Nottingham's founding year stand?", "answer": " The University of Nottingham's founding year, 1881, is much later than the University of Cambridge's, which was founded in 1209.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Nottingham"], "topic_level": false, "class": "sing entity", "hops": "No hop", "entity": "University of Nottingham"}, {"qid": 756, "topic": "Group of Eight", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the staff number at The University of Nottingham was to double, what impact could it have on the university?", "answer": " If the staff number at The University of Nottingham was to double, it could potentially improve student support and research output, but might also require significant financial and infrastructural adjustments.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Nottingham"], "topic_level": false, "class": "sing entity", "hops": "No hop", "entity": "University of Nottingham"}, {"qid": 757, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest red brick university in England?", "answer": " The University of Liverpool", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Liverpool"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Liverpool"}, {"qid": 758, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What type of university is the University of Liverpool known as due to its architectural style?", "answer": " Red brick university", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Liverpool"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Liverpool"}, {"qid": 759, "topic": "Group of Eight", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the University of Liverpool's founding year compare to the University of Manchester?", "answer": " The University of Liverpool was founded in 1881, making it older than the University of Manchester, which was granted its royal charter in 2004 as a result of the merger of the Victoria University of Manchester and the University of Manchester Institute of Science and Technology (UMIST), both of which have origins tracing back to the 19th century but as separate entities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Liverpool"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "University of Liverpool"}, {"qid": 760, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which faculty at the University of Liverpool has the highest number of departments?", "answer": " It's not explicitly mentioned, but the University comprises three faculties organized into 35 departments and schools, suggesting a division that could allow one to have more departments than the others.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Liverpool"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Liverpool"}, {"qid": 761, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What makes the University of Liverpool's management school distinctive?", "answer": " The university management school is triple crown accredited.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Liverpool"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Liverpool"}, {"qid": 762, "topic": "Group of Eight", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Liverpool decided to open a new department, under which faculty would it most likely fall?", "answer": " It could fall under any of the three faculties, depending on the department's focus.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Liverpool"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Liverpool"}, {"qid": 763, "topic": "Group of Eight", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to other Russell Group universities, how does the University of Liverpool rank in terms of its founding year?", "answer": " The University of Liverpool, founded in 1881, is one of the earlier members of the Russell Group in terms of its founding year.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Liverpool"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Liverpool"}, {"qid": 764, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most significant accreditation achieved by the University of Liverpool's management school?", "answer": " The triple crown accreditation.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Liverpool"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Liverpool"}, {"qid": 765, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How is the University of Liverpool affiliated with research groups in the UK?", "answer": " It is a founding member of the Russell Group and the N8 Group for research collaboration.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Liverpool"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Liverpool"}, {"qid": 766, "topic": "Group of Eight", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Liverpool were to establish another faculty, what existing collaboration might influence its research focus?", "answer": " The N8 Group for research collaboration might influence its research focus, emphasizing interdisciplinary research areas.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Liverpool"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Liverpool"}, {"qid": 767, "topic": "Group of Eight", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the student population of the University of Liverpool compare to that of Liverpool John Moores University?", "answer": " Specific numbers are not provided, but both are major universities in Liverpool, with the University of Liverpool being a traditional research university and Liverpool John Moores University being a modern university, possibly suggesting differences in size and student population.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Liverpool"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Liverpool"}, {"qid": 768, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which is the most recently established department or school within the University of Liverpool?", "answer": " The specific information is not given, but it would be among the 35 departments and schools organized within its three faculties.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Liverpool"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "University of Liverpool"}, {"qid": 769, "topic": "Group of Eight", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the establishment year of the University of Leeds compare to the University of Liverpool?", "answer": " The University of Leeds was established in 1874, whereas the University of Liverpool, as part of the federal Victoria University, traces its origins to University College Liverpool established before Leeds, in 1881 as an independent entity.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Leeds"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Leeds"}, {"qid": 770, "topic": "Group of Eight", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Is the number of staff at the University of Leeds greater or less than at the University of Manchester?", "answer": " This answer would depend on the current data for both universities, which is not provided in the text. Historically, both universities are large and have significant staff numbers, but specific figures would need to be looked up.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Leeds"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Leeds"}, {"qid": 771, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest part of the University of Leeds?", "answer": " The Leeds School of Medicine established in 1831 is the oldest part of the University of Leeds, having merged with it in 1884.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Leeds"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Leeds"}, {"qid": 772, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which university became part of the federal Victoria University first, the University of Leeds or Owens College?", "answer": " Owens College, which became the University of Manchester, became part of the federal Victoria University first in 1880, before the University of Leeds, which joined in 1887.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Leeds"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Leeds"}, {"qid": 773, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What led to the University of Leeds being granted a royal charter?", "answer": " The University of Leeds was granted a royal charter by King Edward VII in 1904, following its growth and development from the Yorkshire College and its subsequent incorporation into the federal Victoria University alongside Owens College and University College Liverpool.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Leeds"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Leeds"}, {"qid": 774, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How is the Leeds School of Medicine related to the University of Leeds?", "answer": " The Leeds School of Medicine, established in 1831, merged with the Yorkshire College (later the University of Leeds) in 1884, becoming an integral part of the university.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Leeds"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Leeds"}, {"qid": 775, "topic": "Group of Eight", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What might have happened if the University of Leeds had not merged with the Leeds School of Medicine?", "answer": " If the University of Leeds had not merged with the Leeds School of Medicine, it might not have expanded its academic offerings in health and medicine as significantly, potentially impacting its growth and development as a comprehensive research university.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Leeds"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Leeds"}, {"qid": 776, "topic": "Group of Eight", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Leeds was not granted a royal charter in 1904, how would its status as a university be affected?", "answer": " If the University of Leeds was not granted a royal charter in 1904, it might have remained a college within the federal Victoria University longer, potentially delaying its recognition and operation as an independent university with the ability to grant its own degrees.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Leeds"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Leeds"}, {"qid": 777, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How did the joining of University College Liverpool to the federal Victoria University impact the University of Leeds?", "answer": " The joining of University College Liverpool to the federal Victoria University, which the University of Leeds was also part of, helped to establish a broader collaborative academic environment and network between the institutions, which could have indirectly influenced the development and prestige of the University of Leeds within this federation.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Leeds"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Leeds"}, {"qid": 778, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "Among the institutions that became part of the federal Victoria University, which is now known for having the largest campus?", "answer": " Among the institutions, the University of Manchester, originating from Owens College, is known for having a large campus. However, specific comparisons would require current detailed data about the campus sizes of the University of Leeds and the University of Liverpool as well.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Leeds"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Leeds"}, {"qid": 779, "topic": "Group of Eight", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of the University of Leeds compare to that of its predecessor institutions?", "answer": " The University of Leeds, established in 1874, was founded after its predecessor institution, the Leeds School of Medicine, which was established in 1831, but before it became an independent university in 1904.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Leeds"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Leeds"}, {"qid": 780, "topic": "Group of Eight", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What if the University of Leeds had not become part of the federal Victoria University?", "answer": " If the University of Leeds had not become part of the federal Victoria University, it might have developed along a different trajectory, possibly focusing more on regional development and maintaining more autonomy earlier in its history, which could have influenced its academic and research directions differently.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Leeds"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Leeds"}, {"qid": 781, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What led to the formation of the University College of Sheffield in 1897?", "answer": " The amalgamation of Sheffield Medical School, Firth College, and Sheffield Technical School led to the formation of the University College of Sheffield.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Sheffield"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Sheffield"}, {"qid": 782, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How did the University of Sheffield officially gain its status as a university?", "answer": " The University of Sheffield was granted a royal charter as University of Sheffield in 1905 by King Edward VII.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Sheffield"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Sheffield"}, {"qid": 783, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which institution involved in the formation of the University of Sheffield was established first?", "answer": " Sheffield Medical School was the first, established in 1828.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Sheffield"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Sheffield"}, {"qid": 784, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest precursor institution that led to the creation of the University of Sheffield?", "answer": " Sheffield Medical School, established in 1828, is the oldest precursor institution.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Sheffield"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Sheffield"}, {"qid": 785, "topic": "Group of Eight", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of the University of Sheffield compare to the granting of its royal charter?", "answer": " The founding year of the University College of Sheffield, which later became the University of Sheffield, was 1897, while the royal charter was granted in 1905.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Sheffield"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Sheffield"}, {"qid": 786, "topic": "Group of Eight", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the establishment year of Sheffield Medical School compare to that of Firth College?", "answer": " Sheffield Medical School was established earlier in 1828, while Firth College was established in 1879.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Sheffield"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Sheffield"}, {"qid": 787, "topic": "Group of Eight", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Sheffield decided to open a new faculty today, how many years after its original charter would that be?", "answer": " Assuming the current year is 2023, it would be 118 years after its original charter in 1905.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Sheffield"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Sheffield"}, {"qid": 788, "topic": "Group of Eight", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Sheffield were to celebrate the 200th anniversary of Sheffield Medical School, in what year would the celebration occur?", "answer": " The 200th anniversary of Sheffield Medical School would be celebrated in 2028.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Sheffield"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Sheffield"}, {"qid": 789, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the geographical location of the University of Sheffield?", "answer": " The University of Sheffield is located in Sheffield, South Yorkshire, England.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Sheffield"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Sheffield"}, {"qid": 790, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the rank of Sheffield Medical School in terms of its establishment date among the precursor institutions of the University of Sheffield?", "answer": " Sheffield Medical School is the first, or oldest, among the precursor institutions.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Sheffield"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Sheffield"}, {"qid": 791, "topic": "Group of Eight", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compare the focus of the initial institutions that amalgamated to form the University College of Sheffield?", "answer": " Sheffield Medical School focused on medical education, Firth College on arts and science, and Sheffield Technical School on technical and applied sciences.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Sheffield"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Sheffield"}, {"qid": 792, "topic": "Group of Eight", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Sheffield were to double its staff number from what it was at its centennial in 2005, what would that hypothetical number be?", "answer": " Without specific staff numbers from 2005, this question cannot be accurately answered.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Sheffield"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Sheffield"}, {"qid": 793, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the primary mission of Newcastle University as a member of the Russell Group?", "answer": " The primary mission of Newcastle University as a member of the Russell Group is to conduct intensive research and provide high-quality education.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Newcastle University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Newcastle University"}, {"qid": 794, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which year was Newcastle University established, making it one of the oldest universities in North East England?", "answer": " 1834", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Newcastle University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Newcastle University"}, {"qid": 795, "topic": "Group of Eight", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the staff number at Newcastle University compare to that of other Russell Group universities?", "answer": " The staff number at Newcastle University is significant but varies when compared to other Russell Group universities, depending on the specific institution and department.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Newcastle University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Newcastle University"}, {"qid": 796, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which campus of Newcastle University is located furthest from the United Kingdom?", "answer": " The Malaysia campus", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Newcastle University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Newcastle University"}, {"qid": 797, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What role does Newcastle University's location in Newcastle upon Tyne play in its research and educational activities?", "answer": " The location in Newcastle upon Tyne provides Newcastle University with unique opportunities for regional collaboration, access to industrial partnerships, and a vibrant student life, which enrich its research and educational activities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Newcastle University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Newcastle University"}, {"qid": 798, "topic": "Group of Eight", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Newcastle University were to open another overseas campus, what factors would influence its location decision?", "answer": " Factors would include the demand for UK higher education in the region, the potential for research collaborations, availability of funding, and the political and economic stability of the host country.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Newcastle University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Newcastle University"}, {"qid": 799, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most notable achievement of Newcastle University's research efforts?", "answer": " One of the most notable achievements is its leading role in age and health research, particularly through the Newcastle University Institute for Ageing.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Newcastle University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Newcastle University"}, {"qid": 800, "topic": "Group of Eight", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the number of overseas campuses of Newcastle University compare to other UK universities?", "answer": " Newcastle University has a relatively small number of overseas campuses compared to some other UK universities that have embraced international expansion more extensively.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Newcastle University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Newcastle University"}, {"qid": 801, "topic": "Group of Eight", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Newcastle University were to become the leading university in a new field of research, what might that field be?", "answer": " It could potentially become a leader in sustainable and renewable energy research, given current global trends and the university's existing strengths.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Newcastle University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Newcastle University"}, {"qid": 802, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does being a red brick university influence Newcastle University's reputation?", "answer": " Being a red brick university contributes to Newcastle University's reputation for tradition, academic excellence, and a solid historical foundation in higher education.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Newcastle University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Newcastle University"}, {"qid": 803, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "Who was the first president of Newcastle University?", "answer": " The position of president as it is known in some universities does not directly apply to Newcastle University, but its first Vice-Chancellor (equivalent role) was Sir James Knott.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Newcastle University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Newcastle University"}, {"qid": 804, "topic": "Group of Eight", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "How might Newcastle University's research priorities change if it significantly expanded its campus in Singapore?", "answer": " The research priorities might shift towards areas of strategic importance to Southeast Asia, such as tropical diseases, maritime research, and sustainable urban development.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Newcastle University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Newcastle University"}, {"qid": 805, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What year was the University of Warwick founded as part of a government initiative to expand higher education?", "answer": " 1965", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Warwick"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "University of Warwick"}, {"qid": 806, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "In what year did the University of Warwick incorporate Coventry College of Education?", "answer": " 1979", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Warwick"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "University of Warwick"}, {"qid": 807, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Where is the University of Warwick located in relation to Coventry?", "answer": " On the outskirts of Coventry between the West Midlands and Warwickshire, England.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Warwick"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "University of Warwick"}, {"qid": 808, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "What was the first school established at the University of Warwick after its founding?", "answer": " Warwick Business School in 1967", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Warwick"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "University of Warwick"}, {"qid": 809, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which school at the University of Warwick was established most recently?", "answer": " Warwick Medical School in 2000", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Warwick"], "topic_level": false, "class": "sing entity", "hops": "Multi Hops", "entity": "University of Warwick"}, {"qid": 810, "topic": "Group of Eight", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Which was established first, Warwick Law School or Warwick Manufacturing Group (WMG)?", "answer": " Warwick Law School in 1968", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Warwick"], "topic_level": false, "class": "sing entity", "hops": "Multi Hops", "entity": "University of Warwick"}, {"qid": 811, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What initiative led to the founding of the University of Warwick?", "answer": " A government initiative to expand higher education", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Warwick"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "University of Warwick"}, {"qid": 812, "topic": "Group of Eight", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Warwick were to establish a new school in 2025, what would be the interval since the establishment of Warwick Medical School?", "answer": " 25 years", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Warwick"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "University of Warwick"}, {"qid": 813, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How did the University of Warwick expand its research capabilities in 2004?", "answer": " By incorporating Horticulture Research International", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Warwick"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "University of Warwick"}, {"qid": 814, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest school within the University of Warwick?", "answer": " Warwick Business School in 1967", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Warwick"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "University of Warwick"}, {"qid": 815, "topic": "Group of Eight", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Between Warwick Law School and Warwick Business School, which was established closer to the founding year of the University of Warwick?", "answer": " Warwick Business School in 1967", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Warwick"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "University of Warwick"}, {"qid": 816, "topic": "Group of Eight", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Warwick decides to merge with another university in 2024, how many years after incorporating Coventry College of Education would that be?", "answer": " 45 years", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Warwick"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "University of Warwick"}, {"qid": 817, "topic": "Group of Eight", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the staff number at Queen's University Belfast compare to that of Trinity College Dublin?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen's University Belfast"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Queen's University Belfast"}, {"qid": 818, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest university in the United Kingdom, considering Queen's University Belfast's start year?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen's University Belfast"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Queen's University Belfast"}, {"qid": 819, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Who is the president of Queen's University Belfast and what is their background?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen's University Belfast"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Queen's University Belfast"}, {"qid": 820, "topic": "Group of Eight", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Queen's University Belfast were to open a new campus, which city would be chosen based on its current location?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen's University Belfast"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Queen's University Belfast"}, {"qid": 821, "topic": "Group of Eight", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the number of staff members at Queen's University Belfast compare to that of the University of Edinburgh?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen's University Belfast"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Queen's University Belfast"}, {"qid": 822, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "Among Queen's University Belfast and Oxford University, which has a longer history?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen's University Belfast"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Queen's University Belfast"}, {"qid": 823, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between Queen's University Belfast's president and the university's founding year?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen's University Belfast"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Queen's University Belfast"}, {"qid": 824, "topic": "Group of Eight", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Queen's University Belfast decided to double its staff, how would that impact its location?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen's University Belfast"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Queen's University Belfast"}, {"qid": 825, "topic": "Group of Eight", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Is Queen's University Belfast larger in staff size than Ulster University?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen's University Belfast"], "topic_level": false, "class": "sing entity", "hops": "No hop", "entity": "Queen's University Belfast"}, {"qid": 826, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most renowned faculty at Queen's University Belfast?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen's University Belfast"], "topic_level": false, "class": "sing entity", "hops": "No hop", "entity": "Queen's University Belfast"}, {"qid": 827, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the historical significance of Queen's University Belfast's founding year?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen's University Belfast"], "topic_level": false, "class": "sing entity", "hops": "No hop", "entity": "Queen's University Belfast"}, {"qid": 828, "topic": "Group of Eight", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Queen's University Belfast were to merge with another university, which university would it likely be?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen's University Belfast"], "topic_level": false, "class": "sing entity", "hops": "No hop", "entity": "Queen's University Belfast"}, {"qid": 829, "topic": "Group of Eight", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of the University of York compare to that of the University of Oxford?", "answer": " The University of York was established in 1963, which is much later than the University of Oxford that was established in 1096.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of York"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of York"}, {"qid": 830, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest department within the University of York?", "answer": " As the specific founding years of departments within the University of York are not provided, it cannot be definitively answered which is the oldest.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of York"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of York"}, {"qid": 831, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between the University of York and its location in England?", "answer": " The University of York is located in York, England, making its relationship to the location that of a situated educational institution within the country.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of York"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of York"}, {"qid": 832, "topic": "Group of Eight", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of York were to open a new department focused on space research, how would this compare to its current range of subjects?", "answer": " Opening a new department focused on space research would expand the University of York's already wide range of subjects, adding to its multidisciplinary approach.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of York"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of York"}, {"qid": 833, "topic": "Group of Eight", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the student population of the University of York compare to that of University of Cambridge?", "answer": " Without specific current student population numbers, it's not possible to directly compare, but traditionally, the University of Cambridge has a larger student population than the University of York.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of York"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of York"}, {"qid": 834, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most recent department or centre established at the University of York?", "answer": " Without up-to-date details on the establishment of departments or centres at the University of York, it’s not possible to identify the most recent addition.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of York"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of York"}, {"qid": 835, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the establishment of the University of York in 1963 contribute to its historical significance in England's education system?", "answer": " The University of York's establishment in 1963 contributes to its historical significance by marking it as a relatively modern institution that has quickly risen to prominence and expanded its academic offerings in England's education system.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of York"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of York"}, {"qid": 836, "topic": "Group of Eight", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of York were to become the leading research university in England, how would this impact its staff number?", "answer": " If the University of York were to become the leading research university in England, it could potentially lead to an increase in staff numbers to support enhanced research activities and administrative needs.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of York"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of York"}, {"qid": 837, "topic": "Group of Eight", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to when it was founded, how has the number of departments at the University of York changed?", "answer": " Since its founding in 1963, the University of York has expanded significantly from its initial departments to more than thirty departments and centres.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of York"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of York"}, {"qid": 838, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most studied subject at the University of York?", "answer": " Specific data on the most studied subject at the University of York is not provided, but it offers a wide range of subjects across more than thirty departments and centres.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of York"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of York"}, {"qid": 839, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the role of the president at the University of York?", "answer": " The University of York, being a UK institution, does not have a role titled \"president\"; instead, it has a Vice-Chancellor who acts as the chief executive officer and academic leader.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of York"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of York"}, {"qid": 840, "topic": "Group of Eight", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of York decided to double its staff number, how might this affect its operations?", "answer": " Doubling its staff number could significantly enhance the University of York's capacity for teaching, research, and administrative support, potentially improving its operations and student services.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of York"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of York"}, {"qid": 841, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between Cardiff University and the University of Wales?", "answer": " Cardiff University was a founding college of the University of Wales in 1893 and went through several name changes and mergers within the University of Wales framework before becoming an independent university in 2005.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cardiff University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Cardiff University"}, {"qid": 842, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "When was Cardiff University established compared to other universities in Wales?", "answer": " Cardiff University was established in 1883, making it one of the oldest universities in Wales.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cardiff University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Cardiff University"}, {"qid": 843, "topic": "Group of Eight", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the start year of Cardiff University compare to the start year of Swansea University?", "answer": " Cardiff University was established in 1883, while Swansea University was established later, in 1920, making Cardiff University older.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cardiff University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Cardiff University"}, {"qid": 844, "topic": "Group of Eight", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would happen if Cardiff University decided to revert to its original name?", "answer": " If Cardiff University decided to revert to its original name, it would be known as the University College of South Wales and Monmouthshire.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cardiff University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Cardiff University"}, {"qid": 845, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What led to Cardiff University being awarded its own degree-awarding powers in 1997?", "answer": " Cardiff University received degree-awarding powers in 1997 as part of its evolution from a founding college of the University of Wales to an independent university, marking its ability to award its own degrees.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cardiff University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Cardiff University"}, {"qid": 846, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most significant name change in the history of Cardiff University?", "answer": " The most significant name change was in 1999 when it adopted the operating name of Cardiff University, which later became its legal name in 2005, marking its status as an independent university.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cardiff University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Cardiff University"}, {"qid": 847, "topic": "Group of Eight", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the size of Cardiff University's staff compare to that of the University of South Wales?", "answer": " Cardiff University typically has a larger academic and research staff size compared to the University of South Wales, reflecting its status as a major research university.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cardiff University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Cardiff University"}, {"qid": 848, "topic": "Group of Eight", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Cardiff University had not merged with the University of Wales Institute of Science and Technology in 1988, how might its academic programs differ today?", "answer": " If Cardiff University had not merged with the University of Wales Institute of Science and Technology in 1988, its academic programs might lack some of the engineering and technological disciplines that were strengthened by the merger.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cardiff University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Cardiff University"}, {"qid": 849, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What was the impact of Cardiff University becoming an independent university in 2005?", "answer": " Becoming an independent university in 2005 allowed Cardiff University to award its own degrees and further establish its identity and autonomy in the higher education sector.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cardiff University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Cardiff University"}, {"qid": 850, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "As of the last data, what is the staff number at Cardiff University, and how does it rank among universities in Wales?", "answer": " As of the latest data, Cardiff University has a significant number of staff, making it one of the largest employers among universities in Wales in terms of staff numbers.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cardiff University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Cardiff University"}, {"qid": 851, "topic": "Group of Eight", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of Cardiff University compare to that of Bangor University?", "answer": " Cardiff University was established in 1883, whereas Bangor University was founded earlier, in 1884, making Cardiff University slightly older by a year.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cardiff University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Cardiff University"}, {"qid": 852, "topic": "Group of Eight", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What if Cardiff University had not received degree-awarding powers in 1997, how would its status differ today?", "answer": " If Cardiff University had not received degree-awarding powers in 1997, it might have remained more closely tied to the University of Wales system, potentially limiting its autonomy and ability to innovate in its degree offerings.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cardiff University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Cardiff University"}, {"qid": 853, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between St Luke's College, Exeter School of Science, Exeter School of Art, and the Camborne School of Mines and the University of Exeter?", "answer": " These institutions are the predecessor institutions of the University of Exeter, having been established in 1838, 1855, 1863, and 1888 respectively, and later forming the University of Exeter after it received its royal charter in 1955.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Exeter"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Exeter"}, {"qid": 854, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which campus of the University of Exeter is the main one?", "answer": " The main campus of the University of Exeter is located in Exeter, Devon.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Exeter"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Exeter"}, {"qid": 855, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What does the post-nominal 'Exon' signify in relation to the University of Exeter?", "answer": " The post-nominal 'Exon' is an abbreviation from the Latin Exoniensis, signifying honorary and academic degrees from the University of Exeter.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Exeter"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Exeter"}, {"qid": 856, "topic": "Group of Eight", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How do the establishment years of St Luke's College and the Camborne School of Mines compare in relation to their roles in forming the University of Exeter?", "answer": " St Luke's College was established in 1838, making it the earliest of the predecessor institutions, while the Camborne School of Mines was established later in 1888. Both played roles in forming the University of Exeter.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Exeter"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "University of Exeter"}, {"qid": 857, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "When did the University of Exeter receive its royal charter, making it an official university?", "answer": " The University of Exeter received its royal charter in 1955.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Exeter"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Exeter"}, {"qid": 858, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the significance of the location of the University of Exeter's main campus?", "answer": " The main campus of the University of Exeter is significant for being located in Exeter, Devon, in the West Country of England, indicating its geographical and historical context.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Exeter"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Exeter"}, {"qid": 859, "topic": "Group of Eight", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Exeter were to open another campus, how might its relationship to the main campus in Exeter, Devon be described?", "answer": " If the University of Exeter were to open another campus, its relationship to the main campus in Exeter, Devon, would likely be described as a satellite or secondary campus, with the main campus remaining the primary location for the university's administration and many of its faculties.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Exeter"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Exeter"}, {"qid": 860, "topic": "Group of Eight", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the establishment year of the University of Exeter compare to its predecessor institutions?", "answer": " The University of Exeter was officially established as a university in 1955, following the receipt of its royal charter, which is later than the establishment years of its predecessor institutions (1838, 1855, 1863, and 1888).", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Exeter"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Exeter"}, {"qid": 861, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest predecessor institution of the University of Exeter?", "answer": " St Luke's College, established in 1838, is the oldest predecessor institution of the University of Exeter.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Exeter"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Exeter"}, {"qid": 862, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How is the University of Exeter abbreviated in post-nominals and what is its origin?", "answer": " The University of Exeter is abbreviated as Exon in post-nominals, from the Latin Exoniensis, indicating its origin and association with honorary and academic degrees from the university.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Exeter"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Exeter"}, {"qid": 863, "topic": "Group of Eight", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If a new faculty were to be established at the University of Exeter, how might it relate to the existing campus structure?", "answer": " If a new faculty were to be established at the University of Exeter, it might either integrate within the existing campus structure in Exeter, Devon, or could potentially lead to the expansion of the university's physical footprint, depending on its size and the space available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Exeter"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Exeter"}, {"qid": 864, "topic": "Group of Eight", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to its founding as a university in 1955, how do the establishment dates of its predecessor institutions highlight the University of Exeter's historical depth?", "answer": " The establishment dates of its predecessor institutions (1838, 1855, 1863, and 1888) highlight the University of Exeter's historical depth by showing that its academic and educational roots extend back well before its official founding as a university in 1955, indicating a long tradition of higher education and research in the region.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Exeter"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Exeter"}, {"qid": 865, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the largest city in Canada by population?", "answer": " Toronto", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Canada"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Canada"}, {"qid": 866, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which province in Canada has the highest population?", "answer": " Ontario", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Canada"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Canada"}, {"qid": 867, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the capital city of Canada?", "answer": " Ottawa", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Canada"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Canada"}, {"qid": 868, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Which country shares the world's longest international land border with Canada?", "answer": " The United States", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Canada"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Canada"}, {"qid": 869, "topic": "Group of Eight", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the population density of Canada compare to that of the United States?", "answer": " Canada has a lower population density than the United States.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Canada"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Canada"}, {"qid": 870, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the northernmost territory of Canada?", "answer": " Nunavut", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Canada"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Canada"}, {"qid": 871, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Which ocean is located to the east of Canada?", "answer": " The Atlantic Ocean", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Canada"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Canada"}, {"qid": 872, "topic": "Group of Eight", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the capital of Canada were moved from Ottawa to Toronto, which city would become the capital?", "answer": " Toronto", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Canada"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Canada"}, {"qid": 873, "topic": "Group of Eight", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Is the area of Quebec larger than that of Ontario?", "answer": " Yes, Quebec is larger than Ontario.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Canada"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "Canada"}, {"qid": 874, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which is the smallest province in Canada by area?", "answer": " Prince Edward Island", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Canada"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Canada"}, {"qid": 875, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the main language spoken in Quebec, Canada?", "answer": " French", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Canada"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Canada"}, {"qid": 876, "topic": "Group of Eight", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Canada were to add a fourth territory, what would be the total number of territories in Canada?", "answer": " Four", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Canada"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Canada"}, {"qid": 877, "topic": "Group of Eight", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Which is larger in area, Japan or the United Kingdom?", "answer": " Japan", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Japan"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Japan"}, {"qid": 878, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most populous city in Japan?", "answer": " Tokyo", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Japan"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Japan"}, {"qid": 879, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does Japan's location influence its climate?", "answer": " Japan's location in the Pacific Ocean off the northeast coast of Asia contributes to its varied climate, with the country experiencing a wide range of weather patterns from the northern cold temperatures in Hokkaido to the subtropical climate in the southern regions like Okinawa.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Japan"], "topic_level": false, "class": "sing entity", "hops": "Multi hop", "entity": "Japan"}, {"qid": 880, "topic": "Group of Eight", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Japan were to move 10 degrees south, how would its climate change?", "answer": " If Japan were to move 10 degrees south, it would experience a warmer climate, with more areas potentially adopting a subtropical climate similar to that of the current southern parts of the country.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Japan"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Japan"}, {"qid": 881, "topic": "Group of Eight", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Which has a larger population, Japan or Canada?", "answer": " Japan", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Japan"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Japan"}, {"qid": 882, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which prefecture in Japan has the highest population?", "answer": " Tokyo Prefecture", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Japan"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Japan"}, {"qid": 883, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does Japan's mountainous terrain affect its population distribution?", "answer": " Japan's mountainous terrain concentrates its population in urbanized coastal plains, leading to high population density in these areas.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Japan"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Japan"}, {"qid": 884, "topic": "Group of Eight", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Japan did not have mountainous terrain, where would its population likely be distributed?", "answer": " Without mountainous terrain, Japan's population would likely be more evenly distributed across the country, reducing the concentration in coastal areas.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Japan"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Japan"}, {"qid": 885, "topic": "Group of Eight", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Is Tokyo's population larger than that of Osaka?", "answer": " Yes", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Japan"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Japan"}, {"qid": 886, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest existing company in Japan?", "answer": " Kongō Gumi", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Japan"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Japan"}, {"qid": 887, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What role does the Pacific Ring of Fire play in shaping Japan's geography?", "answer": " The Pacific Ring of Fire contributes to Japan's geographic formation through volcanic activity and earthquakes, shaping its mountainous terrain and affecting its island formation.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Japan"], "topic_level": false, "class": "sing entity", "hops": "Multi hop", "entity": "Japan"}, {"qid": 888, "topic": "Group of Eight", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Japan were located in the Atlantic Ocean, how might its climate and weather patterns differ?", "answer": " If Japan were located in the Atlantic Ocean, it might experience different weather patterns, potentially with less influence from monsoons and possibly facing different oceanic currents that could affect its climate variably compared to its current Pacific Ocean location.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Japan"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Japan"}, {"qid": 889, "topic": "Group of Eight", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Which is larger in area, Italy or Switzerland?", "answer": " Italy", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Italy"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Italy"}, {"qid": 890, "topic": "Group of Eight", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Does Italy have a higher population than Slovenia?", "answer": " Yes", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Italy"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Italy"}, {"qid": 891, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most populous city in Italy?", "answer": " Rome", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Italy"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Italy"}, {"qid": 892, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which Italian island is the largest, Sicily or Sardinia?", "answer": " Sicily", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Italy"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Italy"}, {"qid": 893, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the capital of Italy?", "answer": " Rome", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Italy"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Italy"}, {"qid": 894, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does Italy's geographical location influence its climate?", "answer": " Italy's location extending into the Mediterranean Sea and its northern border with the Alps influence its climate to have a diverse range, from Mediterranean in the south to Alpine in the north.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Italy"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Italy"}, {"qid": 895, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What bodies of water surround Italy?", "answer": " The Mediterranean Sea", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Italy"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Italy"}, {"qid": 896, "topic": "Group of Eight", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Italy were to increase its land area, would it still share a border with France?", "answer": " Yes", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Italy"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Italy"}, {"qid": 897, "topic": "Group of Eight", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Rome were to be replaced as the capital of Italy, would Italy still be a republic?", "answer": " Yes", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Italy"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Italy"}, {"qid": 898, "topic": "Group of Eight", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Italy decided to close its borders to all its neighboring countries, how many countries would be affected?", "answer": " Five (France, Switzerland, Austria, Slovenia, and two enclaves", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Italy"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Italy"}, {"qid": 899, "topic": "Group of Eight", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would happen to Italy's tourism if the country suddenly sank beneath the sea?", "answer": " Italy's tourism would be devastated as it would lose all its historical sites and natural beauty.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Italy"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Italy"}, {"qid": 900, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Which countries does Italy share its land borders with?", "answer": " France, Switzerland, Austria, Slovenia, Vatican City, and San Marino", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Italy"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Italy"}, {"qid": 901, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the largest state by area in the United States?", "answer": " Alaska", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United States"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "United States"}, {"qid": 902, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which state has the smallest population in the United States?", "answer": " Wyoming", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United States"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "United States"}, {"qid": 903, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the capital of the United States?", "answer": " Washington, D.C.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United States"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "United States"}, {"qid": 904, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How many states are there in the United States?", "answer": " 50", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United States"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "United States"}, {"qid": 905, "topic": "Group of Eight", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Is the population of California larger than Texas?", "answer": " Yes", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United States"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "United States"}, {"qid": 906, "topic": "Group of Eight", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Does Alaska have a larger land area than Texas?", "answer": " Yes", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United States"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "United States"}, {"qid": 907, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most populous city in the United States?", "answer": " New York City", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United States"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "United States"}, {"qid": 908, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "When was the United States founded?", "answer": " July 4, 1776", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United States"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "United States"}, {"qid": 909, "topic": "Group of Eight", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Puerto Rico becomes a state, how many states will the United States have?", "answer": " 51", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United States"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "United States"}, {"qid": 910, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Who is the current president of the United States as of 2023?", "answer": " Joe Biden", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United States"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "United States"}, {"qid": 911, "topic": "Group of Eight", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the United States decided to sell Alaska back to Russia, how many states would it have?", "answer": " 49", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United States"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "United States"}, {"qid": 912, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the total number of Indian reservations in the United States?", "answer": " 326", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United States"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "United States"}, {"qid": 913, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most populous city in Germany?", "answer": " Berlin", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Germany"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Germany"}, {"qid": 914, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which state in Germany has the largest population?", "answer": " North Rhine-Westphalia", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Germany"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Germany"}, {"qid": 915, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What borders Germany to the south?", "answer": " Austria and Switzerland", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Germany"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Germany"}, {"qid": 916, "topic": "Group of Eight", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Is Berlin larger than Frankfurt in terms of population?", "answer": " Yes", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Germany"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Germany"}, {"qid": 917, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the main financial centre of Germany?", "answer": " Frankfurt", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Germany"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Germany"}, {"qid": 918, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which country borders Germany to the north?", "answer": " Denmark", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Germany"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Germany"}, {"qid": 919, "topic": "Group of Eight", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Germany were to introduce a new state, how many states would it have in total?", "answer": " Seventeen", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Germany"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Germany"}, {"qid": 920, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does Germany's geographical location affect its climate?", "answer": " Germany's location between the Baltic and North Sea to the north and the Alps to the south influences its temperate seasonal climate.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Germany"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Germany"}, {"qid": 921, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the largest urban area in Germany?", "answer": " The Ruhr", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Germany"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Germany"}, {"qid": 922, "topic": "Group of Eight", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Which has a higher population density, Berlin or the Ruhr area?", "answer": " The Ruhr area", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Germany"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Germany"}, {"qid": 923, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Which countries border Germany to the east?", "answer": " Poland and Czechia", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Germany"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Germany"}, {"qid": 924, "topic": "Group of Eight", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Berlin were to become an independent city-state, how many states would Germany consist of?", "answer": " Fifteen", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Germany"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Germany"}, {"qid": 925, "topic": "Group of Eight", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the size of France's exclusive economic zone compare to other countries in the world?", "answer": " It is one of the largest discontiguous exclusive economic zones in the world.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["France"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "France"}, {"qid": 926, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the largest city in France?", "answer": " Paris", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["France"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "France"}, {"qid": 927, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What type of government does France have?", "answer": " Semi-presidential republic", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["France"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "France"}, {"qid": 928, "topic": "Group of Eight", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If France decided to merge its overseas regions and territories into fewer entities, how would this affect its exclusive economic zone?", "answer": " It might consolidate the exclusive economic zone, potentially making management more efficient but would not necessarily affect the overall size of the zone.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["France"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "France"}, {"qid": 929, "topic": "Group of Eight", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does France's population compare to its neighboring countries?", "answer": " France has a larger population than Belgium, Luxembourg, Monaco, and Switzerland but is smaller than Germany and comparable to Spain.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["France"], "topic_level": false, "class": "sing entity", "hops": "Multi Hop", "entity": "France"}, {"qid": 930, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which region of France has the highest population density?", "answer": " The Île-de-France region, where Paris is located.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["France"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "France"}, {"qid": 931, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the significance of Paris in France?", "answer": " Paris is the capital, the country's largest city, and the main cultural and commercial centre.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["France"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "France"}, {"qid": 932, "topic": "Group of Eight", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If France were to move its capital from Paris to another city, how would this impact its cultural significance?", "answer": " It might redistribute cultural and administrative focus, but Paris would likely retain significant cultural influence due to its history and landmarks.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["France"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "France"}, {"qid": 933, "topic": "Group of Eight", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the area of metropolitan France compare to its overseas regions?", "answer": " Metropolitan France is significantly larger than any single overseas region, but collectively, the overseas regions and territories extend France's influence across the globe.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["France"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "France"}, {"qid": 934, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most visited monument in France?", "answer": " The Eiffel Tower in Paris", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["France"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "France"}, {"qid": 935, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does France's geographical location influence its climate?", "answer": " France's wide range of latitudes and its location between the Atlantic Ocean and the Mediterranean Sea contribute to its varied climate zones, from oceanic in the west to Mediterranean in the southeast.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["France"], "topic_level": false, "class": "sing entity", "hops": "Multi Hop", "entity": "France"}, {"qid": 936, "topic": "Group of Eight", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If France were to close its borders, how would this affect international trade in Western Europe?", "answer": " It would significantly disrupt trade, as France is a key transit country for goods moving within Western Europe.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["France"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "France"}, {"qid": 937, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the largest city in the United Kingdom?", "answer": " London", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United Kingdom"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "United Kingdom"}, {"qid": 938, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which part of the United Kingdom has the smallest area?", "answer": " Northern Ireland", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United Kingdom"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "United Kingdom"}, {"qid": 939, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What borders the United Kingdom to the south?", "answer": " The English Channel", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United Kingdom"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "United Kingdom"}, {"qid": 940, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What ocean surrounds the United Kingdom to the west and northwest?", "answer": " The Atlantic Ocean", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United Kingdom"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "United Kingdom"}, {"qid": 941, "topic": "Group of Eight", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the population of London compare to the total population of the United Kingdom?", "answer": " London's population is a fraction of the total population of the United Kingdom, with London having 14.9 million people out of the total 67.6 million people in the UK.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United Kingdom"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "United Kingdom"}, {"qid": 942, "topic": "Group of Eight", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the size of the United Kingdom compare to that of the island of Great Britain?", "answer": " The United Kingdom is larger as it includes the island of Great Britain, Northern Ireland, and other smaller islands, covering a total area of 94,354 square miles.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United Kingdom"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "United Kingdom"}, {"qid": 943, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which sea is located to the southeast of the United Kingdom?", "answer": " The North Sea", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United Kingdom"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "United Kingdom"}, {"qid": 944, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Which city is the capital of Scotland?", "answer": " Edinburgh", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United Kingdom"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "United Kingdom"}, {"qid": 945, "topic": "Group of Eight", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Wales were to become independent, which sea would become its western boundary?", "answer": " The Irish Sea", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United Kingdom"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "United Kingdom"}, {"qid": 946, "topic": "Group of Eight", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the UK decided to only include Great Britain, which part would no longer be part of it?", "answer": " Northern Ireland", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United Kingdom"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "United Kingdom"}, {"qid": 947, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What natural feature forms the land border of the United Kingdom with the Republic of Ireland?", "answer": " Northern Ireland shares a land border with the Republic of Ireland.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United Kingdom"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "United Kingdom"}, {"qid": 948, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the northernmost country in the United Kingdom?", "answer": " Scotland", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United Kingdom"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "United Kingdom"}, {"qid": 949, "topic": "Group of Eight", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the population of Russia compare to that of other countries in Europe?", "answer": " Russia is Europe's most populous country.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Russia"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Russia"}, {"qid": 950, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the largest city in Russia?", "answer": " Moscow is the largest city in Russia.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Russia"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Russia"}, {"qid": 951, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What role does Saint Petersburg play in Russia's cultural landscape?", "answer": " Saint Petersburg is Russia's cultural capital.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Russia"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Russia"}, {"qid": 952, "topic": "Group of Eight", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Russia were to add another country to its borders, how many countries would it share land borders with?", "answer": " It would share land borders with fifteen countries.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Russia"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Russia"}, {"qid": 953, "topic": "Group of Eight", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to other countries in the world, where does Russia stand in terms of area size?", "answer": " Russia is the largest country in the world by area.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Russia"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Russia"}, {"qid": 954, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which city in Russia holds the title of the second-largest city?", "answer": " Saint Petersburg is Russia's second-largest city.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Russia"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Russia"}, {"qid": 955, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the urban population in Russia manifest in terms of city sizes?", "answer": " Russia includes 16 population centers with over a million inhabitants.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Russia"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Russia"}, {"qid": 956, "topic": "Group of Eight", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Russia were to establish a new capital, what city currently holds the status of Russia's largest city that might be considered?", "answer": " Moscow, being the largest city, might be considered.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Russia"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Russia"}, {"qid": 957, "topic": "Group of Eight", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does Russia's time zone coverage compare to other countries?", "answer": " Russia extends across eleven time zones, more than any other country.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Russia"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Russia"}, {"qid": 958, "topic": "Group of Eight", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most populous country in the world, and where does Russia rank in comparison?", "answer": " Russia is the world's ninth-most populous country.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Russia"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Russia"}, {"qid": 959, "topic": "Group of Eight", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Considering Russia's population distribution, how is urbanization characterized?", "answer": " Russia is a highly urbanised country.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Russia"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Russia"}, {"qid": 960, "topic": "Group of Eight", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Russia were to lose a time zone through territorial adjustments, how many time zones would it span?", "answer": " It would span across ten time zones.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Russia"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Russia"}, {"qid": 1, "topic": "Ivy League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the number of staff at Columbia University compare to that of Harvard University?", "answer": " This comparison requires specific and current data for both universities, which can vary year by year.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Columbia University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Columbia University"}, {"qid": 2, "topic": "Ivy League", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest institution of higher education in the United States, and how does Columbia University's founding year compare to it?", "answer": " Harvard University is the oldest institution of higher education in the United States, founded in 1636, making it older than Columbia University, which was established in 1754.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Columbia University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Columbia University"}, {"qid": 3, "topic": "Ivy League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What relationship does Columbia University have with Trinity Church?", "answer": " Columbia University was established as King's College on the grounds of Trinity Church in Manhattan.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Columbia University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Columbia University"}, {"qid": 4, "topic": "Ivy League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Columbia University decided to open a new campus, what factors would they consider based on their original location choice?", "answer": " They would likely consider factors such as historical significance, accessibility, the potential for community engagement, and space for expansion.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Columbia University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Columbia University"}, {"qid": 5, "topic": "Ivy League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of Columbia University compare to that of other Ivy League institutions?", "answer": " Columbia University, founded in 1754, is older than most Ivy League institutions except for Harvard (1636), Yale (1701), and Princeton (1746).", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Columbia University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Columbia University"}, {"qid": 6, "topic": "Ivy League", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which Ivy League university has the largest number of staff, and where does Columbia University rank among them?", "answer": " Specific staff numbers are required for a current comparison, but traditionally, universities like Harvard and Columbia are among the largest employers within the Ivy League.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Columbia University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Columbia University"}, {"qid": 7, "topic": "Ivy League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How has the location of Columbia University in New York City influenced its research and academic programs?", "answer": " The university's location in New York City offers vast opportunities for research partnerships, internships, cultural experiences, and academic collaborations across various fields.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Columbia University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Columbia University"}, {"qid": 8, "topic": "Ivy League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Columbia University were to establish a partnership with another Ivy League school for a joint research initiative, which school might it choose and why?", "answer": " It might choose a university with complementary research strengths, such as MIT for engineering and technology or Harvard for law and public policy, to enhance collaborative innovation.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Columbia University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Columbia University"}, {"qid": 9, "topic": "Ivy League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the student-to-staff ratio at Columbia University compare to that of Yale University?", "answer": " This requires specific and current data for both universities, but both strive for low student-to-staff ratios to ensure high-quality education and support.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Columbia University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Columbia University"}, {"qid": 10, "topic": "Ivy League", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most researched topic at Columbia University?", "answer": " As a comprehensive research university, Columbia excels in numerous fields, but it is particularly renowned for its research in fields like climate science and medical sciences.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Columbia University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Columbia University"}, {"qid": 11, "topic": "Ivy League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What role does Columbia University play in New York City's educational landscape?", "answer": " Columbia University significantly contributes to the educational landscape by providing leading academic programs, research opportunities, and cultural contributions, making it a key institution in the city.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Columbia University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Columbia University"}, {"qid": 12, "topic": "Ivy League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Columbia University were to rename itself, what factors would likely influence the new name?", "answer": " Factors would include its historical significance, location, mission, and vision for future educational and research goals, ensuring continuity and respect for its legacy.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Columbia University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Columbia University"}, {"qid": 13, "topic": "Ivy League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of Harvard University compare to that of Yale University?", "answer": " Harvard University was founded in 1636, making it older than Yale University, which was founded in 1701.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harvard University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Harvard University"}, {"qid": 14, "topic": "Ivy League", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest institution of higher learning in the United States?", "answer": " Harvard University.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harvard University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Harvard University"}, {"qid": 15, "topic": "Ivy League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Who was Harvard University named after and what was his profession?", "answer": " Harvard University was named after its first benefactor, John Harvard, who was a Puritan clergyman.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harvard University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Harvard University"}, {"qid": 16, "topic": "Ivy League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Harvard University decided to move its main campus to another city, which aspect of the university would likely be most affected?", "answer": " Its location in Cambridge, Massachusetts.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harvard University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Harvard University"}, {"qid": 17, "topic": "Ivy League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the staff number of Harvard University compare to that of MIT?", "answer": " This question cannot be answered directly without specific data on the staff numbers of both universities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harvard University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Harvard University"}, {"qid": 18, "topic": "Ivy League", "type": "Superlative", "category": "Comparative Reasoning", "question": "Among Ivy League universities, which has the earliest founding year?", "answer": " Harvard University.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harvard University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Harvard University"}, {"qid": 19, "topic": "Ivy League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Considering its founding year, how has Harvard University contributed to the development of higher education in the United States?", "answer": " As the oldest institution of higher learning in the United States, Harvard University has played a significant role in the development of higher education by setting academic standards and influencing educational practices nationally.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harvard University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Harvard University"}, {"qid": 20, "topic": "Ivy League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If John Harvard had not contributed to Harvard College, how might the university's name be different today?", "answer": " Without John Harvard's contribution, the university might have been named after a different benefactor or perhaps retained a generic name reflecting its geographical location or purpose.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harvard University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Harvard University"}, {"qid": 21, "topic": "Ivy League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to other Ivy League universities, where does Harvard rank in terms of its endowment size?", "answer": " Harvard University has the largest endowment of any Ivy League university.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harvard University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Harvard University"}, {"qid": 22, "topic": "Ivy League", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most prestigious university in the world according to various global rankings?", "answer": " Harvard University is often ranked as one of the most prestigious universities in the world.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harvard University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Harvard University"}, {"qid": 23, "topic": "Ivy League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What was the original name of Harvard University, and in what year was it founded?", "answer": " Harvard University was originally named Harvard College and was founded in 1636.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harvard University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Harvard University"}, {"qid": 24, "topic": "Ivy League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Harvard University had not been founded, what might have been the oldest institution of higher learning in the United States?", "answer": " Without Harvard University, the College of William & Mary, founded in 1693, might have been the oldest institution of higher learning in the United States.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harvard University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Harvard University"}, {"qid": 25, "topic": "Ivy League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between The College of New Jersey and Princeton University?", "answer": " The College of New Jersey was renamed Princeton University in 1896.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Princeton University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Princeton University"}, {"qid": 26, "topic": "Ivy League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "In what year did Princeton University move to its current campus in Mercer County?", "answer": " Princeton University moved to its current campus in Mercer County in 1756.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Princeton University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Princeton University"}, {"qid": 27, "topic": "Ivy League", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest institution of higher education in the United States?", "answer": " Harvard University is the oldest, but Princeton University is the fourth-oldest institution of higher education in the United States.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Princeton University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Princeton University"}, {"qid": 28, "topic": "Ivy League", "type": "Superlative", "category": "Comparative Reasoning", "question": "When did Princeton University become a university, making it among the earliest to be declared a university in the United States?", "answer": " Princeton University officially became a university in 1896, making it among the earliest institutions to be declared a university in the United States.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Princeton University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Princeton University"}, {"qid": 29, "topic": "Ivy League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of Princeton University compare to that of Harvard University?", "answer": " Princeton University was founded in 1746, which is 140 years after Harvard University was founded in 1636.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Princeton University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Princeton University"}, {"qid": 30, "topic": "Ivy League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the location of Princeton University's original campus compare to its current location?", "answer": " The original campus of Princeton University was in Elizabeth, New Jersey, and it is now located in Princeton, New Jersey, having moved there in 1756.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Princeton University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Princeton University"}, {"qid": 31, "topic": "Ivy League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What led to Princeton University being renamed from The College of New Jersey?", "answer": " The institution was officially renamed Princeton University in 1896 as part of its official recognition as a university.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Princeton University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Princeton University"}, {"qid": 32, "topic": "Ivy League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Princeton University had not moved from Newark to Princeton, how would its geographical context within New Jersey have been different today?", "answer": " It would have remained in a more urban setting within the city of Newark, instead of its current location in the suburban town of Princeton.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Princeton University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Princeton University"}, {"qid": 33, "topic": "Ivy League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would have happened if Princeton University had not been chartered before the American Revolution?", "answer": " It might not have been recognized as one of the nine colonial colleges, potentially affecting its historical significance and development.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Princeton University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Princeton University"}, {"qid": 34, "topic": "Ivy League", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which colonial college was chartered first in the United States?", "answer": " Harvard College was the first colonial college to be chartered in the United States in 1636.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Princeton University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Princeton University"}, {"qid": 35, "topic": "Ivy League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to Yale University, how does the founding year of Princeton University rank in terms of age?", "answer": " Princeton University, founded in 1746, is younger than Yale University, which was founded in 1701.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Princeton University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Princeton University"}, {"qid": 36, "topic": "Ivy League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What significant change occurred to the College of New Jersey in 1896?", "answer": " The College of New Jersey was officially renamed Princeton University in 1896.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Princeton University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Princeton University"}, {"qid": 37, "topic": "Ivy League", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest institution of higher education in the United States?", "answer": " Harvard University", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Yale University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Yale University"}, {"qid": 38, "topic": "Ivy League", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which Ivy League university has the highest number of staff members?", "answer": " Harvard University", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Yale University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Yale University"}, {"qid": 39, "topic": "Ivy League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Does Yale University have more staff than Princeton University?", "answer": " Yes", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Yale University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Yale University"}, {"qid": 40, "topic": "Ivy League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Is Yale University older than Columbia University?", "answer": " Yes", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Yale University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Yale University"}, {"qid": 41, "topic": "Ivy League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What relation does Yale University have with the American Revolution?", "answer": " It is one of the nine colonial colleges chartered before the American Revolution.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Yale University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Yale University"}, {"qid": 42, "topic": "Ivy League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How is Yale University ranked globally in terms of prestige?", "answer": " It is one of the most prestigious universities in the world.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Yale University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Yale University"}, {"qid": 43, "topic": "Ivy League", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the third-oldest institution of higher education in the United States?", "answer": " Yale University", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Yale University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Yale University"}, {"qid": 44, "topic": "Ivy League", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which Ivy League university is located the furthest north?", "answer": " Dartmouth College", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Yale University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Yale University"}, {"qid": 45, "topic": "Ivy League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Yale University decided to move its location, which city would be its most likely new home considering its historical significance?", "answer": " Philadelphia", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Yale University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Yale University"}, {"qid": 46, "topic": "Ivy League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would happen to Yale University's ranking if it significantly reduced its research funding?", "answer": " Its ranking would likely decrease.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Yale University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Yale University"}, {"qid": 47, "topic": "Ivy League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does Yale University's founding year relate to its status among Ivy League institutions?", "answer": " Its founding year, 1701, makes it the third-oldest Ivy League institution, contributing to its prestige.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Yale University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Yale University"}, {"qid": 48, "topic": "Ivy League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Yale University were to double its staff, how would that affect its student-to-faculty ratio?", "answer": " The student-to-faculty ratio would decrease, potentially improving individual attention for students.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Yale University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Yale University"}, {"qid": 49, "topic": "Ivy League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of Brown University compare to that of Harvard University?", "answer": " Brown University was founded in 1764, making it younger than Harvard University, which was founded in 1636.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brown University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Brown University"}, {"qid": 50, "topic": "Ivy League", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest Ivy League institution of higher education in the United States?", "answer": " Harvard University is the oldest Ivy League institution, founded in 1636, making it older than Brown University which was founded in 1764.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brown University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Brown University"}, {"qid": 51, "topic": "Ivy League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Why was Brown University distinguished among U.S. colleges in its early years?", "answer": " Brown University was distinguished because it was the first U.S. college to codify that admission and instruction of students were to be equal regardless of the religious affiliation of students.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brown University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Brown University"}, {"qid": 52, "topic": "Ivy League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Brown University decided to exclusively admit students based on their religious affiliation today, how would that contrast with its original admission policy?", "answer": " It would be a complete reversal of its original policy, which was the first U.S. college to codify that admission and instruction of students were to be equal regardless of religious affiliation.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brown University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Brown University"}, {"qid": 53, "topic": "Ivy League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Comparing the founding years, which is older, Brown University or Yale University?", "answer": " Yale University", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brown University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Brown University"}, {"qid": 54, "topic": "Ivy League", "type": "Superlative", "category": "Comparative Reasoning", "question": "Among Brown University, Harvard University, and Princeton University, which has the highest number of staff?", "answer": " Harvard University has the highest number of staff among the three.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brown University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Brown University"}, {"qid": 55, "topic": "Ivy League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How did Brown University's location in Providence, Rhode Island, influence its development in the early years?", "answer": " Being located in Providence, Rhode Island, allowed Brown University to benefit from the city's thriving maritime trade, which facilitated cultural and intellectual exchanges that contributed to its development.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brown University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Brown University"}, {"qid": 56, "topic": "Ivy League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Brown University had been founded in the 21st century instead of in 1764, what modern facilities might it have prioritized in its original construction?", "answer": " It might have prioritized modern research labs, digital libraries, sustainable building designs, and advanced technological infrastructure for education.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brown University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Brown University"}, {"qid": 57, "topic": "Ivy League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the student body size of Brown University compare to Columbia University?", "answer": " Columbia University has a larger student body size compared to Brown University.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brown University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Brown University"}, {"qid": 58, "topic": "Ivy League", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which Ivy League university is the most recent founding member?", "answer": " Cornell University is the most recent founding member of the Ivy League, established in 1865, making it younger than Brown University.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brown University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Brown University"}, {"qid": 59, "topic": "Ivy League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What role did Brown University play in the American Revolution?", "answer": " As one of the nine colonial colleges chartered before the American Revolution, Brown University played a significant role in educating leaders and supporting the cause for American independence.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brown University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Brown University"}, {"qid": 60, "topic": "Ivy League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Brown University were to become a public institution today, how would its admission policy likely change?", "answer": " If it became a public institution, its admission policy might shift to prioritize residents of Rhode Island, possibly adjust its tuition structure, and could see an increase in the emphasis on providing access to a wider demographic of students.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brown University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Brown University"}, {"qid": 61, "topic": "Ivy League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the student population of Cornell University compare to that of Harvard University in fall 2023?", "answer": " As of fall 2023, Cornell University had over 16,000 undergraduate and 10,000 graduate students, while specific numbers for Harvard University are required for a direct comparison.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cornell University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Cornell University"}, {"qid": 62, "topic": "Ivy League", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest Ivy League university, and how does Cornell University's founding year of 1865 compare to it?", "answer": " The oldest Ivy League university is Harvard University, founded in 1636, making Cornell University, founded in 1865, significantly younger.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cornell University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Cornell University"}, {"qid": 63, "topic": "Ivy League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the founding of Cornell University in 1865 by Ezra Cornell and Andrew Dickson White reflect on its mission and vision?", "answer": " The founding of Cornell University in 1865 by Ezra Cornell and Andrew Dickson White reflects its mission and vision of being a co-educational and nonsectarian institution, aiming to contribute to knowledge in a wide range of disciplines.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cornell University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Cornell University"}, {"qid": 64, "topic": "Ivy League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Ezra Cornell and Andrew Dickson White were to visit Cornell University in 2023, what changes in the student body might they observe?", "answer": " If Ezra Cornell and Andrew Dickson White were to visit Cornell University in 2023, they would observe a significantly larger and more diverse student body, including over 16,000 undergraduate and 10,000 graduate students from all 50 U.S. states and 130 countries.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cornell University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Cornell University"}, {"qid": 65, "topic": "Ivy League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the location of Cornell University in Ithaca, New York, compare to Columbia University's location in New York City in terms of campus environment?", "answer": " Cornell University, located in Ithaca, New York, offers a more rural and campus-centered environment compared to Columbia University's urban campus in New York City.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cornell University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Cornell University"}, {"qid": 66, "topic": "Ivy League", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which Ivy League university has the most diverse international student population, and how does Cornell's representation of students from 130 countries compare?", "answer": " Information on the most diverse international student population among the Ivy League universities is required for direct comparison, but Cornell's representation of students from 130 countries indicates a highly diverse international student body.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cornell University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Cornell University"}, {"qid": 67, "topic": "Ivy League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Considering Cornell University's nonsectarian and co-educational stance since its founding in 1865, how has this influenced its policies on student admissions and campus culture?", "answer": " Cornell University's nonsectarian and co-educational stance since its founding has influenced its policies to be inclusive and open to all genders and religions, fostering a diverse and welcoming campus culture.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cornell University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Cornell University"}, {"qid": 68, "topic": "Ivy League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Cornell University decided to open a new campus abroad, how would its founding principles of being co-educational and nonsectarian influence its establishment?", "answer": " If Cornell University decided to open a new campus abroad, its founding principles of being co-educational and nonsectarian would likely guide its establishment, ensuring the new campus promotes inclusivity, diversity, and open access to education for all genders and religions.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cornell University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Cornell University"}, {"qid": 69, "topic": "Ivy League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the number of staff at Cornell University compare to that of Yale University?", "answer": " Specific numbers are required for a direct comparison, but both universities, being large Ivy League institutions, likely have a significant number of staff members to support their extensive academic and research operations.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cornell University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Cornell University"}, {"qid": 70, "topic": "Ivy League", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the largest department at Cornell University in terms of faculty numbers?", "answer": " Specific data is required for a direct answer, but traditionally, departments such as Engineering, Life Sciences, or Humanities are among the largest at major research universities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cornell University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Cornell University"}, {"qid": 71, "topic": "Ivy League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the founding year of 1865 influence Cornell University's historical significance among Ivy League schools?", "answer": " The founding year of 1865 places Cornell University among the younger Ivy League schools, yet its historical significance is underscored by its unique founding principles of being co-educational and nonsectarian, contributing to its distinct identity among elite institutions.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cornell University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Cornell University"}, {"qid": 72, "topic": "Ivy League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Cornell University were to significantly expand its graduate student population, how might this affect its campus infrastructure and resources?", "answer": " If Cornell University were to significantly expand its graduate student population, it might necessitate the expansion of campus infrastructure, such as housing and academic facilities, and an increase in resources like faculty, research funding, and student services to accommodate the larger student body.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cornell University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Cornell University"}, {"qid": 73, "topic": "Ivy League", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest Ivy League university established before Dartmouth College?", "answer": " Harvard University", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Dartmouth College"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Dartmouth College"}, {"qid": 74, "topic": "Ivy League", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which Ivy League college has the smallest student body compared to Dartmouth College?", "answer": " Brown University", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Dartmouth College"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Dartmouth College"}, {"qid": 75, "topic": "Ivy League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Who was the founder of Dartmouth College?", "answer": " Eleazar Wheelock", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Dartmouth College"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Dartmouth College"}, {"qid": 76, "topic": "Ivy League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "In which town is Dartmouth College located?", "answer": " Hanover, New Hampshire", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Dartmouth College"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Dartmouth College"}, {"qid": 77, "topic": "Ivy League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "For what was Dartmouth College established?", "answer": " As a private Ivy League research university", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Dartmouth College"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Dartmouth College"}, {"qid": 78, "topic": "Ivy League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Is Dartmouth College older than Princeton University?", "answer": " Yes", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Dartmouth College"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Dartmouth College"}, {"qid": 79, "topic": "Ivy League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Does Dartmouth College have a larger student enrollment than Cornell University?", "answer": " No", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Dartmouth College"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Dartmouth College"}, {"qid": 80, "topic": "Ivy League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would likely happen to the staff number at Dartmouth College if it expanded its research departments?", "answer": " The staff number would likely increase.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Dartmouth College"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Dartmouth College"}, {"qid": 81, "topic": "Ivy League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Dartmouth College decided to open a new campus in another state, how would its location description change?", "answer": " It would include the new state in addition to Hanover, New Hampshire.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Dartmouth College"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Dartmouth College"}, {"qid": 82, "topic": "Ivy League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would be the impact on Dartmouth College's prestige if it significantly dropped in national rankings?", "answer": " Its prestige as one of the most prestigious undergraduate colleges in the United States would likely decrease.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Dartmouth College"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Dartmouth College"}, {"qid": 83, "topic": "Ivy League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How did Dartmouth College's national prominence change at the turn of the 20th century?", "answer": " It emerged into national prominence.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Dartmouth College"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "Dartmouth College"}, {"qid": 84, "topic": "Ivy League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between Dartmouth College and the American Revolution in terms of its chartering?", "answer": " Dartmouth College was chartered before the American Revolution.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Dartmouth College"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "Dartmouth College"}, {"qid": 85, "topic": "Ivy League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of the University of Pennsylvania compare to the founding years of other Ivy League universities?", "answer": " The University of Pennsylvania was chartered in 1749, making it one of the oldest Ivy League universities, but other Ivy League institutions such as Harvard (founded in 1636) and Yale (founded in 1701) are older.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pennsylvania"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Pennsylvania"}, {"qid": 86, "topic": "Ivy League", "type": "Superlative", "category": "Comparative Reasoning", "question": "Who was the first president of the University of Pennsylvania?", "answer": " Benjamin Franklin was the university's founder and first president.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pennsylvania"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Pennsylvania"}, {"qid": 87, "topic": "Ivy League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What role did Benjamin Franklin play in the establishment of the University of Pennsylvania?", "answer": " Benjamin Franklin was the founder and first president of the University of Pennsylvania, advocating for an educational institution that trained leaders in academia, commerce, and public service.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pennsylvania"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Pennsylvania"}, {"qid": 88, "topic": "Ivy League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Benjamin Franklin had not advocated for the creation of an educational institution, what might have been the impact on the establishment of the University of Pennsylvania?", "answer": " Without Benjamin Franklin's advocacy, the University of Pennsylvania might not have been established when it was, or it might have had a different focus or founding principles.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pennsylvania"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Pennsylvania"}, {"qid": 89, "topic": "Ivy League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to other colonial colleges, where does the University of Pennsylvania rank in terms of its founding year?", "answer": " Penn identifies as the fourth-oldest institution of higher education in the United States, though this is contested, making it one of the earlier colonial colleges but not the oldest.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pennsylvania"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Pennsylvania"}, {"qid": 90, "topic": "Ivy League", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the location of the oldest campus of the University of Pennsylvania?", "answer": " Philadelphia, Pennsylvania, United States.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pennsylvania"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Pennsylvania"}, {"qid": 91, "topic": "Ivy League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the University of Pennsylvania's identification as the fourth-oldest institution of higher education in the United States contribute to its historical significance?", "answer": " Its identification as one of the oldest institutions of higher education contributes to its prestigious reputation, highlighting its long history of academic excellence and its role in American educational and societal development.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pennsylvania"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Pennsylvania"}, {"qid": 92, "topic": "Ivy League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Pennsylvania had been established after the U.S. Declaration of Independence, how might its history and founding principles differ?", "answer": " If established after the Declaration of Independence, its founding might have been influenced more directly by the newly independent nation's values and needs, possibly altering its initial focus on training leaders in academia, commerce, and public service.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pennsylvania"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Pennsylvania"}, {"qid": 93, "topic": "Ivy League", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the staff size of the University of Pennsylvania compare to that of other Ivy League universities?", "answer": " The staff size of the University of Pennsylvania is substantial, given its status as a major research university, but specific comparisons require current data on staff sizes of other Ivy League universities for accuracy.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pennsylvania"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Pennsylvania"}, {"qid": 94, "topic": "Ivy League", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most distinguished department at the University of Pennsylvania?", "answer": " While the University of Pennsylvania is renowned for several departments, its Wharton School is particularly distinguished as one of the top business schools globally.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pennsylvania"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Pennsylvania"}, {"qid": 95, "topic": "Ivy League", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What influence did Benjamin Franklin's vision have on the curriculum of the University of Pennsylvania?", "answer": " Benjamin Franklin's vision for an institution that trained leaders in academia, commerce, and public service significantly influenced the University of Pennsylvania's broad and interdisciplinary curriculum.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pennsylvania"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Pennsylvania"}, {"qid": 96, "topic": "Ivy League", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Pennsylvania decided to become a public institution, how might this change its identity and operations?", "answer": " Becoming a public institution could change its funding structure, potentially increase its accessibility to a broader range of students, and might require adjustments in governance and mission to align with public university mandates and expectations.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pennsylvania"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Pennsylvania"}, {"qid": 97, "topic": "Russell Group", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the start year of Columbia University compare to that of Harvard University?", "answer": " Columbia University was established in 1754, making it younger than Harvard University, which was founded in 1636.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Columbia University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Columbia University"}, {"qid": 98, "topic": "Russell Group", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Is the number of staff at Columbia University greater than that at Yale University?", "answer": " This answer varies based on the current data for each institution. As of the last available data, Columbia University has a large number of staff, but specific numbers should be checked for the current year.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Columbia University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Columbia University"}, {"qid": 99, "topic": "Russell Group", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest institution of higher education in New York?", "answer": " Columbia University, established in 1754.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Columbia University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Columbia University"}, {"qid": 100, "topic": "Russell Group", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which Ivy League university has the oldest history in the United States?", "answer": " Not Columbia University. The oldest Ivy League university is Harvard University, established in 1636.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Columbia University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Columbia University"}, {"qid": 101, "topic": "Russell Group", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Who was the president of Columbia University in 2020?", "answer": " Lee C. Bollinger.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Columbia University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Columbia University"}, {"qid": 102, "topic": "Russell Group", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What was the original name of Columbia University when it was established?", "answer": " King's College.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Columbia University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Columbia University"}, {"qid": 103, "topic": "Russell Group", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How has the location of Columbia University changed since its establishment?", "answer": " Columbia University was originally established on the grounds of Trinity Church in Manhattan and has since moved to its current location in Morningside Heights.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Columbia University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Columbia University"}, {"qid": 104, "topic": "Russell Group", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Columbia University decided to move its campus, what would be a potential concern regarding its location?", "answer": " A potential concern would be maintaining its historical significance and accessibility to students and faculty.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Columbia University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Columbia University"}, {"qid": 105, "topic": "Russell Group", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would happen if Columbia University suddenly increased its staff number by 50%?", "answer": " There would likely be a significant impact on budget, space allocation, and potentially the student-to-staff ratio.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Columbia University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Columbia University"}, {"qid": 106, "topic": "Russell Group", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Columbia University were to merge with another Ivy League school, how might that affect its historical standing as the fifth oldest institution in the U.S.?", "answer": " The merger could potentially alter its standing, depending on the history and founding year of the other institution involved in the merger.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Columbia University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Columbia University"}, {"qid": 107, "topic": "Russell Group", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would be the implications if Columbia University's president were to be elected from its alumni?", "answer": " It could strengthen alumni engagement and potentially bring a president with a deep personal connection to the university's culture and values.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Columbia University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Columbia University"}, {"qid": 108, "topic": "Russell Group", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the significance of the location of Columbia University in New York City?", "answer": " The location in New York City offers significant cultural, academic, and professional opportunities for students and faculty, besides being part of a vibrant urban environment.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Columbia University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Columbia University"}, {"qid": 109, "topic": "Russell Group", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest institution of higher learning in the United States?", "answer": " Harvard University", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harvard University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Harvard University"}, {"qid": 110, "topic": "Russell Group", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Who was Harvard University named after?", "answer": " John Harvard", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harvard University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Harvard University"}, {"qid": 111, "topic": "Russell Group", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "In which city is Harvard University located?", "answer": " Cambridge, Massachusetts", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harvard University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Harvard University"}, {"qid": 112, "topic": "Russell Group", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What type of university is Harvard?", "answer": " A private Ivy League research university", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harvard University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Harvard University"}, {"qid": 113, "topic": "Russell Group", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which university is considered one of the most prestigious in the world?", "answer": " Harvard University", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harvard University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Harvard University"}, {"qid": 114, "topic": "Russell Group", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "When was Harvard University founded?", "answer": " 1636", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harvard University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Harvard University"}, {"qid": 115, "topic": "Russell Group", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Is Harvard University older than Yale University?", "answer": " Yes", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harvard University"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "Harvard University"}, {"qid": 116, "topic": "Russell Group", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If John Harvard had not been the first benefactor, what might the university have been named?", "answer": " The university might have been named after a different benefactor or had a different name entirely.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harvard University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Harvard University"}, {"qid": 117, "topic": "Russell Group", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What was Harvard University's original name at its founding in 1636?", "answer": " Harvard College", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harvard University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Harvard University"}, {"qid": 118, "topic": "Russell Group", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would happen if Harvard University decided to relocate to another state?", "answer": " It would involve a significant logistical, legal, and financial effort, and potentially impact its historical status and relationships in Massachusetts.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harvard University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Harvard University"}, {"qid": 119, "topic": "Russell Group", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is Harvard University's rank among Ivy League schools in terms of age?", "answer": " First", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harvard University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Harvard University"}, {"qid": 120, "topic": "Russell Group", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the primary mission of Harvard University as a research institution?", "answer": " To advance knowledge through research and scholarship.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harvard University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Harvard University"}, {"qid": 121, "topic": "Russell Group", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest institution of higher education in the United States that was founded before Princeton University?", "answer": " The College of William & Mary", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Princeton University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Princeton University"}, {"qid": 122, "topic": "Russell Group", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which Ivy League university was officially renamed to its current name most recently?", "answer": " Princeton University", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Princeton University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Princeton University"}, {"qid": 123, "topic": "Russell Group", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of Princeton University compare to the founding year of Harvard University?", "answer": " Princeton University was founded later than Harvard University.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Princeton University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Princeton University"}, {"qid": 124, "topic": "Russell Group", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What led to the official renaming of the College of New Jersey to Princeton University?", "answer": " The institution officially became a university in 1896 and was subsequently renamed Princeton University.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Princeton University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Princeton University"}, {"qid": 125, "topic": "Russell Group", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Why did Princeton University move from Newark to its current location in Princeton?", "answer": " The institution moved to its current Mercer County campus in Princeton nine years after moving to Newark, but specific reasons such as expansion or strategic location might have influenced this decision.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Princeton University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Princeton University"}, {"qid": 126, "topic": "Russell Group", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Princeton University had not been renamed in 1896, what would its name be today?", "answer": " The College of New Jersey", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Princeton University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Princeton University"}, {"qid": 127, "topic": "Russell Group", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What if Princeton University decided to move back to Newark, how would that affect its location status?", "answer": " Princeton University would no longer be located in Princeton, New Jersey, but instead, it would be in Newark, New Jersey.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Princeton University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Princeton University"}, {"qid": 128, "topic": "Russell Group", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which Ivy League university has been in its current location for the longest time?", "answer": " Princeton University", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Princeton University"], "topic_level": false, "class": "sing entity", "hops": "Multiple hops", "entity": "Princeton University"}, {"qid": 129, "topic": "Russell Group", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How did the American Revolution impact the founding of Princeton University as one of the nine colonial colleges?", "answer": " Princeton University, as one of the nine colonial colleges, was chartered before the American Revolution, indicating its significance and historical roots in the early formation of higher education in America.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Princeton University"], "topic_level": false, "class": "sing entity", "hops": "Multiple hops", "entity": "Princeton University"}, {"qid": 130, "topic": "Russell Group", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to other Ivy League universities, where does Princeton rank in terms of its founding year?", "answer": " Fourth oldest", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Princeton University"], "topic_level": false, "class": "sing entity", "hops": "Multiple hops", "entity": "Princeton University"}, {"qid": 131, "topic": "Russell Group", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Princeton University hadn't moved its campus from Newark to Princeton, how would its history as one of the colonial colleges be different?", "answer": " Its history might not differ significantly in terms of its status as a colonial college, but its geographic and possibly cultural and academic development could have been markedly different.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Princeton University"], "topic_level": false, "class": "sing entity", "hops": "Multiple hops", "entity": "Princeton University"}, {"qid": 132, "topic": "Russell Group", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "Suppose Princeton University had remained the College of New Jersey, how might its prestige and recognition in the Ivy League be affected today?", "answer": " Its prestige and recognition might have been similar due to its history and academic achievements, but the name \"Princeton University\" itself carries significant brand recognition that could have been less distinct under its original name.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Princeton University"], "topic_level": false, "class": "sing entity", "hops": "Multiple hops", "entity": "Princeton University"}, {"qid": 133, "topic": "Russell Group", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between Yale University and the Ivy League?", "answer": " Yale University is a member of the Ivy League, which is a group of eight private research universities in the northeastern United States known for their high academic standards, social prestige, and historical significance.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Yale University"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "Yale University"}, {"qid": 134, "topic": "Russell Group", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does Yale University's founding year relate to its status among U.S. higher education institutions?", "answer": " Yale University, founded in 1701, is the third-oldest institution of higher education in the United States, which contributes to its prestigious status among American universities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Yale University"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "Yale University"}, {"qid": 135, "topic": "Russell Group", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which is older, Harvard University or Yale University?", "answer": " Harvard University is older, having been founded in 1636, making Yale University, founded in 1701, the younger institution.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Yale University"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "Yale University"}, {"qid": 136, "topic": "Russell Group", "type": "Superlative", "category": "Comparative Reasoning", "question": "What university is considered the most prestigious in the Ivy League?", "answer": " While perceptions of prestige are subjective, both Harvard University and Yale University are often considered among the most prestigious in the Ivy League.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Yale University"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "Yale University"}, {"qid": 137, "topic": "Russell Group", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the number of staff at Yale University compare to that of Princeton University?", "answer": " As of the last available data, Yale University typically has more faculty and staff members than Princeton University due to its larger size and wider range of graduate programs.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Yale University"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "Yale University"}, {"qid": 138, "topic": "Russell Group", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "In terms of founding years, how does Yale University compare with Columbia University?", "answer": " Yale University, founded in 1701, is older than Columbia University, which was founded in 1754.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Yale University"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "Yale University"}, {"qid": 139, "topic": "Russell Group", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What might happen to Yale University's rankings if it suddenly doubled its research output?", "answer": " If Yale University suddenly doubled its research output, its national and global rankings could potentially increase, reflecting the enhanced academic productivity and influence.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Yale University"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "Yale University"}, {"qid": 140, "topic": "Russell Group", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Yale University were to open a new campus in another country, how might that affect its global standing?", "answer": " Opening a new campus in another country could potentially enhance Yale University's global standing by increasing its international presence and opportunities for global collaborations.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Yale University"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "Yale University"}, {"qid": 141, "topic": "Russell Group", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Yale University significantly increased its financial aid budget, how might that affect its student diversity?", "answer": " Increasing the financial aid budget could lead to greater student diversity at Yale University by making it more accessible to talented students from various socioeconomic backgrounds.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Yale University"], "topic_level": false, "class": "sing entity", "hops": "Multi Hops", "entity": "Yale University"}, {"qid": 142, "topic": "Russell Group", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would be the impact on Yale University's local economy if it expanded its campus facilities?", "answer": " Expanding its campus facilities could positively impact Yale University's local economy by creating jobs, attracting more students and visitors, and stimulating local businesses.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Yale University"], "topic_level": false, "class": "sing entity", "hops": "Multi Hops", "entity": "Yale University"}, {"qid": 143, "topic": "Russell Group", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does Yale University's location in New Haven, Connecticut, contribute to its academic environment?", "answer": " Yale University's location in New Haven contributes to its academic environment by providing a historic setting rich in cultural, academic, and extracurricular opportunities that enhance the educational experience.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Yale University"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "Yale University"}, {"qid": 144, "topic": "Russell Group", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What role does Yale University play in the American Revolution's historical context as one of the nine colonial colleges?", "answer": " Yale University, as one of the nine colonial colleges chartered before the American Revolution, played a pivotal role in the early intellectual and political life of the United States, contributing to the nation's development and the education of its leaders.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Yale University"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "Yale University"}, {"qid": 145, "topic": "Russell Group", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of Brown University compare to Harvard University?", "answer": " Brown University was founded in 1764, making it younger than Harvard University, which was founded in 1636.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brown University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Brown University"}, {"qid": 146, "topic": "Russell Group", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest Ivy League institution of higher education in the United States?", "answer": " Harvard University is the oldest Ivy League institution, founded in 1636, making it older than Brown University, which was founded in 1764.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brown University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Brown University"}, {"qid": 147, "topic": "Russell Group", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What distinguishes Brown University's admission policy in the context of its founding principles?", "answer": " Brown University was the first U.S. college to codify that admission and instruction of students were to be equal regardless of the religious affiliation of students.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brown University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Brown University"}, {"qid": 148, "topic": "Russell Group", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Brown University decided to open another campus, what might be a factor in choosing its location based on its original location choice?", "answer": " A factor might be the desire to establish the campus in a location with historical and cultural significance, similar to its original location in Providence, Rhode Island.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brown University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Brown University"}, {"qid": 149, "topic": "Russell Group", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the student-to-faculty ratio at Brown University compare to that of Yale University?", "answer": " This requires looking up the current student-to-faculty ratios of both universities to make a comparison.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brown University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Brown University"}, {"qid": 150, "topic": "Russell Group", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which Ivy League university has the highest number of staff members?", "answer": " This would require comparing the staff numbers across all Ivy League universities, including Brown University.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brown University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Brown University"}, {"qid": 151, "topic": "Russell Group", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How has Brown University's commitment to equal admission regardless of religious affiliation influenced its diversity and inclusion policies today?", "answer": " Brown University's early commitment to equality in admission has paved the way for a broader diversity and inclusion policy, reflecting in its various programs and initiatives aimed at supporting a diverse student body.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brown University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Brown University"}, {"qid": 152, "topic": "Russell Group", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Brown University were to lead a global initiative on educational equality, what historical precedent from its founding would it draw upon?", "answer": " It would draw upon its historical precedent of being the first U.S. college to codify equal admission and instruction of students regardless of religious affiliation.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brown University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Brown University"}, {"qid": 153, "topic": "Russell Group", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does Brown University's location in Providence compare to Columbia University's urban setting in New York?", "answer": " Brown University's location in Providence offers a more compact, collegiate environment compared to Columbia University's urban setting in the heart of New York City.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brown University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Brown University"}, {"qid": 154, "topic": "Russell Group", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most significant historical milestone of Brown University in the context of American higher education?", "answer": " The most significant historical milestone is its founding in 1764 as the first U.S. college to codify equal admission and instruction of students regardless of religious affiliation.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brown University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Brown University"}, {"qid": 155, "topic": "Russell Group", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What role does Brown University play in the Providence community?", "answer": " Brown University plays a significant role in the Providence community as a major educational institution, employer, and contributor to local cultural and social life.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brown University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Brown University"}, {"qid": 156, "topic": "Russell Group", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Brown University were to significantly expand its campus, how might this impact the surrounding area of Providence?", "answer": " A significant expansion of Brown University's campus might lead to increased economic activity, more cultural events, and potentially more jobs, but could also raise concerns about gentrification and space utilization in Providence.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brown University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Brown University"}, {"qid": 157, "topic": "Russell Group", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the founding year of Cornell University compared to other Ivy League universities?", "answer": " 1865", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cornell University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Cornell University"}, {"qid": 158, "topic": "Russell Group", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the student population of Cornell University compare to other Ivy League institutions?", "answer": " Cornell has one of the largest undergraduate populations among the Ivy League universities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cornell University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Cornell University"}, {"qid": 159, "topic": "Russell Group", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Who was responsible for founding Cornell University?", "answer": " Ezra Cornell and Andrew Dickson White", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cornell University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Cornell University"}, {"qid": 160, "topic": "Russell Group", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Ezra Cornell had not partnered with Andrew Dickson White, what might have been different about the university's founding?", "answer": " The university might have had a different focus or founding principles, as both founders contributed unique visions to its establishment.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cornell University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Cornell University"}, {"qid": 161, "topic": "Russell Group", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which location is Cornell University based in compared to other Ivy League universities?", "answer": " Ithaca, New York", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cornell University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Cornell University"}, {"qid": 162, "topic": "Russell Group", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the number of staff at Cornell University compare to the number of its undergraduate students?", "answer": " The number of staff is significantly less than the undergraduate student population.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cornell University"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "Cornell University"}, {"qid": 163, "topic": "Russell Group", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between Cornell University and the concept of being a land-grant institution?", "answer": " Cornell University is classified as a land-grant institution, meaning it was designated by its state to receive the benefits of the Morrill Acts of 1862 and 1890, which funded educational institutions by granting federally controlled land to the states for them to sell, to raise funds to establish and endow \"land-grant\" colleges.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cornell University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Cornell University"}, {"qid": 164, "topic": "Russell Group", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Cornell University decided to shift its focus from being a co-educational institution, how might this impact its student body diversity?", "answer": " Shifting away from a co-educational model could significantly reduce gender diversity within the student body.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cornell University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Cornell University"}, {"qid": 165, "topic": "Russell Group", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is Cornell University's rank in terms of the size of its graduate student population among Ivy League schools?", "answer": " Cornell has one of the largest graduate student populations among Ivy League schools.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cornell University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Cornell University"}, {"qid": 166, "topic": "Russell Group", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to its founding year, how has the number of countries represented by the student body at Cornell University changed?", "answer": " The number of countries represented has significantly increased from its founding year to include students from 130 countries as of fall 2023.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cornell University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Cornell University"}, {"qid": 167, "topic": "Russell Group", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What was the role of Ezra Cornell in the founding of Cornell University?", "answer": " Ezra Cornell was a co-founder and provided significant financial support and vision for the university.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cornell University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Cornell University"}, {"qid": 168, "topic": "Russell Group", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Cornell University were to become a sectarian institution, how might this change its founding principles of being nonsectarian?", "answer": " Becoming a sectarian institution would fundamentally change its founding principle of being nonsectarian, possibly affecting its policies on admission, hiring, and the scope of its academic programs.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cornell University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Cornell University"}, {"qid": 169, "topic": "Russell Group", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between Eleazar Wheelock and Dartmouth College?", "answer": " Eleazar Wheelock is the founder of Dartmouth College.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Dartmouth College"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "Dartmouth College"}, {"qid": 170, "topic": "Russell Group", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest Ivy League university established before Dartmouth College?", "answer": " Harvard University", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Dartmouth College"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "Dartmouth College"}, {"qid": 171, "topic": "Russell Group", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is Dartmouth College's ranking among the Ivy League schools in terms of its establishment date?", "answer": " It is the ninth oldest.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Dartmouth College"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "Dartmouth College"}, {"qid": 172, "topic": "Russell Group", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of Dartmouth College compare to that of Princeton University?", "answer": " Dartmouth College was established after Princeton University.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Dartmouth College"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "Dartmouth College"}, {"qid": 173, "topic": "Russell Group", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What role does Hanover, New Hampshire, play in the history of Dartmouth College?", "answer": " It is the location where Dartmouth College was established and is located.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Dartmouth College"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "Dartmouth College"}, {"qid": 174, "topic": "Russell Group", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Dartmouth College were to move its location, how would it affect its historical significance related to Hanover, New Hampshire?", "answer": " Moving Dartmouth College would detach it from its historical roots in Hanover, New Hampshire, potentially impacting its heritage and significance as part of the town's history.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Dartmouth College"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "Dartmouth College"}, {"qid": 175, "topic": "Russell Group", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which colonial college was chartered the latest before the American Revolution, including Dartmouth College?", "answer": " Dartmouth College", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Dartmouth College"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "Dartmouth College"}, {"qid": 176, "topic": "Russell Group", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to Harvard, how does the student-faculty ratio at Dartmouth College differ?", "answer": " Dartmouth College typically has a smaller student-faculty ratio than Harvard.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Dartmouth College"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "Dartmouth College"}, {"qid": 177, "topic": "Russell Group", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does Dartmouth College's status as a private Ivy League research university impact its academic programs?", "answer": " Its status allows for a focus on high-quality undergraduate education, extensive research opportunities, and selective admissions.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Dartmouth College"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "Dartmouth College"}, {"qid": 178, "topic": "Russell Group", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Dartmouth College decided to significantly increase its staff number, how might this affect the student-to-staff ratio and overall academic experience?", "answer": " Increasing the staff number could lower the student-to-staff ratio, potentially leading to more personalized attention for students and an enhanced academic experience.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Dartmouth College"], "topic_level": false, "class": "sing entity", "hops": "Multi Hops", "entity": "Dartmouth College"}, {"qid": 179, "topic": "Russell Group", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is Dartmouth College's rank in terms of size among the Ivy League universities?", "answer": " It is one of the smallest in terms of student population.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Dartmouth College"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "Dartmouth College"}, {"qid": 180, "topic": "Russell Group", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "In what way does Dartmouth College's establishment before the American Revolution contribute to its historical significance among Ivy League schools?", "answer": " Being one of the nine colonial colleges chartered before the American Revolution adds to its prestige and historical significance as an institution that played a role in early American history.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Dartmouth College"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "Dartmouth College"}, {"qid": 181, "topic": "Russell Group", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest institution of higher education in the United States that challenges the University of Pennsylvania's claim?", "answer": " The University of Pennsylvania identifies as the fourth-oldest institution, but this is challenged by other universities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pennsylvania"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Pennsylvania"}, {"qid": 182, "topic": "Russell Group", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Who was the founder and first president of the University of Pennsylvania?", "answer": " Benjamin Franklin", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pennsylvania"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Pennsylvania"}, {"qid": 183, "topic": "Russell Group", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What if the University of Pennsylvania was not founded by Benjamin Franklin?", "answer": " It might not have been established as an institution aimed at training leaders in academia, commerce, and public service.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pennsylvania"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Pennsylvania"}, {"qid": 184, "topic": "Russell Group", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the University of Pennsylvania's founding year compare to that of other Ivy League schools?", "answer": " The University of Pennsylvania is one of the oldest, chartered prior to the U.S. Declaration of Independence, making it among the earliest of the Ivy League schools.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pennsylvania"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Pennsylvania"}, {"qid": 185, "topic": "Russell Group", "type": "Superlative", "category": "Comparative Reasoning", "question": "What makes the University of Pennsylvania unique among the Ivy League universities?", "answer": " It is one of nine colonial colleges and was chartered prior to the U.S. Declaration of Independence, founded by Benjamin Franklin.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pennsylvania"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Pennsylvania"}, {"qid": 186, "topic": "Russell Group", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the primary mission Benjamin Franklin advocated for in founding the University of Pennsylvania?", "answer": " To train leaders in academia, commerce, and public service.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pennsylvania"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Pennsylvania"}, {"qid": 187, "topic": "Russell Group", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Pennsylvania had not been one of the colonial colleges, how would its historical significance change?", "answer": " Its historical significance as one of the earliest institutions of higher education in the United States might be lessened.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pennsylvania"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Pennsylvania"}, {"qid": 188, "topic": "Russell Group", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to other universities founded before the U.S. Declaration of Independence, where does the University of Pennsylvania stand in terms of its establishment year?", "answer": " It is argued to be the fourth or fifth oldest, depending on the interpretation of its founding year.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pennsylvania"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Pennsylvania"}, {"qid": 189, "topic": "Russell Group", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most distinctive feature of the University of Pennsylvania's founding?", "answer": " It was chartered prior to the U.S. Declaration of Independence by Benjamin Franklin.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pennsylvania"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Pennsylvania"}, {"qid": 190, "topic": "Russell Group", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the University of Pennsylvania's location contribute to its identity?", "answer": " Located in Philadelphia, Pennsylvania, it is situated in a historic city that was central to the founding of the United States.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pennsylvania"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Pennsylvania"}, {"qid": 191, "topic": "Russell Group", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What if the University of Pennsylvania was not located in Philadelphia?", "answer": " Its connection to American history and its founding by Benjamin Franklin might not be as significant.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pennsylvania"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Pennsylvania"}, {"qid": 192, "topic": "Russell Group", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the staff number at the University of Pennsylvania compare to that of other Ivy League universities?", "answer": " The specific staff number is not provided, but as a major Ivy League research university, it likely has a sizable staff to support its extensive academic and research programs.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pennsylvania"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Pennsylvania"}, {"qid": 193, "topic": "Russell Group", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Which is older, the University of Oxford or the University of Cambridge?", "answer": " The University of Oxford is older.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Oxford"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Oxford"}, {"qid": 194, "topic": "Russell Group", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest university in the English-speaking world?", "answer": " The University of Oxford.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Oxford"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Oxford"}, {"qid": 195, "topic": "Russell Group", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How did the University of Oxford contribute to the founding of the University of Cambridge?", "answer": " After disputes between students and Oxford townsfolk, some Oxford academics fled northeast to Cambridge, where they established the University of Cambridge in 1209.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Oxford"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Oxford"}, {"qid": 196, "topic": "Russell Group", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Oxford had not been established in 1096, how would the history of English-speaking universities be different?", "answer": " Without the University of Oxford, the world's oldest English-speaking university would not exist, potentially delaying the development of higher education in the English-speaking world and impacting the establishment of the University of Cambridge.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Oxford"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Oxford"}, {"qid": 197, "topic": "Russell Group", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the world's second-oldest university in continuous operation?", "answer": " The University of Oxford.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Oxford"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Oxford"}, {"qid": 198, "topic": "Russell Group", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to the University of Paris, how does the founding of the University of Oxford stand in terms of historical timeline?", "answer": " The University of Oxford was established before the 1167 ban by Henry II on English students attending the University of Paris, making it older in terms of its founding.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Oxford"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Oxford"}, {"qid": 199, "topic": "Russell Group", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What was the impact of Henry II's ban on English students attending the University of Paris on the University of Oxford?", "answer": " The ban led to a rapid growth of the University of Oxford as English students could no longer attend the University of Paris.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Oxford"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Oxford"}, {"qid": 200, "topic": "Russell Group", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What if the University of Oxford never experienced rapid growth after 1167?", "answer": " If the University of Oxford had not experienced rapid growth after 1167, it might not have become the prominent institution it is today, potentially affecting the development of higher education in England and its global reputation.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Oxford"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Oxford"}, {"qid": 201, "topic": "Russell Group", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the second-oldest university in the world still in operation?", "answer": " The University of Oxford.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Oxford"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Oxford"}, {"qid": 202, "topic": "Russell Group", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the historical significance of the University of Oxford compare to that of modern universities?", "answer": " The University of Oxford holds greater historical significance as the oldest university in the English-speaking world and the second-oldest university in continuous operation, predating the establishment of most modern universities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Oxford"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Oxford"}, {"qid": 203, "topic": "Russell Group", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How did the founding of the University of Oxford influence the establishment of other universities in the English-speaking world?", "answer": " The University of Oxford, being the oldest university in the English-speaking world, set a precedent for higher education and influenced the establishment of other universities, including the University of Cambridge, shaping the development of higher education in the English-speaking world.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Oxford"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Oxford"}, {"qid": 204, "topic": "Russell Group", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the disputes between students and Oxford townsfolk had not led to the founding of the University of Cambridge, how might the landscape of English higher education look today?", "answer": " Without the founding of the University of Cambridge as a result of those disputes, the English higher education landscape might have been less competitive and diverse, potentially limiting the advancement and spread of academic research and education in England.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Oxford"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Oxford"}, {"qid": 205, "topic": "Russell Group", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest university in continuous operation in the world and how does the University of Cambridge rank in this regard?", "answer": " The University of Cambridge is the world's third-oldest university in continuous operation.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Cambridge"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Cambridge"}, {"qid": 206, "topic": "Russell Group", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which university was founded first, the University of Oxford or the University of Cambridge?", "answer": " The University of Oxford was founded before the University of Cambridge.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Cambridge"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Cambridge"}, {"qid": 207, "topic": "Russell Group", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Why was the University of Cambridge founded?", "answer": " The University of Cambridge was founded after scholars left the University of Oxford for Cambridge following a dispute with local townspeople.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Cambridge"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Cambridge"}, {"qid": 208, "topic": "Russell Group", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What common features do the University of Cambridge and the University of Oxford share?", "answer": " The University of Cambridge and the University of Oxford share many common features, including their status as ancient English universities and their description as rivals.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Cambridge"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Cambridge"}, {"qid": 209, "topic": "Russell Group", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Between the University of Cambridge and the University of Oxford, which has a longer history of continuous operation?", "answer": " The University of Oxford has a longer history of continuous operation than the University of Cambridge.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Cambridge"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Cambridge"}, {"qid": 210, "topic": "Russell Group", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Cambridge were to relocate, how would this affect its status as a collegiate research university in Cambridge, England?", "answer": " If the University of Cambridge were to relocate, it would no longer be a collegiate research university in Cambridge, England, potentially affecting its historical and geographical identity.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Cambridge"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Cambridge"}, {"qid": 211, "topic": "Russell Group", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What led to the founding of the University of Cambridge?", "answer": " The founding of the University of Cambridge followed the arrival of scholars who left the University of Oxford due to a dispute with local townspeople.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Cambridge"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Cambridge"}, {"qid": 212, "topic": "Russell Group", "type": "Superlative", "category": "Comparative Reasoning", "question": "As of 2023, which university is older, the University of Cambridge or the University of Bologna?", "answer": " The University of Bologna is older than the University of Cambridge.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Cambridge"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Cambridge"}, {"qid": 213, "topic": "Russell Group", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Cambridge and the University of Oxford were to merge, what would be the founding year of the new institution based on the earliest founding university?", "answer": " The founding year of the new institution would be based on the University of Oxford's founding year, as it is the older of the two.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Cambridge"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Cambridge"}, {"qid": 214, "topic": "Russell Group", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How did the dispute between scholars and local townspeople at Oxford lead to the founding of the University of Cambridge?", "answer": " The dispute between scholars and local townspeople at Oxford led to the scholars leaving and founding the University of Cambridge as a new centre for learning.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Cambridge"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Cambridge"}, {"qid": 215, "topic": "Russell Group", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between the terms \"Oxbridge\" and the universities of Oxford and Cambridge?", "answer": " The term \"Oxbridge\" is a blend of Oxford and Cambridge, used to refer to the collective characteristics, traditions, and rivalry of the two oldest universities in England.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Cambridge"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Cambridge"}, {"qid": 216, "topic": "Russell Group", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "In terms of founding years, how do the University of Cambridge and the University of Oxford compare to the University of Salamanca regarding their establishment?", "answer": " The University of Oxford is older than both the University of Cambridge and the University of Salamanca, with the University of Cambridge being younger than Oxford but older than Salamanca.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Cambridge"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Cambridge"}, {"qid": 217, "topic": "Russell Group", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the University of Southampton's founding year compare to the University of Oxford?", "answer": " The University of Southampton was founded in 1952, making it significantly younger than the University of Oxford, which was founded in 1096.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Southampton"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Southampton"}, {"qid": 218, "topic": "Russell Group", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Is the staff number at the University of Southampton higher than at the University of Cambridge?", "answer": " This information varies over time and between departments, but generally, the University of Cambridge has a larger staff due to its bigger size and wider range of faculties.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Southampton"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Southampton"}, {"qid": 219, "topic": "Russell Group", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest Russell Group university?", "answer": " The University of Oxford is the oldest Russell Group university, having been established in 1096.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Southampton"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Southampton"}, {"qid": 220, "topic": "Russell Group", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which Russell Group university is located furthest south?", "answer": " The University of Southampton is the Russell Group university located furthest south in England.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Southampton"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Southampton"}, {"qid": 221, "topic": "Russell Group", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What role does the University of Southampton have in the Russell Group?", "answer": " The University of Southampton is a founding member of the Russell Group, indicating its status as a research-intensive university in the United Kingdom.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Southampton"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Southampton"}, {"qid": 222, "topic": "Russell Group", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How is the University of Southampton connected to the city it's located in?", "answer": " The University of Southampton is deeply integrated with the city of Southampton, England, contributing to the city's education sector, economy, and cultural diversity.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Southampton"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Southampton"}, {"qid": 223, "topic": "Russell Group", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would happen if the University of Southampton decided to leave the Russell Group?", "answer": " If the University of Southampton decided to leave the Russell Group, it might affect its reputation as a research-intensive university and could potentially impact its funding and collaboration opportunities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Southampton"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Southampton"}, {"qid": 224, "topic": "Russell Group", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Southampton doubled its staff number, how would it affect its research output?", "answer": " Doubling its staff number could significantly increase the University of Southampton's research output, assuming the new staff are effectively integrated and resources are adequately allocated.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Southampton"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Southampton"}, {"qid": 225, "topic": "Russell Group", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to other Russell Group universities, how does the University of Southampton's research intensity rank?", "answer": " The University of Southampton is highly ranked for research intensity among Russell Group universities, often placing in the top tier for engineering, computer science, and health sciences.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Southampton"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Southampton"}, {"qid": 226, "topic": "Russell Group", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most innovative department at the University of Southampton?", "answer": " Innovation is subjectively measured, but the University of Southampton is particularly renowned for its contributions in engineering, computer science, and oceanography.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Southampton"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Southampton"}, {"qid": 227, "topic": "Russell Group", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the University of Southampton's location impact its maritime research?", "answer": " The University of Southampton's coastal location in Southampton, England, significantly enhances its maritime research capabilities, particularly in oceanography and marine biology.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Southampton"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Southampton"}, {"qid": 228, "topic": "Russell Group", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Southampton introduced a new AI research center, how might that affect its global ranking?", "answer": " Introducing a new AI research center could potentially improve the University of Southampton's global ranking by enhancing its research profile and attracting international collaborations and funding.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Southampton"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Southampton"}, {"qid": 229, "topic": "Russell Group", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What entity was founded by the town council under the authority of a royal charter from King James VI in 1582?", "answer": " The University of Edinburgh", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Edinburgh"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Edinburgh"}, {"qid": 230, "topic": "Russell Group", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which is the sixth-oldest university in continuous operation in the English-speaking world?", "answer": " The University of Edinburgh", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Edinburgh"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Edinburgh"}, {"qid": 231, "topic": "Russell Group", "type": "Superlative", "category": "Comparative Reasoning", "question": "Among Scotland's ancient universities, where does the University of Edinburgh rank in terms of its founding year?", "answer": " It is one of the four ancient universities in Scotland.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Edinburgh"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Edinburgh"}, {"qid": 232, "topic": "Russell Group", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What contributed to Edinburgh being nicknamed the \"Athens of the North\"?", "answer": " The University of Edinburgh's crucial role during the Scottish Enlightenment.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Edinburgh"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Edinburgh"}, {"qid": 233, "topic": "Russell Group", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the University of Edinburgh compare to other universities in Scotland in terms of its age?", "answer": " It is one of the oldest, being the sixth-oldest university in continuous operation in the English-speaking world and one of Scotland's four ancient universities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Edinburgh"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Edinburgh"}, {"qid": 234, "topic": "Russell Group", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the official opening year of the University of Edinburgh?", "answer": " 1583", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Edinburgh"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Edinburgh"}, {"qid": 235, "topic": "Russell Group", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Who was responsible for the founding of the University of Edinburgh?", "answer": " The town council under the authority of a royal charter from King James VI.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Edinburgh"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Edinburgh"}, {"qid": 236, "topic": "Russell Group", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Where is the University of Edinburgh based?", "answer": " Edinburgh, Scotland", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Edinburgh"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Edinburgh"}, {"qid": 237, "topic": "Russell Group", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Edinburgh had not played a crucial role during the Scottish Enlightenment, what might Edinburgh not have been nicknamed?", "answer": " The \"Athens of the North\"", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Edinburgh"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Edinburgh"}, {"qid": 238, "topic": "Russell Group", "type": "Superlative", "category": "Comparative Reasoning", "question": "What year was the University of Edinburgh founded?", "answer": " 1582", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Edinburgh"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Edinburgh"}, {"qid": 239, "topic": "Russell Group", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to the other ancient universities in Scotland, how does the University of Edinburgh's role in the Scottish Enlightenment stand out?", "answer": " It played a crucial role, contributing significantly to Edinburgh's intellectual prominence during the period.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Edinburgh"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Edinburgh"}, {"qid": 240, "topic": "Russell Group", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What role did the University of Edinburgh play in the Scottish Enlightenment?", "answer": " It played a crucial role, contributing to Edinburgh becoming a leading intellectual centre.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Edinburgh"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Edinburgh"}, {"qid": 241, "topic": "Russell Group", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of the London School of Economics compare to that of the University of London?", "answer": " The London School of Economics was founded in 1895, while the University of London was founded earlier, in 1836.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["London School of Economics"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "London School of Economics"}, {"qid": 242, "topic": "Russell Group", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the earliest degree conferring power that the London School of Economics held?", "answer": " The earliest degree conferring power LSE held was the ability to award degrees under the auspices of the University of London starting in 1901.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["London School of Economics"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "London School of Economics"}, {"qid": 243, "topic": "Russell Group", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How is the location of the London School of Economics significant in relation to its specialisation?", "answer": " Being located in London, a major global financial and cultural center, provides LSE with strategic advantages in specialising in the social sciences, facilitating access to vast resources, networks, and opportunities in related fields.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["London School of Economics"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "London School of Economics"}, {"qid": 244, "topic": "Russell Group", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the London School of Economics had not become a university in its own right within the University of London in 2022, how would it be awarding its degrees?", "answer": " If LSE had not become a university in its own right within the University of London in 2022, it would likely continue awarding degrees in the name of the University of London.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["London School of Economics"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "London School of Economics"}, {"qid": 245, "topic": "Russell Group", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compare the process of LSE awarding its own degrees in 2008 to its status of awarding University of London degrees prior to that.", "answer": " Before 2008, LSE awarded degrees in the name of the University of London, but starting in 2008, it began awarding degrees in its own name, marking a shift towards greater autonomy in degree conferral.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["London School of Economics"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "London School of Economics"}, {"qid": 246, "topic": "Russell Group", "type": "Superlative", "category": "Comparative Reasoning", "question": "What was the most significant change in LSE's degree awarding status throughout its history?", "answer": " The most significant change was in 2008 when LSE began awarding degrees in its own name, transitioning from awarding degrees of the University of London.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["London School of Economics"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "London School of Economics"}, {"qid": 247, "topic": "Russell Group", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between LSE's founding members and its focus on the social sciences?", "answer": " LSE was founded by members of the Fabian Society, who were committed to social reform, which directly influenced its specialization and focus on the social sciences.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["London School of Economics"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "London School of Economics"}, {"qid": 248, "topic": "Russell Group", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If LSE had not joined the University of London in 1900, how might its academic and degree-awarding capabilities have evolved differently?", "answer": " Had LSE not joined the University of London in 1900, its academic and degree-awarding capabilities might have developed more independently, potentially delaying or altering the structure and recognition of its degree programs.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["London School of Economics"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "London School of Economics"}, {"qid": 249, "topic": "Russell Group", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the London School of Economics' integration into the University of London in 1900 compare with other colleges' integration times?", "answer": " The integration of LSE into the University of London in 1900 was relatively early in the history of the University of London, which was founded in 1836, compared to other later additions.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["London School of Economics"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "London School of Economics"}, {"qid": 250, "topic": "Russell Group", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most distinctive feature of LSE's academic focus compared to other University of London institutions?", "answer": " The most distinctive feature of LSE's academic focus is its specialization in the social sciences, which is more concentrated than the broader academic offerings of other University of London institutions.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["London School of Economics"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "London School of Economics"}, {"qid": 251, "topic": "Russell Group", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How did the contribution of the Fabian Society members shape the London School of Economics' mission?", "answer": " The contribution of the Fabian Society members, who were dedicated to social reform, shaped LSE's mission by firmly rooting it in the study and advancement of the social sciences to address societal issues.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["London School of Economics"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "London School of Economics"}, {"qid": 252, "topic": "Russell Group", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the London School of Economics decided to expand its specialisation beyond the social sciences, what might be the immediate academic and structural changes?", "answer": " Expanding its specialisation beyond the social sciences would require LSE to introduce new departments and courses, hire faculty with different expertise, and possibly adjust its research focus and resources to accommodate a broader academic curriculum.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["London School of Economics"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "London School of Economics"}, {"qid": 253, "topic": "Russell Group", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What vision did Prince Albert have that led to the creation of Imperial College London?", "answer": " Prince Albert envisioned a cultural area in South Kensington including museums, colleges, and the Royal Albert Hall, which eventually led to the creation of Imperial College London.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Imperial College London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Imperial College London"}, {"qid": 254, "topic": "Russell Group", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How did Imperial College London come into existence in 1907?", "answer": " Imperial College London was formed through the merger of the Royal College of Science, the Royal School of Mines, and the City and Guilds of London Institute in 1907.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Imperial College London"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Imperial College London"}, {"qid": 255, "topic": "Russell Group", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What significant event involving Queen Elizabeth II occurred at Imperial College London in 2004?", "answer": " Queen Elizabeth II opened the Imperial College Business School in 2004.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Imperial College London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Imperial College London"}, {"qid": 256, "topic": "Russell Group", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest constituent college that became part of Imperial College London?", "answer": " The Royal School of Mines is one of the oldest, being one of the three original colleges (alongside the Royal College of Science and the City and Guilds of London Institute) that merged to form Imperial College London in 1907.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Imperial College London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Imperial College London"}, {"qid": 257, "topic": "Russell Group", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of Imperial College London compare to the formation year of its School of Medicine?", "answer": " Imperial College London was founded in 1907, while the Imperial College School of Medicine was formed later in 1988 through a merger with St Mary's Hospital Medical School.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Imperial College London"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Imperial College London"}, {"qid": 258, "topic": "Russell Group", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most recent addition to Imperial College London in terms of its constituent colleges?", "answer": " The most recent addition is the Imperial College Business School, which was officially opened by Queen Elizabeth II in 2004.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Imperial College London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Imperial College London"}, {"qid": 259, "topic": "Russell Group", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would be the immediate impact if Imperial College London decided to close its Business School?", "answer": " The immediate impact would likely include the displacement of students and faculty, disruption of business education and research, and potential reputational damage to the university.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Imperial College London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Imperial College London"}, {"qid": 260, "topic": "Russell Group", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What was the role of St Mary's Hospital Medical School before its merger with Imperial College London?", "answer": " Before its merger, St Mary's Hospital Medical School served as a standalone institution for medical education and research.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Imperial College London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Imperial College London"}, {"qid": 261, "topic": "Russell Group", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which component of Imperial College London has been directly linked to Queen Elizabeth II through an official opening?", "answer": " The Imperial College Business School has been directly linked to Queen Elizabeth II, who officially opened it in 2004.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Imperial College London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Imperial College London"}, {"qid": 262, "topic": "Russell Group", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the staff number of Imperial College London compare to that of its individual colleges before the merger?", "answer": " The staff number of Imperial College London as a whole is significantly larger than that of any of its individual colleges before the merger, reflecting the combined faculties and expanded academic programs.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Imperial College London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Imperial College London"}, {"qid": 263, "topic": "Russell Group", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Imperial College London were to establish a new college focused on artificial intelligence, what might be the first step in the process?", "answer": " The first step might be conducting a feasibility study, including academic planning, funding assessment, and evaluating potential impacts on existing programs and structures.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Imperial College London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Imperial College London"}, {"qid": 264, "topic": "Russell Group", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What led to the formation of the Imperial College School of Medicine in 1988?", "answer": " The formation of the Imperial College School of Medicine in 1988 was led by a merger with St Mary's Hospital Medical School.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Imperial College London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Imperial College London"}, {"qid": 265, "topic": "Russell Group", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest university in the English-speaking world among the University of Glasgow, University of Oxford, and Harvard University?", "answer": " University of Oxford", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Glasgow"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Glasgow"}, {"qid": 266, "topic": "Russell Group", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which university has the largest enrollment in Scotland?", "answer": " University of Glasgow", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Glasgow"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Glasgow"}, {"qid": 267, "topic": "Russell Group", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the University of Glasgow relate to the Scottish Enlightenment?", "answer": " The University of Glasgow was part of the Scottish Enlightenment during the 18th century.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Glasgow"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Glasgow"}, {"qid": 268, "topic": "Russell Group", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the postgraduate enrollment of the University of Glasgow compare with that of the University of Edinburgh?", "answer": " The University of Glasgow has the second-largest postgraduate enrollment in the United Kingdom, suggesting it has a larger postgraduate enrollment than the University of Edinburgh if the latter is not the largest.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Glasgow"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Glasgow"}, {"qid": 269, "topic": "Russell Group", "type": "Superlative", "category": "Comparative Reasoning", "question": "What year was the oldest university in the English-speaking world founded?", "answer": " University of Oxford, founded before 1167", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Glasgow"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Glasgow"}, {"qid": 270, "topic": "Russell Group", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Glasgow decided to open a new campus in Asia, how would it affect its global presence?", "answer": " Opening a new campus in Asia would significantly increase the University of Glasgow's global presence by expanding its international reach and influence.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Glasgow"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Glasgow"}, {"qid": 271, "topic": "Russell Group", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the ranking of the University of Glasgow among Scotland's ancient universities in terms of age?", "answer": " Fourth", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Glasgow"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Glasgow"}, {"qid": 272, "topic": "Russell Group", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How did the founding of the University of Glasgow contribute to its historical significance?", "answer": " The founding of the University of Glasgow by papal bull in 1451 established it as the fourth-oldest university in the English-speaking world, contributing to its historical significance as part of Scotland's ancient universities and its role in the Scottish Enlightenment.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Glasgow"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Glasgow"}, {"qid": 273, "topic": "Russell Group", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to the University of St Andrews, how does the University of Glasgow's foundation year relate?", "answer": " The University of Glasgow, founded in 1451, was founded later than the University of St Andrews, which was founded in 1413.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Glasgow"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Glasgow"}, {"qid": 274, "topic": "Russell Group", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Glasgow were to double its staff number, how would it impact the student-to-staff ratio?", "answer": " Doubling its staff number would likely significantly improve the student-to-staff ratio, making it more favorable by reducing the number of students per staff member.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Glasgow"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Glasgow"}, {"qid": 275, "topic": "Russell Group", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which of Scotland's ancient universities was founded last?", "answer": " The University of Glasgow", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Glasgow"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Glasgow"}, {"qid": 276, "topic": "Russell Group", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What role does the University of Glasgow play in Scotland's higher education landscape?", "answer": " The University of Glasgow plays a crucial role in Scotland's higher education landscape as the largest university by total enrolment and a key institution in the historical and ongoing contribution to education, research, and culture.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Glasgow"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Glasgow"}, {"qid": 277, "topic": "Russell Group", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the total enrolment number of University College London compare to other universities in the United Kingdom?", "answer": " University College London is the second-largest university in the United Kingdom by total enrolment.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University College London"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University College London"}, {"qid": 278, "topic": "Russell Group", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the largest university in the United Kingdom by postgraduate enrolment?", "answer": " University College London.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University College London"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University College London"}, {"qid": 279, "topic": "Russell Group", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between University College London and the University of London?", "answer": " University College London is a member institution of the federal University of London.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University College London"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University College London"}, {"qid": 280, "topic": "Russell Group", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If University College London were to become the largest university by total enrolment, what current statistic would have changed?", "answer": " The total enrolment number of University College London would have surpassed that of the current largest university by total enrolment in the United Kingdom.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University College London"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University College London"}, {"qid": 281, "topic": "Russell Group", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does University College London's staff number compare to other member institutions of the University of London?", "answer": " This information is not provided.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University College London"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University College London"}, {"qid": 282, "topic": "Russell Group", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest member institution of the University of London?", "answer": " This information is not directly related to University College London.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University College London"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University College London"}, {"qid": 283, "topic": "Russell Group", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does University College London contribute to the federal University of London system?", "answer": " As a member institution, University College London contributes through academic research, collaboration, and being part of the collective resources and reputation of the University of London.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University College London"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University College London"}, {"qid": 284, "topic": "Russell Group", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If University College London were to leave the University of London, how would it affect its status as the second-largest university in the United Kingdom by total enrolment?", "answer": " Leaving the University of London would not directly affect its status as the second-largest university by total enrolment since this status is based on enrolment numbers, not its membership in the University of London.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University College London"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "University College London"}, {"qid": 285, "topic": "Russell Group", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to its founding year, how does the current size of University College London's enrolment compare?", "answer": " The current size of University College London's enrolment is significantly larger than at its founding.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University College London"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "University College London"}, {"qid": 286, "topic": "Russell Group", "type": "Superlative", "category": "Comparative Reasoning", "question": "What year was the founding of the oldest university in the United Kingdom compared to University College London?", "answer": " The oldest university in the United Kingdom was founded before University College London, which was established in 1826.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University College London"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "University College London"}, {"qid": 287, "topic": "Russell Group", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What has been the impact of University College London on the academic and research community in London?", "answer": " University College London has a significant impact on the academic and research community in London through its extensive research outputs, collaborations with other institutions, and its role in educating a large number of undergraduate and postgraduate students.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University College London"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "University College London"}, {"qid": 288, "topic": "Russell Group", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If University College London were to double its staff number, how might this impact its research output?", "answer": " Doubling its staff number could potentially significantly increase University College London's research output, assuming the additional staff are research-active and resources are adequately provided.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University College London"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "University College London"}, {"qid": 289, "topic": "Russell Group", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the staff number at Queen Mary University of London compare to the staff number at Imperial College London?", "answer": " This requires specific and current staff numbers for both institutions, which can fluctuate over time. As of my last update, precise numbers are not provided but generally, both are major universities with significant staff counts.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen Mary University of London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Queen Mary University of London"}, {"qid": 290, "topic": "Russell Group", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest college within the University of London system, and how does Queen Mary University of London's founding year compare?", "answer": " The oldest college within the University of London system is University College London (UCL), founded in 1826. Queen Mary University of London was founded later, making it not the oldest institution within the system.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen Mary University of London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Queen Mary University of London"}, {"qid": 291, "topic": "Russell Group", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Considering Queen Mary University of London's location in Mile End, East London, how does this geographical setting relate to its research focus on public and urban health?", "answer": " Queen Mary University of London's location in Mile End, East London, places it in a diverse and densely populated urban area, providing a rich context for research into public and urban health issues.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen Mary University of London"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Queen Mary University of London"}, {"qid": 292, "topic": "Russell Group", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Queen Mary University of London were to merge with another University of London college, how would this affect its staff numbers and research capabilities?", "answer": " A merger with another University of London college would likely increase Queen Mary University of London's staff numbers and potentially broaden its research capabilities, depending on the strengths and focus areas of the other college.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen Mary University of London"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Queen Mary University of London"}, {"qid": 293, "topic": "Russell Group", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How do the research facilities at Queen Mary University of London compare with those at Oxford University?", "answer": " Both Queen Mary University of London and Oxford University have extensive research facilities. Oxford may have a broader range due to its larger size and older foundation, but QMUL also offers high-quality, specialized facilities in several research areas.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen Mary University of London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Queen Mary University of London"}, {"qid": 294, "topic": "Russell Group", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most attended course at Queen Mary University of London?", "answer": " The specific course with the highest attendance can vary from year to year, and detailed current enrollment numbers for individual courses are not provided in the premise.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen Mary University of London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Queen Mary University of London"}, {"qid": 295, "topic": "Russell Group", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does Queen Mary University of London's status as a member of the University of London affect its degree offerings?", "answer": " As a member of the University of London, Queen Mary University of London can offer a wide range of degrees that are recognized internationally, benefiting from the federation's collaborative resources and shared academic standards.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen Mary University of London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Queen Mary University of London"}, {"qid": 296, "topic": "Russell Group", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Queen Mary University of London were to open a new campus abroad, how might that impact its global academic reputation?", "answer": " Opening a new campus abroad could potentially enhance Queen Mary University of London's global academic reputation by increasing its international presence and facilitating global collaborations in research and education.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen Mary University of London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Queen Mary University of London"}, {"qid": 297, "topic": "Russell Group", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does Queen Mary University of London's student to staff ratio compare to that of Cambridge University?", "answer": " Specific student to staff ratios can vary annually, but typically, both universities strive for low ratios to ensure high-quality education and individual attention. Cambridge University generally maintains a very favorable ratio, which is a hallmark of its educational quality.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen Mary University of London"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Queen Mary University of London"}, {"qid": 298, "topic": "Russell Group", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which department at Queen Mary University of London has the highest research output?", "answer": " The department with the highest research output at Queen Mary University of London can vary depending on the metrics used (e.g., publications, citations, funding) and changes over time.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen Mary University of London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Queen Mary University of London"}, {"qid": 299, "topic": "Russell Group", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does Queen Mary University of London's location influence its partnerships with local industries and communities?", "answer": " Queen Mary University of London's location in East London enables it to form strong partnerships with local industries, healthcare providers, and community organizations, fostering opportunities for collaborative research, internships, and community engagement projects.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen Mary University of London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Queen Mary University of London"}, {"qid": 300, "topic": "Russell Group", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Queen Mary University of London significantly increased its research budget, what areas might see the most development?", "answer": " With a significant increase in its research budget, areas that could see the most development at Queen Mary University of London might include cutting-edge fields such as genomics, artificial intelligence, sustainable energy, or public health, aligning with current global challenges and institutional strengths.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen Mary University of London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Queen Mary University of London"}, {"qid": 301, "topic": "Russell Group", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What led to the creation of the University of Birmingham?", "answer": " The University of Birmingham was created following its royal charter in 1900 as a successor to Queen's College, Birmingham, and Mason Science College.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Birmingham"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Birmingham"}, {"qid": 302, "topic": "Russell Group", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How is the University of Birmingham related to the Russell Group and Universitas 21?", "answer": " The University of Birmingham is a founding member of both the Russell Group of British research universities and the international network of research universities, Universitas 21.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Birmingham"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Birmingham"}, {"qid": 303, "topic": "Russell Group", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the University of Birmingham's rank in terms of being a 'red brick' university?", "answer": " The University of Birmingham is the first English civic or 'red brick' university to receive its own royal charter.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Birmingham"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Birmingham"}, {"qid": 304, "topic": "Russell Group", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding history of the University of Birmingham compare to that of traditional universities founded before the 19th century?", "answer": " The University of Birmingham was founded as a result of a royal charter in 1900, making it significantly younger than traditional universities founded before the 19th century, and it was the first English civic or 'red brick' university, contrasting with the older, ancient universities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Birmingham"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Birmingham"}, {"qid": 305, "topic": "Russell Group", "type": "Superlative", "category": "Comparative Reasoning", "question": "What makes the University of Birmingham unique in terms of its founding compared to other 'red brick' universities?", "answer": " The University of Birmingham is unique because it was the first English civic or 'red brick' university to receive its own royal charter.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Birmingham"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Birmingham"}, {"qid": 306, "topic": "Russell Group", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Birmingham did not merge with Queen's College and Mason Science College, how might its academic offerings differ today?", "answer": " Without the merger with Queen's College and Mason Science College, the University of Birmingham might lack some of its current strengths in medical and scientific education and research.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Birmingham"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Birmingham"}, {"qid": 307, "topic": "Russell Group", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What historical events led to the University of Birmingham receiving its royal charter in 1900?", "answer": " The University of Birmingham received its royal charter in 1900 as a successor to Queen's College, Birmingham, and Mason Science College, which were pivotal in its establishment as a civic university.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Birmingham"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Birmingham"}, {"qid": 308, "topic": "Russell Group", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Birmingham had not been a founding member of the Russell Group, how might its research reputation be different?", "answer": " If the University of Birmingham had not been a founding member of the Russell Group, its research reputation might not be as prominent, given the Russell Group's association with research-intensive British universities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Birmingham"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Birmingham"}, {"qid": 309, "topic": "Russell Group", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the significance of the University of Birmingham's location in the context of its 'red brick' status?", "answer": " The location of the University of Birmingham in Birmingham, England, is significant as it highlights its status as the first English civic or 'red brick' university, emphasizing its roots in the industrial city and its distinction from the older, traditional universities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Birmingham"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Birmingham"}, {"qid": 310, "topic": "Russell Group", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the University of Birmingham's foundation compare to the formation of other universities within the Russell Group?", "answer": " The University of Birmingham's foundation as the first English civic or 'red brick' university receiving its own royal charter in 1900 distinguishes it from other Russell Group universities, many of which were founded either much earlier as ancient universities or later as civic institutions.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Birmingham"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Birmingham"}, {"qid": 311, "topic": "Russell Group", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would the impact be on the University of Birmingham's medical and scientific education if it had not incorporated Mason Science College?", "answer": " If the University of Birmingham had not incorporated Mason Science College, its impact on medical and scientific education might be less significant, potentially affecting the breadth and depth of its academic offerings in these fields.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Birmingham"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Birmingham"}, {"qid": 312, "topic": "Russell Group", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to other British universities established in the 20th century, how does the University of Birmingham's early foundation as a civic university set it apart?", "answer": " Compared to other British universities established in the 20th century, the University of Birmingham's early foundation as a civic university and the first to receive its own royal charter in 1900 sets it apart by establishing its pioneering role in the development of higher education within the industrial city context.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Birmingham"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Birmingham"}, {"qid": 313, "topic": "Russell Group", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest cultural asset owned by the University of Manchester?", "answer": " The John Rylands Library", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Manchester"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Manchester"}, {"qid": 314, "topic": "Russell Group", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the University of Manchester's status as a red brick university relate to its founding?", "answer": " The University of Manchester is considered a red brick university because it is a product of the civic university movement of the late 19th century.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Manchester"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Manchester"}, {"qid": 315, "topic": "Russell Group", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Manchester were to open a new cultural asset, in what category would it likely fall given its current collection?", "answer": " It would likely fall into the category of museums, art galleries, libraries, or observatories.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Manchester"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Manchester"}, {"qid": 316, "topic": "Russell Group", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of the University of Manchester compare to that of other red brick universities in England?", "answer": " The University of Manchester, in its current form, was founded in 2004, which is later than the original founding dates of most other red brick universities that were established in the late 19th and early 20th centuries.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Manchester"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Manchester"}, {"qid": 317, "topic": "Russell Group", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How is the Jodrell Bank Observatory's status as a UNESCO World Heritage Site connected to the University of Manchester?", "answer": " The Jodrell Bank Observatory's status as a UNESCO World Heritage Site is connected to the University of Manchester through ownership and operation, highlighting the university's commitment to preserving and contributing to global heritage and scientific research.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Manchester"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Manchester"}, {"qid": 318, "topic": "Russell Group", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most recent major cultural asset to come under the ownership of the University of Manchester?", "answer": " This question cannot be accurately answered without current data up to 2023.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Manchester"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Manchester"}, {"qid": 319, "topic": "Russell Group", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Manchester were to merge with another university, what could be a potential benefit?", "answer": " A potential benefit could be the expansion of research capabilities and resources.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Manchester"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Manchester"}, {"qid": 320, "topic": "Russell Group", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the size of the University of Manchester's staff compare to that of similar institutions?", "answer": " The University of Manchester has one of the largest staff numbers among UK universities, indicating its extensive research and teaching operations.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Manchester"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Manchester"}, {"qid": 321, "topic": "Russell Group", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What role does the Manchester Museum play in the educational mission of the University of Manchester?", "answer": " The Manchester Museum serves as a resource for educational enrichment, research opportunities, and public engagement, aligning with the University of Manchester's mission to contribute to societal knowledge and cultural preservation.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Manchester"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Manchester"}, {"qid": 322, "topic": "Russell Group", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which facility owned by the University of Manchester offers the most unique research opportunities?", "answer": " The Jodrell Bank Observatory offers unique research opportunities in astronomy and astrophysics not commonly available at other universities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Manchester"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Manchester"}, {"qid": 323, "topic": "Russell Group", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Manchester were to establish a new faculty, which existing cultural asset might best serve as a foundation for its research and teaching?", "answer": " The John Rylands Library, with its extensive collection of rare books and manuscripts, might serve as a foundation for a new faculty focused on historical research and preservation.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Manchester"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Manchester"}, {"qid": 324, "topic": "Russell Group", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the University of Manchester's merger in 2004 affect its ranking among UK universities?", "answer": " The merger in 2004, combining the strengths of UMIST and the Victoria University of Manchester, has solidified the University of Manchester's position as a leading institution, potentially affecting its ranking positively by enhancing its research output and educational offerings.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Manchester"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Manchester"}, {"qid": 325, "topic": "Russell Group", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the student population of King's College London compare to that of University College London?", "answer": " This cannot be answered without the current student population numbers for both institutions.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["King's College London"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "King's College London"}, {"qid": 326, "topic": "Russell Group", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest department at King's College London?", "answer": " Information on the specific departments and their founding years is not provided.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["King's College London"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "King's College London"}, {"qid": 327, "topic": "Russell Group", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between King's College London and the University of London?", "answer": " King's College London is a constituent college of the University of London.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["King's College London"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "King's College London"}, {"qid": 328, "topic": "Russell Group", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would happen if King's College London decided to leave the University of London federation?", "answer": " If King's College London decided to leave the University of London, it would become an independent university, requiring adjustments to its governance, degree awarding powers, and possibly its identity and branding.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["King's College London"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "King's College London"}, {"qid": 329, "topic": "Russell Group", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which faculty at King's College London has the highest number of research citations?", "answer": " Without specific citation data for each faculty, this question cannot be answered.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["King's College London"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "King's College London"}, {"qid": 330, "topic": "Russell Group", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does King's College London's medical school contribute to healthcare in the UK?", "answer": " King's College London's medical school contributes to healthcare in the UK by educating future healthcare professionals, conducting medical research, and providing clinical services.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["King's College London"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "King's College London"}, {"qid": 331, "topic": "Russell Group", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If King's College London were to merge with another university, how would it affect its global ranking?", "answer": " The effect on King’s College London's global ranking would depend on various factors, including the reputation and academic standing of the other university, the nature of the merger, and how it's perceived by ranking bodies.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["King's College London"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "King's College London"}, {"qid": 332, "topic": "Russell Group", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the number of staff at King's College London compare to that at Imperial College London?", "answer": " Without specific staff numbers for both institutions, this question cannot be accurately answered.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["King's College London"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "King's College London"}, {"qid": 333, "topic": "Russell Group", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most popular course at King's College London?", "answer": " The most popular course information is not available without specific enrollment numbers for each course.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["King's College London"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "King's College London"}, {"qid": 334, "topic": "Russell Group", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What role does King's College London play in the UK's higher education landscape?", "answer": " King's College London plays a significant role in the UK's higher education landscape by offering a wide range of undergraduate and postgraduate programs, engaging in extensive research activities, and contributing to cultural and societal development.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["King's College London"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "King's College London"}, {"qid": 335, "topic": "Russell Group", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What if King's College London established a new campus in another country, how would it impact its international reputation?", "answer": " Establishing a new campus in another country could potentially enhance King's College London's international reputation by increasing its global presence, attracting a wider student body, and fostering international collaborations.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["King's College London"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "King's College London"}, {"qid": 336, "topic": "Russell Group", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to Oxford University, how does King's College London rank in terms of research output?", "answer": " Without specific data on research output volumes and impact, a direct comparison cannot be made.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["King's College London"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "King's College London"}, {"qid": 337, "topic": "Russell Group", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of Durham University compare to that of Oxford and Cambridge?", "answer": " Durham University was founded in 1832, which is more than 600 years after Oxford and Cambridge were founded.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Durham University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Durham University"}, {"qid": 338, "topic": "Russell Group", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest university in England?", "answer": " Oxford University is the oldest, followed by Cambridge and then Durham University as the third-oldest.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Durham University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Durham University"}, {"qid": 339, "topic": "Russell Group", "type": "Superlative", "category": "Comparative Reasoning", "question": "Who was the president of Durham University with the longest tenure?", "answer": " This information is not provided in the given text.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Durham University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Durham University"}, {"qid": 340, "topic": "Russell Group", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does Durham University's collegiate system function in terms of academic and student welfare responsibilities?", "answer": " The academic departments of Durham University are responsible for research and teaching, while the colleges handle domestic arrangements and student welfare.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Durham University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Durham University"}, {"qid": 341, "topic": "Russell Group", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would likely happen if a college within Durham University decided to exclusively focus on research, neglecting student welfare?", "answer": " It would likely create a gap in the support system for students, affecting their domestic arrangements and overall welfare, potentially leading to dissatisfaction among students.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Durham University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Durham University"}, {"qid": 342, "topic": "Russell Group", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How is Durham University's foundation connected to legislative and royal actions?", "answer": " Durham University was founded by an Act of Parliament in 1832 and incorporated by royal charter in 1837.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Durham University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Durham University"}, {"qid": 343, "topic": "Russell Group", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to modern universities, how does Durham University's age stand?", "answer": " Durham University, founded in 1832, is significantly older than modern universities established in the 20th or 21st century.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Durham University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Durham University"}, {"qid": 344, "topic": "Russell Group", "type": "Superlative", "category": "Comparative Reasoning", "question": "What makes Durham University unique in terms of its foundation timeline in England?", "answer": " Durham University is unique because it was the first recognized university to open in England for more than 600 years after Oxford and Cambridge, making it the third-oldest university in England.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Durham University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Durham University"}, {"qid": 345, "topic": "Russell Group", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the incorporation of Durham University by royal charter in 1837 relate to its recognition and operational start?", "answer": " The incorporation by royal charter in 1837 officially recognized Durham University, enabling it to start its operations as a fully-fledged university.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Durham University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Durham University"}, {"qid": 346, "topic": "Russell Group", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Durham University were to increase its number of colleges, how might this affect its collegiate university system?", "answer": " Increasing the number of colleges could potentially enhance the university's ability to manage domestic arrangements and student welfare more effectively, but it may also require adjustments in how academic departments interact with a larger number of colleges.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Durham University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Durham University"}, {"qid": 347, "topic": "Russell Group", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which location within England houses the third-oldest university?", "answer": " Durham, England, houses Durham University, the third-oldest university in England.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Durham University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Durham University"}, {"qid": 348, "topic": "Russell Group", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What role do the colleges at Durham University play in comparison to its academic departments?", "answer": " The colleges at Durham University are tasked with managing domestic arrangements and student welfare, in contrast to the academic departments that focus on research and teaching.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Durham University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Durham University"}, {"qid": 349, "topic": "Russell Group", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between the University of Bristol and the Merchant Venturers' school?", "answer": " The University of Bristol can trace its roots back to the Merchant Venturers' school founded in 1595.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Bristol"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Bristol"}, {"qid": 350, "topic": "Russell Group", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How is University College, Bristol connected to the University of Bristol?", "answer": " University College, Bristol, which existed since 1876, is part of the University of Bristol's history, leading up to its establishment with a royal charter in 1909.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Bristol"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Bristol"}, {"qid": 351, "topic": "Russell Group", "type": "Superlative", "category": "Comparative Reasoning", "question": "When did the University of Bristol receive its royal charter, making it one of the earliest universities to be established in England in the 20th century?", "answer": " 1909", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Bristol"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Bristol"}, {"qid": 352, "topic": "Russell Group", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which university in Bristol is part of the prestigious Russell Group?", "answer": " The University of Bristol", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Bristol"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Bristol"}, {"qid": 353, "topic": "Russell Group", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Is the University of Bristol older than the University of Bath?", "answer": " Yes, the University of Bristol is older, having received its royal charter in 1909, while the University of Bath received its royal charter in 1966.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Bristol"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Bristol"}, {"qid": 354, "topic": "Russell Group", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Comparing the foundation years, which is older", "answer": " The Merchant Venturers' school is older, founded in 1595, compared to University College, Bristol, which was in existence since 1876.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Bristol"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Bristol"}, {"qid": 355, "topic": "Russell Group", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Bristol decides to open a new research center, which Russell Group university could it potentially collaborate with for a joint venture?", "answer": " The answer would depend on the research field; however, potential collaborations could include other Russell Group universities like the University of Cambridge or the University of Oxford, known for their extensive research capabilities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Bristol"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Bristol"}, {"qid": 356, "topic": "Russell Group", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "Assuming the University of Bristol wants to expand its campus, what historical aspect would it consider in choosing a new location?", "answer": " The University of Bristol would likely consider the historical connection to the Merchant Venturers' school founded in 1595 and University College, Bristol, since 1876, ensuring the new location aligns with its historical roots and heritage.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Bristol"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Bristol"}, {"qid": 357, "topic": "Russell Group", "type": "Superlative", "category": "Comparative Reasoning", "question": "What makes the University of Bristol unique among the Russell Group universities in terms of its foundation history?", "answer": " Its unique foundation history traces back to a Merchant Venturers' school founded in 1595 and University College, Bristol, in existence since 1876, before receiving its royal charter in 1909.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Bristol"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Bristol"}, {"qid": 358, "topic": "Russell Group", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the University of Bristol's membership in the Russell Group reflect on its research capabilities?", "answer": " The University of Bristol's membership in the Russell Group indicates it has high research capabilities, as the Russell Group is a collection of universities in the United Kingdom with a shared focus on research excellence.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Bristol"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Bristol"}, {"qid": 359, "topic": "Russell Group", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to other universities founded in the early 20th century in England, how does the University of Bristol's start year of 1909 position it historically?", "answer": " The University of Bristol, founded in 1909, is among the earlier universities established in England in the 20th century, indicating its long-standing history and presence in higher education.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Bristol"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Bristol"}, {"qid": 360, "topic": "Russell Group", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Bristol were to celebrate the 200th anniversary of University College, Bristol's existence, in what year would the celebration occur?", "answer": " 1976", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Bristol"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Bristol"}, {"qid": 361, "topic": "Russell Group", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between University College Nottingham and The University of Nottingham?", "answer": " University College Nottingham was the original name of The University of Nottingham before it was granted a royal charter in 1948.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Nottingham"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Nottingham"}, {"qid": 362, "topic": "Russell Group", "type": "Superlative", "category": "Comparative Reasoning", "question": "When was the earliest founding year among English universities if The University of Nottingham was founded in 1881?", "answer": " The University of Nottingham, founded in 1881, is not the earliest as universities like Oxford and Cambridge were founded earlier, with Oxford dating back to at least 1096.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Nottingham"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Nottingham"}, {"qid": 363, "topic": "Russell Group", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of The University of Nottingham compare to the founding year of The University of Oxford?", "answer": " The University of Nottingham was founded in 1881, making it significantly younger than The University of Oxford, which was founded in at least 1096.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Nottingham"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Nottingham"}, {"qid": 364, "topic": "Russell Group", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the location of the oldest campus of The University of Nottingham?", "answer": " The oldest campus of The University of Nottingham is located in Nottingham, England.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Nottingham"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Nottingham"}, {"qid": 365, "topic": "Russell Group", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How did The University of Nottingham achieve its university status?", "answer": " The University of Nottingham was granted a royal charter in 1948, which elevated its status to that of a university.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Nottingham"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Nottingham"}, {"qid": 366, "topic": "Russell Group", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would have happened if The University of Nottingham had not been granted a royal charter in 1948?", "answer": " If The University of Nottingham had not been granted a royal charter in 1948, it might have remained a college or sought university status through different means at a later time.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Nottingham"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Nottingham"}, {"qid": 367, "topic": "Russell Group", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Is The University of Nottingham older or younger than The University of Cambridge?", "answer": " The University of Nottingham is younger than The University of Cambridge, which was founded in 1209.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Nottingham"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Nottingham"}, {"qid": 368, "topic": "Russell Group", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which year marked the transition of University College Nottingham to The University of Nottingham?", "answer": " The year 1948 marked the transition from University College Nottingham to The University of Nottingham.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Nottingham"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Nottingham"}, {"qid": 369, "topic": "Russell Group", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What significant event in 1948 impacted The University of Nottingham?", "answer": " In 1948, The University of Nottingham was granted a royal charter, significantly impacting its status and name.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Nottingham"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Nottingham"}, {"qid": 370, "topic": "Russell Group", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If The University of Nottingham decided to establish a new campus today, what would be the first step based on historical precedence?", "answer": " Based on historical precedence, the first step would likely involve securing approval and funding, followed by choosing a suitable location.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Nottingham"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Nottingham"}, {"qid": 371, "topic": "Russell Group", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to other UK universities founded in the 19th century, how does The University of Nottingham's founding year of 1881 stand?", "answer": " Compared to other UK universities founded in the 19th century, The University of Nottingham's founding year of 1881 places it among the later institutions established during that century.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Nottingham"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Nottingham"}, {"qid": 372, "topic": "Russell Group", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most significant change that occurred in 1948 for The University of Nottingham?", "answer": " The most significant change for The University of Nottingham in 1948 was being granted a royal charter, which officially recognized it as a university.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Nottingham"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Nottingham"}, {"qid": 373, "topic": "Russell Group", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the significance of the University of Liverpool being referred to as the first Original Red Brick university?", "answer": " The University of Liverpool being referred to as the first Original Red Brick university signifies its status as one of the earliest institutions to be considered part of the prestigious group of civic universities built in the industrial cities of England in the 19th and early 20th centuries, indicating its historical and educational importance.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Liverpool"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Liverpool"}, {"qid": 374, "topic": "Russell Group", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which faculty at the University of Liverpool is known for having triple crown accreditation?", "answer": " The university management school at the University of Liverpool is known for having triple crown accreditation.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Liverpool"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Liverpool"}, {"qid": 375, "topic": "Russell Group", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the University of Liverpool's founding year compare to other Russell Group universities?", "answer": " The University of Liverpool was founded in 1881, making it one of the older universities within the Russell Group, which includes a mixture of institutions founded in the 19th and early 20th centuries.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Liverpool"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Liverpool"}, {"qid": 376, "topic": "Russell Group", "type": "Superlative", "category": "Comparative Reasoning", "question": "What makes the University of Liverpool unique among the 'red brick' universities?", "answer": " The University of Liverpool is unique among the 'red brick' universities for being the first to be referred to as The Original Red Brick, marking its pioneering status among civic universities in England.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Liverpool"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Liverpool"}, {"qid": 377, "topic": "Russell Group", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How is the University of Liverpool's ability to award degrees related to its Royal Charter received in 1903?", "answer": " The University of Liverpool's ability to award degrees is directly related to its Royal Charter received in 1903, which officially granted the institution the powers to confer degrees on its students, a significant milestone in its development as a full-fledged university.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Liverpool"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Liverpool"}, {"qid": 378, "topic": "Russell Group", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Liverpool were to open a new faculty, based on its existing structure, what might be a potential area of focus?", "answer": " Based on its existing structure, if the University of Liverpool were to open a new faculty, a potential area of focus might be in emerging technologies or interdisciplinary studies that blend science, engineering, and humanities, reflecting current global academic and research trends.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Liverpool"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Liverpool"}, {"qid": 379, "topic": "Russell Group", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to other founding members of the Russell Group, how does the University of Liverpool's research collaboration through the N8 Group stand out?", "answer": " Compared to other founding members of the Russell Group, the University of Liverpool's research collaboration through the N8 Group stands out as a regional initiative focused on harnessing collective research strengths across the North of England, emphasizing practical collaboration in addressing major research challenges.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Liverpool"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Liverpool"}, {"qid": 380, "topic": "Russell Group", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest department within the University of Liverpool?", "answer": " While the specific oldest department at the University of Liverpool is not detailed in the provided information, traditionally, foundational departments like Medicine, Science, or Arts, which are typical in older universities, could be among the oldest.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Liverpool"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Liverpool"}, {"qid": 381, "topic": "Russell Group", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does being a member of the Russell Group influence the University of Liverpool's research capabilities?", "answer": " Being a member of the Russell Group influences the University of Liverpool's research capabilities by aligning it with a consortium of leading UK universities dedicated to high-quality research, providing it with opportunities for collaboration, funding, and influence in shaping research agendas nationally and internationally.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Liverpool"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Liverpool"}, {"qid": 382, "topic": "Russell Group", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would be the impact on the University of Liverpool if it lost its triple crown accreditation for its management school?", "answer": " If the University of Liverpool lost its triple crown accreditation for its management school, it could impact the school's reputation, potentially decrease the attractiveness of its programs to prospective students, and affect partnerships with businesses and other institutions, given the accreditation's role in signifying excellence in business education.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Liverpool"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Liverpool"}, {"qid": 383, "topic": "Russell Group", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the staff number at the University of Liverpool compare to that of other Russell Group universities?", "answer": " While the exact staff number at the University of Liverpool is not provided, Russell Group universities generally have large staff numbers to support their extensive research and teaching activities, with variations depending on the size and focus of each university.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Liverpool"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Liverpool"}, {"qid": 384, "topic": "Russell Group", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most notable achievement of the University of Liverpool's research efforts?", "answer": " The most notable achievement is not specified in the provided information, but the University of Liverpool's membership in the Russell Group and participation in the N8 Research Partnership highlight its strong research capabilities and contributions across various fields.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Liverpool"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Liverpool"}, {"qid": 385, "topic": "Russell Group", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What was the name of the University of Leeds when it was first established?", "answer": " Yorkshire College of Science", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Leeds"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Leeds"}, {"qid": 386, "topic": "Russell Group", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What federal university was the University of Leeds a part of before receiving its royal charter?", "answer": " Victoria University", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Leeds"], "topic_level": false, "class": "sing entity", "hops": "Two hops", "entity": "University of Leeds"}, {"qid": 387, "topic": "Russell Group", "type": "Superlative", "category": "Comparative Reasoning", "question": "Who was the monarch that granted the University of Leeds its royal charter?", "answer": " King Edward VII", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Leeds"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Leeds"}, {"qid": 388, "topic": "Russell Group", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of the University of Leeds compare to the founding year of the Leeds School of Medicine?", "answer": " The University of Leeds was founded later than the Leeds School of Medicine.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Leeds"], "topic_level": false, "class": "sing entity", "hops": "Two hops", "entity": "University of Leeds"}, {"qid": 389, "topic": "Russell Group", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What type of institution is the University of Leeds?", "answer": " Public research university", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Leeds"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Leeds"}, {"qid": 390, "topic": "Russell Group", "type": "Superlative", "category": "Comparative Reasoning", "question": "Where is the University of Leeds located?", "answer": " Leeds, West Yorkshire, England", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Leeds"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Leeds"}, {"qid": 391, "topic": "Russell Group", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Leeds decided to open a new faculty today, in what year would it be established?", "answer": " 2023", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Leeds"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Leeds"}, {"qid": 392, "topic": "Russell Group", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What was the University of Leeds called after it merged with the Leeds School of Medicine?", "answer": " Yorkshire College", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Leeds"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Leeds"}, {"qid": 393, "topic": "Russell Group", "type": "Superlative", "category": "Comparative Reasoning", "question": "When did the University of Leeds receive its royal charter?", "answer": " 1904", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Leeds"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Leeds"}, {"qid": 394, "topic": "Russell Group", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the University of Leeds's establishment year compare to the University of Manchester and the University of Liverpool within the context of the federal Victoria University?", "answer": " The University of Leeds, the University of Manchester, and the University of Liverpool all became part of the federal Victoria University at different times, but the University of Leeds was part of it before receiving its own royal charter in 1904.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Leeds"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Leeds"}, {"qid": 395, "topic": "Russell Group", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What significant change occurred to the University of Leeds in 1887?", "answer": " It became part of the federal Victoria University.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Leeds"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Leeds"}, {"qid": 396, "topic": "Russell Group", "type": "Superlative", "category": "Comparative Reasoning", "question": "What was the original focus of study when the University of Leeds was first established?", "answer": " Science (as the Yorkshire College of Science)", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Leeds"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Leeds"}, {"qid": 397, "topic": "Russell Group", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What led to the formation of the University of Sheffield in 1905?", "answer": " The formation of the University of Sheffield in 1905 was led by the amalgamation of Sheffield Medical School, Firth College, and Sheffield Technical School into University College of Sheffield in 1897, which was then granted a royal charter by King Edward VII.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Sheffield"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Sheffield"}, {"qid": 398, "topic": "Russell Group", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest component institution of the University of Sheffield?", "answer": " The oldest component institution of the University of Sheffield is the Sheffield Medical School, founded in 1828.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Sheffield"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Sheffield"}, {"qid": 399, "topic": "Russell Group", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of the University of Sheffield compare to the establishment of Oxford University?", "answer": " The University of Sheffield was established in 1905, significantly later than Oxford University, which was established around 1096.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Sheffield"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Sheffield"}, {"qid": 400, "topic": "Russell Group", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What royal figure granted the University of Sheffield its royal charter in 1905?", "answer": " King Edward VII granted the University of Sheffield its royal charter in 1905.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Sheffield"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Sheffield"}, {"qid": 401, "topic": "Russell Group", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the primary location of the University of Sheffield?", "answer": " The primary location of the University of Sheffield is in Sheffield, South Yorkshire, England.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Sheffield"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Sheffield"}, {"qid": 402, "topic": "Russell Group", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Sheffield decided to open a new campus in another country, which of its founding institutions' focus might it emphasize?", "answer": " If the University of Sheffield decided to open a new campus in another country, it might emphasize the focus similar to Sheffield Medical School given its significance as the oldest founding institution.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Sheffield"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Sheffield"}, {"qid": 403, "topic": "Russell Group", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How did the University of Sheffield's royal charter in 1905 impact its status?", "answer": " The royal charter granted to the University of Sheffield in 1905 officially recognized it as a university, allowing it to award degrees and solidify its status as a prestigious institution of higher education.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Sheffield"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Sheffield"}, {"qid": 404, "topic": "Russell Group", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to the University of Cambridge, how recent is the University of Sheffield's establishment?", "answer": " The University of Sheffield was established in 1905, which is considerably more recent than the University of Cambridge, which was founded in 1209.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Sheffield"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Sheffield"}, {"qid": 405, "topic": "Russell Group", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which founding institution of the University of Sheffield was established first?", "answer": " The Sheffield Medical School was the first founding institution of the University of Sheffield, established in 1828.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Sheffield"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Sheffield"}, {"qid": 406, "topic": "Russell Group", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What was the significance of the royal charter granted to the University of Sheffield in 1905?", "answer": " The royal charter granted to the University of Sheffield in 1905 was significant because it officially recognized the institution as a university, enabling it to confer degrees and marking its status as a recognized higher education institution.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Sheffield"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Sheffield"}, {"qid": 407, "topic": "Russell Group", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Sheffield were to merge with another university, what aspect of its historical development might it highlight to ensure a successful merger?", "answer": " If the University of Sheffield were to merge with another university, it might highlight its successful amalgamation of three institutions into University College of Sheffield in 1897, leading to its royal charter in 1905, as a historical precedent for effectively integrating educational institutions.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Sheffield"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Sheffield"}, {"qid": 408, "topic": "Russell Group", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which year marks the beginning of the University of Sheffield's history?", "answer": " The beginning of the University of Sheffield's history is marked by the foundation of Sheffield Medical School in 1828.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Sheffield"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Sheffield"}, {"qid": 409, "topic": "Russell Group", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between Newcastle University and the Russell Group?", "answer": " Newcastle University is a member of the Russell Group, an association of research-intensive UK universities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Newcastle University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Newcastle University"}, {"qid": 410, "topic": "Russell Group", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the location of Newcastle University's primary campus relate to its name?", "answer": " The primary campus of Newcastle University is located in Newcastle upon Tyne, North East England, which is directly related to its name.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Newcastle University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Newcastle University"}, {"qid": 411, "topic": "Russell Group", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which year marks the beginning of Newcastle University's establishment?", "answer": " 1834", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Newcastle University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Newcastle University"}, {"qid": 412, "topic": "Russell Group", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the staff number at Newcastle University compare to that of a typical small college?", "answer": " Newcastle University has a significantly larger staff number compared to that of a typical small college.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Newcastle University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Newcastle University"}, {"qid": 413, "topic": "Russell Group", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest overseas campus of Newcastle University?", "answer": " The Malaysia campus is the oldest overseas campus of Newcastle University.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Newcastle University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Newcastle University"}, {"qid": 414, "topic": "Russell Group", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does Newcastle University's research intensity compare to non-Russell Group universities in the UK?", "answer": " Newcastle University's research intensity is generally higher than that of non-Russell Group universities in the UK.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Newcastle University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Newcastle University"}, {"qid": 415, "topic": "Russell Group", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the significance of Newcastle University being termed a red brick university?", "answer": " Being termed a red brick university signifies Newcastle University's status as one of the older civic universities in the UK, with a historical foundation and traditional values.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Newcastle University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Newcastle University"}, {"qid": 416, "topic": "Russell Group", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Newcastle University were to open another overseas campus, based on its current locations, which region might it consider next?", "answer": " Given its current presence in Asia, it might consider expanding to another Asian country or possibly a different continent with a focus on emerging education markets, such as Africa or South America.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Newcastle University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Newcastle University"}, {"qid": 417, "topic": "Russell Group", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most recent addition to Newcastle University's overseas campuses?", "answer": " The Singapore campus is the most recent addition to Newcastle University's overseas campuses.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Newcastle University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Newcastle University"}, {"qid": 418, "topic": "Russell Group", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Newcastle University decided to increase its research focus in one area, which Russell Group characteristic might influence its choice?", "answer": " Its membership in the Russell Group, which emphasizes research intensity, might influence Newcastle University to increase its research focus in areas where it can contribute significantly to cutting-edge research and innovation.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Newcastle University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Newcastle University"}, {"qid": 419, "topic": "Russell Group", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to other Russell Group universities, where does Newcastle University stand in terms of its international campus locations?", "answer": " Newcastle University is among the Russell Group universities with overseas campuses, positioning it favorably in terms of international presence, particularly in Asia with campuses in Singapore and Malaysia.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Newcastle University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Newcastle University"}, {"qid": 420, "topic": "Russell Group", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Newcastle University were to collaborate with another Russell Group university for a joint research project, what factor might strongly influence their choice of partner?", "answer": " The choice of partner might be strongly influenced by complementary research strengths, aiming to combine expertise for greater innovation and impact in their chosen fields.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Newcastle University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Newcastle University"}, {"qid": 421, "topic": "Russell Group", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What type of university is the University of Warwick and where is it located?", "answer": " The University of Warwick is a public research university located on the outskirts of Coventry between the West Midlands and Warwickshire, England.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Warwick"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Warwick"}, {"qid": 422, "topic": "Russell Group", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "When was the University of Warwick founded and what was the purpose?", "answer": " The University of Warwick was founded in 1965 as part of a government initiative to expand higher education.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Warwick"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Warwick"}, {"qid": 423, "topic": "Russell Group", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which school was established first at the University of Warwick?", "answer": " The Warwick Business School was established first in 1967.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Warwick"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Warwick"}, {"qid": 424, "topic": "Russell Group", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the establishment year of Warwick Law School compare to that of Warwick Medical School?", "answer": " Warwick Law School was established in 1968, whereas Warwick Medical School was established in 2000, making the Law School established earlier than the Medical School.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Warwick"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Warwick"}, {"qid": 425, "topic": "Russell Group", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What major entities were incorporated into the University of Warwick and in what years did these incorporations happen?", "answer": " Coventry College of Education was incorporated into the University of Warwick in 1979, and Horticulture Research International was incorporated in 2004.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Warwick"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Warwick"}, {"qid": 426, "topic": "Russell Group", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Warwick were to establish a new school in 2025, how many years after the establishment of Warwick Medical School would that be?", "answer": " 25 years after the establishment of Warwick Medical School.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Warwick"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Warwick"}, {"qid": 427, "topic": "Russell Group", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which entity within the University of Warwick was established most recently?", "answer": " Warwick Medical School was established most recently in 2000.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Warwick"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Warwick"}, {"qid": 428, "topic": "Russell Group", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compare the focus of Warwick Manufacturing Group and Warwick Medical School.", "answer": " Warwick Manufacturing Group (WMG) focuses on manufacturing research and education, whereas Warwick Medical School focuses on medical research and education.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Warwick"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Warwick"}, {"qid": 429, "topic": "Russell Group", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What was the original purpose behind the establishment of the University of Warwick?", "answer": " The original purpose behind the establishment of the University of Warwick was to expand higher education as part of a government initiative.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Warwick"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Warwick"}, {"qid": 430, "topic": "Russell Group", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Warwick were to merge with another university in 2025, what would be the number of years since its founding?", "answer": " 60 years since its founding.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Warwick"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Warwick"}, {"qid": 431, "topic": "Russell Group", "type": "Superlative", "category": "Comparative Reasoning", "question": "Out of all the schools established at the University of Warwick, which one was established as part of the initial expansion?", "answer": " The Warwick Business School was established as part of the initial expansion in 1967.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Warwick"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Warwick"}, {"qid": 432, "topic": "Russell Group", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the establishment of Warwick Manufacturing Group compare to that of Coventry College of Education in terms of their integration into the University of Warwick?", "answer": " Warwick Manufacturing Group (WMG) was established as a direct part of the University of Warwick in 1980, while Coventry College of Education was not originally part of the University but was incorporated in 1979.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Warwick"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Warwick"}, {"qid": 433, "topic": "Russell Group", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the staff number at Queen's University Belfast compare to that of University of Edinburgh?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen's University Belfast"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Queen's University Belfast"}, {"qid": 434, "topic": "Russell Group", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest university in the UK, Queen's University Belfast or University of Oxford?", "answer": " University of Oxford", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen's University Belfast"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Queen's University Belfast"}, {"qid": 435, "topic": "Russell Group", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Who is the president of Queen's University Belfast and what is their role?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen's University Belfast"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Queen's University Belfast"}, {"qid": 436, "topic": "Russell Group", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Queen's University Belfast were to open a new campus, which city could be a potential location?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen's University Belfast"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Queen's University Belfast"}, {"qid": 437, "topic": "Russell Group", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which department at Queen's University Belfast has the highest number of staff?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen's University Belfast"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Queen's University Belfast"}, {"qid": 438, "topic": "Russell Group", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the start year of Queen's University Belfast relate to its current accreditation status?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen's University Belfast"], "topic_level": false, "class": "sing entity", "hops": "Multi hop", "entity": "Queen's University Belfast"}, {"qid": 439, "topic": "Russell Group", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Queen's University Belfast decided to double its staff number, how would that affect its ranking among UK universities?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen's University Belfast"], "topic_level": false, "class": "sing entity", "hops": "Multi hop", "entity": "Queen's University Belfast"}, {"qid": 440, "topic": "Russell Group", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to when it was founded, how has the role of president at Queen's University Belfast evolved?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen's University Belfast"], "topic_level": false, "class": "sing entity", "hops": "Multi hop", "entity": "Queen's University Belfast"}, {"qid": 441, "topic": "Russell Group", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most popular course at Queen's University Belfast based on student enrollment?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen's University Belfast"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Queen's University Belfast"}, {"qid": 442, "topic": "Russell Group", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What led to the establishment of Queen's University Belfast in its founding year?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen's University Belfast"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Queen's University Belfast"}, {"qid": 443, "topic": "Russell Group", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Queen's University Belfast were to merge with another university, how would its historical significance be impacted?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen's University Belfast"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Queen's University Belfast"}, {"qid": 444, "topic": "Russell Group", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the size of Queen's University Belfast's campus compare to that of Cambridge University?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen's University Belfast"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Queen's University Belfast"}, {"qid": 445, "topic": "Russell Group", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest department at the University of York?", "answer": " The Department of Economics was one of the founding departments in 1963.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of York"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of York"}, {"qid": 446, "topic": "Russell Group", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the staff number of the University of York compare to that of the University of Cambridge?", "answer": " The University of York has fewer staff members than the University of Cambridge.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of York"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "University of York"}, {"qid": 447, "topic": "Russell Group", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Who was the founding president of the University of York?", "answer": " Lord James of Rusholme was the first Vice-Chancellor of the University of York.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of York"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of York"}, {"qid": 448, "topic": "Russell Group", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of York were to open a new department in 2024, what would be its start year?", "answer": " 2024", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of York"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of York"}, {"qid": 449, "topic": "Russell Group", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which department at the University of York has the largest number of staff?", "answer": " The Department of Computer Science has one of the largest numbers of staff.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of York"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of York"}, {"qid": 450, "topic": "Russell Group", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the student population at the University of York compare to its staff number?", "answer": " The student population at the University of York significantly exceeds its staff number.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of York"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of York"}, {"qid": 451, "topic": "Russell Group", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the connection between the University of York and its location?", "answer": " The University of York is located in the city of York, England, contributing to the city's cultural and educational landscape.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of York"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of York"}, {"qid": 452, "topic": "Russell Group", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of York were to merge with another university, what would be the potential impact on its staff number?", "answer": " The staff number would likely increase, depending on the size of the other university.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of York"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of York"}, {"qid": 453, "topic": "Russell Group", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most recent department added to the University of York?", "answer": " The Department of Theatre, Film, Television and Interactive Media is among the more recent additions.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of York"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of York"}, {"qid": 454, "topic": "Russell Group", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to its founding year, how has the number of departments at the University of York changed?", "answer": " The number of departments at the University of York has significantly increased since its founding in 1963.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of York"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of York"}, {"qid": 455, "topic": "Russell Group", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What role does the president of the University of York play in its operations?", "answer": " The Vice-Chancellor, often referred to as the president in other institutions, is the chief executive officer, overseeing the university's administration and operations.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of York"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of York"}, {"qid": 456, "topic": "Russell Group", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of York decided to focus solely on science departments, what would happen to its arts and humanities departments?", "answer": " Its arts and humanities departments would likely be phased out or significantly reduced in size and scope.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of York"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of York"}, {"qid": 457, "topic": "Russell Group", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What was the original name of Cardiff University when it was established in 1883?", "answer": " The University College of South Wales and Monmouthshire", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cardiff University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Cardiff University"}, {"qid": 458, "topic": "Russell Group", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "In what year did Cardiff University become a founding college of the University of Wales?", "answer": " 1893", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cardiff University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Cardiff University"}, {"qid": 459, "topic": "Russell Group", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What name did Cardiff University adopt in 1999 before it became its legal name in 2005?", "answer": " Cardiff University", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cardiff University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Cardiff University"}, {"qid": 460, "topic": "Russell Group", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What significant change occurred to Cardiff University in 1988?", "answer": " It merged with the University of Wales Institute of Science and Technology to become University of Wales College, Cardiff.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cardiff University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Cardiff University"}, {"qid": 461, "topic": "Russell Group", "type": "Superlative", "category": "Comparative Reasoning", "question": "What was the first name given to Cardiff University upon its establishment?", "answer": " The University College of South Wales and Monmouthshire", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cardiff University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Cardiff University"}, {"qid": 462, "topic": "Russell Group", "type": "Superlative", "category": "Comparative Reasoning", "question": "When did Cardiff University first receive degree-awarding powers?", "answer": " 1997", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cardiff University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Cardiff University"}, {"qid": 463, "topic": "Russell Group", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of Cardiff University compare to the year it received its degree-awarding powers?", "answer": " Cardiff University was founded in 1883, much earlier than the year it received its degree-awarding powers in 1997.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cardiff University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Cardiff University"}, {"qid": 464, "topic": "Russell Group", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compare the change in name from Cardiff University's establishment to its current name.", "answer": " It was established as The University College of South Wales and Monmouthshire, then went through several name changes before adopting its current name, Cardiff University, in 1999.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cardiff University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Cardiff University"}, {"qid": 465, "topic": "Russell Group", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Cardiff University had not merged with the University of Wales Institute of Science and Technology in 1988, what might have been its name today?", "answer": " It might have retained the name University College, Cardiff or another previous iteration.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cardiff University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Cardiff University"}, {"qid": 466, "topic": "Russell Group", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would be the status of Cardiff University's degree-awarding powers had it not become an independent university in 2005?", "answer": " The degree-awarding powers might have remained in abeyance, relying on the University of Wales for awarding degrees.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cardiff University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Cardiff University"}, {"qid": 467, "topic": "Russell Group", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most recent name change that occurred for Cardiff University?", "answer": " The change to its legal name, Cardiff University, in 2005.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cardiff University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Cardiff University"}, {"qid": 468, "topic": "Russell Group", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Where is Cardiff University located?", "answer": " Cardiff, Wales", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cardiff University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Cardiff University"}, {"qid": 469, "topic": "Russell Group", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between St Luke's College, Exeter School of Science, Exeter School of Art, and the Camborne School of Mines with the University of Exeter?", "answer": " These institutions are the predecessor institutions of the University of Exeter, having merged and contributed to the formation of the university after it received its royal charter in 1955.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Exeter"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Exeter"}, {"qid": 470, "topic": "Russell Group", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What abbreviation is used for the University of Exeter in post-nominals, and what is its Latin origin?", "answer": " The abbreviation used for the University of Exeter in post-nominals is Exon., which comes from the Latin Exoniensis.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Exeter"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Exeter"}, {"qid": 471, "topic": "Russell Group", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which of the predecessor institutions of the University of Exeter was established first?", "answer": " St Luke's College was the first to be established in 1838.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Exeter"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Exeter"}, {"qid": 472, "topic": "Russell Group", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the earliest year a predecessor institution of the University of Exeter was established?", "answer": " 1838, with the establishment of St Luke's College.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Exeter"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Exeter"}, {"qid": 473, "topic": "Russell Group", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the University of Exeter's establishment year compare to the establishment year of its predecessor institutions?", "answer": " The University of Exeter was established in 1955, significantly later than its predecessor institutions, which were established between 1838 and 1888.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Exeter"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Exeter"}, {"qid": 474, "topic": "Russell Group", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which campus is the main campus of the University of Exeter?", "answer": " The main campus of the University of Exeter is located in Exeter, Devon.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Exeter"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "University of Exeter"}, {"qid": 475, "topic": "Russell Group", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How did the University of Exeter achieve its university status?", "answer": " The University of Exeter received its royal charter in 1955, which elevated its status to that of a university.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Exeter"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "University of Exeter"}, {"qid": 476, "topic": "Russell Group", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Exeter were to open a new faculty solely focused on space science, which of its predecessor institutions' focus areas might it most closely relate to?", "answer": " It might most closely relate to the focus area of the Exeter School of Science, considering the scientific nature of space studies.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Exeter"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "University of Exeter"}, {"qid": 477, "topic": "Russell Group", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Exeter decided to expand its main campus, what historic affiliation might influence its architectural design?", "answer": " The architectural design might be influenced by its historic affiliations to its predecessor institutions, especially the Exeter School of Art, reflecting a blend of historical and contemporary design.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Exeter"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "University of Exeter"}, {"qid": 478, "topic": "Russell Group", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the latest year a predecessor institution of the University of Exeter was established?", "answer": " 1888, with the establishment of the Camborne School of Mines.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Exeter"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Exeter"}, {"qid": 479, "topic": "Russell Group", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What suffix is given to honorary and academic degrees from the University of Exeter, and what is its origin?", "answer": " The suffix given is Exon., originating from the Latin Exoniensis.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Exeter"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Exeter"}, {"qid": 480, "topic": "Russell Group", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the location of the University of Exeter's main campus compare to the locations of its predecessor institutions?", "answer": " The University of Exeter's main campus is in Exeter, Devon, which suggests a geographical continuity with some of its predecessor institutions such as St Luke's College and Exeter School of Science, all located within the region contributing to the university's formation.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Exeter"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Exeter"}, {"qid": 1, "topic": "Universitas 21", "type": "Aggregation", "category": "Statistical Reasoning", "question": "What is the total number of staff across all Universitas 21 members?", "answer": [["total_staff"], [[null]]], "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": [], "topic_level": true, "sql": "SELECT SUM(staffnumber) AS total_staff FROM Universitas21;"}, {"qid": 2, "topic": "Universitas 21", "type": "Distribution Compliance", "category": "Statistical Reasoning", "question": "How many universities in Universitas 21 are located in Europe?", "answer": [["european_universities"], [[0]]], "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": [], "topic_level": true, "sql": "SELECT COUNT(*) AS european_universities FROM Universitas21 WHERE location LIKE '%Europe%';"}, {"qid": 3, "topic": "Universitas 21", "type": "Correlation Analysis", "category": "Statistical Reasoning", "question": "Is there a correlation between the start year of a university and its staff number in Universitas 21?", "answer": [["startyear", "staffnumber"], []], "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": [], "topic_level": true, "sql": "SELECT startyear, staffnumber FROM Universitas21;"}, {"qid": 4, "topic": "Universitas 21", "type": "Variance Analysis", "category": "Statistical Reasoning", "question": "What is the variance in the start years among Universitas 21 members?", "answer": [], "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": [], "topic_level": true, "sql": "SELECT VARIANCE(startyear) AS variance_start_year FROM Universitas21;"}, {"qid": 5, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which university has the highest number of staff in Universitas 21?", "answer": [["name", "max_staff"], [[null, null]]], "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": [], "topic_level": true, "sql": "SELECT name, MAX(staffnumber) AS max_staff FROM Universitas21;"}, {"qid": 6, "topic": "Universitas 21", "type": "Aggregation", "category": "Statistical Reasoning", "question": "How many universities in Universitas 21 were founded before 1900?", "answer": [["universities_before_1900"], [[0]]], "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": [], "topic_level": true, "sql": "SELECT COUNT(*) AS universities_before_1900 FROM Universitas21 WHERE startyear < 1900;"}, {"qid": 7, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compare the staff number between University C and University D.", "answer": [["name", "staffnumber"], []], "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": [], "topic_level": true, "sql": "SELECT name, staffnumber FROM Universitas21 WHERE name IN ('University C', 'University D');"}, {"qid": 8, "topic": "Universitas 21", "type": "Distribution Compliance", "category": "Statistical Reasoning", "question": "How many universities in Universitas 21 have a president with the first name starting with 'J'?", "answer": [["presidents_starting_with_J"], [[0]]], "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": [], "topic_level": true, "sql": "SELECT COUNT(*) AS presidents_starting_with_J FROM Universitas21 WHERE president LIKE 'J%';"}, {"qid": 9, "topic": "Universitas 21", "type": "Correlation Analysis", "category": "Statistical Reasoning", "question": "Is there a correlation between the location (as continent) and the number of staff for Universitas 21 members?", "answer": [["location", "staffnumber"], []], "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": [], "topic_level": true, "sql": "SELECT location, staffnumber FROM Universitas21;"}, {"qid": 10, "topic": "Universitas 21", "type": "Variance Analysis", "category": "Statistical Reasoning", "question": "How does the number of staff vary among universities in the same country within Universitas 21?", "answer": [], "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": [], "topic_level": true, "sql": "SELECT location, VARIANCE(staffnumber) AS staff_variance FROM Universitas21 GROUP BY location;"}, {"qid": 11, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which university in Universitas 21 has the most recent founding year?", "answer": [["name", "most_recent_year"], [[null, null]]], "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": [], "topic_level": true, "sql": "SELECT name, MAX(startyear) AS most_recent_year FROM Universitas21;"}, {"qid": 12, "topic": "Universitas 21", "type": "Aggregation", "category": "Statistical Reasoning", "question": "What is the average number of staff across all universities in Universitas 21?", "answer": [["average_staff"], [[null]]], "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": [], "topic_level": true, "sql": "SELECT AVG(staffnumber) AS average_staff FROM Universitas21;"}, {"qid": 13, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How do the founding years of University E and University F compare?", "answer": [["name", "startyear"], []], "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": [], "topic_level": true, "sql": "SELECT name, startyear FROM Universitas21 WHERE name IN ('University E', 'University F');"}, {"qid": 14, "topic": "Universitas 21", "type": "Distribution Compliance", "category": "Statistical Reasoning", "question": "How many universities in Universitas 21 are located in the United States?", "answer": [["us_universities"], [[0]]], "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": [], "topic_level": true, "sql": "SELECT COUNT(*) AS us_universities FROM Universitas21 WHERE location LIKE '%United States%';"}, {"qid": 15, "topic": "Universitas 21", "type": "Correlation Analysis", "category": "Statistical Reasoning", "question": "Is there a relationship between the founding year and the location of Universitas 21 universities?", "answer": [["startyear", "location"], []], "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": [], "topic_level": true, "sql": "SELECT startyear, location FROM Universitas21;"}, {"qid": 16, "topic": "Universitas 21", "type": "Variance Analysis", "category": "Statistical Reasoning", "question": "What is the variance in staff numbers among universities founded before 1950 in Universitas 21?", "answer": [], "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": [], "topic_level": true, "sql": "SELECT VARIANCE(staffnumber) AS variance_staff_before_1950 FROM Universitas21 WHERE startyear < 1950;"}, {"qid": 17, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the smallest university (in terms of staff number) in Universitas 21?", "answer": [["name", "min_staff"], [[null, null]]], "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": [], "topic_level": true, "sql": "SELECT name, MIN(staffnumber) AS min_staff FROM Universitas21;"}, {"qid": 18, "topic": "Universitas 21", "type": "Aggregation", "category": "Statistical Reasoning", "question": "How many universities in Universitas 21 have presidents whose name contains 'Mary'?", "answer": [["presidents_named_mary"], [[0]]], "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": [], "topic_level": true, "sql": "SELECT COUNT(*) AS presidents_named_mary FROM Universitas21 WHERE president LIKE '%Mary%';"}, {"qid": 19, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compare the location of University G and University H.", "answer": [["name", "location"], []], "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": [], "topic_level": true, "sql": "SELECT name, location FROM Universitas21 WHERE name IN ('University G', 'University H');"}, {"qid": 20, "topic": "Universitas 21", "type": "Distribution Compliance", "category": "Statistical Reasoning", "question": "How many universities in Universitas 21 have staff numbers exceeding 5000?", "answer": [["universities_over_5000_staff"], [[0]]], "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": [], "topic_level": true, "sql": "SELECT COUNT(*) AS universities_over_5000_staff FROM Universitas21 WHERE staffnumber > 5000;"}, {"qid": 21, "topic": "Universitas 21", "type": "Correlation Analysis", "category": "Statistical Reasoning", "question": "What is the correlation between the university's start year and its geographical location in terms of continent?", "answer": [["startyear", "location"], []], "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": [], "topic_level": true, "sql": "SELECT startyear, location FROM Universitas21;"}, {"qid": 22, "topic": "Universitas 21", "type": "Variance Analysis", "category": "Statistical Reasoning", "question": "What is the variance in the founding years among European universities in Universitas 21?", "answer": [], "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": [], "topic_level": true, "sql": "SELECT VARIANCE(startyear) AS variance_european_universities FROM Universitas21 WHERE location LIKE '%Europe%';"}, {"qid": 23, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which university in Universitas 21 is the latest to appoint its current president?", "answer": [["name", "president", "latest_president_appointment"], [[null, null, null]]], "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": [], "topic_level": true, "sql": "SELECT name, president, MAX(startyear) AS latest_president_appointment FROM Universitas21;"}, {"qid": 144, "topic": "Universitas 21", "type": "Aggregation", "category": "Statistical Reasoning", "question": "What is the average founding year of universities in Universitas 21 located in Asia?", "answer": [["average_start_year_asia"], [[null]]], "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": [], "topic_level": true, "sql": "SELECT AVG(startyear) AS average_start_year_asia FROM Universitas21 WHERE location LIKE '%Asia%';"}, {"qid": 145, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the number of staff at University I compare to University J?", "answer": [["name", "staffnumber"], []], "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": [], "topic_level": true, "sql": "SELECT name, staffnumber FROM Universitas21 WHERE name IN ('University I', 'University J');"}, {"qid": 146, "topic": "Universitas 21", "type": "Distribution Compliance", "category": "Statistical Reasoning", "question": "How many Universitas 21 members have a start year before 1950 and are located in North America?", "answer": [["north_american_universities_before_1950"], [[0]]], "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": [], "topic_level": true, "sql": "SELECT COUNT(*) AS north_american_universities_before_1950 FROM Universitas21 WHERE startyear < 1950 AND location LIKE '%North America%';"}, {"qid": 147, "topic": "Universitas 21", "type": "Correlation Analysis", "category": "Statistical Reasoning", "question": "Is there a correlation between the start year of universities and the number of staff in Asian universities within Universitas 21?", "answer": [["startyear", "staffnumber"], []], "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": [], "topic_level": true, "sql": "SELECT startyear, staffnumber FROM Universitas21 WHERE location LIKE '%Asia%';"}, {"qid": 1549, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest institution of higher education in New York?", "answer": " Columbia University", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Columbia University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Columbia University"}, {"qid": 1550, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "What rank does Columbia University hold among the oldest institutions of higher education in the United States?", "answer": " Fifth", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Columbia University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Columbia University"}, {"qid": 1551, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What was Columbia University originally called?", "answer": " King's College", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Columbia University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Columbia University"}, {"qid": 1552, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Where was Columbia University, originally known as King's College, established?", "answer": " On the grounds of Trinity Church in Manhattan", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Columbia University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Columbia University"}, {"qid": 1553, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of Columbia University compare to Harvard University?", "answer": " Columbia University was founded later than Harvard University.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Columbia University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Columbia University"}, {"qid": 1554, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the founding year of the oldest Ivy League institution?", "answer": " 1636 (Harvard University)", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Columbia University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Columbia University"}, {"qid": 1555, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What type of university is Columbia University?", "answer": " Private Ivy League research university", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Columbia University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Columbia University"}, {"qid": 1556, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Columbia University were to move its location, would it still be the oldest institution of higher education in New York?", "answer": " Yes, because its status as the oldest institution is based on its founding year, not its location.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Columbia University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Columbia University"}, {"qid": 1557, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Among Ivy League universities, where does Columbia University rank in terms of its establishment year?", "answer": " It is the fifth oldest.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Columbia University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Columbia University"}, {"qid": 1558, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which institution is considered the fifth-oldest in the United States?", "answer": " Columbia University", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Columbia University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Columbia University"}, {"qid": 1559, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What city is Columbia University located in?", "answer": " New York City", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Columbia University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Columbia University"}, {"qid": 1560, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Columbia University had not been established in 1754, which institution would be the oldest in New York?", "answer": " This question is hypothetical and speculative; without specific data on the establishment years of all New York institutions at that time, an accurate answer cannot be provided.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Columbia University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Columbia University"}, {"qid": 1561, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest institution of higher learning in the United States?", "answer": " Harvard University", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harvard University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Harvard University"}, {"qid": 1562, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Who was Harvard University named after and what was his profession?", "answer": " Harvard University was named after John Harvard, a Puritan clergyman.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harvard University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Harvard University"}, {"qid": 1563, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of Harvard University compare to Yale University in terms of which was established first?", "answer": " Harvard University was established first in 1636, before Yale University.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harvard University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Harvard University"}, {"qid": 1564, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which university is considered one of the most prestigious in the world?", "answer": " Harvard University", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harvard University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Harvard University"}, {"qid": 1565, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Where is Harvard University located?", "answer": " Cambridge, Massachusetts", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harvard University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Harvard University"}, {"qid": 1566, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the rank of Harvard University in terms of age among U.S. higher education institutions?", "answer": " Harvard University is the oldest institution of higher learning in the United States.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harvard University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Harvard University"}, {"qid": 1567, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If a new benefactor significantly contributed to the university, could it be renamed from Harvard University?", "answer": " Hypothetically, yes, but such a decision would involve significant legal, cultural, and institutional considerations.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harvard University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Harvard University"}, {"qid": 1568, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What was Harvard University originally founded as?", "answer": " Harvard College", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harvard University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Harvard University"}, {"qid": 1569, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to MIT, which institution was founded first?", "answer": " Harvard University", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harvard University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Harvard University"}, {"qid": 1570, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "Among Ivy League universities, which one was founded first?", "answer": " Harvard University", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harvard University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Harvard University"}, {"qid": 1571, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What type of university is Harvard classified as?", "answer": " A private Ivy League research university", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harvard University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Harvard University"}, {"qid": 1572, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Harvard University decided to move its location, would it still remain in Cambridge, Massachusetts?", "answer": " This is a hypothetical scenario; if Harvard University decided to move, it would no longer be located in Cambridge, Massachusetts unless the new location chosen is within the same city.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harvard University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Harvard University"}, {"qid": 1573, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest Ivy League institution in the United States?", "answer": " Harvard University", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Princeton University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Princeton University"}, {"qid": 1574, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which Ivy League university was the last to be established?", "answer": " Cornell University", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Princeton University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Princeton University"}, {"qid": 1575, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Why was Princeton University originally called the College of New Jersey?", "answer": " It was named the College of New Jersey until it officially became a university in 1896 and was subsequently renamed Princeton University.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Princeton University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Princeton University"}, {"qid": 1576, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How did Princeton University get its current name?", "answer": " It officially became a university in 1896 and was subsequently renamed Princeton University after its location.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Princeton University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Princeton University"}, {"qid": 1577, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What led to the relocation of Princeton University to its current location in Princeton?", "answer": " The institution moved to Newark in 1747 and then to its current Mercer County campus in Princeton nine years later for unknown specific reasons detailed in the provided information.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Princeton University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Princeton University"}, {"qid": 1578, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What changes occurred when Princeton officially became a university in 1896?", "answer": " It was renamed from the College of New Jersey to Princeton University.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Princeton University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Princeton University"}, {"qid": 1579, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of Princeton University compare to those of other Ivy League schools?", "answer": " Princeton University, founded in 1746, is the fourth-oldest Ivy League institution after Harvard (1636), Yale (1701), and Columbia (1754).", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Princeton University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Princeton University"}, {"qid": 1580, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What might have happened if Princeton University had never moved from Newark?", "answer": " It would have possibly developed a different campus layout, community relationships, and perhaps even academic directions due to the different geographical and social context of Newark compared to Princeton.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Princeton University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Princeton University"}, {"qid": 1581, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Princeton University had not been renamed from the College of New Jersey, how might it have impacted its reputation and recognition?", "answer": " Retaining the name College of New Jersey might have led to confusion with other institutions and potentially affected its branding, making it less recognizable as the prestigious university it is today.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Princeton University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Princeton University"}, {"qid": 1582, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which Ivy League university has the smallest undergraduate enrollment?", "answer": " Dartmouth College", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Princeton University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Princeton University"}, {"qid": 1583, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Why is Princeton University considered one of the nine colonial colleges?", "answer": " Because it was chartered before the American Revolution, making it one of the nine colonial colleges established in the Thirteen Colonies.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Princeton University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Princeton University"}, {"qid": 1584, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What if Princeton University had decided to remain a college instead of becoming a university?", "answer": " It might have focused more on undergraduate education and less on graduate programs and research, potentially altering its academic profile and the breadth of disciplines offered.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Princeton University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Princeton University"}, {"qid": 1585, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of Yale University compare to Harvard University?", "answer": " Yale University was founded in 1701, making it younger than Harvard University, which was founded in 1636.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Yale University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Yale University"}, {"qid": 1586, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Who has a larger staff, Yale University or Princeton University?", "answer": " This requires current specific data for both universities, which can vary year by year.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Yale University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Yale University"}, {"qid": 1587, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest department at Yale University?", "answer": " The Department of Theology, as Yale was originally founded as a Collegiate School to educate clergy.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Yale University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Yale University"}, {"qid": 1588, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which is the most prestigious Ivy League university?", "answer": " Prestige is subjective, but Yale University is often ranked among the top due to its influence, wealth, and rankings.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Yale University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Yale University"}, {"qid": 1589, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Why is Yale University considered one of the most prestigious universities in the world?", "answer": " Its long history, influence, wealth, rankings, and contributions to education and research contribute to its prestige.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Yale University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Yale University"}, {"qid": 1590, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How did Yale University's role in the American Revolution contribute to its prestige?", "answer": " As one of the nine colonial colleges existing before the American Revolution, its historical significance and contribution to American leadership and society enhance its prestige.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Yale University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Yale University"}, {"qid": 1591, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Yale University decided to open a new campus in another country, what factors would contribute to its success?", "answer": " Factors would include the choice of location, the reputation of Yale, the quality of education provided, and the ability to attract talented faculty and students.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Yale University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Yale University"}, {"qid": 1592, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would happen if Yale University suddenly closed all its humanities departments?", "answer": " There would likely be a significant backlash from students, faculty, and alumni, as well as a potential decline in its reputation for comprehensive education.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Yale University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Yale University"}, {"qid": 1593, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does Yale University's student-to-faculty ratio compare to Columbia University?", "answer": " This requires specific current data for both universities, which can vary year by year.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Yale University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Yale University"}, {"qid": 1594, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most competitive program at Yale University?", "answer": " Programs like Law, Business, and Medicine at Yale are highly competitive, with low acceptance rates.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Yale University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Yale University"}, {"qid": 1595, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What impact does Yale University have on the city of New Haven?", "answer": " Yale significantly impacts New Haven through economic contributions, cultural institutions, employment opportunities, and community programs.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Yale University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Yale University"}, {"qid": 1596, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Yale University were to significantly increase its investment in sustainability research, what global impacts might this have?", "answer": " This could lead to breakthroughs in sustainable technologies, influence global policies on environmental issues, and inspire other institutions to prioritize sustainability.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Yale University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Yale University"}, {"qid": 1597, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest Ivy League university that Brown University belongs to?", "answer": " Brown University is the seventh-oldest institution of higher education in the United States, but the oldest Ivy League university is Harvard University, founded in 1636.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brown University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Brown University"}, {"qid": 1598, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "How does the founding year of Brown University compare to other colonial colleges before the American Revolution?", "answer": " Brown University, founded in 1764, is one of the nine colonial colleges chartered before the American Revolution, making it among the oldest in the United States, but not the oldest.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brown University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Brown University"}, {"qid": 1599, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What distinguishes Brown University's admission policy from those of other colonial colleges?", "answer": " Brown University was the first U.S. college to codify that admission and instruction of students was to be equal regardless of the religious affiliation of students.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brown University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Brown University"}, {"qid": 1600, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "Where does Brown University rank in terms of its founding year among Ivy League institutions?", "answer": " Brown University is the seventh-oldest institution of higher education in the United States and ranks as one of the older Ivy League institutions, but not the oldest.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brown University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Brown University"}, {"qid": 1601, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the historical significance of Brown University's founding location?", "answer": " Brown University was founded in Providence, Rhode Island, significant for being located in the English Colony of Rhode Island and Providence Plantations, highlighting its roots in early American history.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brown University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Brown University"}, {"qid": 1602, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does Brown University's founding year compare to other universities in Rhode Island?", "answer": " As the first university in Rhode Island, founded in 1764, Brown University is the oldest higher education institution in the state compared to other universities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brown University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Brown University"}, {"qid": 1603, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Brown University decided to exclusively admit students from Rhode Island, how would this change its historical admission policy?", "answer": " Such a change would contradict Brown University's historical admission policy of equal admission and instruction regardless of religious affiliation or, by extension, geographic origin.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brown University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Brown University"}, {"qid": 1604, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Why is Brown University considered a pioneering institution in terms of religious freedom in education?", "answer": " Brown University is considered pioneering because it was the first U.S. college to codify equal admission and instruction for students regardless of religious affiliation, setting a precedent for religious freedom in education.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brown University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Brown University"}, {"qid": 1605, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "What sets Brown University apart from other Ivy League universities in terms of its founding principles?", "answer": " Brown University's codification of equal admission and instruction regardless of religious affiliation set it apart from other Ivy League universities, highlighting its commitment to religious and educational freedom.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brown University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Brown University"}, {"qid": 1606, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Brown University were to move its location out of Providence, Rhode Island, how would this affect its historical identity?", "answer": " Moving out of Providence would significantly impact Brown University's historical identity, as its roots and early history are deeply tied to its location in the English Colony of Rhode Island and Providence Plantations.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brown University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Brown University"}, {"qid": 1607, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to other Ivy League universities, how does Brown University's approach to religious affiliation in admissions stand out?", "answer": " Brown University's approach to not considering religious affiliation in admissions stands out among Ivy League universities as it was the first to formally adopt such a policy, emphasizing inclusivity and equality.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brown University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Brown University"}, {"qid": 1608, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What impact did the founding of Brown University have on the educational landscape in the United States in terms of religious inclusivity?", "answer": " The founding of Brown University, with its policy of equal admission and instruction regardless of religious affiliation, had a profound impact on the educational landscape in the United States by promoting religious inclusivity and setting a precedent for other institutions to follow.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Brown University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Brown University"}, {"qid": 1609, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of Cornell University compare to that of Harvard University?", "answer": " Cornell University was founded in 1865, whereas Harvard University was founded in 1636, making Harvard older.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cornell University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Cornell University"}, {"qid": 1610, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "Who was the first president of Cornell University?", "answer": " Andrew Dickson White.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cornell University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Cornell University"}, {"qid": 1611, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between Ezra Cornell and Cornell University?", "answer": " Ezra Cornell is a co-founder of Cornell University.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cornell University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Cornell University"}, {"qid": 1612, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would happen if Cornell University decided to become a sectarian institution?", "answer": " It would mark a significant shift from its founding principles of being a nonsectarian institution, potentially affecting its policies, admissions, and curriculum.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cornell University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Cornell University"}, {"qid": 1613, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the student population of Cornell University compare to that of Stanford University in fall 2023?", "answer": " As of fall 2023, Cornell University had over 26,000 students, and this needs to be compared with Stanford University's enrollment numbers for the same period to answer.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cornell University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Cornell University"}, {"qid": 1614, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which building on Cornell University's campus is the oldest?", "answer": " Morrill Hall.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cornell University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Cornell University"}, {"qid": 1615, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the location of Cornell University influence its research in agriculture and life sciences?", "answer": " Being located in Ithaca, New York, with access to various ecosystems and a rural setting, provides unique opportunities for hands-on research and study in agriculture and life sciences.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cornell University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Cornell University"}, {"qid": 1616, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Cornell University were to open a new campus in another country, how might that affect its global student body composition?", "answer": " Opening a new campus abroad could increase the diversity of the global student body, attracting students from that region and offering more international study opportunities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cornell University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Cornell University"}, {"qid": 1617, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Is the number of staff at Cornell University larger than its number of undergraduate students?", "answer": " No, as of fall 2023, the undergraduate student body exceeded the staff number.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cornell University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Cornell University"}, {"qid": 1618, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most popular major at Cornell University?", "answer": " This answer requires up-to-date information which is not provided in the given text.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cornell University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Cornell University"}, {"qid": 1619, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does Cornell University's land-grant status affect its mission and programs?", "answer": " Cornell's land-grant status commits it to contribute to society in practical ways, including a strong emphasis on public service, extending its research and teaching beyond the campus, and making its educational programs accessible to residents of New York State.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cornell University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Cornell University"}, {"qid": 1620, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What if Cornell University decided to significantly reduce its number of graduate programs?", "answer": " This could lead to a decrease in research output, affect its standing in certain academic fields, and potentially impact the diversity of the student body.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cornell University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Cornell University"}, {"qid": 1621, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of Dartmouth College compare to Harvard University?", "answer": " Dartmouth College was founded in 1769, whereas Harvard University was founded earlier in 1636.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Dartmouth College"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Dartmouth College"}, {"qid": 1622, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most distinctive feature of Dartmouth College's location?", "answer": " Dartmouth College is notably located in Hanover, New Hampshire, offering a distinctive rural, Ivy League campus setting.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Dartmouth College"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Dartmouth College"}, {"qid": 1623, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What role did Eleazar Wheelock play in the history of Dartmouth College?", "answer": " Eleazar Wheelock was the founder of Dartmouth College, establishing it in 1769.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Dartmouth College"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Dartmouth College"}, {"qid": 1624, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Dartmouth College decided to open a new campus, what might be a potential location based on its historical preference?", "answer": " Based on its historical preference for rural settings, a potential new campus might also be located in a similar rural or small-town environment.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Dartmouth College"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Dartmouth College"}, {"qid": 1625, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does Dartmouth College's staff size compare to that of Princeton University?", "answer": " As of the last available data, Dartmouth College has a smaller staff size compared to Princeton University, reflecting its focus on undergraduate education within the Ivy League.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Dartmouth College"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Dartmouth College"}, {"qid": 1626, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "Among the Ivy League colleges, where does Dartmouth rank in terms of its establishment year?", "answer": " Dartmouth ranks as the ninth oldest, being established in 1769, making it one of the last of the colonial colleges founded before the American Revolution.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Dartmouth College"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Dartmouth College"}, {"qid": 1627, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the location of Dartmouth College influence its academic programs?", "answer": " The rural location of Dartmouth College contributes to a strong sense of community and allows for unique research opportunities in environmental studies and outdoor education.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Dartmouth College"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Dartmouth College"}, {"qid": 1628, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What could be the impact on Dartmouth College's student body if it doubled its staff number?", "answer": " Doubling its staff number could allow Dartmouth College to reduce student-to-faculty ratios, potentially improving personalized education and expanding research opportunities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Dartmouth College"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Dartmouth College"}, {"qid": 1629, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to its founding, how has Dartmouth College's focus changed over the years?", "answer": " Since its founding in 1769, Dartmouth College has shifted from primarily a college for Native Americans to a broad-based Ivy League research university with a strong undergraduate focus.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Dartmouth College"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Dartmouth College"}, {"qid": 1630, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest building on Dartmouth College's campus?", "answer": " Dartmouth Hall is considered the oldest building, originally constructed in the 18th century and an iconic symbol of Dartmouth College's long history.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Dartmouth College"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Dartmouth College"}, {"qid": 1631, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does Dartmouth College's rural location affect its campus culture?", "answer": " The rural location fosters a tight-knit community, encourages outdoor activities, and contributes to a unique campus culture compared to more urban Ivy League schools.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Dartmouth College"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Dartmouth College"}, {"qid": 1632, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Dartmouth College were to become a public university, how might its Ivy League status be affected?", "answer": " Transitioning to a public university could potentially challenge Dartmouth College's Ivy League status by altering its funding model, admission processes, and perhaps its perceived exclusivity.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Dartmouth College"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Dartmouth College"}, {"qid": 1633, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of the University of Pennsylvania compare to Harvard University?", "answer": " The University of Pennsylvania was founded in 1749, making it younger than Harvard University, which was founded in 1636.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pennsylvania"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Pennsylvania"}, {"qid": 1634, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which is the oldest Ivy League university?", "answer": " Harvard University is the oldest Ivy League university, founded in 1636, predating the University of Pennsylvania.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pennsylvania"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Pennsylvania"}, {"qid": 1635, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What role did Benjamin Franklin play in the establishment of the University of Pennsylvania?", "answer": " Benjamin Franklin was the founder and first president of the University of Pennsylvania, advocating for an educational institution that trained leaders in academia, commerce, and public service.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pennsylvania"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Pennsylvania"}, {"qid": 1636, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Pennsylvania were to move its location from Philadelphia, how would it impact its historical significance as one of the colonial colleges?", "answer": " Moving the University of Pennsylvania from Philadelphia would significantly impact its historical significance as one of the colonial colleges, as its roots and historical contributions are deeply intertwined with its original location.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pennsylvania"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Pennsylvania"}, {"qid": 1637, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the University of Pennsylvania's rank in terms of age among Ivy League institutions?", "answer": " The University of Pennsylvania is considered the fourth-oldest institution of higher education in the United States among Ivy League schools.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pennsylvania"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Pennsylvania"}, {"qid": 1638, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the University of Pennsylvania's staff number compare to Yale University?", "answer": " The specific number of staff at the University of Pennsylvania and Yale University can vary, but typically, both Ivy League universities have a large number of staff members to support their extensive academic and research operations.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pennsylvania"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Pennsylvania"}, {"qid": 1639, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the location of the University of Pennsylvania contribute to its mission?", "answer": " The University of Pennsylvania's location in Philadelphia, a city with rich historical and cultural significance, contributes to its mission by providing a dynamic environment for research, education, and public service.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pennsylvania"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Pennsylvania"}, {"qid": 1640, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Benjamin Franklin had not been involved in the founding of the University of Pennsylvania, how might its focus on academia, commerce, and public service be different?", "answer": " Without Benjamin Franklin's influence, the University of Pennsylvania might have had a different focus or approach to its educational programs, possibly placing less emphasis on the integration of academia, commerce, and public service.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pennsylvania"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Pennsylvania"}, {"qid": 1641, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "What makes the University of Pennsylvania unique among the Ivy League universities?", "answer": " The University of Pennsylvania's unique status among Ivy League universities comes from its founding by Benjamin Franklin, its emphasis on practical education that spans academia, commerce, and public service, and its claim as one of the oldest institutions of higher education in the United States.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pennsylvania"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Pennsylvania"}, {"qid": 1642, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of the University of Pennsylvania compare to Princeton University?", "answer": " The University of Pennsylvania, founded in 1749, is younger than Princeton University, which was founded in 1746.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pennsylvania"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Pennsylvania"}, {"qid": 1643, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the University of Pennsylvania's identification as the fourth-oldest institution of higher education in the United States reflect its history?", "answer": " The University of Pennsylvania's identification as the fourth-oldest institution reflects its long history and the role it has played in American higher education since its founding in 1749, despite debates about its exact ranking due to the timing of its founding activities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pennsylvania"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Pennsylvania"}, {"qid": 1644, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Pennsylvania were to significantly increase its staff number, how would that affect its academic offerings?", "answer": " Significantly increasing the staff number at the University of Pennsylvania could potentially expand its academic offerings by allowing for more specialized programs, smaller class sizes, and enhanced research opportunities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Pennsylvania"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Pennsylvania"}, {"qid": 1645, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of the University of Oxford compare to that of the University of Cambridge?", "answer": " The University of Oxford was founded earlier, with evidence of teaching as early as 1096, whereas the University of Cambridge was established in 1209.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Oxford"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Oxford"}, {"qid": 1646, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the location of the University of Oxford compare to the University of Cambridge in terms of their geographical setting within England?", "answer": " Both the University of Oxford and the University of Cambridge are located in England, but Oxford is in the southern part of the country, while Cambridge is situated in the eastern part.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Oxford"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Oxford"}, {"qid": 1647, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest university in the English-speaking world?", "answer": " The University of Oxford is the oldest university in the English-speaking world.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Oxford"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Oxford"}, {"qid": 1648, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "Among the University of Oxford and the University of Cambridge, which has the earlier founding year?", "answer": " The University of Oxford has the earlier founding year, with evidence of teaching as early as 1096.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Oxford"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Oxford"}, {"qid": 1649, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Why did the University of Oxford experience rapid growth starting in 1167?", "answer": " The University of Oxford experienced rapid growth starting in 1167 after Henry II banned English students from attending the University of Paris.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Oxford"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Oxford"}, {"qid": 1650, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What led to the establishment of the University of Cambridge by some academics from Oxford?", "answer": " Disputes between students and Oxford townsfolk led some Oxford academics to flee northeast to Cambridge, where they established the University of Cambridge in 1209.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Oxford"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Oxford"}, {"qid": 1651, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the University of Oxford's status as the oldest university in the English-speaking world relate to its historical teaching evidence?", "answer": " The University of Oxford's status as the oldest university in the English-speaking world is based on the evidence of teaching as early as 1096.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Oxford"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Oxford"}, {"qid": 1652, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Paris had not been banned to English students by Henry II, how might the development of the University of Oxford been affected?", "answer": " If the University of Paris had not been banned to English students, the University of Oxford might not have experienced the same rapid growth in the late 12th century.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Oxford"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Oxford"}, {"qid": 1653, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What might have happened if the disputes between Oxford students and townsfolk had not led to the establishment of the University of Cambridge?", "answer": " If the disputes had not led to the establishment of the University of Cambridge, the University of Oxford might have remained the sole center of higher education in England for a longer period.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Oxford"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Oxford"}, {"qid": 1654, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "Had the University of Oxford not been established as early as it was, what could have been the impact on the English-speaking world's academic landscape?", "answer": " Had the University of Oxford not been established early, the academic and intellectual development in the English-speaking world might have taken a different trajectory, potentially delaying advancements in various fields of study.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Oxford"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Oxford"}, {"qid": 1655, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between the University of Oxford and the University of Cambridge in terms of their founding histories?", "answer": " The University of Oxford and the University of Cambridge have interconnected founding histories, with the University of Cambridge being established by academics fleeing from disputes in Oxford.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Oxford"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Oxford"}, {"qid": 1656, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "What makes the University of Oxford unique in the context of its age compared to other universities worldwide?", "answer": " The University of Oxford's uniqueness comes from being the world's second-oldest university in continuous operation and the oldest in the English-speaking world based on its early teaching evidence from 1096.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Oxford"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Oxford"}, {"qid": 1657, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of the University of Cambridge compare to that of the University of Oxford?", "answer": " The University of Cambridge was founded in 1209, after the University of Oxford, making it the second-oldest university in continuous operation in England.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Cambridge"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Cambridge"}, {"qid": 1658, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest university in the world that is still in operation, considering the University of Cambridge's founding year?", "answer": " The University of al-Qarawiyyin in Morocco, founded in 859, is the oldest existing, continually operating and the first degree-awarding educational institution in the world according to UNESCO and Guinness World Records.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Cambridge"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Cambridge"}, {"qid": 1659, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Who were the founders of the University of Cambridge?", "answer": " The University of Cambridge was founded by scholars who left the University of Oxford after a dispute with local townspeople.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Cambridge"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Cambridge"}, {"qid": 1660, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What if the scholars had not left the University of Oxford for Cambridge in 1209?", "answer": " If the scholars had not left the University of Oxford for Cambridge in 1209, the University of Cambridge might not have been founded, or its establishment would have been delayed or occurred under different circumstances.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Cambridge"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Cambridge"}, {"qid": 1661, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the rank of the University of Cambridge in terms of age among world universities?", "answer": " The University of Cambridge is the world's third-oldest university in continuous operation.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Cambridge"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Cambridge"}, {"qid": 1662, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What common features do the University of Cambridge and the University of Oxford share?", "answer": " The University of Cambridge and the University of Oxford share many common features, including their collegiate structure, tutorial system, and status as historically significant centers of learning and research in England.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Cambridge"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Cambridge"}, {"qid": 1663, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How do the locations of the University of Cambridge and the University of Oxford contribute to their rivalry?", "answer": " The geographical proximity of the University of Cambridge and the University of Oxford in England, along with their historical competition for academic excellence, contributes to their rivalry.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Cambridge"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Cambridge"}, {"qid": 1664, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would happen if the University of Cambridge relocated to London?", "answer": " If the University of Cambridge relocated to London, it would likely face significant changes in its campus environment, student dynamics, and possibly its academic and research collaborations due to the different urban setting and proximity to other institutions and industries.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Cambridge"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Cambridge"}, {"qid": 1665, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which university has the larger number of staff, Cambridge or Oxford?", "answer": " The specific number of staff can vary year by year, but both the University of Cambridge and the University of Oxford employ thousands of academic and administrative staff, making direct comparisons subject to the most current data.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Cambridge"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Cambridge"}, {"qid": 1666, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Why did the scholars choose Cambridge as the location for the new university after leaving Oxford?", "answer": " The scholars chose Cambridge as the new location for the university due to its suitable environment for academic pursuit and perhaps to distance themselves from the conflicts encountered in Oxford.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Cambridge"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Cambridge"}, {"qid": 1667, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to other universities founded in the 13th century, how does the University of Cambridge's influence in global academia stand?", "answer": " The University of Cambridge, founded in 1209, stands as one of the most influential and prestigious universities in the world, with a long history of academic excellence and significant contributions to society and global academia, compared to other universities founded in the 13th century.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Cambridge"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Cambridge"}, {"qid": 1668, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Cambridge had not been established, what might have been the impact on the progression of higher education in England?", "answer": " If the University of Cambridge had not been established, the progression of higher education in England might have been significantly altered, potentially delaying the development of a competitive academic environment and the advancement of knowledge and research that has been influenced by the Cambridge-Oxford rivalry.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Cambridge"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Cambridge"}, {"qid": 1669, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the research intensity of the University of Southampton compare with other universities in the Russell Group?", "answer": " The University of Southampton, as a founding member of the Russell Group, is considered to be among the research-intensive universities in the United Kingdom, indicating a high level of research activity comparable to other universities in the group.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Southampton"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Southampton"}, {"qid": 1670, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest research university in the Russell Group, and where does the University of Southampton rank in terms of establishment year among them?", "answer": " The University of Southampton, established in 1862, is one of the older universities in the Russell Group but not the oldest, with universities like the University of Oxford and the University of Cambridge being established much earlier.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Southampton"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Southampton"}, {"qid": 1671, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Who was the president of the University of Southampton in its founding year?", "answer": " The University of Southampton does not have a position titled 'president'; the leadership role is typically referred to as Chancellor or Vice-Chancellor. The title and holder have changed over time since its establishment.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Southampton"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Southampton"}, {"qid": 1672, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Southampton decided to double its research staff, how many staff members would it have?", "answer": " The exact number of research staff at the University of Southampton varies, but doubling it would simply mean multiplying the current number by two.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Southampton"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Southampton"}, {"qid": 1673, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the ranking of the University of Southampton among UK universities for engineering research?", "answer": " Rankings can vary by year and organization conducting the assessment, but the University of Southampton is generally highly regarded for engineering research among UK universities, often placing within the top 10 or higher in specific engineering disciplines.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Southampton"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Southampton"}, {"qid": 1674, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the size of the University of Southampton's campus compare to other Russell Group universities?", "answer": " The University of Southampton has a large campus relative to many universities, but specific comparisons depend on the criteria (e.g., total area, building count). It is considered sizable among Russell Group universities, though not the largest.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Southampton"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Southampton"}, {"qid": 1675, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What impact has the University of Southampton had on the local economy since its establishment?", "answer": " The University of Southampton has had a significant positive impact on the local economy through job creation, student spending, research innovation, and attracting international visitors and students, contributing to both the economic and cultural vitality of Southampton and its surrounding areas.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Southampton"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Southampton"}, {"qid": 1676, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which department at the University of Southampton has the highest number of staff?", "answer": " Detailed staff numbers by department are subject to change and may not be publicly available, but traditionally, departments in sciences and engineering tend to have larger numbers of staff due to the research-intensive nature of these fields.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Southampton"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Southampton"}, {"qid": 1677, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Southampton were to open a new campus abroad, how would it choose the location?", "answer": " The decision would likely involve factors such as academic strengths complementarity, strategic partnerships, local demand for higher education, financial considerations, and the potential to enhance the university's global presence and research impact.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Southampton"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Southampton"}, {"qid": 1678, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How has the University of Southampton's focus on research influenced its academic programs?", "answer": " The University of Southampton's strong focus on research has led to the development of cutting-edge academic programs, especially in science and engineering, that incorporate the latest research findings, attract leading researchers as faculty, and offer students opportunities for research involvement.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Southampton"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Southampton"}, {"qid": 1679, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to other universities founded in the 19th century, how does the University of Southampton rank in terms of research output?", "answer": " The University of Southampton is highly regarded for its research output, often ranking well among UK universities founded in the 19th century, particularly in disciplines like engineering, computer science, and medicine.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Southampton"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Southampton"}, {"qid": 1680, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would be the potential benefits if the University of Southampton were to significantly increase its investment in renewable energy research?", "answer": " Increasing investment in renewable energy research could position the University of Southampton as a leader in this critical field, attract top researchers and students, lead to breakthrough innovations, foster industry partnerships, and contribute significantly to addressing global energy and climate challenges.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Southampton"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Southampton"}, {"qid": 1681, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest university in the English-speaking world that is still in operation?", "answer": " The University of Oxford", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Edinburgh"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Edinburgh"}, {"qid": 1682, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the rank of the University of Edinburgh in terms of age among the universities in the English-speaking world?", "answer": " Sixth", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Edinburgh"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Edinburgh"}, {"qid": 1683, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Why is Edinburgh nicknamed the \"Athens of the North\"?", "answer": " Because the University of Edinburgh played a crucial role during the Scottish Enlightenment, contributing to Edinburgh becoming a leading intellectual centre.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Edinburgh"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Edinburgh"}, {"qid": 1684, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Who founded the University of Edinburgh?", "answer": " The town council under the authority of a royal charter from King James VI", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Edinburgh"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Edinburgh"}, {"qid": 1685, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of the University of Edinburgh compare to the University of Glasgow?", "answer": " The University of Edinburgh was founded in 1582, making it younger than the University of Glasgow, which was founded in 1451.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Edinburgh"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Edinburgh"}, {"qid": 1686, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the founding year of the University of Edinburgh?", "answer": " 1582", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Edinburgh"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Edinburgh"}, {"qid": 1687, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What might have happened if the University of Edinburgh had not played a role during the Scottish Enlightenment?", "answer": " Edinburgh might not have become a leading intellectual centre, and it might not have earned the nickname \"Athens of the North\".", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Edinburgh"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Edinburgh"}, {"qid": 1688, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "In which city is the University of Edinburgh based?", "answer": " Edinburgh", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Edinburgh"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Edinburgh"}, {"qid": 1689, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which king granted the royal charter for the founding of the University of Edinburgh?", "answer": " King James VI", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Edinburgh"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Edinburgh"}, {"qid": 1690, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the primary purpose of the University of Edinburgh?", "answer": " It is a public research university.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Edinburgh"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Edinburgh"}, {"qid": 1691, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to other ancient universities in Scotland, where does the University of Edinburgh rank in terms of its founding year?", "answer": " It is the third oldest, after the University of St Andrews and the University of Glasgow.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Edinburgh"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Edinburgh"}, {"qid": 1692, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Edinburgh had not been founded, how might the intellectual landscape of the English-speaking world differ today?", "answer": " The English-speaking world might have had one fewer historic center of education and research, potentially impacting the development and dissemination of ideas during the Scottish Enlightenment and beyond.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Edinburgh"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Edinburgh"}, {"qid": 1693, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between The London School of Economics and Political Science (LSE) and the University of London?", "answer": " LSE is a member institution of the University of London and became a university in its own right within the University of London in 2022.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["London School of Economics"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "London School of Economics"}, {"qid": 1694, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "When did LSE start awarding degrees in its own name, making it a significant milestone in its history?", "answer": " 2008", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["London School of Economics"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "London School of Economics"}, {"qid": 1695, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of LSE compare to the year it joined the University of London?", "answer": " LSE was founded in 1895 and joined the University of London in 1900.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["London School of Economics"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "London School of Economics"}, {"qid": 1696, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Who were the founders of The London School of Economics and Political Science?", "answer": " Sidney Webb, Beatrice Webb, Graham Wallas, and George Bernard Shaw", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["London School of Economics"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "London School of Economics"}, {"qid": 1697, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "When did LSE establish its first degree courses under the auspices of the University of London?", "answer": " 1901", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["London School of Economics"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "London School of Economics"}, {"qid": 1698, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If LSE had not joined the University of London, how might its degree awarding status have been different before 2008?", "answer": " It would have continued to award degrees of the University of London rather than its own.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["London School of Economics"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "London School of Economics"}, {"qid": 1699, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is LSE's specialization in the field of academia?", "answer": " Social sciences", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["London School of Economics"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "London School of Economics"}, {"qid": 1700, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "What significant change occurred to LSE's degree awarding powers in 2022?", "answer": " It became a university in its own right within the University of London.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["London School of Economics"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "London School of Economics"}, {"qid": 1701, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How did LSE's affiliation with the University of London change over time from its founding to 2022?", "answer": " Initially joined as a member institution in 1900, began awarding its own degrees in 2008, and became a university in its own right within the University of London in 2022.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["London School of Economics"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "London School of Economics"}, {"qid": 1702, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the Fabian Society members had not founded LSE, what impact might this have had on the landscape of social sciences education in London?", "answer": " The absence of LSE might have led to a reduced focus or development in social sciences education within London and possibly affected the global prestige and influence in this field.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["London School of Economics"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "London School of Economics"}, {"qid": 1703, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What led to LSE beginning to award degrees in its own name in 2008?", "answer": " The decision to award degrees in its own name marked a significant milestone in LSE's development, reflecting its growth and prestige in the academic world.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["London School of Economics"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "London School of Economics"}, {"qid": 1704, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the historical significance of the year 1900 for LSE?", "answer": " The year 1900 marks when LSE joined the University of London, expanding its academic and institutional framework.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["London School of Economics"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "London School of Economics"}, {"qid": 1705, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What led to the formation of Imperial College London in 1907?", "answer": " The merger of the Royal College of Science, the Royal School of Mines, and the City and Guilds of London Institute.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Imperial College London"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Imperial College London"}, {"qid": 1706, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How did the Imperial College School of Medicine come into existence?", "answer": " Through a merger with St Mary's Hospital Medical School in 1988.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Imperial College London"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "Imperial College London"}, {"qid": 1707, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "What event marked the establishment of the Imperial College Business School?", "answer": " The opening of the Imperial College Business School by Queen Elizabeth II in 2004.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Imperial College London"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Imperial College London"}, {"qid": 1708, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of Imperial College London compare to the University of Oxford?", "answer": " Imperial College London was founded in 1907, which is much later than the University of Oxford, which was established in the 12th century.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Imperial College London"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Imperial College London"}, {"qid": 1709, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the primary focus of Imperial College London?", "answer": " It is a public research university specializing in science, engineering, medicine, and business.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Imperial College London"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Imperial College London"}, {"qid": 1710, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Who was the visionary behind the cultural area that includes Imperial College London?", "answer": " Prince Albert, Queen Victoria's husband.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Imperial College London"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Imperial College London"}, {"qid": 1711, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would be the impact on Imperial College London if the merger with St Mary's Hospital Medical School had not happened?", "answer": " The Imperial College School of Medicine would not have been formed, potentially affecting its strength in medical education and research.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Imperial College London"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Imperial College London"}, {"qid": 1712, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Where is Imperial College London located?", "answer": " London, England.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Imperial College London"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Imperial College London"}, {"qid": 1713, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "What significant event related to Imperial College London took place in 2004?", "answer": " The opening of the Imperial College Business School by Queen Elizabeth II.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Imperial College London"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Imperial College London"}, {"qid": 1714, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the location of Imperial College London contribute to its academic collaborations?", "answer": " Being in London, a global city, facilitates collaboration with numerous other institutions, businesses, and research organizations.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Imperial College London"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Imperial College London"}, {"qid": 1715, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What if Imperial College London had not merged to form in 1907?", "answer": " It might not have become the unified, globally recognized institution it is today, potentially impacting its research and educational capabilities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Imperial College London"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Imperial College London"}, {"qid": 1716, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Who was instrumental in the creation of the cultural area in South Kensington that includes Imperial College London?", "answer": " Prince Albert, Queen Victoria's husband.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Imperial College London"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Imperial College London"}, {"qid": 1717, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest university in the English-speaking world that the University of Glasgow is ranked fourth among?", "answer": " The University of Oxford is the oldest university in the English-speaking world.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Glasgow"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Glasgow"}, {"qid": 1718, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which university in Scotland has the largest total enrolment?", "answer": " The University of Glasgow has the largest total enrolment in Scotland.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Glasgow"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Glasgow"}, {"qid": 1719, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How is the University of Glasgow related to the Scottish Enlightenment?", "answer": " The University of Glasgow was part of the Scottish Enlightenment during the 18th century.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Glasgow"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Glasgow"}, {"qid": 1720, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "In what way is the University of Glasgow's founding unique among Scottish universities?", "answer": " It was founded by papal bull.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Glasgow"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Glasgow"}, {"qid": 1721, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to the University of St Andrews, which university was founded earlier?", "answer": " The University of St Andrews was founded earlier than the University of Glasgow.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Glasgow"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Glasgow"}, {"qid": 1722, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the rank of the University of Glasgow among the ancient universities in Scotland in terms of its founding year?", "answer": " It is the fourth-oldest university in Scotland.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Glasgow"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Glasgow"}, {"qid": 1723, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What distinguishes the University of Glasgow's postgraduate enrolment size in the UK?", "answer": " It has the second-largest postgraduate enrolment in the United Kingdom.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Glasgow"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Glasgow"}, {"qid": 1724, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Glasgow were to increase its total enrolment, how might it affect its ranking in Scotland?", "answer": " It could maintain or strengthen its position as the largest university in Scotland by total enrolment.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Glasgow"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Glasgow"}, {"qid": 1725, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the University of Glasgow's age compare to the University of Edinburgh's?", "answer": " The University of Glasgow is older than the University of Edinburgh.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Glasgow"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Glasgow"}, {"qid": 1726, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "In terms of postgraduate enrolment, which university in the UK has the largest number?", "answer": " The University with the largest postgraduate enrolment in the UK is not specified, but the University of Glasgow has the second-largest.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Glasgow"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Glasgow"}, {"qid": 1727, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What role did the University of Glasgow play in the 18th century?", "answer": " It was part of the Scottish Enlightenment during the 18th century.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Glasgow"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Glasgow"}, {"qid": 1728, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Glasgow were to host a global conference on the Scottish Enlightenment, what could be a potential theme based on its historical involvement?", "answer": " The theme could be \"The University of Glasgow and its Contributions to the Scottish Enlightenment.\"", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Glasgow"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Glasgow"}, {"qid": 1729, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the largest university in the United Kingdom by postgraduate enrolment?", "answer": " University College London (UCL)", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University College London"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University College London"}, {"qid": 1730, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which university is the second-largest in the UK by total enrolment?", "answer": " University College London (UCL)", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University College London"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University College London"}, {"qid": 1731, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What type of institution is University College London?", "answer": " Public research university", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University College London"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University College London"}, {"qid": 1732, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "In which city is University College London located?", "answer": " London, England", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University College London"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University College London"}, {"qid": 1733, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Is University College London a member of the University of London?", "answer": " Yes", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University College London"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University College London"}, {"qid": 1734, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to other universities in the UK, where does University College London rank in terms of total enrolment?", "answer": " Second-largest", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University College London"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "University College London"}, {"qid": 1735, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If a new university were to surpass UCL in postgraduate enrolment, what position would UCL then hold?", "answer": " Second largest by postgraduate enrolment", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University College London"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University College London"}, {"qid": 1736, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the primary focus of University College London?", "answer": " Research", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University College London"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University College London"}, {"qid": 1737, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If University College London were to split from the University of London, what type of institution would it be classified as?", "answer": " Independent public research university", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University College London"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University College London"}, {"qid": 1738, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How is University College London branded?", "answer": " UCL", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University College London"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University College London"}, {"qid": 1739, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If UCL were to become the university with the largest total enrolment in the UK, which university would it have surpassed?", "answer": " The Open University (assuming it was the largest before UCL)", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University College London"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University College London"}, {"qid": 1740, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the rank of University College London in terms of size within the federal University of London?", "answer": " It is a member institution, but not ranked by size within the federal University of London itself.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University College London"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University College London"}, {"qid": 1741, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the number of staff at Queen Mary University of London compare to that of King's College London?", "answer": " The specific comparison requires current staff numbers for both institutions, which can vary over time.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen Mary University of London"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "Queen Mary University of London"}, {"qid": 1742, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Is the location of Queen Mary University of London more urban than that of the University of London's main campus?", "answer": " Yes, both are located in London, but Queen Mary University of London is in the urban area of Mile End, East London.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen Mary University of London"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "Queen Mary University of London"}, {"qid": 1743, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest college within the University of London system?", "answer": " Queen Mary University of London is not the oldest; University College London (UCL) is one of the oldest, founded in 1826.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen Mary University of London"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "Queen Mary University of London"}, {"qid": 1744, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which university has the largest campus, King's College London or Queen Mary University of London?", "answer": " Specific measurements are needed for a direct comparison, but both universities have significant campus sizes in London.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen Mary University of London"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "Queen Mary University of London"}, {"qid": 1745, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between Queen Mary University of London and the federal University of London?", "answer": " Queen Mary University of London is a member institution of the federal University of London.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen Mary University of London"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "Queen Mary University of London"}, {"qid": 1746, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Who is the president of Queen Mary University of London, and what is their role?", "answer": " The president of Queen Mary University of London oversees the university's operations and strategic direction, but the current president's name requires up-to-date information.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen Mary University of London"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "Queen Mary University of London"}, {"qid": 1747, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Queen Mary University of London decided to merge with another college, how might that affect its membership in the University of London?", "answer": " A merger might lead to a reevaluation of its membership status within the University of London, depending on the terms of the merger and the policies of the University of London.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen Mary University of London"], "topic_level": false, "class": "sing entity", "hops": "Multi Hops", "entity": "Queen Mary University of London"}, {"qid": 1748, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would happen if Queen Mary University of London decided to become independent from the University of London?", "answer": " Becoming independent from the University of London would require Queen Mary to operate as a standalone institution, potentially affecting its degree-awarding powers, reputation, and collaborations.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen Mary University of London"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "Queen Mary University of London"}, {"qid": 1749, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most prominent research field at Queen Mary University of London?", "answer": " Queen Mary University of London is known for several prominent research fields, including Medicine, Dentistry, and Law, but the most prominent can vary based on current research outputs and rankings.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen Mary University of London"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "Queen Mary University of London"}, {"qid": 1750, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does Queen Mary University of London contribute to the East London community?", "answer": " Queen Mary University of London contributes through educational programs, community projects, research initiatives, and partnerships with local organizations to benefit the East London community.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen Mary University of London"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "Queen Mary University of London"}, {"qid": 1751, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What if Queen Mary University of London launched a new campus in another country, how would that affect its global presence?", "answer": " Launching a new campus abroad would significantly increase Queen Mary University of London's global presence, potentially attracting a more diverse student body and establishing international research collaborations.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen Mary University of London"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "Queen Mary University of London"}, {"qid": 1752, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the student diversity at Queen Mary University of London compare to that of the London School of Economics?", "answer": " Both institutions are known for their diverse student populations, but specific demographic comparisons require up-to-date enrollment statistics.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen Mary University of London"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "Queen Mary University of London"}, {"qid": 1753, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the University of Birmingham's origin relate to the Birmingham School of Medicine and Surgery?", "answer": " The University of Birmingham received its royal charter in 1900 as a successor to Queen's College, Birmingham, which was founded in 1825 as the Birmingham School of Medicine and Surgery.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Birmingham"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Birmingham"}, {"qid": 1754, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the connection between Mason Science College and the University of Birmingham?", "answer": " Mason Science College, established in 1875 by Sir Josiah Mason, is one of the predecessor institutions to the University of Birmingham, which received its royal charter in 1900.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Birmingham"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Birmingham"}, {"qid": 1755, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "When did the University of Birmingham become the first English civic university to receive its own royal charter?", "answer": " The University of Birmingham became the first English civic university to receive its own royal charter in 1900.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Birmingham"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Birmingham"}, {"qid": 1756, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which university was the first English unitary university?", "answer": " The University of Birmingham was the first English unitary university.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Birmingham"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Birmingham"}, {"qid": 1757, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of the University of Birmingham compare to the founding year of its predecessor institutions?", "answer": " The University of Birmingham was founded in 1900, succeeding Queen's College, Birmingham (founded in 1825) and Mason Science College (established in 1875).", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Birmingham"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Birmingham"}, {"qid": 1758, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the University of Birmingham's membership in the Russell Group compare to its membership in Universitas 21?", "answer": " The University of Birmingham is a founding member of both the Russell Group, which focuses on research universities in the UK, and Universitas 21, an international network of research universities, indicating its strong domestic and international research collaborations.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Birmingham"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Birmingham"}, {"qid": 1759, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would happen if the University of Birmingham was not a founding member of the Russell Group?", "answer": " If the University of Birmingham was not a founding member of the Russell Group, it might have fewer opportunities for research collaborations and funding within the UK, potentially affecting its research output and reputation.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Birmingham"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Birmingham"}, {"qid": 1760, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Birmingham decided to leave Universitas 21, how might its international research collaborations be affected?", "answer": " If the University of Birmingham left Universitas 21, its international research collaborations could be negatively impacted, potentially reducing its global research opportunities and weakening its international partnerships.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Birmingham"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Birmingham"}, {"qid": 1761, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What led to the University of Birmingham being considered the first \"red brick\" university?", "answer": " The University of Birmingham is considered the first \"red brick\" university due to it being the first English civic university to receive its own royal charter in 1900, marking a significant development in the higher education landscape of England.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Birmingham"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Birmingham"}, {"qid": 1762, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which institution served as a precursor to the University of Birmingham in the field of medicine?", "answer": " Queen's College, Birmingham, founded in 1825 as the Birmingham School of Medicine and Surgery, served as a precursor to the University of Birmingham in the field of medicine.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Birmingham"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Birmingham"}, {"qid": 1763, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the establishment year of Mason Science College compare to the royal charter year of the University of Birmingham?", "answer": " Mason Science College was established in 1875, while the University of Birmingham received its royal charter in 1900, highlighting a chronological progression towards the formation of the university.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Birmingham"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Birmingham"}, {"qid": 1764, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Birmingham had not succeeded Queen's College and Mason Science College, how would its historical significance as a \"red brick\" university be affected?", "answer": " If the University of Birmingham had not succeeded Queen's College and Mason Science College, its historical significance as the first \"red brick\" university might be diminished, as its foundation would not be directly linked to these earlier educational institutions.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Birmingham"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Birmingham"}, {"qid": 1765, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What led to the formation of the University of Manchester in 2004?", "answer": " The University of Manchester was formed in 2004 following the merger of the University of Manchester Institute of Science and Technology (UMIST) and the Victoria University of Manchester, a process that was a result of over a century of the two institutions working closely with one another.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Manchester"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Manchester"}, {"qid": 1766, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the University of Manchester contribute to cultural assets in the city?", "answer": " The University of Manchester owns and operates major cultural assets such as the Manchester Museum, The Whitworth art gallery, the John Rylands Library, the Tabley House Collection, and the Jodrell Bank Observatory, which is a UNESCO World Heritage Site.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Manchester"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Manchester"}, {"qid": 1767, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is a distinguishing feature of the University of Manchester that classifies it as a red brick university?", "answer": " The University of Manchester is considered a red brick university, a distinction that highlights its status as a product of the civic university movement of the late 19th century.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Manchester"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Manchester"}, {"qid": 1768, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the University of Manchester's foundation compare to the traditional ancient universities in the UK?", "answer": " Unlike the ancient universities in the UK, the University of Manchester was formed from the civic university movement of the late 19th century and officially established in its current form in 2004, making it significantly younger and a product of a different educational movement.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Manchester"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Manchester"}, {"qid": 1769, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the Jodrell Bank Observatory's status contribute to the University of Manchester's reputation?", "answer": " The Jodrell Bank Observatory's status as a UNESCO World Heritage Site contributes to the University of Manchester's reputation by highlighting its involvement and contribution to world-class scientific research and cultural heritage.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Manchester"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "University of Manchester"}, {"qid": 1770, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What might happen to the cultural assets owned by the University of Manchester if the university decided to focus solely on STEM fields?", "answer": " If the University of Manchester decided to focus solely on STEM fields, the care, promotion, and development of its cultural assets like the Manchester Museum, The Whitworth art gallery, and the John Rylands Library might be negatively impacted, potentially leading to a decrease in cultural and educational offerings to the public.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Manchester"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Manchester"}, {"qid": 1771, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "What makes the University of Manchester's main campus unique in its location?", "answer": " The University of Manchester's main campus is unique in its location for being situated south of Manchester City Centre on Oxford Road, providing a central location that blends academic facilities with access to the city's vibrant cultural and social scenes.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Manchester"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Manchester"}, {"qid": 1772, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the University of Manchester's approach to owning and operating cultural assets compare to other UK universities?", "answer": " The University of Manchester's approach to owning and operating major cultural assets such as museums, galleries, and a UNESCO World Heritage Site observatory is more extensive compared to many other UK universities, showcasing a strong commitment to cultural preservation and public engagement.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Manchester"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Manchester"}, {"qid": 1773, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "In what way does the University of Manchester's status as a red brick university influence its educational approach?", "answer": " As a red brick university, the University of Manchester's educational approach is influenced by its origins in the civic university movement, emphasizing practical and vocational education alongside traditional academic study, and a strong engagement with the city and community it serves.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Manchester"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Manchester"}, {"qid": 1774, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would be the impact on international research collaborations if the University of Manchester ceased operations at the Jodrell Bank Observatory?", "answer": " If the University of Manchester ceased operations at the Jodrell Bank Observatory, it could negatively affect international research collaborations in astronomy and physics, reducing opportunities for groundbreaking science and diminishing the university's role in global scientific communities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Manchester"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Manchester"}, {"qid": 1775, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "What aspect of the University of Manchester's merger in 2004 is most significant for its development?", "answer": " The most significant aspect of the University of Manchester's merger in 2004 for its development was the unification of the strengths and resources of the University of Manchester Institute of Science and Technology (UMIST) and the Victoria University of Manchester, leading to enhanced research capabilities and academic offerings.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Manchester"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Manchester"}, {"qid": 1776, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to its inception, how has the University of Manchester's focus on cultural assets evolved?", "answer": " Since its inception, the University of Manchester's focus on cultural assets has evolved to encompass a broader range of responsibilities and initiatives, including the maintenance and public engagement of significant cultural and historical sites, reflecting a commitment to cultural education and preservation beyond its academic mission.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Manchester"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Manchester"}, {"qid": 1777, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest college in the University of London system?", "answer": " King's College London", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["King's College London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "King's College London"}, {"qid": 1778, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "Who was the first president of King's College London?", "answer": " The Duke of Wellington", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["King's College London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "King's College London"}, {"qid": 1779, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Which has more staff, King's College London or University College London?", "answer": " University College London", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["King's College London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "King's College London"}, {"qid": 1780, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between King's College London and the University of London?", "answer": " King's College London is a constituent college of the University of London.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["King's College London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "King's College London"}, {"qid": 1781, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If King's College London expanded its campus to another country, what would be the first step in this process?", "answer": " Conducting a feasibility study", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["King's College London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "King's College London"}, {"qid": 1782, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If King's College London decided to double its research staff, how might this impact its budget?", "answer": " It would significantly increase the budget to accommodate salaries and research facilities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["King's College London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "King's College London"}, {"qid": 1783, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most popular course at King's College London?", "answer": " Medicine", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["King's College London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "King's College London"}, {"qid": 1784, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does King's College London's research impact global health?", "answer": " Through groundbreaking research and development of new treatments and public health policies.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["King's College London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "King's College London"}, {"qid": 1785, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If King's College London introduced a new faculty dedicated to space exploration, what could be the primary focus of its research?", "answer": " Developing technologies for sustainable space travel and habitation.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["King's College London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "King's College London"}, {"qid": 1786, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "What year was King's College London established, making it one of the oldest institutions in England?", "answer": " 1829", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["King's College London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "King's College London"}, {"qid": 1787, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Is the student population at King's College London larger than that of London School of Economics?", "answer": " Yes", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["King's College London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "King's College London"}, {"qid": 1788, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the significance of King's College London's Strand Campus location?", "answer": " It is situated in the heart of London, close to cultural and governmental institutions, enhancing its academic and social environment.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["King's College London"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "King's College London"}, {"qid": 1789, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of Durham University compare to that of Oxford and Cambridge?", "answer": " Durham University was founded in 1832, after Oxford and Cambridge, making it the third-oldest university in England.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Durham University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Durham University"}, {"qid": 1790, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest university in England?", "answer": " Oxford University is the oldest, followed by Cambridge University, making Durham University the third-oldest.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Durham University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Durham University"}, {"qid": 1791, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does Durham University's collegiate system contribute to its academic and student welfare structure?", "answer": " The collegiate system at Durham University divides main functions between academic departments, which perform research and teaching, and the colleges, which are responsible for domestic arrangements and welfare of students.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Durham University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Durham University"}, {"qid": 1792, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Durham University were to open another college, how would the total number of colleges change?", "answer": " The total number of colleges would increase from 17 to 18.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Durham University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Durham University"}, {"qid": 1793, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to other UK universities, where does Durham University rank in terms of age?", "answer": " Durham University is the third-oldest university in England, after Oxford and Cambridge.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Durham University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Durham University"}, {"qid": 1794, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which part of Durham University was incorporated by royal charter first?", "answer": " Durham University was incorporated by royal charter in 1837.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Durham University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Durham University"}, {"qid": 1795, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the role of colleges in Durham University affect the student experience compared to universities without a collegiate system?", "answer": " In Durham University, colleges are responsible for students' domestic arrangements and welfare, potentially providing a more supportive and community-focused experience compared to universities without a collegiate system.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Durham University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Durham University"}, {"qid": 1796, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Durham University decided to focus more on research than on teaching, how might this affect the relationship between its academic departments and colleges?", "answer": " The focus shift might lead to academic departments playing an even more dominant role in the university's functions, possibly at the expense of the traditional college roles in student welfare and domestic arrangements.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Durham University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Durham University"}, {"qid": 1797, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the number of staff at Durham University compare to that of its student body?", "answer": " The question requires specific numerical data regarding staff and student numbers which is not provided in the premise.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Durham University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Durham University"}, {"qid": 1798, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most distinctive feature of Durham University compared to other UK universities?", "answer": " Its collegiate system, making it one of the few universities in the UK to combine residential college structures with academic departments.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Durham University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Durham University"}, {"qid": 1799, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What impact did the Act of Parliament in 1832 have on Durham University?", "answer": " The Act of Parliament in 1832 led to the founding of Durham University, marking its official recognition as a university.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Durham University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Durham University"}, {"qid": 1800, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Durham University were to establish a new academic department, how might this affect its collegiate structure?", "answer": " Establishing a new academic department would likely expand the university's academic offerings without necessarily affecting the collegiate structure, unless it also involved adjustments to college affiliations or responsibilities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Durham University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Durham University"}, {"qid": 1801, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of the University of Bristol compare to the royal charter year it received?", "answer": " The University of Bristol was founded earlier, with roots tracing back to 1595, compared to the royal charter year of 1909.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Bristol"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Bristol"}, {"qid": 1802, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the number of years between the founding of the Merchant Venturers' school and the establishment of University College, Bristol compare to the number of years between the establishment of University College, Bristol and the year the University of Bristol received its royal charter?", "answer": " The Merchant Venturers' school was founded in 1595, and University College, Bristol was established in 1876, which is a difference of 281 years. University College, Bristol existed from 1876 until the University of Bristol received its royal charter in 1909, a period of 33 years. Therefore, the period from the founding of the Merchant Venturers' school to the establishment of University College, Bristol is much longer.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Bristol"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Bristol"}, {"qid": 1803, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the earliest founding entity related to the University of Bristol?", "answer": " The earliest founding entity related to the University of Bristol is the Merchant Venturers' school founded in 1595.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Bristol"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Bristol"}, {"qid": 1804, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which has a longer history, the University of Bristol or its precursor, University College, Bristol?", "answer": " The University of Bristol, with its roots tracing back to the Merchant Venturers' school founded in 1595, has a longer history than University College, Bristol, which existed since 1876.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Bristol"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Bristol"}, {"qid": 1805, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between the Merchant Venturers' school and the University of Bristol?", "answer": " The Merchant Venturers' school, founded in 1595, is an early root of the University of Bristol.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Bristol"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Bristol"}, {"qid": 1806, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How did the University of Bristol evolve from its initial foundation to receiving its royal charter?", "answer": " The University of Bristol can trace its roots to the Merchant Venturers' school founded in 1595. It later evolved through the establishment of University College, Bristol in 1876, before finally receiving its royal charter in 1909.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Bristol"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Bristol"}, {"qid": 1807, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would have happened if the University of Bristol did not receive its royal charter in 1909?", "answer": " If the University of Bristol did not receive its royal charter in 1909, it might not have achieved full university status and the ability to award its own degrees at that time.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Bristol"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Bristol"}, {"qid": 1808, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the Merchant Venturers' school had not been founded in 1595, how would the history of the University of Bristol be different?", "answer": " Without the founding of the Merchant Venturers' school in 1595, the University of Bristol might not have its early roots, potentially affecting its development and historical significance.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Bristol"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Bristol"}, {"qid": 1809, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the significance of the royal charter to the University of Bristol?", "answer": " The royal charter granted in 1909 is significant to the University of Bristol as it officially established the university, allowing it to award degrees and marking its formal recognition as a higher education institution.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Bristol"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Bristol"}, {"qid": 1810, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most historic part of the University of Bristol's foundation?", "answer": " The most historic part of the University of Bristol's foundation is its roots tracing back to the Merchant Venturers' school founded in 1595.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Bristol"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Bristol"}, {"qid": 1811, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How do the founding years of the University of Bristol and its precursor entities compare?", "answer": " The founding years of the University of Bristol's precursor entities, the Merchant Venturers' school in 1595 and University College, Bristol in 1876, are much earlier than the university's official royal charter year in 1909.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Bristol"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Bristol"}, {"qid": 1812, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Bristol had been founded in a different city, how might its development have been affected?", "answer": " If the University of Bristol had been founded in a different city, its development might have been influenced by the different local economy, culture, and academic community, potentially leading to a different focus in research and education areas.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Bristol"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Bristol"}, {"qid": 1813, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What type of institution is the University of Nottingham?", "answer": " It is a public research university.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Nottingham"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Nottingham"}, {"qid": 1814, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Where is the University of Nottingham located?", "answer": " Nottingham, England.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Nottingham"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Nottingham"}, {"qid": 1815, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What was the University of Nottingham originally founded as?", "answer": " University College Nottingham.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Nottingham"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Nottingham"}, {"qid": 1816, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "In what year was the University of Nottingham granted a royal charter?", "answer": " 1948.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Nottingham"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Nottingham"}, {"qid": 1817, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "When was the University of Nottingham founded compared to other universities in England?", "answer": " It was founded in 1881.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Nottingham"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Nottingham"}, {"qid": 1818, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Is the University of Nottingham older than the University of Birmingham?", "answer": " Yes, the University of Nottingham is older.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Nottingham"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Nottingham"}, {"qid": 1819, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would happen if the University of Nottingham hadn't been granted a royal charter in 1948?", "answer": " It might not have gained full university status.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Nottingham"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Nottingham"}, {"qid": 1820, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Nottingham decided to move its location, where would it be?", "answer": " Hypothetical; no specific answer.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Nottingham"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Nottingham"}, {"qid": 1821, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What led to the University of Nottingham being granted a royal charter?", "answer": " Its development and growth since its foundation in 1881.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Nottingham"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "University of Nottingham"}, {"qid": 1822, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which part of England is the University of Nottingham located in?", "answer": " It is located in the East Midlands region of England.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Nottingham"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Nottingham"}, {"qid": 1823, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to other universities in England, how does the University of Nottingham rank in terms of research output?", "answer": " This requires specific data; generally, it is considered a leading research institution.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Nottingham"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Nottingham"}, {"qid": 1824, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Nottingham were to double its staff number, how might this affect its operations?", "answer": " It could potentially enhance research output, improve student support, and expand academic offerings.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Nottingham"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Nottingham"}, {"qid": 1825, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What year was the University of Liverpool founded?", "answer": " 1881", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Liverpool"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Liverpool"}, {"qid": 1826, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "When did the University of Liverpool gain its Royal Charter?", "answer": " 1903", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Liverpool"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Liverpool"}, {"qid": 1827, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the University of Liverpool known for being the first among the 'red brick' universities?", "answer": " The Original Red Brick", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Liverpool"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Liverpool"}, {"qid": 1828, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the University of Liverpool compare to other Russell Group universities in terms of founding year?", "answer": " It is one of the earlier members, founded in 1881.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Liverpool"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Liverpool"}, {"qid": 1829, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How is the University of Liverpool academically structured?", "answer": " It comprises three faculties organized into 35 departments and schools.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Liverpool"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Liverpool"}, {"qid": 1830, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "What notable accreditation does the University of Liverpool's management school have?", "answer": " Triple crown accredited", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Liverpool"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Liverpool"}, {"qid": 1831, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the University of Liverpool a founding member of?", "answer": " The Russell Group and the N8 Group for research collaboration", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Liverpool"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Liverpool"}, {"qid": 1832, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Liverpool was to open another faculty, how many faculties would it have in total?", "answer": " Four", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Liverpool"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Liverpool"}, {"qid": 1833, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "What sets the University of Liverpool apart from other universities in England?", "answer": " Its status as one of the six original 'red brick' civic universities and a founding member of the Russell Group.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Liverpool"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Liverpool"}, {"qid": 1834, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to when it was founded, how has the academic structure of the University of Liverpool expanded by 2023?", "answer": " It started with fewer departments and faculties and has expanded to three faculties organized into 35 departments and schools.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Liverpool"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Liverpool"}, {"qid": 1835, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Where is the University of Liverpool located?", "answer": " Liverpool, England", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Liverpool"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Liverpool"}, {"qid": 1836, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is a unique feature of the University of Liverpool's campus architecture?", "answer": " It is known to be one of the six original 'red brick' civic universities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Liverpool"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Liverpool"}, {"qid": 1837, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What was the original name of the University of Leeds when it was established in 1874?", "answer": " Yorkshire College of Science", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Leeds"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Leeds"}, {"qid": 1838, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "When did the University of Leeds receive its royal charter making it an independent entity?", "answer": " 1904", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Leeds"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Leeds"}, {"qid": 1839, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of the University of Leeds compare to the founding year of the Leeds School of Medicine?", "answer": " The University of Leeds was established in 1874, later than the Leeds School of Medicine which was established in 1831.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Leeds"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Leeds"}, {"qid": 1840, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the location of the University of Leeds?", "answer": " Leeds, West Yorkshire, England", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Leeds"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Leeds"}, {"qid": 1841, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "What was the name change of the Yorkshire College when it merged with the Leeds School of Medicine?", "answer": " Yorkshire College", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Leeds"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Leeds"}, {"qid": 1842, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Leeds had not merged with the Leeds School of Medicine, what might have remained its name?", "answer": " Yorkshire College of Science", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Leeds"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Leeds"}, {"qid": 1843, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the establishment of the University of Leeds in 1874 compare to the grant of its royal charter in 1904 in terms of chronological order?", "answer": " The establishment in 1874 came before the grant of its royal charter in 1904.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Leeds"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Leeds"}, {"qid": 1844, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What federal university did the University of Leeds become part of in 1887?", "answer": " Victoria University", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Leeds"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Leeds"}, {"qid": 1845, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "Who granted the royal charter to the University of Leeds?", "answer": " King Edward VII", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Leeds"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Leeds"}, {"qid": 1846, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Leeds had not become part of the federal Victoria University, how might its collaboration with Owens College and University College Liverpool be affected?", "answer": " The collaboration might have been limited or not formalized as part of a federal university structure.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Leeds"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Leeds"}, {"qid": 1847, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compare the role of King Edward VII in the history of the University of Leeds to the role of the establishment of the Yorkshire College of Science.", "answer": " King Edward VII's role was granting the royal charter in 1904, making it an independent university, while the establishment of the Yorkshire College of Science in 1874 was the foundational step for the university.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Leeds"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Leeds"}, {"qid": 1848, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What significant event occurred to the University of Leeds in 1904?", "answer": " It was granted a royal charter by King Edward VII.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Leeds"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Leeds"}, {"qid": 1849, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What was the original name of the University of Sheffield before it received its royal charter in 1905?", "answer": " University College of Sheffield", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Sheffield"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Sheffield"}, {"qid": 1850, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "When did the earliest institution that would become part of the University of Sheffield, the Sheffield Medical School, start?", "answer": " 1828", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Sheffield"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Sheffield"}, {"qid": 1851, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the foundation year of the Sheffield Medical School compare to the grant year of the royal charter to the University of Sheffield?", "answer": " The Sheffield Medical School was founded earlier, in 1828, compared to the royal charter granted in 1905.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Sheffield"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Sheffield"}, {"qid": 1852, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Who granted the royal charter to the University of Sheffield in 1905?", "answer": " King Edward VII", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Sheffield"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Sheffield"}, {"qid": 1853, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which institution among Sheffield Medical School, Firth College, and Sheffield Technical School was founded first?", "answer": " Sheffield Medical School", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Sheffield"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Sheffield"}, {"qid": 1854, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Is the University of Sheffield older or newer than the University of Oxford?", "answer": " The University of Sheffield is newer than the University of Oxford.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Sheffield"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Sheffield"}, {"qid": 1855, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the Sheffield Medical School had not been founded, which institution would be the earliest foundation of the University of Sheffield?", "answer": " Firth College", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Sheffield"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Sheffield"}, {"qid": 1856, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the location of the University of Sheffield?", "answer": " Sheffield, South Yorkshire, England", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Sheffield"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Sheffield"}, {"qid": 1857, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "When was the University of Sheffield officially granted university status?", "answer": " 1905", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Sheffield"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Sheffield"}, {"qid": 1858, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to the foundation year of Firth College, was the Sheffield Technical School founded earlier or later?", "answer": " Later", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Sheffield"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Sheffield"}, {"qid": 1859, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Sheffield had not been granted a royal charter, what name might it have retained?", "answer": " University College of Sheffield", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Sheffield"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Sheffield"}, {"qid": 1860, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Who was the monarch that granted the royal charter to the University of Sheffield?", "answer": " King Edward VII", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Sheffield"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Sheffield"}, {"qid": 1861, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the staff number at Newcastle University compare to that of a typical UK university?", "answer": " Newcastle University, as a member of the Russell Group, is likely to have a significant number of staff members similar to or higher than other research-intensive UK universities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Newcastle University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Newcastle University"}, {"qid": 1862, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest campus of Newcastle University?", "answer": " The original campus in Newcastle upon Tyne is the oldest campus of Newcastle University.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Newcastle University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Newcastle University"}, {"qid": 1863, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What relationship does Newcastle University have with the Russell Group?", "answer": " Newcastle University is a member of the Russell Group, an association of research-intensive UK universities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Newcastle University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Newcastle University"}, {"qid": 1864, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Newcastle University were to open another overseas campus, which region would likely be chosen based on their current international presence?", "answer": " Based on their current presence in Singapore and Malaysia, another region in Asia could likely be chosen for a new overseas campus.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Newcastle University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Newcastle University"}, {"qid": 1865, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compare the research output of Newcastle University with that of another Russell Group university.", "answer": " Both Newcastle University and other Russell Group universities have high research output, though specifics can vary depending on the field of study.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Newcastle University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Newcastle University"}, {"qid": 1866, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which of Newcastle University's campuses is the newest?", "answer": " The campus in Malaysia is one of the newest additions to Newcastle University's international campuses.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Newcastle University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Newcastle University"}, {"qid": 1867, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does Newcastle University's membership in the Russell Group benefit its research programs?", "answer": " Membership in the Russell Group benefits Newcastle University by providing greater access to research funding, collaboration opportunities with other leading universities, and enhancing its reputation in the academic community.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Newcastle University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Newcastle University"}, {"qid": 1868, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would happen to Newcastle University's reputation if it left the Russell Group?", "answer": " If Newcastle University left the Russell Group, it might experience a decrease in its reputation as a research-intensive institution among academics and potential students.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Newcastle University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Newcastle University"}, {"qid": 1869, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the number of international campuses of Newcastle University compare to other UK universities?", "answer": " Newcastle University has a notable number of international campuses compared to many UK universities, with campuses in Singapore and Malaysia, demonstrating its strong international presence.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Newcastle University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Newcastle University"}, {"qid": 1870, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most significant research achievement of Newcastle University?", "answer": " While specific achievements can vary by field, Newcastle University is widely recognized for its contributions to medical research, among other areas.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Newcastle University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Newcastle University"}, {"qid": 1871, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the significance of Newcastle University being a red brick university?", "answer": " Being a red brick university signifies that Newcastle University is one of the older civic universities in the UK, with a long history of academic excellence and tradition.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Newcastle University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Newcastle University"}, {"qid": 1872, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Newcastle University were to significantly expand its staff number, in which department would this expansion be most beneficial?", "answer": " Expanding staff numbers in STEM (Science, Technology, Engineering, and Mathematics) departments could be most beneficial, aligning with global trends and demands in research and innovation.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Newcastle University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Newcastle University"}, {"qid": 1873, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What initiative led to the founding of the University of Warwick in 1965?", "answer": " A government initiative to expand higher education led to the founding of the University of Warwick in 1965.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Warwick"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Warwick"}, {"qid": 1874, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "What was the first school established at the University of Warwick after its founding?", "answer": " The Warwick Business School, established in 1967, was the first school established at the University of Warwick after its founding.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Warwick"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Warwick"}, {"qid": 1875, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Which was established earlier, Warwick Law School or Warwick Manufacturing Group (WMG)?", "answer": " Warwick Law School was established earlier in 1968, before Warwick Manufacturing Group (WMG) which was established in 1980.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Warwick"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Warwick"}, {"qid": 1876, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which school was the latest addition to the University of Warwick by the year 2000?", "answer": " Warwick Medical School, established in 2000, was the latest addition by that year.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Warwick"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Warwick"}, {"qid": 1877, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How did the University of Warwick expand in 1979?", "answer": " The University of Warwick expanded in 1979 by incorporating Coventry College of Education.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Warwick"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Warwick"}, {"qid": 1878, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What significant addition was made to the University of Warwick in 2004?", "answer": " Horticulture Research International was incorporated into the University of Warwick in 2004.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Warwick"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Warwick"}, {"qid": 1879, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What was the purpose behind the government initiative that led to the establishment of the University of Warwick?", "answer": " The purpose was to expand higher education.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Warwick"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "University of Warwick"}, {"qid": 1880, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which school within the University of Warwick was established closest to its founding year?", "answer": " The Warwick Business School, established in 1967, was the closest to the university's founding year.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Warwick"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "University of Warwick"}, {"qid": 1881, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Warwick were to establish a new school in 2025, what would be the gap in years since the last school establishment in 2000?", "answer": " The gap would be 25 years.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Warwick"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Warwick"}, {"qid": 1882, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "Suppose the University of Warwick decided to merge with another university in 2030, how many years after incorporating Horticulture Research International would that be?", "answer": " It would be 26 years after incorporating Horticulture Research International in 2004.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Warwick"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Warwick"}, {"qid": 1883, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Between the establishment of Warwick Law School and Warwick Medical School, which contributed earlier to the university's development?", "answer": " Warwick Law School contributed earlier to the university's development with its establishment in 1968.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Warwick"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "University of Warwick"}, {"qid": 1884, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most recent significant organizational change or addition at the University of Warwick as of 2000?", "answer": " The establishment of Warwick Medical School in 2000 is the most recent significant organizational change or addition.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Warwick"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "University of Warwick"}, {"qid": 1885, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the staff number at Queen's University Belfast compare to that of the University of Edinburgh?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen's University Belfast"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Queen's University Belfast"}, {"qid": 1886, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest university in the United Kingdom, Queen's University Belfast or the University of Oxford?", "answer": " The University of Oxford.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen's University Belfast"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Queen's University Belfast"}, {"qid": 1887, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Who was the president of Queen's University Belfast in the year it was founded?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen's University Belfast"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Queen's University Belfast"}, {"qid": 1888, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Queen's University Belfast decided to open a new campus, what could be a potential location based on its historical ties?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen's University Belfast"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Queen's University Belfast"}, {"qid": 1889, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Is the student population at Queen's University Belfast larger than that of Cardiff University?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen's University Belfast"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Queen's University Belfast"}, {"qid": 1890, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which department at Queen's University Belfast has the highest number of staff members?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen's University Belfast"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Queen's University Belfast"}, {"qid": 1891, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What year was Queen's University Belfast established, and how does it relate to its standing in global university rankings?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen's University Belfast"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Queen's University Belfast"}, {"qid": 1892, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Queen's University Belfast were to merge with another university, how would the combined staff number compare to its current count?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen's University Belfast"], "topic_level": false, "class": "sing entity", "hops": "Multi hop", "entity": "Queen's University Belfast"}, {"qid": 1893, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the research output of Queen's University Belfast compare to that of Trinity College Dublin?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen's University Belfast"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Queen's University Belfast"}, {"qid": 1894, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most popular course at Queen's University Belfast based on enrollment numbers?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen's University Belfast"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Queen's University Belfast"}, {"qid": 1895, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How has the number of staff at Queen's University Belfast changed since its founding year?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen's University Belfast"], "topic_level": false, "class": "sing entity", "hops": "Multi hop", "entity": "Queen's University Belfast"}, {"qid": 1896, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Queen's University Belfast were to establish a new research institute, what area of study might it focus on given current global challenges?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Queen's University Belfast"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Queen's University Belfast"}, {"qid": 1897, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest department at the University of York?", "answer": " The Department of Economics is one of the oldest departments established shortly after the university was founded in 1963.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of York"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of York"}, {"qid": 1898, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which president has served the longest at the University of York?", "answer": " Brian Cantor, who served as Vice-Chancellor from 2002 to 2013, is among the longest-serving leaders in the university's history.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of York"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of York"}, {"qid": 1899, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the staff number of the University of York compare to the University of Leeds?", "answer": " The University of York has a smaller staff number compared to the much larger University of Leeds.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of York"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of York"}, {"qid": 1900, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What role does the President of the University of York play in its administration?", "answer": " The President of the University of York, typically referred to as the Vice-Chancellor, is the chief executive officer responsible for the strategic direction and day-to-day management of the university.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of York"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of York"}, {"qid": 1901, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of York decided to open a new department focused on space research, how would it affect the number of departments?", "answer": " The opening of a new department focused on space research would increase the total number of departments and centres at the University of York to more than thirty-one.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of York"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of York"}, {"qid": 1902, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most popular course at the University of York based on student enrollment numbers?", "answer": " Psychology has consistently been one of the most popular courses at the University of York based on student enrollment numbers.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of York"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of York"}, {"qid": 1903, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the location of the University of York compare to Oxford University in terms of historical significance?", "answer": " While both universities are located in historic cities, Oxford is often considered more historically significant due to its longer history and worldwide reputation. The University of York, however, is notable for its modernist architecture and its integration into the medieval city of York.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of York"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of York"}, {"qid": 1904, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the University of York's founding year relate to its traditions?", "answer": " Since the University of York was established in 1963, its traditions are relatively modern compared to older universities, focusing on innovation and inclusivity.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of York"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of York"}, {"qid": 1905, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of York were to merge with another university, what would be the potential impact on staff numbers?", "answer": " If the University of York were to merge with another university, the combined staff number would significantly increase, depending on the size of the other institution.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of York"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of York"}, {"qid": 1906, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the connection between the University of York's location and its research focus?", "answer": " The University of York's location in a city with a rich historical heritage influences its strong research focus on medieval studies, archaeology, and conservation.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of York"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of York"}, {"qid": 1907, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which center at the University of York is considered the leading research center in its field?", "answer": " The Centre for Medieval Studies at the University of York is considered one of the leading research centers in medieval studies globally.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of York"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of York"}, {"qid": 1908, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would be the impact on the University of York if all its research funding were doubled?", "answer": " If all its research funding were doubled, the University of York would be able to significantly expand its research projects, hire more staff, and improve its research facilities, potentially leading to higher rankings and more academic output.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of York"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of York"}, {"qid": 1909, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What was Cardiff University known as when it was established in 1883?", "answer": " University College of South Wales and Monmouthshire", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cardiff University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Cardiff University"}, {"qid": 1910, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "When did Cardiff University become an independent university awarding its own degrees?", "answer": " 2005", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cardiff University"], "topic_level": false, "class": "sing entity", "hops": "Multi hop", "entity": "Cardiff University"}, {"qid": 1911, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest name designation of what is now known as Cardiff University?", "answer": " University College of South Wales and Monmouthshire", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cardiff University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Cardiff University"}, {"qid": 1912, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What significant change occurred to Cardiff University in 1999?", "answer": " It adopted the operating name of Cardiff University.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cardiff University"], "topic_level": false, "class": "sing entity", "hops": "Multi hop", "entity": "Cardiff University"}, {"qid": 1913, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How did Cardiff University's status change from its founding in 1883 to 2005?", "answer": " It went from a founding college of the University of Wales to an independent university awarding its own degrees.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cardiff University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Cardiff University"}, {"qid": 1914, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What merger happened in 1988 affecting Cardiff University's evolution?", "answer": " It merged with the University of Wales Institute of Science and Technology.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cardiff University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Cardiff University"}, {"qid": 1915, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "When did Cardiff University first receive degree-awarding powers?", "answer": " 1997", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cardiff University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Cardiff University"}, {"qid": 1916, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Cardiff University had not merged in 1988, what might have been its name today?", "answer": " University College, Cardiff", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cardiff University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Cardiff University"}, {"qid": 1917, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How did the name of Cardiff University change from its establishment to its last name change?", "answer": " From University College of South Wales and Monmouthshire to Cardiff University", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cardiff University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Cardiff University"}, {"qid": 1918, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What was the significance of the year 1997 for Cardiff University?", "answer": " It received degree-awarding powers.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cardiff University"], "topic_level": false, "class": "sing entity", "hops": "Multi hop", "entity": "Cardiff University"}, {"qid": 1919, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "What was the last name change that occurred for Cardiff University?", "answer": " From University of Wales, Cardiff to Cardiff University in 1999", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cardiff University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Cardiff University"}, {"qid": 1920, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Cardiff University had not adopted its current name in 1999, under what name might it have been operating today?", "answer": " University of Wales, Cardiff", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Cardiff University"], "topic_level": false, "class": "sing entity", "hops": "Multi hop", "entity": "Cardiff University"}, {"qid": 1921, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Which entity was formed by the amalgamation of St Luke's College, Exeter School of Science, Exeter School of Art, and the Camborne School of Mines?", "answer": " The University of Exeter", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Exeter"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Exeter"}, {"qid": 1922, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the abbreviation used for the University of Exeter in post-nominals, derived from Latin?", "answer": " Exon", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Exeter"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Exeter"}, {"qid": 1923, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which of its predecessor institutions was established first?", "answer": " St Luke's College in 1838", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Exeter"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "University of Exeter"}, {"qid": 1924, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "In which year did the University of Exeter receive its royal charter?", "answer": " 1955", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Exeter"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Exeter"}, {"qid": 1925, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Where is the main campus of the University of Exeter located?", "answer": " Exeter, Devon", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Exeter"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Exeter"}, {"qid": 1926, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the establishment year of the Camborne School of Mines compare to that of the Exeter School of Art?", "answer": " The Camborne School of Mines was established in 1888, whereas the Exeter School of Art was established in 1863.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Exeter"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "University of Exeter"}, {"qid": 1927, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What suffix is given to honorary and academic degrees from the University of Exeter?", "answer": " Exon", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Exeter"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Exeter"}, {"qid": 1928, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Exeter decides to open a new campus, based on historical patterns, where in England might it logically do so?", "answer": " In the West Country of England", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Exeter"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Exeter"}, {"qid": 1929, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the historical significance of the year 1955 for the University of Exeter?", "answer": " It received its royal charter.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Exeter"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Exeter"}, {"qid": 1930, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Between the Exeter School of Science and the Camborne School of Mines, which was established earlier?", "answer": " Exeter School of Science in 1855", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Exeter"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Exeter"}, {"qid": 1931, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What type of university is the University of Exeter classified as based on its research activities?", "answer": " A research university", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Exeter"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Exeter"}, {"qid": 1932, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Exeter were to merge with another institution, what type of institution would complement its historical focus on science and art?", "answer": " An institution specializing in technology or creative arts", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Exeter"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "University of Exeter"}, {"qid": 1933, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the largest city in Canada by metropolitan area?", "answer": " Toronto", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Canada"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Canada"}, {"qid": 1934, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which province in Canada has the highest population?", "answer": " Ontario", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Canada"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Canada"}, {"qid": 1935, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does Canada's population distribution relate to its geographical features?", "answer": " The vast majority of Canada's population resides in urban areas south of the 55th parallel, due to more favorable climate and geography for living and agriculture.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Canada"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Canada"}, {"qid": 1936, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What factor contributes to Canada having the world's longest coastline?", "answer": " Canada's extensive borders along three oceans (Atlantic, Pacific, and Arctic) contribute to it having the world's longest coastline.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Canada"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Canada"}, {"qid": 1937, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the size of Canada compare to that of the United States?", "answer": " Canada is larger than the United States in terms of total area, making it the second-largest country in the world.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Canada"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Canada"}, {"qid": 1938, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compare the length of Canada's coastline to that of Russia.", "answer": " Canada has the world's longest coastline, which is longer than that of Russia.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Canada"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Canada"}, {"qid": 1939, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would happen to Canada's population distribution if the climate in its northern territories became as temperate as its southern regions?", "answer": " If the northern territories of Canada became as temperate as its southern regions, it might lead to a redistribution of the population northward due to more livable conditions and opportunities for development.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Canada"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Canada"}, {"qid": 1940, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Canada were to significantly increase its immigration rate, how might this affect its largest cities?", "answer": " If Canada significantly increased its immigration rate, its largest cities like Toronto, Montreal, and Vancouver could see a substantial rise in population, potentially leading to greater urban development and challenges related to housing, infrastructure, and services.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Canada"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "Canada"}, {"qid": 1941, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the smallest province in Canada by land area?", "answer": " Prince Edward Island", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Canada"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Canada"}, {"qid": 1942, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does Canada's border with the United States impact its economic relations?", "answer": " Canada's long border with the United States facilitates extensive economic relations, including trade, tourism, and mutual investments, making the U.S. its largest trading partner.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Canada"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Canada"}, {"qid": 1943, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the population density of Canada compare to that of India?", "answer": " Canada's population density is much lower than that of India, with vast areas of Canada sparsely populated, in contrast to India's dense population distribution.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Canada"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Canada"}, {"qid": 1944, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If all of Canada's provinces and territories were to have equal population, how might this change the political landscape?", "answer": " If all of Canada's provinces and territories had equal population, it might lead to a significant shift in political power and representation in the federal government, potentially affecting policy priorities and resource allocation.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Canada"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "Canada"}, {"qid": 1945, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Which has more population, Tokyo or Kyoto?", "answer": " Tokyo", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Japan"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Japan"}, {"qid": 1946, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the largest city in Japan?", "answer": " Tokyo", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Japan"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Japan"}, {"qid": 1947, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does Japan's location affect its climate?", "answer": " Japan's location on the Pacific Ring of Fire affects its climate by making it prone to monsoons and seasonal winds, leading to a varied climate across its regions, ranging from subtropical in the south to cool temperate in the north.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Japan"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Japan"}, {"qid": 1948, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Japan did not have the Pacific Ring of Fire, how would its geological activity change?", "answer": " Without the Pacific Ring of Fire, Japan would likely experience fewer earthquakes and volcanic eruptions, potentially leading to a more stable geological environment.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Japan"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Japan"}, {"qid": 1949, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Is the population density higher in Tokyo or in the entire country of Japan?", "answer": " The population density is higher in Tokyo than in the entire country of Japan.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Japan"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Japan"}, {"qid": 1950, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most populous prefecture in Japan?", "answer": " Tokyo", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Japan"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Japan"}, {"qid": 1951, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does Japan's mountainous terrain affect its urban development?", "answer": " Japan's mountainous terrain limits the available land for urban development, concentrating population and urban areas in coastal plains, leading to high population density in cities like Tokyo.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Japan"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Japan"}, {"qid": 1952, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Japan's islands were more spread out, how would that affect its administrative regions?", "answer": " If Japan's islands were more spread out, it might lead to a reorganization of its administrative regions to accommodate the geographical spread, potentially increasing the number of prefectures or adjusting their boundaries.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Japan"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Japan"}, {"qid": 1953, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Which is longer, the coastline of Japan or the total length of Japan's borders with other countries?", "answer": " The coastline of Japan", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Japan"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Japan"}, {"qid": 1954, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the smallest prefecture in Japan?", "answer": " Kagawa", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Japan"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Japan"}, {"qid": 1955, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Why is agriculture concentrated along Japan's eastern coastal plains?", "answer": " Agriculture is concentrated along Japan's eastern coastal plains due to the limited arable land available, as the region's flatter terrain is more suitable for farming compared to the mountainous areas covering much of the country.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Japan"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Japan"}, {"qid": 1956, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Japan was located near the equator, how would its climate differ?", "answer": " If Japan was located near the equator, its climate would be much warmer and more tropical, with less seasonal variation compared to its current temperate and subtropical climate zones.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Japan"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Japan"}, {"qid": 1957, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which city is the largest in Italy?", "answer": " Rome", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Italy"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Italy"}, {"qid": 1958, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What geographical feature forms Italy's northern border?", "answer": " The Alps", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Italy"], "topic_level": false, "class": "sing entity", "hops": "Multi hop", "entity": "Italy"}, {"qid": 1959, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the population of Italy compare to that of other European Union member states?", "answer": " Italy is the third-most populous member state of the European Union.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Italy"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Italy"}, {"qid": 1960, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Vatican City decided to expand its territory, which country's land would it likely encroach upon?", "answer": " Italy", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Italy"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Italy"}, {"qid": 1961, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the southernmost island of Italy?", "answer": " Sicily", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Italy"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Italy"}, {"qid": 1962, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Which body of water does Italy extend into?", "answer": " Mediterranean Sea", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Italy"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Italy"}, {"qid": 1963, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to other European countries, where does Italy rank in terms of area size?", "answer": " Italy is the tenth-largest country in Europe.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Italy"], "topic_level": false, "class": "sing entity", "hops": "Multi hop", "entity": "Italy"}, {"qid": 1964, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Italy were to lose its islands, how would its geographical description change?", "answer": " It would no longer extend into the Mediterranean Sea with notable islands like Sicily and Sardinia.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Italy"], "topic_level": false, "class": "sing entity", "hops": "Multi hop", "entity": "Italy"}, {"qid": 1965, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the smallest enclave within Italy?", "answer": " Vatican City", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Italy"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Italy"}, {"qid": 1966, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Which cities are major urban areas in Italy besides Rome?", "answer": " Milan, Naples, Turin, Florence, and Venice", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Italy"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Italy"}, {"qid": 1967, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the size of Sardinia compare to Sicily within the context of Italian islands?", "answer": " Sicily is larger than Sardinia.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Italy"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Italy"}, {"qid": 1968, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Italy decided to merge with one of its neighboring countries, which countries could it consider based on its land borders?", "answer": " France, Switzerland, Austria, Slovenia", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Italy"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Italy"}, {"qid": 1969, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the population size of the United States compare to that of China?", "answer": " The United States has the third-largest population in the world, while China has the largest.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United States"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "United States"}, {"qid": 1970, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the largest state by area in the United States?", "answer": " Alaska is the largest state by area in the United States.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United States"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "United States"}, {"qid": 1971, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What relationship does the State of Hawaii have with the United States?", "answer": " The State of Hawaii is an archipelago in the Pacific Ocean and is one of the 50 states that constitute the United States of America.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United States"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "United States"}, {"qid": 1972, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the United States were to admit a 51st state, how would this change the total number of states?", "answer": " The total number of states in the United States would increase from 50 to 51.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United States"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "United States"}, {"qid": 1973, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the land area of the United States compare to that of Canada?", "answer": " The United States has the world's third-largest land area, while Canada has the second-largest land area.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United States"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "United States"}, {"qid": 1974, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which state in the United States has the smallest population?", "answer": " Wyoming has the smallest population of any state in the United States.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United States"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "United States"}, {"qid": 1975, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the federal capital of the United States relate to its 50 states?", "answer": " The federal capital of the United States, Washington, D.C., serves as the seat of the federal government and is not part of any of the 50 states.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United States"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "United States"}, {"qid": 1976, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Alaska was divided into two equal parts, would Texas become the largest state by area in the United States?", "answer": " No, even if Alaska was divided into two equal parts, each part would still be larger than Texas, keeping Texas from becoming the largest state by area.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United States"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "United States"}, {"qid": 1977, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the area of the United States compare to that of Russia?", "answer": " Russia has the largest land area in the world, making the United States smaller in comparison.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United States"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "United States"}, {"qid": 1978, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most populous city in the United States?", "answer": " New York City is the most populous city in the United States.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United States"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "United States"}, {"qid": 1979, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the role of the President in the United States?", "answer": " The President of the United States serves as the head of state and head of government, overseeing the executive branch of the federal government.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United States"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "United States"}, {"qid": 1980, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the United States acquired a new territory, how would this affect its exclusive economic zone?", "answer": " Acquiring a new territory would likely expand the United States' exclusive economic zone, depending on the location and extent of the maritime area surrounding the new territory.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United States"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "United States"}, {"qid": 1981, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most populous city in Germany?", "answer": " Berlin", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Germany"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Germany"}, {"qid": 1982, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which city is the main financial centre of Germany?", "answer": " Frankfurt", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Germany"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Germany"}, {"qid": 1983, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Which country borders Germany to the south and is known for the Alps?", "answer": " Austria and Switzerland", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Germany"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Germany"}, {"qid": 1984, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does Germany's population compare to other member states of the European Union?", "answer": " It is the most populous member state of the European Union.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Germany"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Germany"}, {"qid": 1985, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the largest urban area in Germany?", "answer": " The Ruhr", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Germany"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Germany"}, {"qid": 1986, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What natural features border Germany to the north and south?", "answer": " The Baltic and North Sea to the north and the Alps to the south.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Germany"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Germany"}, {"qid": 1987, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If a new European Union policy required the most populous member state to lead a population census project, which country would be responsible for initiating it?", "answer": " Germany", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Germany"], "topic_level": false, "class": "sing entity", "hops": "Multi hop", "entity": "Germany"}, {"qid": 1988, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to its neighbors, how does Germany's land area size rank within Central Europe?", "answer": " It is one of the largest countries in Central Europe by land area.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Germany"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Germany"}, {"qid": 1989, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Which countries border Germany to the east?", "answer": " Poland and Czechia", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Germany"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Germany"}, {"qid": 1990, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "Where is Germany's highest peak located?", "answer": " The Alps", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Germany"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Germany"}, {"qid": 1991, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Germany decided to increase its diplomatic relations, which of its neighboring countries to the west would it most likely engage with first?", "answer": " France", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Germany"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Germany"}, {"qid": 1992, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the size of Germany's population compare to its constituent states?", "answer": " Germany's total population is the sum of its constituent states, making it the largest population entity within its borders.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Germany"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Germany"}, {"qid": 1993, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the largest city in France?", "answer": " Paris", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["France"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "France"}, {"qid": 1994, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does France's geographical location contribute to its maritime borders?", "answer": " France's location, extending from the Rhine to the Atlantic Ocean and from the Mediterranean Sea to the English Channel and the North Sea, enables it to have maritime borders, including with the United Kingdom to the northwest.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["France"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "France"}, {"qid": 1995, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the area of metropolitan France compare to its overseas regions and territories?", "answer": " Metropolitan France has a large land area in Europe, while its overseas regions and territories include various smaller islands and territories scattered around the globe, contributing to France's extensive exclusive economic zone.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["France"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "France"}, {"qid": 1996, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If France decided to focus solely on the development of its metropolitan area, how might this impact its overseas territories?", "answer": " Focusing solely on the development of its metropolitan area could lead to neglect of its overseas territories, potentially affecting their economic development, infrastructure improvements, and the attention to their specific needs and challenges.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["France"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "France"}, {"qid": 1997, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which border of France is shared with the highest number of countries?", "answer": " France's eastern border, shared with Belgium, Luxembourg, Germany, Switzerland, Italy, and Monaco, has the highest number of adjacent countries.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["France"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "France"}, {"qid": 1998, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What role does Paris play in France's status as a country?", "answer": " Paris serves as the capital of France, acting as the country's largest city and main cultural and commercial center, thereby playing a crucial role in France's national identity and global standing.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["France"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "France"}, {"qid": 1999, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the population density of metropolitan France compare to its overseas territories?", "answer": " The population density of metropolitan France is generally higher than in its overseas territories, which can vary widely from densely populated areas to sparsely populated islands.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["France"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "France"}, {"qid": 2000, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If France were to expand its maritime border, how might this affect its relationships with neighboring countries?", "answer": " Expanding its maritime border could lead to disputes or tensions with neighboring countries over maritime rights, access to resources, and territorial sovereignty.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["France"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "France"}, {"qid": 2001, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most populous region of France?", "answer": " Île-de-France, which includes Paris, is the most populous region of France.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["France"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "France"}, {"qid": 2002, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does France's semi-presidential republic system affect its governance?", "answer": " France's semi-presidential republic system divides executive powers between a President and a Prime Minister, affecting governance by requiring cooperation between the head of state and the head of government in policy-making and administration.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["France"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "France"}, {"qid": 2003, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to other European countries, how extensive is France's exclusive economic zone?", "answer": " France has one of the largest discontiguous exclusive economic zones in the world, making it more extensive than those of most other European countries due to its overseas regions and territories.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["France"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "France"}, {"qid": 2004, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If France were to lose all its overseas territories, how would this impact its exclusive economic zone?", "answer": " Losing all its overseas territories would significantly reduce France's exclusive economic zone, affecting its global maritime reach, resource access, and strategic military positioning.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["France"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "France"}, {"qid": 2005, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the largest city in the United Kingdom?", "answer": " London", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United Kingdom"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "United Kingdom"}, {"qid": 2006, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What borders does the United Kingdom share with the Republic of Ireland?", "answer": " Northern Ireland shares a land border with the Republic of Ireland.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United Kingdom"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "United Kingdom"}, {"qid": 2007, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Which sea is not bordering the United Kingdom?", "answer": " The Mediterranean Sea", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United Kingdom"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "United Kingdom"}, {"qid": 2008, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the population of the United Kingdom's capital city?", "answer": " 14.9 million", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United Kingdom"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "United Kingdom"}, {"qid": 2009, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How is the United Kingdom geographically divided?", "answer": " The UK comprises England, Scotland, Wales, and Northern Ireland.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United Kingdom"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "United Kingdom"}, {"qid": 2010, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What might happen if the United Kingdom decided to expand its territory?", "answer": " This is speculative; outcomes would depend on various factors including international law, negotiations with other countries, and political will.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United Kingdom"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "United Kingdom"}, {"qid": 2011, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the total area of the United Kingdom?", "answer": " 94,354 square miles (244,376 km2)", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United Kingdom"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "United Kingdom"}, {"qid": 2012, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the population of the United Kingdom compare to that of its capital city?", "answer": " The population of the United Kingdom is significantly larger than that of its capital city, with the UK having an estimated population of 67,596,281 people in 2022, and London's wider metropolitan area having a population of 14.9 million.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United Kingdom"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "United Kingdom"}, {"qid": 2013, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What bodies of water surround the United Kingdom?", "answer": " The Atlantic Ocean, the North Sea, the English Channel, the Celtic Sea, and the Irish Sea.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United Kingdom"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "United Kingdom"}, {"qid": 2014, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the United Kingdom were to lose Northern Ireland, how would its geographic description change?", "answer": " The United Kingdom would no longer include Northern Ireland, altering its geographic composition and potentially its land border situation with the Republic of Ireland.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United Kingdom"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "United Kingdom"}, {"qid": 2015, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which part of the United Kingdom has its own national capital?", "answer": " Each part of the United Kingdom (England, Scotland, Wales, and Northern Ireland) has its own national capital.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United Kingdom"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "United Kingdom"}, {"qid": 2016, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the significance of London in the context of the United Kingdom?", "answer": " London is the capital and largest city of both England and the United Kingdom, and its wider metropolitan area is the largest in Western Europe.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["United Kingdom"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "United Kingdom"}, {"qid": 2017, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the largest city in Russia by area?", "answer": " Moscow", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Russia"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Russia"}, {"qid": 2018, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which city is considered Russia's cultural capital?", "answer": " Saint Petersburg", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Russia"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Russia"}, {"qid": 2019, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "How many time zones does Russia extend across, making it the country with the most time zones in the world?", "answer": " Eleven", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Russia"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Russia"}, {"qid": 2020, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Does Russia share more land borders with countries than Germany?", "answer": " Yes", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Russia"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Russia"}, {"qid": 2021, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between Moscow and Russia?", "answer": " Moscow is the capital city and the largest city of Russia.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Russia"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Russia"}, {"qid": 2022, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Russia were to gain another time zone, how many time zones would it span across?", "answer": " Twelve", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Russia"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Russia"}, {"qid": 2023, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is Russia's rank in terms of population globally?", "answer": " Ninth-most populous country", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Russia"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Russia"}, {"qid": 2024, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How is Saint Petersburg significant to Russia aside from being its second-largest city?", "answer": " It is considered Russia's cultural capital.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Russia"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Russia"}, {"qid": 2025, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Is Russia more urbanised than Canada?", "answer": " Yes, Russia is a highly urbanised country.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Russia"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Russia"}, {"qid": 2026, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Russia were to lose a time zone, how many time zones would it have?", "answer": " Ten", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Russia"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Russia"}, {"qid": 2027, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "What rank does Russia hold in terms of its area size globally?", "answer": " It is the largest country in the world by area.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Russia"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Russia"}, {"qid": 2028, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the significance of Russia's eleven time zones?", "answer": " It signifies that Russia is the largest country in the world by area, extending across the most time zones.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Russia"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Russia"}, {"qid": 2029, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between Tsinghua University and the Ministry of Education of China?", "answer": " Tsinghua University is affiliated with and funded by the Ministry of Education of China.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Tsinghua University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Tsinghua University"}, {"qid": 2030, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How is Tsinghua University associated with Project 211 and Project 985?", "answer": " Tsinghua University is part of both Project 211 and Project 985.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Tsinghua University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Tsinghua University"}, {"qid": 2031, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "What league is Tsinghua University a member of that signifies its prestigious status among Chinese universities?", "answer": " Tsinghua University is a member of the C9 League.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Tsinghua University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Tsinghua University"}, {"qid": 2032, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to other universities, how does Tsinghua University's affiliation with the Double First-Class Construction stand out?", "answer": " Tsinghua University's affiliation with the Double First-Class Construction emphasizes its commitment to excellence in education and research, making it stand out among other universities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Tsinghua University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Tsinghua University"}, {"qid": 2033, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What initiative includes Tsinghua University to enhance its research capabilities?", "answer": " Tsinghua University is included in the Double First-Class Construction initiative to enhance its research capabilities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Tsinghua University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Tsinghua University"}, {"qid": 2034, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Tsinghua University were to expand its global partnerships, how might its affiliation with the C9 League influence its selection of international partners?", "answer": " Its affiliation with the C9 League might influence Tsinghua University to select international partners that are also leading institutions in their respective countries to ensure a high standard of collaboration.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Tsinghua University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Tsinghua University"}, {"qid": 2035, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which project signifies Tsinghua University's commitment to achieving excellence in both education and research?", "answer": " The Double First-Class Construction project signifies Tsinghua University's commitment to achieving excellence in both education and research.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Tsinghua University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Tsinghua University"}, {"qid": 2036, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does Tsinghua University's location in Haidian, Beijing, compare to the locations of other top Chinese universities in terms of proximity to technological and educational resources?", "answer": " Tsinghua University's location in Haidian, Beijing, places it in close proximity to numerous technological and educational resources, making it potentially more advantageous than other top Chinese universities located further from such resources.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Tsinghua University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Tsinghua University"}, {"qid": 2037, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Tsinghua University were to lead a new research initiative under the auspices of Project 985, what areas might it focus on given its historical strengths?", "answer": " Given its historical strengths, Tsinghua University might focus on areas like engineering, computer science, and sustainability if it were to lead a new research initiative under Project 985.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Tsinghua University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Tsinghua University"}, {"qid": 2038, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the role of the C9 League in Tsinghua University's pursuit of academic excellence?", "answer": " The C9 League plays a role in enhancing Tsinghua University's pursuit of academic excellence by fostering collaboration and setting high standards among the top Chinese universities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Tsinghua University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Tsinghua University"}, {"qid": 2039, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "Among the initiatives Tsinghua University is part of, which is aimed specifically at elevating the university's global academic reputation?", "answer": " The Double First-Class Construction initiative is aimed specifically at elevating Tsinghua University's global academic reputation.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Tsinghua University"], "topic_level": false, "class": "sing entity", "hops": "Multi-hop", "entity": "Tsinghua University"}, {"qid": 2040, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does Tsinghua University's membership in the C9 League compare to its involvement in Project 211 and Project 985 in terms of impact on its research capabilities?", "answer": " Tsinghua University's membership in the C9 League, compared to its involvement in Project 211 and Project 985, likely provides a more focused impact on its research capabilities by facilitating elite collaboration and resource sharing among the top Chinese universities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Tsinghua University"], "topic_level": false, "class": "sing entity", "hops": "Multi-hop", "entity": "Tsinghua University"}, {"qid": 2041, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest university among Peking University, Tsinghua University, and Fudan University?", "answer": " Peking University", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Peking University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Peking University"}, {"qid": 2042, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Who funds Peking University?", "answer": " The Ministry of Education of China", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Peking University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Peking University"}, {"qid": 2043, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Is Peking University more focused on research or teaching?", "answer": " Research", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Peking University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Peking University"}, {"qid": 2044, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would happen if Peking University decided to relocate outside of Beijing?", "answer": " It would likely impact its historical significance and relationships with governmental bodies.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Peking University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Peking University"}, {"qid": 2045, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which university has a longer history, Peking University or Shanghai Jiao Tong University?", "answer": " Peking University", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Peking University"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "Peking University"}, {"qid": 2046, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What league is Peking University a part of?", "answer": " C9 League", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Peking University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Peking University"}, {"qid": 2047, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to other universities in the C9 League, how does Peking University's research output stand?", "answer": " It is among the top.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Peking University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Peking University"}, {"qid": 2048, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Peking University stopped receiving funding from the Ministry of Education of China, what would be the immediate impact?", "answer": " Financial difficulties and potential reduction in research activities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Peking University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Peking University"}, {"qid": 2049, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the highest-ranked university in China?", "answer": " Peking University", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Peking University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Peking University"}, {"qid": 2050, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the affiliation with the Ministry of Education of China benefit Peking University?", "answer": " It provides funding and policy support.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Peking University"], "topic_level": false, "class": "sing entity", "hops": "Multi", "entity": "Peking University"}, {"qid": 2051, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the number of staff at Peking University compare to that of Tsinghua University?", "answer": " It varies; specific numbers are needed for a precise comparison.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Peking University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Peking University"}, {"qid": 2052, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would be the effect on Peking University's international rankings if it significantly increased its research funding?", "answer": " Its international rankings would likely improve.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Peking University"], "topic_level": false, "class": "sing entity", "hops": "Single", "entity": "Peking University"}, {"qid": 2053, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the staff number at Zhejiang University compare to that of Fudan University?", "answer": " This requires current data on staff numbers from both universities for an accurate comparison.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Zhejiang University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Zhejiang University"}, {"qid": 2054, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "Who is the current president of Zhejiang University, and how does he rank in terms of tenure compared to previous presidents?", "answer": " Without real-time data, it's not possible to provide the current president's name or compare his tenure accurately.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Zhejiang University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Zhejiang University"}, {"qid": 2055, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Considering Zhejiang University's affiliation with the Ministry of Education, how does this relationship influence its participation in Project 985 and Project 211?", "answer": " The affiliation likely provides Zhejiang University with policies, funding, and resources that support its active participation in Project 985 and Project 211, enhancing its research capabilities and academic reputation.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Zhejiang University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Zhejiang University"}, {"qid": 2056, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Zhejiang University were to expand its staff by 10% next year, how would this impact its ranking among Project 985 universities?", "answer": " The impact would depend on the nature of the staff expansion (e.g., researchers, professors) and similar actions by other Project 985 universities, but it could potentially improve its research output and academic reputation, thus positively affecting its ranking.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Zhejiang University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Zhejiang University"}, {"qid": 2057, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does Zhejiang University's start year compare to that of Peking University?", "answer": " Zhejiang University was founded in 1897, while Peking University was founded in 1898, making Zhejiang University older by one year.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Zhejiang University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Zhejiang University"}, {"qid": 2058, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest building on Zhejiang University's campus?", "answer": " The specific oldest building at Zhejiang University is not mentioned, but historical buildings are part of its heritage.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Zhejiang University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Zhejiang University"}, {"qid": 2059, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does Zhejiang University's location in Hangzhou contribute to its academic environment?", "answer": " Hangzhou's rich cultural history, combined with its modern technological growth, provides a unique environment that fosters academic and research innovation at Zhejiang University.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Zhejiang University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Zhejiang University"}, {"qid": 2060, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Zhejiang University were to become an independent entity separate from the Ministry of Education, how might its Double First-Class Construction goals be affected?", "answer": " Independence might provide more autonomy in decision-making but could also affect funding and resources tied to the Ministry of Education, potentially impacting its Double First-Class Construction goals.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Zhejiang University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Zhejiang University"}, {"qid": 2061, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the international student population at Zhejiang University compare to that of Tsinghua University?", "answer": " Specific numbers are needed for a current comparison, but both universities have significant international populations due to their high rankings and participation in global academic networks.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Zhejiang University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Zhejiang University"}, {"qid": 2062, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "What research field is Zhejiang University most renowned for?", "answer": " Zhejiang University is renowned for several fields, including engineering, computer science, and biomedicine, reflecting its comprehensive research capabilities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Zhejiang University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Zhejiang University"}, {"qid": 2063, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What role does Zhejiang University play in Project 985?", "answer": " As a participant in Project 985, Zhejiang University plays a crucial role in enhancing China's research standards and global competitiveness in higher education.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Zhejiang University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Zhejiang University"}, {"qid": 2064, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Zhejiang University were to lead a new global environmental research initiative, how might this align with its Project 211 commitments?", "answer": " Leading a global environmental research initiative would align with Zhejiang University's Project 211 commitments by promoting advanced research and innovation, contributing to societal development, and enhancing its academic reputation globally.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Zhejiang University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Zhejiang University"}, {"qid": 2065, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between Fudan University and the Ministry of Education?", "answer": " Fudan University is affiliated with the Ministry of Education.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Fudan University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Fudan University"}, {"qid": 2066, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How is Fudan University funded?", "answer": " Fudan University is co-funded by the Ministry of Education and the Shanghai Municipal Government.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Fudan University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Fudan University"}, {"qid": 2067, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "Where is Fudan University located in relation to other top universities in China?", "answer": " Fudan University is located in Shanghai, making it one of the top universities in China.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Fudan University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Fudan University"}, {"qid": 2068, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the staff number at Fudan University compare to that of other public universities in Shanghai?", "answer": " Fudan University has a significant number of staff, comparable to other leading public universities in Shanghai.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Fudan University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Fudan University"}, {"qid": 2069, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Fudan University were to become independent from the Ministry of Education, how would its funding sources change?", "answer": " If Fudan University became independent, it would likely need to seek alternative funding sources, potentially increasing reliance on the Shanghai Municipal Government, tuition fees, and private funding.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Fudan University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Fudan University"}, {"qid": 2070, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would happen to Fudan University's research output if the staff number were doubled?", "answer": " Doubling the staff number at Fudan University could significantly increase its research output, possibly leading to advancements in various academic fields.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Fudan University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Fudan University"}, {"qid": 2071, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the ranking of Fudan University among universities in Shanghai?", "answer": " Fudan University is considered one of the top universities in Shanghai.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Fudan University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Fudan University"}, {"qid": 2072, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the role of the Shanghai Municipal Government in the funding of Fudan University?", "answer": " The Shanghai Municipal Government co-funds Fudan University along with the Ministry of Education.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Fudan University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Fudan University"}, {"qid": 2073, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to other universities in China, how does Fudan University's affiliation with the Ministry of Education impact its operations?", "answer": " Fudan University's affiliation with the Ministry of Education likely provides it with additional resources and support, which could positively impact its operations compared to universities without such affiliation.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Fudan University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Fudan University"}, {"qid": 2074, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Fudan University were to relocate to another city, how might its affiliation with the Shanghai Municipal Government be affected?", "answer": " Relocating to another city would likely end or significantly alter Fudan University's co-funding arrangement with the Shanghai Municipal Government.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Fudan University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Fudan University"}, {"qid": 2075, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "Among the universities affiliated with the Ministry of Education, where does Fudan University stand in terms of academic prestige?", "answer": " Fudan University is among the top prestigious universities affiliated with the Ministry of Education.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Fudan University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Fudan University"}, {"qid": 2076, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the location of Fudan University in Shanghai compare to the locations of other major universities in terms of accessibility and academic opportunities?", "answer": " Located in Shanghai, Fudan University arguably offers greater accessibility and more diverse academic opportunities than many other major universities located in less metropolitan areas.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Fudan University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Fudan University"}, {"qid": 2077, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between Nanjing University and the Ministry of Education?", "answer": " Nanjing University is affiliated and sponsored by the Ministry of Education.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Nanjing University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Nanjing University"}, {"qid": 2078, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How is Nanjing University connected to Project 211 and Project 985?", "answer": " Nanjing University is part of both Project 211 and Project 985.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Nanjing University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Nanjing University"}, {"qid": 2079, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which league is considered the most prestigious that Nanjing University is a member of?", "answer": " The C9 League.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Nanjing University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Nanjing University"}, {"qid": 2080, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Between Project 211 and Project 985, which project is Nanjing University a part of?", "answer": " Nanjing University is part of both Project 211 and Project 985.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Nanjing University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Nanjing University"}, {"qid": 2081, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What major educational initiatives is Nanjing University involved in?", "answer": " Project 211, Project 985, and the Double First-Class Construction.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Nanjing University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Nanjing University"}, {"qid": 2082, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Nanjing University was not a member of the C9 League, how would its status among Chinese universities change?", "answer": " It might be perceived as less prestigious among top Chinese universities without the C9 League membership.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Nanjing University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Nanjing University"}, {"qid": 2083, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "In what city and province is Nanjing University located?", "answer": " Nanjing, Jiangsu, China.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Nanjing University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Nanjing University"}, {"qid": 2084, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest university in Nanjing that is a member of the C9 League?", "answer": " Nanjing University.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Nanjing University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Nanjing University"}, {"qid": 2085, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the Ministry of Education stopped sponsoring Nanjing University, what immediate impact could this have on the university?", "answer": " It could potentially face financial challenges and a decrease in government support for projects and development.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Nanjing University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Nanjing University"}, {"qid": 2086, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the affiliation with the Ministry of Education differentiate Nanjing University from private universities in China?", "answer": " The affiliation provides it with governmental support and recognition, possibly influencing its funding, resources, and prestige compared to private universities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Nanjing University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Nanjing University"}, {"qid": 2087, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most significant educational project Nanjing University is a part of?", "answer": " The Double First-Class Construction is considered one of the most significant due to its aim at developing world-class education standards.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Nanjing University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Nanjing University"}, {"qid": 2088, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Nanjing University left the C9 League, what new alliance or league might it aim to join to maintain its prestigious status?", "answer": " It might aim to join another high-ranking international or domestic university alliance that focuses on research and academic excellence.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Nanjing University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Nanjing University"}, {"qid": 2089, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the staff number of Xi'an Jiaotong University compare to that of Tsinghua University?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Xi'an Jiaotong University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Xi'an Jiaotong University"}, {"qid": 2090, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest engineering university in China, Xi'an Jiaotong University or Shanghai Jiao Tong University?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Xi'an Jiaotong University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Xi'an Jiaotong University"}, {"qid": 2091, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Who is the president of Xi'an Jiaotong University, and what is their academic background?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Xi'an Jiaotong University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Xi'an Jiaotong University"}, {"qid": 2092, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Xi'an Jiaotong University decided to open a new campus in Europe, how many staff members from the original campus might be expected to transfer there?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Xi'an Jiaotong University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Xi'an Jiaotong University"}, {"qid": 2093, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of Xi'an Jiaotong University compare to that of Peking University?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Xi'an Jiaotong University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Xi'an Jiaotong University"}, {"qid": 2094, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which has a larger campus area, Xi'an Jiaotong University or Beijing Normal University?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Xi'an Jiaotong University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Xi'an Jiaotong University"}, {"qid": 2095, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the main focus of research at Xi'an Jiaotong University?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Xi'an Jiaotong University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Xi'an Jiaotong University"}, {"qid": 2096, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Xi'an Jiaotong University were to merge with another university, what might be the potential benefits in terms of academic research?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Xi'an Jiaotong University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Xi'an Jiaotong University"}, {"qid": 2097, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Is the student population of Xi'an Jiaotong University larger than that of Fudan University?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Xi'an Jiaotong University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Xi'an Jiaotong University"}, {"qid": 2098, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most renowned engineering program at Xi'an Jiaotong University?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Xi'an Jiaotong University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Xi'an Jiaotong University"}, {"qid": 2099, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does Xi'an Jiaotong University contribute to the local economy of Xi'an?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Xi'an Jiaotong University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Xi'an Jiaotong University"}, {"qid": 2100, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Xi'an Jiaotong University were to host the International Conference on Artificial Intelligence, how many researchers from around the world might attend?", "answer": " Content not available.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Xi'an Jiaotong University"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Xi'an Jiaotong University"}, {"qid": 2101, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of USTC compare to the establishment year of Peking University?", "answer": " USTC was founded in 1958, while Peking University was established earlier, in 1898.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Science and Technology of China"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Science and Technology of China"}, {"qid": 2102, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most distinguishing feature of the University of Science and Technology of China?", "answer": " The most distinguishing feature of USTC is its strong affiliation with the Chinese Academy of Sciences, making it a key university under the direct leadership of the CAS.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Science and Technology of China"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Science and Technology of China"}, {"qid": 2103, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What role does the Ministry of Education of China play in the administration of USTC?", "answer": " The Ministry of Education of China co-funds USTC, playing a significant role in its administration alongside the Chinese Academy of Sciences and the Anhui Provincial Government.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Science and Technology of China"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Science and Technology of China"}, {"qid": 2104, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If USTC were to expand its campus, which nearby institution might it collaborate with for research facilities?", "answer": " If USTC were to expand its campus, it might collaborate with the Hefei Institutes of Physical Science of the Chinese Academy of Sciences for research facilities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Science and Technology of China"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Science and Technology of China"}, {"qid": 2105, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the staff number at USTC compare to that of Tsinghua University?", "answer": " As of the last available data, USTC has a significant number of staff, but Tsinghua University typically has a larger staff due to its bigger scale and wider range of disciplines.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Science and Technology of China"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Science and Technology of China"}, {"qid": 2106, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "Among the universities affiliated with the Chinese Academy of Sciences, which has the most advanced quantum communication research?", "answer": " USTC is considered to have the most advanced quantum communication research among universities affiliated with the Chinese Academy of Sciences.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Science and Technology of China"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Science and Technology of China"}, {"qid": 2107, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the Anhui Provincial Government support USTC?", "answer": " The Anhui Provincial Government co-funds USTC, providing support in the form of financial resources and policy facilitation.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Science and Technology of China"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Science and Technology of China"}, {"qid": 2108, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If USTC was to create a new department focused on artificial intelligence, which existing department could provide foundational support?", "answer": " If USTC was to create a new department focused on artificial intelligence, the School of Computer Science and Technology could provide foundational support.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Science and Technology of China"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Science and Technology of China"}, {"qid": 2109, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to other universities in Hefei, how does USTC's emphasis on science and technology subjects stand out?", "answer": " Compared to other universities in Hefei, USTC's emphasis on science and technology subjects stands out due to its direct affiliation with the Chinese Academy of Sciences and a strong focus on research and innovation in these fields.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Science and Technology of China"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Science and Technology of China"}, {"qid": 2110, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "What makes USTC unique in terms of its founding principles compared to other universities in China?", "answer": " What makes USTC unique is its founding principle of being dedicated to the nation's prosperity and modernization, focusing intensively on cutting-edge science and technology, and nurturing innovative talents, under the direct guidance of the Chinese Academy of Sciences.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Science and Technology of China"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Science and Technology of China"}, {"qid": 2111, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "In what way does the collaboration between USTC and the Chinese Academy of Sciences benefit the students?", "answer": " The collaboration between USTC and the Chinese Academy of Sciences benefits the students by providing them with access to world-class research facilities, opportunities to work with leading scientists, and exposure to pioneering research projects.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Science and Technology of China"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Science and Technology of China"}, {"qid": 2112, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If USTC were to initiate an international research collaboration, which global university would be an ideal partner for sustainable energy research?", "answer": " If USTC were to initiate an international research collaboration, Massachusetts Institute of Technology (MIT) would be an ideal partner for sustainable energy research due to its leading position in this field.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Science and Technology of China"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Science and Technology of China"}, {"qid": 2113, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between Shanghai Jiao Tong University and the Ministry of Education of China?", "answer": " Shanghai Jiao Tong University is affiliated with the Ministry of Education of China.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Shanghai Jiao Tong University"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "Shanghai Jiao Tong University"}, {"qid": 2114, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "When was the earliest founding year among Project 211 universities including Shanghai Jiao Tong University?", "answer": " 1896", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Shanghai Jiao Tong University"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "Shanghai Jiao Tong University"}, {"qid": 2115, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does Shanghai Jiao Tong University's affiliation with the Ministry of Education compare to that of other Project 985 universities?", "answer": " Like other Project 985 universities, Shanghai Jiao Tong University is also affiliated with the Ministry of Education of China.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Shanghai Jiao Tong University"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "Shanghai Jiao Tong University"}, {"qid": 2116, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What initiatives is Shanghai Jiao Tong University a part of that aim to improve the quality of higher education in China?", "answer": " Project 211, Project 985, and the Double First-Class Construction.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Shanghai Jiao Tong University"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "Shanghai Jiao Tong University"}, {"qid": 2117, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Shanghai Jiao Tong University were to open a new faculty, under which ministry's guidelines would it likely operate?", "answer": " The Ministry of Education of China.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Shanghai Jiao Tong University"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "Shanghai Jiao Tong University"}, {"qid": 2118, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the location of the most prestigious university in Shanghai for engineering?", "answer": " Shanghai Jiao Tong University", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Shanghai Jiao Tong University"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "Shanghai Jiao Tong University"}, {"qid": 2119, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to other universities in China, how does Shanghai Jiao Tong University's participation in Project 985 distinguish it?", "answer": " Participation in Project 985 signifies Shanghai Jiao Tong University as one of China's top universities, aiming for world-class status in education and research.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Shanghai Jiao Tong University"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "Shanghai Jiao Tong University"}, {"qid": 2120, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the Double First-Class Construction initiative affect Shanghai Jiao Tong University?", "answer": " It aims to develop Shanghai Jiao Tong University into a world-class university with world-class disciplines.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Shanghai Jiao Tong University"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "Shanghai Jiao Tong University"}, {"qid": 2121, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Shanghai Jiao Tong University were to increase its staff number, what might be the impact on its educational quality?", "answer": " Potentially improves educational quality by reducing student-to-staff ratios, allowing for more personalized education and research opportunities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Shanghai Jiao Tong University"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "Shanghai Jiao Tong University"}, {"qid": 2122, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which university in Shanghai has the longest history of being affiliated with the Ministry of Education of China?", "answer": " Shanghai Jiao Tong University", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Shanghai Jiao Tong University"], "topic_level": false, "class": "sing entity", "hops": "Multi Hops", "entity": "Shanghai Jiao Tong University"}, {"qid": 2123, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the number of staff at Shanghai Jiao Tong University compare to that of other universities in the Double First-Class Construction list?", "answer": " Shanghai Jiao Tong University has a significant number of staff, which is comparable to other leading universities in the Double First-Class Construction list, indicating its large scale and comprehensive educational resources.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Shanghai Jiao Tong University"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "Shanghai Jiao Tong University"}, {"qid": 2124, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Shanghai Jiao Tong University were to lead a new research initiative, how might its affiliation with Project 211 and Project 985 provide an advantage?", "answer": " Its affiliation provides access to significant government funding, resources, and a network of top-tier universities, which could facilitate collaborative research opportunities and attract talented researchers.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Shanghai Jiao Tong University"], "topic_level": false, "class": "sing entity", "hops": "Single Hop", "entity": "Shanghai Jiao Tong University"}, {"qid": 2125, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the staff number at Harbin Institute of Technology compare to that of Tsinghua University?", "answer": " This cannot be answered directly without specific data on Tsinghua University's staff number for comparison.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harbin Institute of Technology"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Harbin Institute of Technology"}, {"qid": 2126, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest engineering university in Heilongjiang, China?", "answer": " Harbin Institute of Technology, founded in 1920.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harbin Institute of Technology"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Harbin Institute of Technology"}, {"qid": 2127, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between Harbin Institute of Technology and the Ministry of Industry and Information Technology?", "answer": " Harbin Institute of Technology is affiliated with the Ministry of Industry and Information Technology.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harbin Institute of Technology"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Harbin Institute of Technology"}, {"qid": 2128, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the Harbin Institute of Technology decided to open a new campus, what ministry would it likely coordinate with?", "answer": " The Ministry of Industry and Information Technology.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harbin Institute of Technology"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Harbin Institute of Technology"}, {"qid": 2129, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to universities in Project 211, how does Harbin Institute of Technology rank in terms of its engineering programs?", "answer": " Harbin Institute of Technology is considered one of the top universities in China for engineering, especially because it is also part of Project 985 and the Double First-Class Construction, indicating a high rank among Project 211 universities in engineering.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harbin Institute of Technology"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Harbin Institute of Technology"}, {"qid": 2130, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "What project is Harbin Institute of Technology a part of that signifies it as a top tier university in China?", "answer": " Harbin Institute of Technology is part of Project 211, Project 985, and the Double First-Class Construction.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harbin Institute of Technology"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Harbin Institute of Technology"}, {"qid": 2131, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does Harbin Institute of Technology contribute to China's industrial and technological development?", "answer": " As a university affiliated with the Ministry of Industry and Information Technology and part of key educational projects, Harbin Institute of Technology contributes through research, innovation, and training skilled engineers and technologists.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harbin Institute of Technology"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Harbin Institute of Technology"}, {"qid": 2132, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Harbin Institute of Technology expanded its research areas, what new field might it include based on current technological trends?", "answer": " It might include artificial intelligence or renewable energy technologies.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harbin Institute of Technology"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Harbin Institute of Technology"}, {"qid": 2133, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the location of Harbin Institute of Technology in Nan'gang, Harbin impact its research focus compared to universities in southern China?", "answer": " The location might influence it to focus more on cold region engineering and technologies suitable for colder climates, unlike universities in southern China.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harbin Institute of Technology"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Harbin Institute of Technology"}, {"qid": 2134, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most significant recognition that Harbin Institute of Technology has received for its engineering programs?", "answer": " Recognition as part of Project 211, Project 985, and the Double First-Class Construction.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harbin Institute of Technology"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Harbin Institute of Technology"}, {"qid": 2135, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What major technological fields does Harbin Institute of Technology specialize in?", "answer": " Science and engineering, particularly in fields that support China's industrial and technological development.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harbin Institute of Technology"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Harbin Institute of Technology"}, {"qid": 2136, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would be the impact on Harbin Institute of Technology's international collaborations if it advanced to the top 100 global universities in engineering?", "answer": " It would likely increase the number and quality of its international collaborations, attracting more global research projects and partnerships.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Harbin Institute of Technology"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Harbin Institute of Technology"}, {"qid": 2137, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of the University of Virginia compare to that of Harvard University?", "answer": " The University of Virginia was founded in 1819, which is later than Harvard University's founding year of 1636.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Virginia"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Virginia"}, {"qid": 2138, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "Who was the first president of the Board of Visitors at the University of Virginia?", "answer": " Thomas Jefferson", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Virginia"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Virginia"}, {"qid": 2139, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What role did Thomas Jefferson play in the foundation of the University of Virginia?", "answer": " Thomas Jefferson was the founder of the University of Virginia, designed its original courses of study and architecture, and served as the first rector.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Virginia"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Virginia"}, {"qid": 2140, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Thomas Jefferson had not founded the University of Virginia, how might American higher education differ today?", "answer": " Without Thomas Jefferson's influence, American higher education might lack the emphasis on architecture and the comprehensive curriculum he designed, possibly affecting the development of other universities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Virginia"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Virginia"}, {"qid": 2141, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the size of the University of Virginia's campus compare to that of the University of California, Berkeley?", "answer": " The University of Virginia's central campus is 1,135 acres, which is smaller than the University of California, Berkeley's campus of approximately 1,232 acres.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Virginia"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Virginia"}, {"qid": 2142, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest professional school within the University of Virginia?", "answer": " The School of Law, founded in 1819 alongside the university itself.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Virginia"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Virginia"}, {"qid": 2143, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How did James Monroe contribute to the University of Virginia's foundation?", "answer": " James Monroe was a member of the original governing Board of Visitors and was sitting president of the United States at the time of the university's foundation.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Virginia"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Virginia"}, {"qid": 2144, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Virginia had not been designated a UNESCO World Heritage Site, what impact might that have had on its global recognition?", "answer": " Without the UNESCO designation, the University of Virginia might not have received as much global recognition for its historic and architectural significance, potentially affecting its attractiveness to international students and scholars.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Virginia"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Virginia"}, {"qid": 2145, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the University of Virginia's founding compare to the signing of the U.S. Constitution in terms of historical timeline?", "answer": " The University of Virginia was founded in 1819, which is 32 years after the signing of the U.S. Constitution in 1787.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Virginia"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Virginia"}, {"qid": 2146, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which U.S. president involved in the University of Virginia's founding was the sitting president at the time?", "answer": " James Monroe", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Virginia"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Virginia"}, {"qid": 2147, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is unique about the University of Virginia's Academical Village from an architectural perspective?", "answer": " The Academical Village at the University of Virginia, designed by Thomas Jefferson, is unique for its integration of living and learning spaces and is a UNESCO World Heritage Site, reflecting Jefferson's revolutionary vision of an academic community.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Virginia"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Virginia"}, {"qid": 2148, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Virginia were to add a fourth professional school, in what discipline do you think it could be, considering current global trends?", "answer": " Considering current global trends, the University of Virginia could potentially add a professional school focusing on technology and innovation, such as a School of Information Technology and Computer Science.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Virginia"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Virginia"}, {"qid": 2149, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the largest university in New Zealand by enrolment as of 2024?", "answer": " The University of Auckland", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Auckland"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Auckland"}, {"qid": 2150, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "Where was The University of Auckland initially located when it was established?", "answer": " In a repurposed courthouse", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Auckland"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Auckland"}, {"qid": 2151, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the student enrolment at The University of Auckland compare to other universities in New Zealand as of 2024?", "answer": " It has the largest enrolment.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Auckland"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Auckland"}, {"qid": 2152, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which university in New Zealand has the highest number of students enrolled as of 2024?", "answer": " The University of Auckland", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Auckland"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Auckland"}, {"qid": 2153, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What was the original function of the building where The University of Auckland was first located?", "answer": " It was a courthouse.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Auckland"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Auckland"}, {"qid": 2154, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If The University of Auckland were to open another campus, what could be a potential reason given its status in 2024?", "answer": " To accommodate its growing enrolment.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Auckland"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Auckland"}, {"qid": 2155, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "As of 2024, which university has the most extensive campus network in central Auckland?", "answer": " The University of Auckland", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Auckland"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Auckland"}, {"qid": 2156, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to its founding year, how has The University of Auckland's student body size changed by 2024?", "answer": " It has significantly increased.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Auckland"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Auckland"}, {"qid": 2157, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What was the affiliation of The University of Auckland when it was established in 1883?", "answer": " It was a constituent college of the University of New Zealand.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Auckland"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Auckland"}, {"qid": 2158, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If The University of Auckland decides to expand its research facilities, which areas could potentially benefit given its status in 2024?", "answer": " Public research sectors.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Auckland"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Auckland"}, {"qid": 2159, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the location of The University of Auckland's original campus compare to its current main campuses?", "answer": " Originally in a repurposed courthouse, now across three major campuses in central Auckland.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Auckland"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Auckland"}, {"qid": 2160, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which university in New Zealand had its beginnings in a repurposed courthouse?", "answer": " The University of Auckland", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Auckland"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Auckland"}, {"qid": 2161, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest university in Shanghai?", "answer": " Shanghai Jiao Tong University", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Shanghai Jiao Tong University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Shanghai Jiao Tong University"}, {"qid": 2162, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "Who has the highest position at Shanghai Jiao Tong University?", "answer": " The President", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Shanghai Jiao Tong University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Shanghai Jiao Tong University"}, {"qid": 2163, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How is Shanghai Jiao Tong University affiliated with the Chinese government?", "answer": " It is affiliated with the Ministry of Education of China.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Shanghai Jiao Tong University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Shanghai Jiao Tong University"}, {"qid": 2164, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would happen if Shanghai Jiao Tong University left Project 985?", "answer": " It might lose some support and recognition associated with being part of a prestigious group of universities in China.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Shanghai Jiao Tong University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Shanghai Jiao Tong University"}, {"qid": 2165, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the staff number of Shanghai Jiao Tong University compare to that of Fudan University?", "answer": " This would require specific numbers for a direct comparison, which are not provided.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Shanghai Jiao Tong University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Shanghai Jiao Tong University"}, {"qid": 2166, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What projects is Shanghai Jiao Tong University a part of?", "answer": " Project 211, Project 985, and the Double First-Class Construction.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Shanghai Jiao Tong University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Shanghai Jiao Tong University"}, {"qid": 2167, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Shanghai Jiao Tong University decided to increase its staff number by 20%, how would this affect its operations?", "answer": " It could potentially improve its teaching and research capabilities but might also increase operational costs.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Shanghai Jiao Tong University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Shanghai Jiao Tong University"}, {"qid": 2168, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to other universities in China, where does Shanghai Jiao Tong University rank in terms of its founding year?", "answer": " It is one of the oldest universities in China, but a specific ranking would require a list of founding years for all Chinese universities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Shanghai Jiao Tong University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Shanghai Jiao Tong University"}, {"qid": 2169, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "What project makes Shanghai Jiao Tong University among the top-ranked in China?", "answer": " Being part of Project 985 and the Double First-Class Construction.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Shanghai Jiao Tong University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Shanghai Jiao Tong University"}, {"qid": 2170, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "In which city is Shanghai Jiao Tong University located?", "answer": " Shanghai", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Shanghai Jiao Tong University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Shanghai Jiao Tong University"}, {"qid": 2171, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What if Shanghai Jiao Tong University was not affiliated with the Ministry of Education of China?", "answer": " It might lose some governmental support and possibly some prestige or funding opportunities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Shanghai Jiao Tong University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Shanghai Jiao Tong University"}, {"qid": 2172, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does Shanghai Jiao Tong University's involvement in the Double First-Class Construction compare to its participation in Project 211?", "answer": " Both are prestigious, but the Double First-Class Construction is a more recent initiative aimed at developing world-class universities and disciplines.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Shanghai Jiao Tong University"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Shanghai Jiao Tong University"}, {"qid": 2173, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the staff number at Monterrey Institute of Technology and Higher Education compare to that of Massachusetts Institute of Technology?", "answer": " As of my last update, specific staff numbers for both institutions are not provided, making a direct comparison difficult.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Monterrey Institute of Technology and Higher Education"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Monterrey Institute of Technology and Higher Education"}, {"qid": 2174, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Which has more campuses, Monterrey Institute of Technology and Higher Education or University of California system?", "answer": " The Monterrey Institute of Technology and Higher Education has more campuses with 35 locations throughout Mexico, compared to the University of California's 10 campuses.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Monterrey Institute of Technology and Higher Education"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Monterrey Institute of Technology and Higher Education"}, {"qid": 2175, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest campus of Monterrey Institute of Technology and Higher Education?", "answer": " The oldest campus of the Monterrey Institute of Technology and Higher Education is the original Monterrey Campus, established in 1943.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Monterrey Institute of Technology and Higher Education"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Monterrey Institute of Technology and Higher Education"}, {"qid": 2176, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "Who was the first president of Monterrey Institute of Technology and Higher Education?", "answer": " The first president of the Monterrey Institute of Technology and Higher Education was Leon Ávalos y Vez.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Monterrey Institute of Technology and Higher Education"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Monterrey Institute of Technology and Higher Education"}, {"qid": 2177, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How has the growth of Monterrey Institute of Technology and Higher Education impacted the education landscape in Mexico?", "answer": " The growth of the Monterrey Institute of Technology and Higher Education, expanding to 35 campuses across Mexico, has significantly enhanced the accessibility and quality of higher education, fostering innovation, research, and contributing to the country's socio-economic development.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Monterrey Institute of Technology and Higher Education"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "Monterrey Institute of Technology and Higher Education"}, {"qid": 2178, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What role does the Monterrey Institute of Technology and Higher Education play in the global academic community?", "answer": " The Monterrey Institute of Technology and Higher Education plays a critical role in the global academic community through its dedication to high-quality research, international collaborations, and its contribution to innovation and entrepreneurship education.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Monterrey Institute of Technology and Higher Education"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Monterrey Institute of Technology and Higher Education"}, {"qid": 2179, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If Monterrey Institute of Technology and Higher Education were to open a new campus, what factors would they consider in choosing its location?", "answer": " In choosing a location for a new campus, the Monterrey Institute of Technology and Higher Education would likely consider factors such as local demand for higher education, the economic and social development needs of the area, the availability of qualified staff, and the potential for collaboration with local industries and communities.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Monterrey Institute of Technology and Higher Education"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Monterrey Institute of Technology and Higher Education"}, {"qid": 2180, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What would be the impact on the Monterrey Institute of Technology and Higher Education if it became the top-ranked university in Latin America?", "answer": " Becoming the top-ranked university in Latin America would likely increase the Monterrey Institute of Technology and Higher Education's prestige and attractiveness to both prospective students and faculty, potentially leading to increased enrollment, more research opportunities, and enhanced global partnerships.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Monterrey Institute of Technology and Higher Education"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Monterrey Institute of Technology and Higher Education"}, {"qid": 2181, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How does the Monterrey Institute of Technology and Higher Education incorporate technology in its teaching methods?", "answer": " The Monterrey Institute of Technology and Higher Education incorporates technology in its teaching methods through the use of digital platforms for learning management, online courses, interactive tools for student engagement, and by promoting research and projects that involve innovative technologies.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Monterrey Institute of Technology and Higher Education"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Monterrey Institute of Technology and Higher Education"}, {"qid": 2182, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between Monterrey Institute of Technology and Higher Education and the local industries in Monterrey?", "answer": " The relationship between the Monterrey Institute of Technology and Higher Education and local industries in Monterrey is symbiotic, with the institution providing a skilled workforce and conducting relevant research, while industries offer internships, job opportunities for graduates, and collaboration on projects.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Monterrey Institute of Technology and Higher Education"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Monterrey Institute of Technology and Higher Education"}, {"qid": 2183, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most popular program offered by Monterrey Institute of Technology and Higher Education?", "answer": " While specific enrollment numbers for each program are not provided, traditionally, programs in Engineering, Business, and Information Technology have been among the most popular and highly regarded at the Monterrey Institute of Technology and Higher Education.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Monterrey Institute of Technology and Higher Education"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Monterrey Institute of Technology and Higher Education"}, {"qid": 2184, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the Monterrey Institute of Technology and Higher Education were to partner with a major technology company for research, what could be a potential area of focus?", "answer": " A potential area of focus for a partnership between the Monterrey Institute of Technology and Higher Education and a major technology company could be in developing sustainable and innovative solutions in areas such as renewable energy, artificial intelligence, or smart cities technology.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["Monterrey Institute of Technology and Higher Education"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "Monterrey Institute of Technology and Higher Education"}, {"qid": 2185, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the relationship between the University of Hong Kong and the Hong Kong College of Medicine for Chinese?", "answer": " The University of Hong Kong was founded in 1887 as the Hong Kong College of Medicine for Chinese before it was formally established as the University of Hong Kong in 1911.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Hong Kong"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Hong Kong"}, {"qid": 2186, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest tertiary institution in Hong Kong?", "answer": " The University of Hong Kong.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Hong Kong"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Hong Kong"}, {"qid": 2187, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What is the significance of the year 1911 for the University of Hong Kong?", "answer": " The year 1911 is significant for the University of Hong Kong because it was formally established as the University of Hong Kong in that year.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Hong Kong"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Hong Kong"}, {"qid": 2188, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How is the London Missionary Society related to the University of Hong Kong?", "answer": " The London Missionary Society founded the Hong Kong College of Medicine for Chinese in 1887, which later became the University of Hong Kong.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Hong Kong"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Hong Kong"}, {"qid": 2189, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What transition did the Hong Kong College of Medicine for Chinese undergo to become the University of Hong Kong?", "answer": " The Hong Kong College of Medicine for Chinese, founded in 1887, was formally established as the University of Hong Kong in 1911.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Hong Kong"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Hong Kong"}, {"qid": 2190, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the founding year of the University of Hong Kong compare to that of other tertiary institutions in Hong Kong?", "answer": " The University of Hong Kong, founded in 1887, is the oldest tertiary institution in Hong Kong.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Hong Kong"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Hong Kong"}, {"qid": 2191, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "Where is the oldest public research university located in Hong Kong?", "answer": " The University of Hong Kong, located in Pok Fu Lam, Hong Kong Island.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Hong Kong"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Hong Kong"}, {"qid": 2192, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the London Missionary Society had not founded the Hong Kong College of Medicine for Chinese in 1887, how might the history of tertiary education in Hong Kong be different?", "answer": " Without the founding of the Hong Kong College of Medicine for Chinese by the London Missionary Society in 1887, the University of Hong Kong might not have been established, potentially altering the development and history of tertiary education in Hong Kong.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Hong Kong"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Hong Kong"}, {"qid": 2193, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What led to the establishment of the University of Hong Kong in its current form?", "answer": " The establishment of the University of Hong Kong in its current form was led by the formal establishment of the institution in 1911, evolving from the Hong Kong College of Medicine for Chinese founded in 1887.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Hong Kong"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Hong Kong"}, {"qid": 2194, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "Which institution holds the title of the oldest university in Hong Kong?", "answer": " The University of Hong Kong holds the title of the oldest university in Hong Kong.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Hong Kong"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Hong Kong"}, {"qid": 2195, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "In what way did the University of Hong Kong's founding principles as a medical college influence its evolution into a comprehensive university?", "answer": " The University of Hong Kong's founding as the Hong Kong College of Medicine for Chinese established a foundation in medical education, which likely influenced its evolution into a comprehensive university by emphasizing research and academic excellence in a wide range of disciplines.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Hong Kong"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Hong Kong"}, {"qid": 2196, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What might the impact on Hong Kong's medical education be if the University of Hong Kong had remained solely a medical college?", "answer": " If the University of Hong Kong had remained solely a medical college, it might have limited the breadth of higher education offerings in Hong Kong, potentially impacting the development of a comprehensive educational ecosystem and reducing opportunities for interdisciplinary research and learning in other fields.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Hong Kong"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Hong Kong"}, {"qid": 2197, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What led to the University of Connecticut being named as it is today?", "answer": " It took its current name in 1939 after being founded as the Storrs Agricultural School and then becoming a public land grant college.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Connecticut"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Connecticut"}, {"qid": 2198, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "When was the University of Connecticut established compared to other public universities in the United States?", "answer": " The University of Connecticut was established in 1881, making it one of the older public universities in the United States.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Connecticut"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Connecticut"}, {"qid": 2199, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the staff number at the University of Connecticut compare to that of similar public land-grant research universities?", "answer": " The staff number at the University of Connecticut would need to be compared to specific figures from similar institutions to determine its ranking, but it is one of the significant employers in the region due to its size and scope.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Connecticut"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Connecticut"}, {"qid": 2200, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What role did the benefactors play in the founding of the University of Connecticut?", "answer": " The benefactors, for whom the original Storrs Agricultural School was named, played a crucial role by providing the initial funding and land required for establishing the school.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Connecticut"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Connecticut"}, {"qid": 2201, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the oldest program at the University of Connecticut?", "answer": " The agricultural program, which dates back to the university's founding as the Storrs Agricultural School in 1881, is the oldest.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Connecticut"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Connecticut"}, {"qid": 2202, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "How did the establishment of UConn Health in the 1960s impact the University of Connecticut?", "answer": " The establishment of UConn Health for new medical and dental schools in the 1960s marked a significant expansion of the university's offerings and its evolution into a comprehensive research institution.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Connecticut"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Connecticut"}, {"qid": 2203, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "What might have happened if the University of Connecticut had not transitioned from an agricultural school to a public land grant college?", "answer": " If the University of Connecticut had not transitioned, it might have remained a smaller, specialized institution instead of becoming a comprehensive public land-grant research university.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Connecticut"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Connecticut"}, {"qid": 2204, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "How does the location of the University of Connecticut's main campus influence its research and academic programs compared to urban-based universities?", "answer": " The rural setting of the University of Connecticut's main campus in Storrs-Mansfield allows for a focus on agricultural, environmental, and natural resource management programs, which might be more limited in an urban setting.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Connecticut"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Connecticut"}, {"qid": 2205, "topic": "Universitas 21", "type": "Superlative", "category": "Comparative Reasoning", "question": "What is the most recently established school within the University of Connecticut?", "answer": " The most recently established school would be specific to the time and context, but as of the historical overview, the medical and dental schools established in the 1960s are among the newer developments.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Connecticut"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Connecticut"}, {"qid": 2206, "topic": "Universitas 21", "type": "Descriptive Relationship", "category": "Relational Reasoning", "question": "What accreditation does the University of Connecticut hold and why is it significant?", "answer": " The University of Connecticut is accredited by the New England Commission of Higher Education, which is significant as it ensures the institution meets high standards of education, enabling it to award degrees.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Connecticut"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Connecticut"}, {"qid": 2207, "topic": "Universitas 21", "type": "Hypothetical Scenarios", "category": "Relational Reasoning", "question": "If the University of Connecticut had not been named after the town of Storrs, what might have been an alternative name reflecting its history?", "answer": " An alternative name might have reflected its agricultural roots, possibly something like \"Connecticut State Agricultural University.\"", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Connecticut"], "topic_level": false, "class": "sing entity", "hops": "Single hop", "entity": "University of Connecticut"}, {"qid": 2208, "topic": "Universitas 21", "type": "Intercomparison", "category": "Comparative Reasoning", "question": "Compared to its founding, how has the University of Connecticut's role in higher education evolved over time?", "answer": " Since its founding, the University of Connecticut has evolved from a small agricultural school to a comprehensive public land-grant research university with a wide array of undergraduate, graduate, and professional programs.", "edge": "member of", "properties": "name, start year, president, location, staff number", "supporting_titles": ["University of Connecticut"], "topic_level": false, "class": "sing entity", "hops": "Multi hops", "entity": "University of Connecticut"}]