/* Functions for the course webpage thing. */

  /* Process a click on course name s*/
  function processClick(s) {
	  triple= trim(document.theform.triple.value)
	  quad= trim(document.theform.quad.value)
	  if (triple == "" && quad == "") {
		  document.location= s + "courses.html";
		  return
	  }
	  /* Looking for a course name s */
	  coursename= s.replace("-", " ");
	  if (s == "SandTS") {
	    coursename= "S&TS";
	  }
	  k= getFirst(coursename);
	  if (k == b.length) {
		  document.theform.title.value= "course name not found: " + coursename;
		  return
	  }
      if (triple != "") {
		  getQuad(coursename, triple, k);
	  } else {
		  getTriple(coursename, quad, k);
	  }
      
  }
  
  
/* = the index of the first entry in b with name s (length of b if not in) */
  function getFirst(s) {
	  for (k= 0; k != b.length; k= k+1) {
		  el= b[k];
		  c= el.charAt(0);
		  i= el.indexOf(",");
		  
		  if ((c < '0'  ||  '9' <  c)  &&
			   0 < i &&
			   el.substring(0, i) == s) {
			 return k;  
		  }
	  }
	  return b.length;
	  
  }

  
  /** Find the first entry for course-name s and 3-digit number triple and put the
      corresponding 4-digit number in document.theform.quad.value and its title in
	  document.theform.title.value. If not there, put message in title. b[k] is the
	  first entry for s. */
  function getQuad(s, triple, k) {
	  entry= b[k].substring(b[k].indexOf(',') + 1);
	  c= entry.charAt(0);
	  // the desired entry does not come before b[k], and entry contains b[k] without a course name
	  // and c is the first character of entry
	  while (k < b.length  &&  '0' <= c  &&  c <= '9') {
		  i= entry.indexOf(",");
		  if (triple == entry.substring(0, i)) {
			  // found entry
			  entry= entry.substring(i+1);
			  i= entry.indexOf(",");
			  quad= entry.substring(0, i);
			  title= entry.substring(i+1);
			  document.theform.quad.value= quad;
			  document.theform.title.value= title;
			  return;
		  }
		  k= k+1;
		  if (k < b.length) {
			  entry= b[k];
			  c= entry.charAt(0);
		  }
		 
		  
	  }
	  document.theform.title.value= "Sorry. course " + s + " " + triple + " doesn't exist.";
	  return
  }
  
  /** Find the first entry for course-name s and 4-digit number quad and put the
      corresponding 3-digit number in document.theform.trple.value and its title in
	  document.theform.title.value. If not there, put message in title. b[k] is the
	  first entry for s. */
  function getTriple(s, quad, k) {
	  entry= b[k].substring(b[k].indexOf(',') + 1);
	  c= entry.charAt(0);
	  // the desired entry does not come before b[k], and entry contains b[k] without a course name
	  // and c is the first character of entry
	  while (k < b.length  &&  '0' <= c  &&  c <= '9') {
		  i= entry.indexOf(",");
		  triple= entry.substring(0, i);
		  entry= entry.substring(i+1);
		  i= entry.indexOf(",");
		  
		  if (quad == entry.substring(0, i)) {
			  title= entry.substring(i+1);
			  document.theform.triple.value= triple;
			  document.theform.title.value= title;
			  return;
		  }
		  k= k+1;
		  if (k <b.length) {
			  entry= b[k];
			  c= entry.charAt(0);
		  }
		 
		  
	  }
	  document.theform.title.value= "Sorry. course " + s + " " + quad + " doesn't exist.";
	  return
  }
  
  
  /* = s with beginning and end whitespace removed */
  function trim(str) {
     s = str.replace(/^(\s)*/, '');
     s = s.replace(/(\s)*$/, '');
     return s;
   }
   
   /* put stuff after this */
var b= new Array(
"AAP,111,1101,The World We Make",
"ARCH,101,1101,Design I",
"102,1102,Design II",
"103,1103,Elective Design Studio",
"104,1104,Elective Design Studio",
"110,1110,Introduction to Architecture: Design Stu",
"111,1111,Concentration in Architecture: Design St",
"130,1300,An Introduction to Architecture: Lecture",
"131,1301,An Introduction to Architecture",
"151,1501,Drawing I: Freehand Drawing",
"152,1502,Drawing II: Drawing Systems",
"181,1801,History of Architecture I",
"182,1802,History of Architecture II",
"201,2101,Design III and IV",
"202,2102,Design III and IV",
"231,2301,Architectural Analysis I",
"232,2302,Architectural Analysis II",
"253,2503,Drawing III: Digital Media in Architectu",
"261,2601,Environmental Systems I: Site Planning",
"262,2602,Building Technology, Materials, and Meth",
"263,2603,Structural Concepts",
"264,2604,Structural Elements",
"299,2809,Undergraduate Independent Study in the H",
"301,3101,Design V and VI",
"302,3102,Design V and VI",
"303,3103,Special Problems in Architectural Design",
"306,3106,Praxis: Community Design Workshop",
"313,3113,Furniture Design",
"317,3117,Contemporary Italian Culture",
"334,3304,Column, Wall, Elevation, Facade: A Study",
"337,3307,Special Investigations in the Theory of ",
"338,3308,Special Topics in the Theory of Architec",
"339,3309,Elements, Principles, and Theories in Ja",
"342,3402,Architecture as a Cultural System",
"349,3409,Undergraduate Investigations in Architec",
"361,3601,Environmental Systems II: Thermal Enviro",
"362,3602,Environmental Systems III: Building Syst",
"363,3603,Structural Systems",
"364,3604,Vertigo Structures",
"365,3605,Bridge Design",
"367,3607,Working Drawings",
"374,3704,Computer Graphics I",
"380,3800,History of Theory",
"381,3801,From Utopia to the Ghetto: Renaissance U",
"382,3802,The Cinematic City",
"383,3803,The Construction of Modern Life: The Pol",
"384,3804,The Urban Landscape of Renaissance Rome:",
"385,3805,Magnificent Utility: Architecture and th",
"386,3806,The Architecture of India and Its Interp",
"387,3807,19th Century: Tales of the City",
"388,3808,Modernism",
"389,3809,Architecture, Revolution, and Tradition",
"390,3810,American Architecture and Building I",
"391,3811,American Architecture and Building II",
"392,3812,Modern Architecture on Film",
"393,3813,The Cumulative City",
"394,3904,Toward the Millennium",
"395,3815,History of the Present: Contemporary Arc",
"396,3816,Special Topics in the History of Archite",
"397,3817,Special Topics in the History of Archite",
"398,3818,Special Topics in the History of Archite",
"399,3819,Special Topics in the History of Archite",
"401,4101,Design VII and VIII",
"402,4102,Design VII and VIII",
"431,4301,Theory of Architecture",
"432,4302,Theory of Architecture",
"435,4305,Architecture and Representation",
"441,4408,Special Topics in Architecture, Culture,",
"442,4418,Special Topics in Architecture, Culture,",
"445,4405,Architecture and the Mythic Imagination",
"447,4407,Architectural Design and the Utopian Tra",
"450,4500,Architectural Publications",
"458,4508,Special Investigations in Visual Represe",
"459,4509,Special Topics in Visual Representation ",
"461,4601,Ecological Literacy and Design",
"463,4603,Special Topics in Structures",
"464,4619,Special Topics in Environmental Systems ",
"465,4605,Special Topics in Construction",
"473,4609,Special Investigations in Structures",
"474,4618,Special Investigations in Environmental ",
"475,4604,Special Investigations in Construction",
"476,4706,Special Topics in Computer Applications",
"477,4707,Special Projects in Computer Graphics",
"478,4708,Special Projects in Computer Graphics",
"479,4709,Advanced Computer Graphics: Virtual Real",
"499,4901,Undergraduate Thesis in the History of A",
"501,5101,Design IX",
"502,5902,Design X: Thesis",
"503,5103,Design IXa",
"504,5104,Design Xa",
"510,5110,Thesis Proseminar",
"511,5111,Core Design Studio I",
"512,5112,Core Design Studio II",
"513,5113,Core Design Studio III",
"514,5114,Core Design Studio IV",
"515,5115,Core Design Studio V: Integrative Design",
"516,5116,Vertical Design Studio",
"521,5201,Professional Practice",
"522,5202,Professional Seminar",
"531,5301,Theories and Analyses of Architecture I",
"532,5302,Theories and Analyses of Architecture II",
"542,5402,Architecture, Culture, and Society",
"551,5511,Techniques in Visual Representation I: A",
"552,5512,Techniques in Visual Representation II: ",
"562,5602,Building Technology, Materials, and Meth",
"563,5603,Structural Concepts",
"564,5604,Structural Elements",
"605,6105,Special Problems in Design",
"606,6106,Praxis: Community Design Workshop",
"610,6110,Graduate Design Seminar",
"611,6111,Urban Housing Developments",
"612,6112,Urban Housing Developments",
"631,6301,Design Research",
"634,6304,Column, Wall, Elevation, Facade: A Study",
"635,6305,Theory and Criticism in Architecture",
"637,6307,Special Investigations in the Theory of ",
"638,6308,Special Topics in the Theory of Architec",
"647,6401,Architecture in Its Cultural Context I a",
"648,6402,Architecture in Its Cultural Context I a",
"649,6409,Graduate Investigations in Architecture,",
"658,6508,Special Investigations in Visual Represe",
"659,6509,Special Topics in Visual Representation ",
"661,6601,Environmental Systems II: Thermal Enviro",
"662,6602,Environmental Systems III: Building Syst",
"663,6603,Structural Systems",
"664,6604,Vertigo Structures",
"665,6605,Bridge Design",
"667,6607,Working Drawings",
"679,6709,Advanced Computer Graphics: Virtual Real",
"680,6800,Seminar in Historiography",
"682,6802,Seminar in Urban History",
"683,6803,Seminar in History of Theory",
"684,6804,Seminar in Italian Renaissance: Architec",
"686,6806,Seminar in 17th- and 18th-Century Archit",
"688,6808,Seminar in 20th-Century Architecture and",
"689,6809,Seminar in History of Cities",
"690,6810,Seminar in American Architecture, Buildi",
"692,6812,Seminar in 19th-Century Architecture, Bu",
"696,6816,Seminar in Special Topics in the History",
"697,6817,Seminar in Special Topics in the History",
"698,6818,Seminar in Special Topics in the History",
"699,6819,Seminar in Special Topics in the History",
"711,7111,Design A",
"712,7912,Design B: Topics Studio",
"761,7701,Architectural Science Laboratory",
"762,7702,Architectural Science Laboratory",
"763,7903,Thesis or Research in Architectural Scie",
"764,7904,Thesis or Research in Architectural Scie",
"799,7809,Graduate Independent Study in the Histor",
"801,8901,Thesis or Research in Architectural Desi",
"802,8902,Thesis or Research in Urban Design",
"811,8911,Proseminar in Design Research",
"812,8912,Independent Design Thesis",
"813,8913,Design C: ADR Project",
"899,8921,M.A. Essay in the History of Architectur",
"999,9901,Ph.D. Dissertation in the History of Arc",
"ART,109,1109,Internship Practicum",
"111,1101,Introductory Art Seminar",
"121,1201,Introductory Painting",
"131,1301,Introductory Intaglio",
"132,1302,Introductory Graphics",
"133,1303,Introductory Lithography",
"134,1304,Expanded Print Forms",
"141,1401,Introductory Sculpture",
"151,1501,Drawing I",
"152,1502,Drawing II",
"155,1550,Drawing Rome",
"158,1508,Conceptual Drawing",
"159,1509,Life and Still-Life Drawing",
"161,1601,Photography I",
"168,1608,Black-and-White Photography",
"169,1609,Color Photography",
"170,1700,Visual Imaging in the Electronic Age",
"171,1701,Electronic Imaging in Art",
"209,2009,Site-Specific Processes",
"214,2104,Art and the Multicultural Experience",
"221,2201,Painting II",
"231,2301,Intaglio II",
"232,2302,Advanced Screen Printing",
"233,2303,Lithography II",
"234,2304,Large-Format Digital Printing",
"241,2401,Sculpture II",
"251,2501,Drawing III",
"252,2502,Advanced Drawing Workshop",
"261,2601,Photography II",
"263,2603,Color Photography",
"264,2604,Photo Processes",
"265,2605,Studio Photography",
"271,2701,Electronic 3-D Modeling and Animation",
"272,2702,Digital Video and Sound",
"273,2703,Computer Animation",
"311,3101,Issues in Contemporary Art",
"312,3102,Modern Art in Italy",
"317,3107,History of Art in Rome: Early Christian ",
"318,3108,History of Art in Rome: Renaissance in R",
"321,3201,Painting III",
"322,3202,Painting IV",
"331,3301,Printmaking III",
"332,3302,Printmaking IV",
"341,3401,Sculpture III",
"342,3402,Sculpture IV",
"343,3403,Sculpture V",
"361,3601,Photography III",
"372,3702,Special Topics in Art Studio",
"373,3703,Advanced Projects in Time-Based Art",
"374,3704,Interactive Digital Media",
"379,3709,Independent Studio in Rome",
"391,3901,Media Arts Studio I",
"392,3902,Media Arts Studio II",
"400,4000,Rome Studio",
"419,4109,Independent Study/Supervised Readings in",
"421,4201,Pre-Thesis in Painting",
"422,4202,Thesis in Painting",
"429,4209,Independent Studio in Painting",
"431,4301,Pre-Thesis in Printmaking",
"432,4302,Thesis in Printmaking",
"439,4309,Independent Studio in Printmaking",
"441,4401,Pre-Thesis in Sculpture",
"442,4402,Thesis in Sculpture",
"449,4409,Independent Studio in Sculpture",
"459,4509,Independent Studio in Drawing",
"461,4601,Pre-Thesis in Photography",
"462,4602,Thesis in Photography",
"469,4609,Independent Studio in Photography",
"471,4701,Pre-Thesis in Electronic Imaging",
"472,4702,Thesis in Electronic Imaging",
"479,4709,Independent Studio in Electronic Imaging",
"481,4801,Pre-Thesis in Combined Media",
"482,4802,Thesis in Combined Media",
"489,4809,Independent Studio in Combined Media",
"570,5700,Theory Seminar",
"611,6101,Professional Skills for the Visual Artis",
"612,6102,Recent Practice in the Visual Arts",
"613,6103,Online Publication for the Visual Artist",
"614,6104,Contemporary Theory in the Visual Arts",
"623,6203,Contemporary Theory and Visual Culture",
"624,6204,Current Criticism in the Visual Arts",
"701,7010,Graduate Studio I and II",
"702,7020,Graduate Studio I and II",
"731,7301,Graduate Printmaking",
"732,7302,Graduate Printmaking",
"741,7401,Graduate Sculpture",
"742,7402,Graduate Sculpture",
"801,8010,Graduate Studio III and IV",
"802,8020,Graduate Studio III and IV",
"831,8301,Graduate Printmaking",
"832,8302,Graduate Printmaking",
"841,8401,Graduate Sculpture",
"842,8402,Graduate Sculpture",
"CRP,100,1100,The American City",
"101,1101,The Global City: People, Production, and",
"106,1106,URS First-Year Seminar",
"200,2000,The Promise and Pitfalls of Contemporary",
"201,2010,People, Planning, and Politics in the Ci",
"261,2610,Fieldwork in Urban Archaeology",
"293,2930,Inequality, Diversity, and Justice",
"309,3090,Community Development Seminar",
"318,3810,Politics of Community Development",
"321,3210,Introduction to Quantitative Methods for",
"327,3270,Regional Economical Impact Analysis",
"328,3280,Overview: Quantitative Methods in Policy",
"330,3300,Neighborhood Planning Workshop",
"331,3310,Social Justice and the City: Preparation",
"332,3320,Post-fieldwork Writing Seminar in Urban ",
"343,3430,Affordable Housing Policy and Programs",
"354,3540,Introduction to Environmental Planning",
"360,3600,Pre-Industrial Cities and Towns of North",
"361,3610,Seminar in American Urban History",
"363,3630,American Indians, Planners, and Public P",
"365,3650,Gender and Globalization",
"368,3860,The History of Urban Form in America",
"370,3700,The Regional Question: The Case of Italy",
"372,3720,20th-Century Italy: Politics and Society",
"376,3760,Latin American Cities",
"377,3770,The City in Brazil",
"378,3780,Recycling and Resource Management",
"380,3800,Environmental Politics",
"381,3810,Principles of Spatial Design and Aesthet",
"384,3840,Green Cities",
"386,3860,Planning for Sustainable Transportation",
"390,3900,Professional Planning Colloquium I",
"395,3850,Special Topics",
"404,4040,Urban Economics",
"408,4080,Introduction to Geographic Information S",
"412,4120,Devolution, Privatization, and the New P",
"416,4160,European City: The Public Sphere and Pub",
"417,4170,Economic Development: Firms, Industries,",
"444,4440,Resource Management and Environmental La",
"448,4480,Social Policy and Social Welfare",
"451,4510,Environmental Law",
"453,4530,Environmental Aspects of International U",
"457,4570,Community Service Fieldwork",
"459,4590,Legal Aspects of Land Use Planning",
"474,4740,Urban Transformations in the Global Sout",
"477,4770,Issues in African Development",
"490,4900,Student-Faculty Research",
"492,4920,Honors Thesis Research",
"493,4930,Honors Thesis Writing",
"494,4940,Professional Practice Seminar: New York ",
"497,4970,Independent Study",
"504,5040,Urban Economics",
"508,5080,Introduction to Geographic Information S",
"509,5090,Community Development Seminar",
"512,5120,Public and Spatial Economics for Planner",
"513,5130,Introduction to Planning Practice and Hi",
"517,5170,Economic Development: Firms, Industries,",
"518,5180,Politics of Community Development",
"519,5190,Urban Theory and Spatial Development",
"520,5200,Statistical and Mathematical Concepts fo",
"521,5210,Mathematical Foundation for Planning Ana",
"522,5220,Post-Fieldwork Writing Seminar in Urban ",
"525,5250,Introductory Methods of Planning Analysi",
"528,5280,Overview: Quantitative Methods in Policy",
"529,5290,Mathematics for Planners",
"530,5300,Neighborhood Planning Workshop",
"532,5320,Real Estate Development Process",
"533,5330,Real Estate Marketing and Management",
"537,5370,Real Estate Seminar Series",
"544,5440,Resource Management and Environmental La",
"546,5460,Introduction to Community and Environmen",
"547,5470,American Indians, Planners, and Public P",
"548,5480,Social Policy and Social Welfare",
"551,5510,Environmental Law",
"552,5520,Land-Use Planning",
"553,5530,Land-Use Regulations",
"554,5540,Introduction to Environmental Planning",
"555,5550,Urban Systems Studio",
"556,5560,Design in Real Estate Development",
"557,5570,City Planning Design Studio",
"558,5580,City and Regional Planning Workshop",
"559,5590,Legal Aspects of Land Use Planning",
"560,5600,Documentation for Preservation",
"561,5610,Historic Preservation Planning Workshop:",
"562,5620,Perspectives on Preservation",
"563,5630,Problems in Contemporary Preservation Pr",
"564,5640,Building Materials Conservation",
"565,5650,Fieldwork or Workshop in History and Pre",
"566,5660,Planning and Preservation Practice",
"567,5670,Measured Drawing",
"569,5690,Archaeology in Preservation Planning and",
"578,5780,Recycling and Resource Management",
"581,5810,Principles of Spatial Design and Aesthet",
"584,5840,Green Cities",
"585,5850,Special Topics",
"605,6050,Urban Public Finance",
"607,6070,GIS Applications Workshop",
"609,6090,Urban and Regional Theory",
"612,6120,Devolution, Privatization, and the New P",
"614,6140,Gender and International Development",
"615,6150,Current Issues and Debates on NGOs",
"619,6190,Planning Theory and Politics",
"621,6210,Quantitative Techniques for Policy Analy",
"627,6270,Regional Economical Impact Analysis",
"629,6290,Quantitative Methods and Analysis",
"632,6320,Methods of Regional Science and Planning",
"635,6350,Workshop: State Economic Development Str",
"637,6370,Regional Development Planning: An Intern",
"638,6380,Planning and the Global Knowledge Econom",
"639,6390,Regional Development Planning",
"642,6420,The Micro-Politics of Participatory Plan",
"643,6430,Affordable Housing Policy and Programs",
"649,6490,Social-Policy Planning",
"655,6550,Real Estate Project Workshop",
"656,6560,Real Estate Transactions and Deal Struct",
"657,6570,Real Estate Law",
"658,6580,Residential Development",
"659,6590,Urban Development Planning",
"661,6610,Seminar in American Urban History",
"662,6620,Historic Preservation Planning Workshop:",
"663,6630,Historic Preservation Law",
"664,6640,Economics and Financing of Neighborhood ",
"665,6650,Preservation Planning and Urban Change",
"666,6660,Pre-Industrial Cities and Towns of North",
"668,6680,The History of Urban Form in America",
"669,6690,History and Preservation",
"670,6700,Regional Planning and Development in Dev",
"671,6710,Seminar in International Planning",
"672,6720,International Institutions",
"674,6740,Urban Transformations in the Global Sout",
"675,6750,Workshop on Project Planning in Developi",
"676,6760,Latin American Cities",
"677,6770,Issues in African Development",
"678,6780,Concrete Manifestations: Infrastructure ",
"679,6790,Planning and Developing Regions",
"683,6830,Environmental Aspects of International U",
"686,6860,Planning for Sustainable Transportation",
"687,6870,The City in Brazil",
"689,5850,Sustainable Panama: An Interdisciplinary",
"689,6890,Environmental Planning",
"699,6990,Regional Science",
"719,7190,Planning Theory and Politics",
"790,7850,Professional Planning Colloquium I",
"791,8910,Master's Thesis in Regional Science",
"792,8920,Master's Thesis, Project, or Research Pa",
"794,7940,Planning Internships",
"795,8950,Master's Thesis in Preservation Planning",
"796,7960,Professional Writing and Publishing",
"797,7970,Graduate Independent Study",
"800,8000,Advanced Seminar in Urban and Regional T",
"801,8010,Advanced Seminar in Urban and Regional T",
"810,8100,Advanced Planning Theory",
"830,8300,Seminar in Regional Science, Planning, a",
"890,8900,Planning Research Seminar I",
"892,9920,Doctoral Dissertation",
"LA,141,1410,Grounding in Landscape Architecture",
"142,1420,Grounding in Landscape Architecture",
"201,2010,Medium of the Landscape",
"202,2020,Medium of the Landscape",
"215,2150,Writing Seminar: Engaging Places",
"252,2520,Daily Life and Cultural Landscapes",
"261,2610,Fieldwork in Urban Archaeology",
"262,2620,Laboratory in Landscape Archaeology",
"263,2630,American Indians, Planners, and Public P",
"263,2630,American Indians, Planners, and Public P",
"266,2660,Jerusalem through the Ages",
"282,2820,Photography and the American Landscape",
"301,3010,Integrating Theory and Practice I",
"315,3150,Site Engineering I",
"316,3160,Site Engineering II",
"318,3180,Site Construction",
"360,3600,Pre-Industrial Cities and Towns of North",
"401,4010,Urban Design Studio",
"402,4020,Integrating Theory and Practice II",
"403,4030,Directed Study: The Concentration",
"410,4100,Computer Applications in Landscape Archi",
"412,4120,Professional Practice",
"418,4180,Audio Documentary: Stories from the Land",
"483,4830,Seminar in Landscape Studies",
"486,4860,Placemaking by Design",
"491,4810,Creating the Urban Eden: Woody Plant Sel",
"491,4910,Creating the Urban Eden: Woody Plant Sel",
"492,4920,Creating the Urban Eden: Woody Plant Sel",
"494,4940,Special Topics in Landscape Architecture",
"495,4950,Green Cities: The Future of Urban Ecolog",
"497,4970,Individual Study in Landscape Architectu",
"498,4980,Undergraduate Teaching",
"499,4990,Undergraduate Research",
"501,5010,Composition and Theory",
"502,5020,Composition and Theory",
"505,5050,Landscape Representation I",
"506,5060,Graphic Communication II",
"524,5240,History of European Landscape Architectu",
"525,5250,History of American Landscape Architectu",
"545,5450,The Parks and Fora of Imperial Rome",
"547,5470,American Indians, Planners, and Public P",
"569,5690,Archaeology in Preservation Planning and",
"580,5800,Landscape Preservation: Theory and Pract",
"582,5820,Photography and the American Landscape",
"590,5900,Theory Seminar",
"598,5980,Graduate Teaching",
"601,6010,Integrating Theory and Practice I",
"602,6020,Integrating Theory and Practice II",
"603,6030,Directed Study: The Concentration",
"615,6150,Site Engineering I",
"616,6160,Site Engineering II",
"618,6180,Site Construction",
"666,6660,Pre-Industrial Cities and Towns of North",
"680,6800,Graduate Seminar in Landscape Architectu",
"694,6940,Special Topics in Landscape Architecture",
"701,7010,Urban Design and Planning: Designing Cit",
"702,7020,Advanced Design Studio",
"800,8900,Master's Thesis in Landscape Architectur",
"LANAR,497,4970,Individual Study in Landscape Architectu",
"524,5240,History of European Landscape Architectu",
"525,5250,History of American Landscape Architectu",
"AAS,110,1100,Introduction to Asian American Studies",
"213,2130,Introduction to Asian American History",
"262,2620,Asian American Literature",
"303,3030,Asians in the Americas: A Comparative Pe",
"347,3470,Asian American Women's History",
"380,3801,Asian American Urban Experience",
"390,3901,Asian American Politics and Public Polic",
"395,3950,Race, Space, and Place",
"413,4130,Race, Technology, and Visuality",
"414,4140,Popular Culture in Asian America",
"424,4240,Asian American Communities",
"453,4530,20th-Century American Women Writers of C",
"479,4790,Ethnicity and Identity Politics: An Anth",
"495,4950,Independent Study",
"497,4970,Jim Crow and Exclusion-Era America",
"AMST,101,1101,Introduction to American Studies",
"103,1530,Introduction to American History",
"104,1531,Introduction to American History",
"105,1311,Popular Music in America: 1850 to 1985",
"109,1109,Introduction to American Studies: New Ap",
"110,1110,Introduction to American Studies: New Ap",
"124,1240,Democracy and Its Discontents: Political",
"202,2020,Popular Culture in the United States, 19",
"203,2033,Wilderness in North American History and",
"204,2022,Court, Crime, and Constitution",
"205,2211,Seminar: The Blues and American Culture",
"206,2030,Introduction to American Literature",
"207,2040,Introduction to American Literature",
"209,2090,Seminar in Early America",
"210,2100,Culture and Politics in America After 19",
"212,2120,African American Women: 20th Century",
"213,2640,Introduction to Asian American History",
"215,2150,Comparative American Literature",
"217,2171,Classical Studies in American Cultural C",
"218,2200,Travel in American History and Culture",
"219,2060,The Great American Cornell Novel",
"221,2721,Anthropological Representation: Ethnogra",
"222,1313,A Survey of Jazz",
"223,1312,History of Rock Music",
"227,2091,The Immigrant Imagination",
"229,2290,Jefferson and Lincoln",
"230,2760,Survey of American Film",
"231,2300,Latino Communities",
"235,2350,Archaeology of North American Indians",
"236,2360,Native People of the Northeast, Pre-Cont",
"238,2390,Seminar in Iroquois History",
"242,2420,Religion and Politics in American Histor",
"250,2501,Race and Popular Culture",
"251,2110,Black Religious Traditions from Slavery ",
"252,2510,20th-Century Women Writers",
"253,2520,Late 20th-Century Women Writers and Visu",
"259,2599,Latinos in the United States: Colonial P",
"260,2600,Introduction to American Indian Literatu",
"261,2610,Latinos in the United States: 1898 to th",
"262,2620,Asian American Literature",
"266,2660,Introduction to Native American History",
"268,2680,The Culture of the 1960s",
"272,2720,The Atlantic World from Conquest to Revo",
"273,2730,Women in American Society, Past and Pres",
"282,2820,Photography and the American Landscape",
"292,2980,Inventing an Information Society",
"302,3021,Social Movement in American Politics",
"303,3030,African American Women in Slavery and Fr",
"305,3050,American Abroad",
"306,3060,History of American Workers: 1960 to 199",
"308,3003,Working-Class America in Mass Media and ",
"309,3090,The Cinema and the American City",
"311,3111,Urban Politics",
"312,3140,History of American Foreign Policy 1912 ",
"313,3191,Racial and Ethnic Politics",
"315,3141,Prisons",
"316,3161,The American Presidency",
"317,3180,American Constitutional Development",
"318,3130,U.S. Foreign Relations, 17501912",
"319,3181,The U.S. Congress",
"321,3210,Colonial North America to 1763",
"322,3250,Age of the American Revolution, 1763 to ",
"324,3240,Varieties of American Dissent, 1880 to 1",
"325,3231,Race and Politics in 20th-Century Americ",
"326,3031,Imagining America: Race and National Fan",
"331,3310,Causes of the American Civil War, 1815 t",
"335,3370,Contemporary American Theatre",
"338,3440,American Film Melodrama",
"340,3400,Recent American History, 1925 to 1960",
"341,3410,Recent American History, 1960 to Present",
"343,3430,American Civil War and Reconstruction, 1",
"345,3450,Cultural and Intellectual Life of 19th-C",
"346,3460,Modernization of the American Mind",
"348,3480,Film Noir",
"349,3510,Environmental History: The United States",
"351,3470,Asian American Women's History",
"353,3453,Anthropology of Colonialism",
"355,3605,U.S. Art from FDR to Reagan",
"356,3570,Engineering in American Culture",
"357,3550,Latinos, Law, and Identity",
"359,3600,Another World Is Possible: The American ",
"360,3740,Painting in 19th-Century America",
"361,3610,Studies in the Formation of U.S. Literat",
"362,3655,Politics and Literature",
"363,3630,Studies in U.S. Literature Before 1950: ",
"364,3640,Studies in U.S. Literature after 1850",
"365,3650,American Literature Since 1945",
"366,3660,Studies in U.S. Fiction before 1900: The",
"367,3670,Studies in U.S. Fiction after 1900: 20th",
"373,3620,Studies in U.S. Literature After 1950",
"374,3681,Slavery in 20th-Century American Film an",
"375,3750,Comparative Race and Ethnicity",
"376,3665,American Political Thought from Madison ",
"377,3777,The United States",
"378,3708,Topics in U.S. Women's History",
"380,3800,Asian American Urban Experience",
"389,3911,Science in the American Polity, 1960 to ",
"390,3810,American Architecture and Building I",
"391,3811,American Architecture and Building II",
"393,3930,International Film of the 1970s",
"395,3970,Policing and Prisons in American Culture",
"396,3981,Latino/a Popular Cultural Practices",
"397,3818,Special Topics in the History of Archite",
"403,4030,Senior Seminar in Poetry: Studies in Ame",
"404,4041,American Political Development in the 20",
"405,4050,U.S.Cuba Relations",
"406,4061,The Politics of Slow-Moving Crises",
"408,4508,Exhibiting Cultures",
"409,4509,Black Arts Movement",
"412,4113,Race, Technology, and Visuality",
"415,4142,Causes and Consequences of U.S. Foreign ",
"419,4190,Seminar in American Social History",
"420,4200,Asian American Communities",
"421,4120,Undergraduate Seminar in American Cultur",
"422,4201,War at Home",
"424,4241,Contemporary American Politics",
"425,4231,The 1960s: Conceptualizing the Future fr",
"426,4260,The West and Beyond: Frontiers and Borde",
"427,4261,Sex, Rugs, Salt, and Coal",
"428,4281,Government and Public Policy: An Introdu",
"439,4039,Reconstruction and the New South",
"444,4440,American Men",
"451,4510,Multiculturalism and Education",
"458,4585,American Political Thought",
"459,4635,Feminist Theory/Law and Society",
"460,4625,Sexuality and the Law",
"461,4616,Interpreting Race and Racism: DuBois",
"466,4660,Iroquois History",
"467,4670,Black Manhattan: 19191940",
"468,4780,Intersections in Lesbian Fiction",
"469,4690,The Paranoid Style in Contemporary Ameri",
"472,4272,Historical Archaeology",
"473,4731,Approaches to America: Age of Civil Righ",
"475,4750,Seminar in Cinema I",
"477,4600,Melville",
"480,4809,Politics of '70s Film",
"482,4821,Religious and Secular in American Cultur",
"485,4850,Immigration: History, Theory, and Practi",
"493,4993,Honors Essay Tutorial",
"494,4994,Honors Essay Tutorial",
"497,4970,Jim Crow and Exclusion Era America",
"499,4900,New World Encounters, 1500 to 1800",
"500,4997,Research Seminar in American Studies",
"501,4998,Politics and Policy: Theory, Research, a",
"605,6050,U.S.Cuba Relations",
"609,6509,Black Arts Movement",
"610,6101,African-American Historiography",
"612,6121,American Political Development in the 20",
"614,6142,Causes and Consequences of U.S. Foreign ",
"616,6161,Politics of Slow-Moving Crises",
"620,6202,Political Culture",
"624,6291,Contemporary American Politics",
"628,6281,Government and Public Policy: An Introdu",
"630,6301,Institutions",
"642,6424,Ethnoracial Identity in Anthropology, La",
"655,6550,Early Modern Atlantic World",
"660,6625,Sexuality and the Law",
"664,6645,Democratic Theory",
"665,6650,Race, Gender, and Crossing Water in 19th",
"672,6272,Historical Archaeology",
"679,6790,Asian American Urban Experience",
"697,6970,Jim Crow and Exclusion Era America",
"ANTHR,100,1200,Ancient Peoples and Places",
"101,1300,Human Evolution: Genes, Behavior, and th",
"102,1400,The Comparison of Cultures",
"103,1401,The Scope of Anthropology",
"200,1420,Cultural Diversity and Contemporary Issu",
"203,2200,Early People: The Archaeological and Fos",
"208,3308,Anthropology of Human Mating",
"210,2410,South Asian Diaspora",
"211,2411,Sophomore Seminar: Nature and Culture",
"215,2215,Stone Age Art",
"221,2721,Anthropological Representation: Ethnogra",
"228,2428,Slavery and Human Trafficking",
"230,2730,Cultures of Native North America",
"232,2432,Media, Culture, and Society",
"235,2235,Archaeology of North American Indians",
"242,2201,Early Agriculture",
"246,2546,South Asian Religions in Practice",
"250,2450,The Anthropology of Food and Cuisine",
"260,2560,Japanese Society Through Film",
"268,2468,Medicine, Culture, and Society",
"275,2750,Human Biology and Evolution",
"303,3703,Asians in the Americas: A Comparative Pe",
"305,3305,Anthropology of Parenting",
"306,3406,Gifts and Exchange",
"310,3410,Nationalism and Revivalism",
"314,3514,Learning in Japan",
"316,3516,Power, Society, and Culture in Southeast",
"317,3217,Stone Age Archaeology",
"320,3420,Myth, Ritual, and Symbol",
"321,3421,Sex and Gender in Cross-Cultural Perspec",
"321,3421,Sex and Gender in Cross-Cultural Perspec",
"323,3423,Kinship and Social Organization",
"325,3425,Anthropology of the University",
"327,3427,Anthropology and the Environment",
"328,3428,Conflict, Dispute Resolution, and Law in",
"330,3230,Humans and Animals",
"332,3232,Politics of the Past",
"335,3535,The Situation of China's Minorities: Ant",
"337,3537,Gender, Identity, and Exchange in Melane",
"339,3545,Peoples and Cultures of the Himalayas",
"344,3554,Male and Female in Chinese Culture and S",
"346,3546,Asian Minorities",
"347,3447,Sport",
"348,3248,Iroquois Archaeology",
"351,3451,Global Movements of Cultural Heritage",
"353,3453,Anthropology of Colonialism",
"354,3754,Amazonia and Personhood",
"355,3255,Ancient Mexico and Central America",
"356,3256,Archaeology of the Andes",
"361,3461,Anthropology of Organizations",
"362,3462,Democratizing Research: Participation, A",
"363,3463,Socialism",
"366,3466,Introduction to Anthropological Theory",
"368,3468,Marx: An Overview of His Thought",
"369,3269,Gender and Age in Archaeology",
"370,3270,Environmental Archaeology",
"372,3272,Hunters and Gatherers",
"375,3375,Evolutionary Theory and Human Behavior",
"377,3777,The United States",
"379,3479,Culture, Language, and Thought",
"382,3482,Human Rights, Cultural Rights, and Econo",
"384,3684,Africa in the Global Economy",
"388,3488,Masks of Power and Strategies of Resista",
"390,3390,Primate Behavior and Ecology",
"403,4403,Ethnographic Field Methods",
"406,4406,The Culture of Lives",
"413,4513,Religion and Politics in Southeast Asia",
"420,4420,Development of Anthropological Thought",
"423,4523,Making History on the Margins: The China",
"426,4426,Ideology and Social Production",
"429,4429,Anthropology and Psychoanalysis",
"436,4436,Tourist Encounters, Tourist Spaces",
"437,4437,Anthropology of Development",
"439,4439,Sovereignty and Biopolitics",
"440,4440,Ethnographic Approaches to Studying Prof",
"442,4542,Violence, Symbolic Violence, Terror, and",
"444,4444,God",
"450,4852,Europe",
"455,4455,Anthropology in the Real World",
"456,4256,Mesoamerican Religion, Science, and Hist",
"458,4258,Archaeological Analysis",
"460,4260,Field and Analytical Methods in Archaeol",
"462,4262,Catalhoyuk and Archaeological Practice",
"463,4263,Zooarchaeological Method",
"464,4264,Zooarchaeological Interpretation",
"467,4267,Origins of Agriculture",
"470,4270,Political Economy in Archaeology",
"472,4272,Historical Archaeology of Indigenous Peo",
"475,4475,Governmentality, Citizenship, and Indige",
"476,4476,Semiotics Beyond the Social",
"478,4478,Taboo and Pollution",
"479,4479,Ethnicity and Identity Politics: An Anth",
"480,4480,Anthropology and Globalization",
"483,4983,Honors Thesis Research",
"484,4984,Honors Thesis Write-up",
"490,4390,Topics in Biological Anthropology",
"490,4930,Topics in Biological Anthropology",
"491,4991,Honors Workshop I Write-Up",
"492,4992,Honors Workshop II",
"494,4294,Seminar in Archaeology: The Archaeology ",
"497,4910,Independent Study: Undergrad I",
"498,4920,Independent Study: Undergrad II",
"600,6000,Proseminar: Culture and Symbol",
"601,6010,Proseminar: Social Organization",
"603,6403,Ethnographic Field Methods",
"621,6421,Gender and Culture",
"624,6424,Ethnoracial Identity in Anthropology, La",
"629,6543,Chinese Ethnology",
"635,7520,Southeast Asia: Readings in Special Prob",
"641,7530,South Asia: Readings in Special Problems",
"642,6542,Violence, Symbolic Violence, Terror and ",
"644,6440,Research Design",
"648,6248,Iroquois Archaeology",
"650,6450,Social Studies of Economics and Finance",
"652,6452,Evidence: Ethnography and Historical Met",
"655,7550,East Asia: Readings in Special Problems",
"656,6256,Maya History",
"658,6258,Archaeological Analysis",
"661,6461,Anthropology of Organizations",
"662,6462,Democratizing Research: Participation, A",
"668,6468,Marx: An Overview of His Thought",
"669,6269,Gender and Age in Archaeology",
"670,6270,Environmental Archaeology",
"671,6371,Palaeoanthropology of South Asia",
"672,6272,Hunters and Gatherers",
"673,6373,Human Evolution: Concepts, History, and ",
"679,6479,Technocracy: Anthropological Approaches",
"680,6480,Anthropology and Globalization",
"682,6482,Perspectives on the Nation",
"688,6488,Masks of Power and Strategies of Resista",
"701,7910,Independent Study: Grad I",
"702,7920,Independent Study: Grad II",
"703,7930,Independent Study: Grad III",
"720,7420,Development of Anthropological Thought",
"723,7523,Making History on the Margins: The China",
"726,7426,Ideology and Social Production",
"739,7545,Peoples and Cultures of the Himalayas",
"750,7852,Europe",
"762,7262,Catalhoyuk and Archaeological Practice",
"770,7270,Political Economy in Archaeology",
"772,7272,Historical Archaeology of Indigenous Peo",
"776,7476,Semiotics Beyond the Social",
"784,7684,Africa in the Global Economy",
"ARKEO,100,1200,Ancient Peoples and Places",
"203,2200,Early People: The Archaeological and Fos",
"215,2215,Stone Age Art",
"221,2726,Minoan-Mycenaean Art and Archaeology",
"228,2727,Art and Archaeology in the Ancient Medit",
"235,2235,Archaeology of North American Indians",
"242,2201,Early Agriculture",
"256,2756,Practical Archaeology",
"261,2610,Urban Archaeology",
"262,2620,Laboratory in Landscape Archaeology",
"263,2663,Introduction to Biblical History and Arc",
"268,2668,Ancient Egyptian Civilization",
"275,2661,Ancient Seafaring",
"276,2765,Religions of Ancient Israel",
"300,3000,Individual Study in Archaeology and Rela",
"309,3090,Introduction to Dendrochronology",
"317,3217,Stone Age Archaeology",
"330,3230,Humans and Animals",
"348,3248,Iroquois Archaeology",
"355,3255,Ancient Mexico and Central America",
"356,3256,Archaeology of the Andes",
"365,3665,Ancient Iraq II: 2000331 BCE",
"369,3269,Gender and Age in Archaeology",
"370,3270,Environmental Archaeology",
"372,3272,Hunters and Gatherers",
"380,3800,Introduction to the Arts of China",
"402,4020,Designing Archaeological Exhibits",
"434,4340,The Rise of Classical Greece",
"435,4207,Seminar on Roman Art and Archaeology",
"437,4370,Geophysical Field Methods",
"456,4256,Mesoamerican Religion, Science, and Hist",
"458,4258,Archaeological Analysis",
"462,4262,Cataloyuk and Archaeological Practice",
"463,4263,Zooarchaeological Method",
"464,4264,Zooarchaeological Interpretation",
"467,4267,Origins of Agriculture",
"470,4270,Political Economy in Archaeology",
"472,4272,Historical Archaeology of Indigenous Peo",
"481,4981,Honors Thesis Research",
"482,4982,Honors Thesis Writeup",
"494,4294,Seminar in Archaeology: The Archaeology ",
"600,6000,Special Topics in Archaeology",
"602,6020,Designing Archaeological Exhibits",
"629,7729,The Prehistoric Aegean",
"630,6300,Seminar in Classical Archaeology",
"648,6248,Iroquois Archaeology",
"651,6510,Advanced Fieldwork in Historical Archaeo",
"652,6520,Advanced Laboratory in Historical Archae",
"656,6256,Maya History",
"669,6269,Gender and Age in Archaeology",
"670,6270,Environmental Archaeology",
"681,8901,Master's Thesis",
"682,8902,Master's Thesis",
"770,7270,Political Economy in Archaeology",
"772,7272,Historical Archaeology of Indigenous Peo",
"ART H,202,2100,Survey of European Art: Renaissance to M",
"209,2190,The Immigrant Imagination",
"219,2019,Thinking Surrealisms",
"220,2200,Introduction to ART History: The Classic",
"245,2400,Introduction to Art History: Renaissance",
"250,2350,Introduction to Art History: Islamic Art",
"255,2355,Introduction to Art History: Medieval Ar",
"260,2600,Introduction to Art History: The Modern ",
"272,2672,Art, Politics, and Social Imagination: A",
"306,3600,Introduction to Art History: Contemporar",
"307,3607,Orientalism and Representation",
"309,3250,Introduction to Dendrochronology",
"320,3210,The Archaeology of the City of Rome",
"322,3202,Arts of the Roman Empire",
"324,3224,Hellenistic Culture",
"330,3230,Iconography of Greek Myth",
"343,3443,Art and Society in Early Renaissance Ita",
"344,3440,Leonardo, Michelangelo, and Raphael",
"349,3149,Artistic Identity through Time: From Ano",
"350,3100,History of Photography",
"355,3300,Romanesque and Early Gothic Art and Arch",
"356,3301,Gothic and the Medieval World",
"360,3740,Painting 19th-Century America",
"362,3760,Impressionism in Society",
"365,3605,U.S. Art from FDR to Reagan",
"366,3650,History and Theory of Digital Art",
"368,3550,Modern and Contemporary Latin American A",
"371,3171,Architectural History of Washington, D.C",
"377,3500,African American Art",
"378,3510,Introduction to African Art",
"380,3800,Introduction to the Arts of China",
"384,3820,Introduction to the Arts of Japan",
"385,3805,Representation and Meaning in Chinese Pa",
"390,3520,African American Cinema",
"395,3855,The House and the World: Architecture of",
"396,3850,The Arts of Southeast Asia",
"400,4100,Proseminar",
"401,4991,Independent Study",
"402,4992,Independent Study",
"403,4003,Modernity and Critique",
"407,4107,The Museum and the Object",
"408,4508,Exhibiting Cultures: Museums, Monuments,",
"409,4509,Black Arts Movement",
"410,4310,Methods in Medieval",
"411,4311,The Multicultural Alhambra",
"412,4312,The Late Medieval Art of Devotion",
"413,4113,Race, Technology and Visuality",
"414,4114,Popular Culture and Visual Practice in A",
"415,4315,Visualizing the Sacred Iberia",
"415,4315,Visualizing the Sacred in Late Medieval ",
"421,4021,Undergraduate Seminar in Cultural Histor",
"422,4322,The Late Medieval Devotional Image in Ib",
"425,4525,Rastafari, Race, and Resistance",
"435,4235,Metamorphosis",
"438,4938,Leon Battista Alberti: Architect as Orat",
"439,4939,The Architectural Treatise in the Renais",
"444,4144,Responsive Environments",
"448,4440,Constructing the Self in the 16th Centur",
"450,4450,Women in Italian Renaissance Art",
"451,4451,Prints and Visual Culture in Early Moder",
"461,4761,Art and Social Histories",
"464,4600,Studies in Modern Art",
"466,4610,Women Artists",
"470,4150,Intro to Critical Theory",
"473,4773,Photography and the Colonial Gaze",
"479,4979,Advanced Seminar in American Literature:",
"486,4816,Modern Chinese Art",
"491,4690,Comparative Modernities",
"497,4997,Honors Research",
"498,4998,Honors Work I",
"499,4999,Honors Work II",
"506,5505,Contemporary African Diaspora Art",
"540,5440,Nature, Cultural Landscape, and Gardens ",
"571,5571,African Aesthetics",
"580,5850,Dancing the Stone: Body, Memory, and Arc",
"585,5855,Threads of Consequence: Textiles in Sout",
"591,5991,Supervised Reading",
"592,5992,Supervised Reading",
"593,5993,Supervised Study",
"594,5994,Supervised Study",
"600,6100,Proseminar",
"608,6508,Exhibiting Cultures: Museums, Monuments,",
"609,6509,Black Arts Movement",
"615,6315,Visualizing the Sacred Iberia",
"630,6250,Seminar in Classical Archaeology",
"635,6235,Metamorphosis",
"642,6252,Research Methods in Archaeology",
"644,6144,Responsive Environments",
"670,6170,Intro to Critical Theory",
"691,6690,Comparative Modernities",
"ASIAN,190,1190,East Asia to 1800",
"191,1191,Introduction to Modern Asian History",
"192,1192,Introduction to World Music: Asia",
"201,2201,Buddhist Felicities",
"206,2206,The Occidental Tourist: Travel Writing a",
"208,2208,Introduction to Southeast Asia",
"211,2211,Introduction to Japan: Japanese Texts in",
"212,2212,Introduction to China",
"215,2215,Introduction to South Asian Civilization",
"218,2218,Introduction to Korea",
"219,2219,Women and Gender in South Asia",
"225,2255,Literature, Politics, and Genocide in Ca",
"226,2226,Society and Religion in China",
"228,2228,The Indian Ocean World",
"241,2241,China's Literary Heritage: An Introducti",
"245,2245,Gamelan in Indonesian History and Cultur",
"250,2250,Introduction to Asian Religions",
"257,2257,China Encounters the World",
"275,2275,History of Modern South Asia",
"277,2277,Meditation in Indian Culture",
"279,2279,Chinese Mythology",
"294,2294,History of China in Modern Times",
"296,2296,From Slow Boats to CEOs?: The Chinese of",
"298,2298,The U.S.Vietnam War",
"301,3301,Schools of Thought: Ancient China",
"302,3302,Art of War in Ancient China",
"305,3305,Seminar: America's Relations with China",
"306,3306,Zen Buddhism",
"312,3312,Intellectuals in Early Modern Korea",
"328,3328,Construction of Modern Japan",
"335,3335,Japan from War to Prosperity",
"345,3345,Asian Minorities",
"346,3346,Modern Japanese Politics",
"347,3347,Tantric Traditions",
"348,3348,Indian Devotional Poetry",
"351,3351,Indian Religious Worlds",
"354,3354,Indian Buddhism",
"355,3355,Japanese Religions",
"359,3359,Japanese Buddhism: Texts in Context",
"361,3361,Conflict and Transformation in Early Mod",
"373,3373,20th-Century Chinese Literature",
"374,3374,Chinese Narrative Literature",
"379,3379,Southeast Asian Literature in Translatio",
"380,3380,Vietnamese Literature in Translation",
"385,3385,History of Vietnam",
"386,3386,Southeast Asia through Film",
"387,3387,Literature and Film of South Asia",
"388,3388,Theorizing Gender and Race in Asian Hist",
"391,3391,East Asian Martial Arts and Society and ",
"396,3396,Southeast Asian History from the 18th Ce",
"397,3397,Premodern Southeast Asia",
"401,4401,Asian Studies Honors Course",
"402,4402,Asian Studies Honors: Senior Essay",
"403,4403,Asian Studies Supervised Reading",
"404,4404,Asian Studies Supervised Reading",
"409,4409,Archipelago: The Worlds of Indonesia",
"410,4410,Chinese Film",
"411,4411,History of the Japanese Language",
"412,4412,Linguistic Structure of Japanese",
"413,4513,Religion and Politics in Southeast Asia",
"414,4414,Formation of the Field: Japan as an Area",
"416,4416,Gender and Sexuality in Southeast Asian ",
"421,4421,Religious Reflections on the Human Body",
"423,4423,Imagining Contemporary Asia",
"424,4424,Scars and Bars: Asian Trauma Memoirs",
"425,4425,Theories of Civilization",
"430,4430,Structure of Korean",
"436,4436,Topics in Indian Film",
"437,4437,Research Methods in Pre-Modern China",
"438,4438,Monks, Texts, and Relics: Transnational ",
"441,4441,Mahayana Buddhism",
"449,4449,History and Methods of the Academic Stud",
"452,4452,Global Martial Arts Film and Literature",
"460,4460,Indian Meditation Texts",
"462,4462,Religion, Colonialism, and Nationalism i",
"468,4468,Arendt, Morisaki, Weil",
"469,4469,Medicine and Healing in China",
"481,4481,Translation and Cultural Difference",
"489,4489,Religion and Sustainability: Traditional",
"493,4493,Problems in Modern Chinese History",
"494,4494,India: Nation and Narration, History and",
"496,4496,Tokugawa Literature and Thought",
"499,4499,Problems in Modern Chinese History",
"507,5507,The Occidental Tourist",
"599,5599,East Asian Colloquium",
"602,6602,Southeast Asia Seminar: Contemporary Tha",
"603,6603,Southeast Asia Field Seminar",
"604,6604,Southeast Asia Topical Seminar",
"611,6611,Research Methods in Pre-Modern China",
"612,6612,Japanese Bibliography and Methodology",
"615,6615,Histories of Tokugawa Japan",
"618,6618,Gender and Sexuality in Southeast Asian ",
"619,6619,Graduate Seminar: Translation in Theory",
"626,6626,The 18th Century and the Emergence of Li",
"634,6634,Buddhist Studies Seminar",
"638,6638,Monks, Texts, and Relics: Transnational ",
"650,6650,Seminar in Asian Religions",
"654,6654,Indian Buddhism",
"659,6659,Seminar in Vedic Philosophy",
"662,6662,Religion, Colonialism, and Nationalism i",
"668,6668,Arendt, Morisaki, Weil",
"671,6671,Paleoanthropology of South Asia",
"676,6676,Southeast Asia Reading Seminar: The Earl",
"680,6680,Vietnamese Literature in Translation",
"681,6681,Intellectual History of Empire",
"685,6685,History of Vietnam",
"688,6688,Theorizing Gender and Race in Asian Hist",
"693,6693,Problems in Modern Chinese History",
"694,6694,Problems in Modern Chinese History",
"696,6696,Modern Southeast Asia: Graduate Prosemin",
"698,6698,Seminar in Japanese Thought",
"701,7701,Seminar in East Asian Literature",
"702,7702,Seminar in East Asian Literature",
"703,7703,Directed Research",
"704,7704,Directed Research",
"708,7708,Academic Study of Religion",
"899,8899,Master's Thesis Research",
"999,9999,Doctoral Dissertation Research",
"ASRC,111,1104,Elementary Arabic I",
"112,1105,Elementary Arabic II",
"113,1106,Intermediate Arabic I",
"121,1108,Introduction to Yoruba I",
"122,1109,Introduction to Yoruba II",
"123,1110,Intermediate Yoruba I",
"125,1125,Elem Arabic for Native Speaker",
"130,1130,Intro Quranic and Classical Arabic",
"131,1100,Swahili",
"132,1101,Swahili",
"133,1102,Swahili",
"140,1114,Elementary Zulu I",
"141,1115,Elementary Zulu II",
"145,1116,Intermediate Zulu I",
"171,1600,Black Families and the Socialization of ",
"191,1300,Africa: The Continent and Its People",
"202,2100,Swahili Literature",
"203,1111,Intermediate Yoruba II",
"205,2300,African Cultures and Civilizations",
"212,2101,Intermediate Arabic II",
"231,2601,Afro-American Social and Political Thoug",
"240,1117,Intermediate Zulu II",
"256,2303,The Past and Present of Pre-colonial Afr",
"277,2504,Literatures of the Black Atlantic",
"290,2602,The Sociology of the African-American Ex",
"301,3200,Politics of Global Africa",
"308,3100,Advanced Intermediate Arabic I",
"310,3501,Introduction to African Art",
"312,3101,Advanced Intermediate Arabic II",
"375,1603,Black Child and Adolescent Development",
"380,3300,African History: Earliest Times to 1800",
"404,4200,Afrocentricity: Paradigm and Critical Re",
"408,4504,Exhibiting Cultures",
"409,4505,The Black Arts Movement: Art, Literature",
"410,4300,African American Politics",
"420,4605,Public Policy and the African-American U",
"426,4526,Rastafari, Race, and Resistance",
"435,4502,African Cinema",
"451,4600,Politics and Social Change in the Caribb",
"459,4601,Education Innovation in Africa and the D",
"463,4201,Islam in Africa and Its Diaspora",
"468,4900,Honors Thesis",
"469,4901,Honors Thesis",
"478,4606,The Family and Society In Africa",
"479,4602,Women and Gender Issues in Africa",
"484,4603,Politics and Social Change in Southern A",
"490,4302,Nile Valley Civilization: Ethiopia, Nubi",
"491,4911,Honors Seminar I",
"498,4902,Independent Study",
"499,4903,Independent Study",
"501,6200,Global Africa-Black Experience",
"502,6600,Education and Development in Africa",
"503,6506,African Aesthetics",
"504,6201,Political Change in Africa",
"506,6500,Contemporary African Diaspora Art",
"598,6900,Independent Study",
"599,6901,Independent Study",
"601,6902,Africana Studies Graduate Seminar",
"602,6903,Africana Studies Graduate Seminar",
"608,6508,Exhibiting Cultures",
"609,6509,The Black Arts Movement: Art, Literature",
"611,6301,African American Politics",
"615,6604,Psychology of Black Identity",
"620,6602,Black Communities and Politics and Healt",
"663,4205,Islam in Africa and Its Diaspora",
"698,8900,Thesis",
"699,8901,Thesis",
"ASTRO,101,1101,The Nature of the Universe",
"102,1102,Our Solar System",
"103,1103,The Nature of the Universe",
"104,1104,Our Solar System",
"105,1105,An Introduction to the Universe",
"106,1106,Essential Ideas in Relativity and Cosmol",
"107,1107,An Introduction to the Universe",
"109,1109,FWS: Birth of the Universe",
"195,1195,Observational Astronomy",
"201,2201,Our Home in the Universe",
"202,2202,Our Home in the Solar System",
"211,2211,Astronomy: Stars, Galaxies, and Cosmolog",
"212,2212,The Solar System: Planets, Satellites, a",
"233,2233,Topics in Astronomy and Astrophysics",
"280,2280,Space Exploration",
"290,2290,Relativity and Astrophysics",
"299,2299,Search for Life in the Universe",
"310,3310,Planetary Imaging Processing",
"331,3331,Climate Dynamics",
"332,3332,Elements of Astrophysics",
"334,3334,Modern Astrophysical Techniques",
"410,4410,Experimental Astronomy",
"431,4431,Introduction to Astrophysics and Space S",
"432,4432,Introduction to Astrophysics and Space S",
"440,4940,Independent Study in Astronomy",
"445,4445,Introduction to General Relativity",
"490,4490,Senior Seminar Critical Thinking",
"509,6509,General Relativity",
"510,6510,Applications to General Relativity",
"511,6511,Physics of Black Holes, White Dwarfs, an",
"516,6516,Galactic Structure and Stellar Dynamics",
"520,6520,Radio Astronomy",
"523,6523,Signal Modeling, Statistical Inference, ",
"525,6525,Techniques of Optical/Infrared and Submi",
"530,6530,Astrophysical Processes",
"560,6560,Theory of Stellar Structure and Evolutio",
"570,6570,Physics of the Planets",
"571,6571,Mechanics of the Solar System",
"575,6575,Planetary Atmospheres",
"577,6577,Planetary Surface Processes",
"578,6578,Planet Formation and Energy",
"579,6579,Celestial Mechanics",
"590,6590,Galaxies and the Universe",
"599,6599,Cosmology",
"620,7620,Seminar: Advanced Radio Astronomy",
"621,7621,Seminar: Planetary Radar Astronomy",
"640,6940,Advanced Study and Research",
"652,7652,Advanced Atmospheric Dynamics",
"660,7660,Cosmic Electrodynamics",
"671,7671,Seminar: Classic Papers in Planetary Sci",
"671,7671,Seminar: Planetary Science: Composition ",
"671,7671,Seminar: Planetary Science: Micron to Mi",
"673,7673,Seminar: Planetary Atmospheres",
"690,7690,Seminar: Computational Physics",
"699,7699,Seminar: Problems in Theoretical Astroph",
"BENGL,121,1121,Elementary Bengali",
"122,1122,Elementary Bengali",
"201,2201,Intermediate Reading and Conversation",
"202,2202,Intermediate Reading and Conversation",
"203,2203,Intermediate Bengali Composition and Con",
"204,2204,Intermediate Bengali Composition and Con",
"303,3303,Bengali Literature I, II",
"304,3304,Bengali Literature I, II",
"431,4431,Directed Study",
"432,4432,Directed Study",
"BSOC,205,2051,Ethical Issues in Health and Medicine",
"206,2061,Ethics and the Environment",
"214,2141,Biological Basis of Sex Differences",
"301,3011,Life Sciences and Society",
"331,3311,Environmental Governance",
"343,3431,Biotechnology and the Economy",
"344,3441,Insect Conservation Biology",
"347,3471,Human Growth and Development: Biological",
"354,3541,Sociology of Contemporary Cultures",
"375,3751,Independent Study",
"402,4021,Bodies in Medicine, Science and Technolo",
"407,4071,Law, Science, and Public Values",
"435,4351,Postcolonial Science",
"447,4471,Seminar in the History of Biology",
"461,4611,Environmental Policy",
"471,4711,The Dark Side of Biology: Biological Wea",
"496,4961,History of Medicine in China",
"BURM,121,1121,Elementary Burmese",
"122,1122,Elementary Burmese",
"201,2201,Intermediate Burmese Reading",
"202,2202,Intermediate Burmese Reading",
"203,2203,Intermediate Burmese I and II",
"204,2204,Intermediate Burmese I and II",
"301,3301,Advanced Burmese",
"302,3302,Advanced Burmese",
"431,4431,Directed Study",
"432,4432,Directed Study",
"CAPS,257,2570,China Encounters the World",
"282,2827,China and the World",
"300,3000,Seminar on American Relations with China",
"301,3010,Seminar on China: Economy, Society, and ",
"306,3060,Readings in Chinese History, Culture, So",
"314,3140,U.S. Foreign Relations, 1914 to Present",
"352,3520,Twentieth-Century Asian-American Relatio",
"385,3857,American Foreign Policy",
"400,4000,Senior Seminar on China's Foreign Relati",
"401,4010,Honors Essay Tutorial",
"402,4020,Honors Essay Tutorial",
"469,4690,China's Economy Under Mao and Deng",
"500,5000,Politics and Policy: Theory, Research, a",
"CATAL,121,1210,Elementary Catalan",
"122,1220,Elementary Catalan",
"CHEM,105,1150,The Language of Chemistry",
"106,1160,The World of Chemistry",
"206,1560,Introduction to General Chemistry",
"207,2070,General Chemistry",
"208,2080,General Chemistry",
"209,2090,Engineering General Chemistry",
"215,2150,Honors General and Inorganic Chemistry",
"216,2160,Honors General and Inorganic Chemistry",
"251,2510,Introduction to Experimental Organic Che",
"252,2520,Elementary Experimental Organic Chemistr",
"257,1570,Introduction to Organic and Biological C",
"287,2870,Introductory Physical Chemistry",
"288,2880,Introductory Physical Chemistry",
"290,2900,Introductory Physical Chemistry Laborato",
"300,3000,Quantitative Chemistry",
"301,3010,Honors Experimental Chemistry I",
"302,3020,Honors Experimental Chemistry II",
"303,3030,Honors Experimental Chemistry III",
"357,3570,Organic Chemistry for the Life Sciences",
"358,3580,Organic Chemistry for the Life Sciences",
"359,3590,Honors Organic Chemistry I and II",
"360,3600,Honors Organic Chemistry I and II",
"389,3890,Honors Physical Chemistry I and II",
"390,3900,Honors Physical Chemistry I and II",
"404,4040,Entrepreneurship in Chemical Enterprise",
"410,4100,Inorganic Chemistry",
"421,4210,Introduction to Inorganic Chemistry Rese",
"433,4330,Introduction to Analytical Chemistry Res",
"440,4400,Bio-Inorganic Chemistry",
"450,4550,Principles of Chemical Biology",
"461,4610,Introduction to Organic Chemistry Resear",
"477,4770,Introduction to Physical Chemistry Resea",
"498,4980,Honors Seminar",
"600,6000,General Chemistry Colloquium",
"601,6010,General Chemistry Colloquium",
"602,6020,Information Literacy for the Physical Sc",
"605,6050,Advanced Inorganic Chemistry I: Symmetry",
"606,6060,Advanced Inorganic Chemistry II: Synthes",
"607,6070,Advanced Inorganic Chemistry III: Solid-",
"608,6080,Advanced Inorganic Chemistry I: Organome",
"622,6220,Chemical Communication",
"625,6250,Advanced Analytical Chemistry I",
"627,6270,Advanced Analytical Chemistry II",
"628,6280,Isotopic and Trace Element Analysis",
"629,6290,Electrochemistry",
"650,6500,Organic and Organometallic Chemistry Sem",
"651,6510,Organic and Organometallic Chemistry Sem",
"665,6650,Advanced Organic Chemistry",
"666,6660,Synthetic Organic Chemistry",
"667,6670,Topics in Chemical Biology",
"668,6680,Chemical Aspects of Biological Processes",
"669,6690,Organic and Polymer Synthesis Using Tran",
"670,6700,Fundamental Principles of Polymer Chemis",
"671,6710,Synthetic Polymer Chemistry",
"672,6720,Kinetics and Regulation of Enzyme System",
"677,6770,Chemistry of Nucleic Acids",
"681,6810,Introduction to Quantum Chemistry",
"686,6860,Physical Chemistry of Proteins",
"700,7000,Baker Lectures",
"701,7010,Introductory Graduate Seminar",
"716,7160,Introduction to Solid State Organic Chem",
"765,7650,Physical Organic Chemistry I",
"774,7740,Chemistry of Natural Products: Combinato",
"780,7800,Chemical Kinetics and Molecular Reaction",
"787,7870,Mathematical Methods of Physical Chemist",
"788,7880,Macromolecular Crystallography",
"791,7910,Spectroscopy",
"792,7920,Molecular Collision Theory",
"793,7930,Quantum Mechanics I",
"794,7940,Quantum Mechanics II",
"795,7950,Statistical Thermodynamics",
"796,7960,Statistical Mechanics",
"798,7980,Bonding in Molecules",
"CHIN,101,1101,Elementary Standard Chinese",
"102,1102,Elementary Standard Chinese",
"109,1109,Beginning Mandarin Reading and Writing",
"110,1110,Beginning Mandarin Reading and Writing",
"111,1111,Elementary Cantonese I and II",
"112,1112,Elementary Cantonese I and II",
"159,1159,Summer Intensive Chinese",
"160,1160,Introductory Intensive Mandarin",
"201,2201,Intermediate Standard Chinese",
"202,2202,Intermediate Standard Chinese",
"209,2209,Intermediate Mandarin Reading and Writin",
"210,2210,Intermediate Mandarin Reading and Writin",
"211,2211,Intermediate Cantonese I and II",
"212,2212,Intermediate Cantonese I and II",
"213,2213,High Intermediate Cantonese I and II",
"214,2214,High Intermediate Cantonese I and II",
"215,2215,Mandarin for Cantonese Speakers",
"260,2260,Intermediate Intensive Mandarin",
"301,3301,High Intermediate Chinese",
"302,3302,High Intermediate Chinese",
"306,3306,Readings in Chinese History, Culture and",
"309,3309,Business Chinese in Cultural Context",
"310,3310,Business Chinese in Cultural Context",
"360,3360,Advanced Intensive Mandarin",
"411,4411,Advanced Chinese: Fiction, Reportage, Cu",
"412,4412,Advanced Chinese: Fiction, Reportage, Cu",
"425,4425,Special Topics",
"426,4426,Historical Documents on Modern China",
"431,4431,Directed Study",
"432,4432,Directed Study",
"509,5509,Business Chinese in Cultural Context",
"510,5510,Business Chinese in Cultural Context",
"625,6625,Special Topics",
"626,6626,Historical Documents on Modern China",
"CHLIT,213,2213,Introduction to Classical Chinese",
"214,2214,Introduction to Classical Chinese",
"300,3300,Reading from the Early Masters",
"307,3307,Readings in Classical Chinese Literature",
"418,4418,Medieval Chinese Narrative Tales",
"420,4420,T'ang Poetry: Themes and Contexts",
"421,4421,Directed Study",
"422,4422,Directed Study",
"423,4423,Readings in Chinese History",
"435,4435,Chinese Buddhist Texts",
"603,6603,Seminar in Chinese Fiction and Drama",
"605,6605,Seminar in Chinese Fiction and Drama",
"610,6610,Chinese Cultural Criticism",
"615,6615,Seminar: Ideas and Literature of Medieva",
"621,6621,Advanced Directed Reading: Chinese Histo",
"622,6622,Advanced Directed Reading: Chinese Histo",
"CLASS,191,1331,Elementary Sanskrit",
"192,1332,Elementary Sanskrit",
"211,2601,The Greek Experience",
"212,2620,The Roman Experience",
"216,2616,Small Wars in Greece and Rome",
"217,2603,Initiation to Greek Culture",
"220,2700,Introduction to Art History: The Classic",
"221,2726,Minoan-Mycenaean Art and Archaeology",
"223,2641,The Comic Theater",
"226,2646,Atheism Then and Now",
"227,2727,Art and Archaeology in the Ancient Medit",
"229,2650,War and Peace in Greece and Rome",
"231,2661,Ancient Philosophy",
"236,2604,Greek Mythology",
"240,2725,Greek Art and Archaeology",
"265,2650,Ancient Greece from Homer to Alexander t",
"267,2683,History of Rome I",
"268,2684,History of Rome II",
"291,2351,Intermediate Sanskrit",
"292,2352,Intermediate Sanskrit",
"322,3722,Greeks and Their Neighbors",
"323,3723,Aegean Archaeology",
"325,3725,Greek Vase Painting",
"329,3729,Greek Sculpture",
"330,3750,Introduction to Dendrochronology",
"331,3731,Archaeology/Ancient Mediterranean Religi",
"332,3644,Sages and Saints/Ancient World",
"336,3736,The Archaeology of the City of Rome",
"337,3727,Iconography of Greek Myth",
"340,3664,Aristotle",
"341,3661,Hellenistic Philosophy",
"344,3644,Hellenistic Culture",
"345,3645,The Tragic Theater",
"348,3648,Aeneid: Influence of the Epic",
"362,3662,History of Battle",
"382,3642,Greeks, Romans, and Victorians",
"387,3686,Independent Study in Classical Civilizat",
"391,3391,Independent Study in Sanskrit, Undergrad",
"393,3393,Advanced Sanskrit I",
"394,3394,Advanced Sanskrit I",
"405,4665,Augustine's",
"434,4734,The Rise of Classical Greece",
"435,4735,Seminar on Roman Art and Archaeology",
"436,4320,Topics in Ancient Greek History",
"441,4410,Fourth Century and Early History of Gree",
"446,4646,Platonism",
"446,4746,Topics in Classical Archaeology",
"448,4648,Platonism",
"472,4720,Honors Course: Senior Essay",
"475,4625,The Christianization of the Roman World,",
"490,4490,Sanskrit Comparative Grammar",
"545,7345,Graduate TA Training",
"629,7729,The Prehistoric Aegean",
"630,7750,Seminar in Classical Archaeology",
"632,7682,Topics in Ancient History",
"637,7737,Metamorphosis",
"638,7686,Ancient Warfare",
"642,7742,Research Methods and Archaeology",
"646,7746,Topics in Classical Archaeology",
"667,7667,Seminar in Ancient History: Spartacus",
"673,7173,Ancient Philosophy",
"700,9900,Doctoral Dissertation Research",
"703,7690,Independent Study for Graduate Students ",
"704,7950,Independent Study for Graduate Students ",
"705,7970,Independent Study for Graduate Students ",
"COGST,101,1101,Introduction to Cognitive Science",
"111,1110,Brain, Mind, and Behavior",
"150,1500,Intro to Human Environment Relations",
"172,1720,Computation, Information, and Intelligen",
"214,2140,Cognitive Psychology",
"215,2150,Psychology of Language",
"220,2200,The Human Brain and Mind: Biological Iss",
"230,2300,Cognitive Development",
"231,2310,Borges and I: A Quest for Self-Knowledge",
"238,2380,Thinking and Reasoning",
"330,3300,Introduction to Computational Neuroscien",
"333,3330,Problems in Semantics: Quantification in",
"334,2340,The Growth of the Mind",
"337,3370,Language Development",
"342,3420,Human Perception: Applications to Comput",
"412,4120,Laboratory in Cognition and Perception",
"414,4140,Comparative Cognition",
"416,4160,Modeling Perception and Cognition",
"424,4240,Computational Linguistics",
"425,4250,Cerebral Seductions",
"426,4260,Learning Language",
"427,4270,Evolution of Language",
"428,4280,Connectionist Psycholinguistics",
"432,4320,Cognitive, Social, and Developmental Asp",
"433,4330,Developmental Cognitive Neuroscience",
"434,4340,Current Topics in Cognitive Development",
"435,4350,Mind, Self, and Emotion: Research Semina",
"450,4500,Lab Course: Language Development",
"452,4520,Culture and Human Development",
"470,4700,Undergraduate Research in Cognitive Scie",
"471,4710,Cognitive Science Research Workshop",
"474,4740,Introduction to Natural Language Process",
"476,4760,Decision Theory I and II",
"477,4770,Decision Theory I and II",
"491,4910,Research Methods in Psychology",
"501,6150,Introduction to Cognitive Science, Prose",
"530,6300,Representation of Structure in Vision an",
"550,5500,Special Topics in Cognitive Science: Lan",
"614,6140,Cognitive Psychology",
"633,6330,Language Acquisition Seminar",
"671,6710,Introduction to Automated Reasoning",
"676,6760,Decision Theory",
"677,6770,Decision Theory",
"691,6910,Research Methods in Psychology",
"710,7100,Research in Human Experimental Psycholog",
"COLLS,397,3970,Independent Study: Senior Project",
"499,4990,Honors Research",
"COML,200,2000,Introduction to Visual Studies",
"201,2010,Great Books",
"202,2020,Great Books",
"203,2030,Introduction to Comparative Literature",
"204,2040,Global Fictions",
"205,2050,Introduction to Poetry",
"213,2130,Cultures of the Middle Ages",
"215,2150,Comparative American Literatures",
"220,2200,Thinking Surrealisms",
"231,2310,Holy War, Jihad, Crusade",
"248,2480,Literatures of Exile and Return",
"276,2760,Desire",
"293,2930,Middle Eastern Cinema",
"302,3020,Literature and Theory",
"304,3040,Europe and Its Others: An Introduction t",
"306,3060,Comparative Martial Arts Film and Litera",
"317,3170,Postcolonial State Theory",
"326,3260,Christianity and Judaism",
"328,3280,Literature of the Old Testament",
"329,3290,The History and Theory of Sexuality in E",
"330,3300,Political Theory and Cinema",
"344,3440,Tragic Theatre",
"348,3480,Shakespeare and Europe",
"353,3530,Monsters AX-files",
"356,3560,Renaissance Literature: Blood Politics",
"362,3620,The Culture of the Renaissance II",
"363,3630,The European Novel",
"364,3640,The European Novel",
"365,3650,Contemporary Fiction",
"373,3730,Literature of the Outlaw",
"383,3830,Subversive Readings, Intertexts in Femin",
"386,3860,Literature and Film of South Asia",
"398,3980,Theorizing Gender and Race in Asian Hist",
"399,3990,Canonical States, Canonical Stages",
"400,4000,Forms of the Novel",
"401,4010,Open Secrets: Studies in Narrative",
"404,4040,Troubadours and Heretics",
"408,4080,Martial Arts Film and Literature: Global",
"410,4100,Science, Technology, and Culture",
"415,4150,The Theory and Analysis of Narrative",
"419,4190,Independent Study",
"420,4200,Independent Study",
"422,4220,Literature and Oblivion",
"423,4230,Borders",
"424,4240,The Animal",
"425,4250,Marx, Nietzsche, Freud",
"426,4260,New Testament Seminar",
"428,4280,Biblical Seminar",
"432,4320,Time and the Other",
"438,4380,Arendt, Morisaki, Weil",
"443,4430,Partitioned Postmodernity and Anomalous ",
"450,4500,Renaissance Poetry",
"452,4520,Renaissance Humanism",
"454,4540,Modernity and Critique",
"455,4550,Memory, Past-memory, and the Constructio",
"456,4560,Michel Foucault and His Legacy",
"458,4580,Narratives of Travel, Migration, and Exi",
"470,4700,Translation and Cultural Difference",
"474,4740,Topics in Modern European Intellectual a",
"477,4770,Improvising Across the Disciplines",
"480,4800,Baudelaire in the Lyric",
"481,4810,Studies in Gender Theory: Kinship and Em",
"483,4830,Imagining the Holocaust",
"486,4860,Contemporary Poetry and Poetics",
"492,4920,India: Nation and Narration, History and",
"493,4930,Senior Essay",
"496,4960,Imagining the Mediterranean",
"609,6090,Comparison and Cultural Difference",
"614,6140,Ut pictura poesis: Keats and the Aesthet",
"615,6150,Trauma, Time, and History",
"616,6160,Translation, In Theory",
"617,6170,Readings in Cultural Materialism: Theory",
"618,6180,Hegel's Phenomenology Spirit",
"619,6190,Independent Study",
"620,6200,Independent Study",
"624,6240,Arendt, Morisaki, Weil",
"630,6300,Aesthetics in the 18th Century",
"634,6340,Deleuze and Lyotard: Aesthetics",
"636,6360,Comparative Modernisms/Alternative Moder",
"638,6380,Comparative Literacy: The 18th C and Lit",
"641,6410,Derrida, Writing, and the Institution of",
"650,6500,Renaissance Poetry",
"652,6520,Renaissance Humanism",
"663,6630,Nietzsche and Heidegger",
"667,6670,Rethinking the Symbolic",
"668,6680,Theorizing Gender and Race in Asian Hist",
"671,6710,Transnational Imaginaries: Globalization",
"673,6730,Topics in Modern European Intellectual a",
"675,6750,Critical Passions",
"676,6760,Being Historical in Literary Studies",
"680,6800,Baudelaire in the Lyric",
"682,6820,Cultural Materialism and Geopolitics",
"688,6880,Wordsworth and Rousseau",
"689,6890,Adorno's Aesthetic Theory",
"692,6920,Digital Bodies, Virtual Identities",
"697,6970,Cosmopolitianism",
"CS,99,1109,Fundamental Programming Concepts",
"100H,1113,Computing Using Java: Honors",
"100J,1110,Introduction to Computing Using Java",
"100M,1112,Introduction to Computing Using MATLAB",
"100R,1114,Introduction to Computing Using MATLAB a",
"101J,1130,Transition to Object-oriented Programmin",
"101M,1132,Transition to MATLAB",
"113,2022,Introduction to C",
"114,2042,Unix Tools",
"130,1300,Introductory Design and Programming for ",
"165,1610,Computing in the Arts",
"167,1620,Visual Imaging in the Electronic Age",
"170,1710,Introduction to Cognitive Science",
"172,1700,Computation, Information, and Intelligen",
"211,2110,Object-Oriented Programming and Data Str",
"212,2111,Programming Practicum",
"213,2024,C++ Programming",
"214,2044,Advanced UNIX Programming and Tools",
"215,2026,Introduction to C#",
"230,2300,Intermediate Design and Programming for ",
"280,2800,Discrete Structures",
"285,2850,Networks",
"305,3050,Creative Problem-Solving in Computer Sci",
"312,3110,Data Structures and Functional Programmi",
"314,3420,Computer Organization",
"316,3410,Systems Programming",
"321,3510,Numerical Methods in Computational Molec",
"322,3220,Introduction to Scientific Computation",
"324,3740,Computational Linguistics",
"330,3300,Data-Driven Web Applications",
"372,3700,Explorations in Artificial Intelligence",
"381,3810,Introduction to Theory of Computing",
"400,4150,The Science of Programming",
"411,4110,Programming Languages and Logics",
"412,4120,Introduction to Compilers",
"413,4121,Practicum in Compilers",
"414,4410,Operating Systems",
"415,4411,Practicum in Operating Systems",
"416,4420,Computer Architecture",
"419,4450,Computer Networks",
"421,4210,Numerical Analysis and Differential Equa",
"422,4220,Numerical Analysis: Linear and Nonlinear",
"426,4520,Introduction to Bioinformatics",
"428,4510,Introduction to Computational Biophysics",
"430,4300,Information Retrieval",
"431,4302,Web Information Systems",
"432,4320,Introduction to Database Systems",
"433,4321,Practicum in Database Systems",
"465,4620,Introduction to Computer Graphics",
"466,4621,Computer Graphics Practicum",
"472,4700,Foundations of Artificial Intelligence",
"473,4701,Practicum in Artificial Intelligence: Ro",
"474,4740,Introduction to Natural Language Process",
"475,4702,Artificial Intelligence: Uncertainty and",
"478,4780,Machine Learning",
"482,4820,Introduction to Analysis of Algorithms",
"483,4812,Quantum Computation",
"485,4850,Mathematical Foundations for the Informa",
"486,4860,Applied Logic",
"487,4830,Introduction to Cryptography",
"490,4999,Independent Reading and Research",
"501,5150,Software Engineering",
"513,5430,System Security",
"514,5410,Intermediate Computer Systems",
"516,5420,Parallel Computer Architecture",
"519,5450,Advanced Computer Networks",
"530,5300,The Architecture of Large-Scale Informat",
"565,5640,Computer Animation",
"566,5642,Advanced Animation",
"567,5643,Physically Based Animation for Computer ",
"569,5620,Interactive Computer Graphics",
"572,5722,Heuristic Methods for Optimization",
"578,5780,Empirical Methods in Machine Learning an",
"611,6110,Advanced Programming Languages",
"612,6120,Advanced Compilers and Program Analyzers",
"614,6410,Advanced Systems",
"615,6460,Peer-to-Peer Systems",
"619,6450,Research in Computer Networks",
"621,6210,Matrix Computations",
"622,6220,Numerical Optimization and Nonlinear Alg",
"624,6240,Numerical Solution of Differential Equat",
"626,6510,Computational Molecular Biology",
"628,6522,Biological Sequence Analysis",
"632,6320,Database Management Systems",
"633,6322,Advanced Database Systems",
"664,6670,Machine Vision",
"665,6620,Advanced Interactive Graphics",
"667,6630,Physically Based Rendering",
"671,6762,Introduction to Automated Reasoning",
"672,6700,Advanced Artificial Intelligence",
"673,6724,Integration of Artificial Intelligence a",
"674,6740,Natural Language Processing",
"676,6764,Reasoning about Knowledge",
"677,6766,Reasoning about Uncertainty",
"678,6780,Advanced Topics in Machine Learning",
"681,6820,Analysis of Algorithms",
"682,6810,Theory of Computing",
"683,6822,Advanced Design and Analysis of Algorith",
"684,6840,Algorithmic Game Theory",
"685,6850,The Structure of Information Networks",
"686,6860,Logics of Programs",
"687,6830,Cryptography",
"709,7090,Computer Science Colloquium",
"714,7410,Topics in Systems",
"715,7192,Seminar in Programming Refinement Logics",
"717,7430,Topics in Parallel Architectures",
"718,7690,Computer Graphics Seminar",
"719,7190,Seminar in Programming Languages",
"726,7590,Problems and Perspectives in Computation",
"732,7320,Topics in Database Systems",
"733,7390,Database Seminar",
"750,7726,Evolutionary Computation and Design Auto",
"754,7490,Systems Research Seminar",
"764,7670,Visual Object Recognition",
"772,7790,Seminar in Artificial Intelligence",
"775,7794,Seminar in Natural Language Understandin",
"785,7850,Seminar on Information Networks",
"786,7860,Introduction to Kleene Algebra",
"789,7890,Seminar in Theory of Algorithms and Comp",
"790,7999,Independent Research",
"990,9999,Thesis Research",
"CZECH,300,3300,Directed Studies",
"DANCE,122,1200,Dance Technique I",
"127,1300,Non-Western Dance Techniques",
"151,1610,Dance Production Laboratory I",
"153,1630,Dance Stage Management Production Labora",
"155,1250,Rehearsal and Performance",
"156,1500,Dance Performance Workshop",
"201,2480,Dance Improvisation",
"210,2500,Beginning Dance Composition",
"230,2200,Dance Technique II",
"231,2210,Dance Technique II/Classical",
"232,2220,Dance Technique II/Modern",
"233,2410,Explorations in Movement and Performance",
"234,3410,Explorations in Movement and Performance",
"235,2430,Hip-Hop, Hollywood, and Home Movies: Exp",
"236,2450,Public Voice and Civic Gesture",
"237,2580,Courses of Action",
"251,2610,Dance Production Laboratory II",
"253,2630,Dance Stage Management Laboratory II",
"258,3550,Techno Soma Kinesics: Repositioning the ",
"300,3000,Independent Study",
"303,2240,Dance Technique Workshop",
"304,3210,Dance Technique III/Classical",
"306,3220,Dance Technique III/Modern",
"308,4220,Dance Technique IV/Modern",
"309,4210,Dance Technique IV/Classical",
"310,3500,Intermediate Dance Composition I",
"311,3510,Intermediate Dance Composition II",
"312,3120,The Moving Body: Form and Function",
"313,3141,History: The Body in Performance",
"316,3240,Writing Dance Criticism",
"319,3590,Music, Dance, and Light",
"324,3530,Music and Choreography",
"355,3250,Repertory",
"358,4550,Techno Soma Kinesics II: Repositioning t",
"362,3660,Lighting Design Studio I",
"368,3680,Sound Design and Digital Audio",
"369,3560,Interactive Performance Technology",
"391,3570,Media Arts Studio I",
"407,4399,Early Dance",
"410,4500,Advanced Dance Composition I",
"411,4510,Advanced Dance Composition II",
"418,4080,Seminar in Dance Studies",
"424,4089,Formalist Aesthetics of Modernism and Po",
"462,4660,Lighting Design Studio II",
"485,4850,Undergraduate Internship",
"490,4000,Senior Paper in Dance",
"491,4010,Senior Project in Dance",
"492,4020,Senior Project in Dance II",
"495,4050,Honors Research Tutorial",
"496,4060,Honors Research Tutorial",
"DUTCH,121,1210,Elementary Dutch",
"122,1220,Elementary Dutch",
"203,2030,Intermediate Composition and Conversatio",
"300,3000,Directed Studies",
"EAS,101,1101,Introductory Geological Sciences",
"108,1108,Earth in the News",
"109,1109,Dinosaurs",
"119,1190,Fossil Preparation",
"121,1121,Introduction to MATLAB",
"122,1220,Earthquake!",
"131,1310,Basic Principles of Meteorology",
"133,1330,Basic Meteorology Lab",
"150,1500,FORTRAN Applications in Earth Science",
"154,1540,Introductory Oceanography, Lecture",
"155,1550,Introductory Oceanography, Laboratory",
"170,1700,Evolution of the Earth and Life",
"213,2130,Marine and Coastal Geology",
"220,2200,The Earth System",
"222,2220,Seminar: Hawaii's Environment",
"240,2400,Field Study of the Earth System",
"250,2500,Meteorological Observations and Instrume",
"268,2680,Climate and Global Warming",
"296,2960,Forecast Competition",
"301,3010,Evolution of the Earth System",
"303,3030,Introduction to Biogeochemistry",
"304,3040,Interior of the Earth",
"305,3050,Climate Dynamics",
"322,3220,Biogeochemistry of the Hawaiian Islands",
"334,3340,Microclimatology",
"341,3410,Atmospheric Thermodynamics and Hydrostat",
"342,3420,Atmospheric Dynamics",
"350,3500,Dynamics of Marine Ecosystems",
"351,3510,Marine Ecosystems Field Course",
"352,3520,Synoptic Meteorology",
"352,3520,Synoptic Meteorology I",
"353,3530,Physical Oceanography",
"401,4010,Fundamentals of Energy and Mineral Resou",
"404,4040,Geodynamics",
"405,4050,Active Tectonics",
"415,4150,Geomorphology",
"417,4170,Field Mapping in Argentina",
"425,4250,European Discovery of Impacts and Explos",
"426,4260,Structural Geology",
"434,4340,Exploration Geophysics",
"435,4350,Statistical Methods in Meteorology and C",
"437,4370,Geophysical Field Methods",
"440,4400,Seminar on the Intergovernmental Panel o",
"447,4470,Physical Meteorology",
"451,4510,Synoptic Meteorology II",
"453,4530,Mineralogy",
"454,4540,Petrology and Geochemistry",
"455,4550,Geochemistry",
"456,4560,Mesoscale Meteorology",
"457,4570,Atmospheric Air Pollution",
"458,4580,Volcanology",
"460,4600,Late Quaternary Paleoecology",
"461,4610,Paleoclimate: Since the Last Ice Age",
"462,4620,Marine Ecology",
"470,4700,Weather Forecasting and Analysis",
"471,4710,Introduction to Groundwater Hydrology",
"475,4750,Special Topics in Oceanography",
"476,4760,Sedimentary Basins",
"478,4780,Advanced Stratigraphy",
"479,4790,Paleobiology",
"481,4810,Senior Survey of Earth Systems",
"483,4830,Environmental Biophysics",
"484,4840,Inverse Methods in the Natural Sciences",
"487,4870,Introduction to Radar Remote Sensing",
"487,4870,Introduction to Radar and Remote Sensing",
"488,4880,Geophysics and Geotectonics",
"491,4910,Undergraduate Research",
"492,4920,Undergraduate Research",
"494,4940,Special Topics in Atmospheric Science",
"496,4960,Internship Experience",
"497,4790,Individual Study in Atmospheric Science",
"497,4970,Individual Study in Atmospheric Science",
"498,4980,Teaching Experience in Earth and Atmosph",
"499,4990,Undergraduate Research in Atmospheric Sc",
"500,5000,Design Project in Geohydrology",
"502,5020,Case Histories in Groundwater Analysis",
"505,5050,Fluid Dynamics in the Earth Sciences",
"522,5220,Advanced Structural Geology I",
"524,5240,Advanced Structural Geology II",
"542,5420,Numerical Methods in Atmospheric Modelin",
"553,5530,Advanced Petrology",
"575,5750,Planetary Atmospheres",
"577,5770,Planetary Surface Processes",
"578,5780,Planet Formation and Evolution",
"584,5840,Inverse Methods in the Natural Sciences",
"628,6280,Geology of Orogenic Belts",
"641,6410,Analysis of Biogeochemical Systems",
"648,6480,Air Quality and Atmospheric Chemistry",
"652,6520,Advanced Atmospheric Dynamics",
"656,6560,Isotope Geochemistry",
"666,6660,Applied Multivariate Statistics",
"675,6750,Modeling the Soil-Plant-Atmosphere Syste",
"692,6920,Special Topics in Atmospheric Science",
"693,6930,Special Topics in Geological Sciences",
"700,7000,Seminars and Special Work",
"701,7010,Thesis Research",
"702,7020,Thesis Research",
"711,7110,Upper Atmospheric and Space Physics",
"722,7220,Advanced Topics in Structural Geology",
"731,7310,Advanced Topics in Remote Sensing and Ge",
"733,7330,Advanced Topics in Geodynamics",
"750,7500,Satellite Remote Sensing in Biological O",
"750,7550,Satellite Remote Sensing in Biological O",
"751,7510,Petrology and Geochemistry",
"755,7550,Advanced Topics in Tectonics and Geochem",
"757,7570,Current Research in Petrology and Geoche",
"762,7620,Advanced Topics in Paleobiology",
"771,7710,Advanced Topics in Sedimentology and Str",
"773,7730,Paleobiology",
"775,7750,Advanced Topics in Oceanography",
"780,7800,Earthquake Record Reading",
"781,7810,Exploration Geophysics",
"793,7930,Andes-Himalayas Seminar",
"793,7930,Andes-Himalaya Seminar",
"795,7950,Low Temperature Geochemistry",
"795,7950,Low-Temperature Geochemistry",
"796,7960,Geochemistry of the Solid Earth",
"797,7970,Fluid-Rock Interactions",
"799,7990,Soil, Water, and Geology Seminar",
"850,8500,Master's-Level Thesis Research in Atmosp",
"950,9500,Graduate-Level Dissertation Research in ",
"951,9510,Doctoral-Level Dissertation Research in ",
"ECON,101,1110,Introductory Microeconomics",
"102,1120,Introductory Macroeconomics",
"204,2040,Networks",
"230,2300,International Trade and Finance",
"301,3010,Microeconomics",
"302,3020,Macroeconomics",
"307,3070,Introduction to Peace Science",
"313,3130,Intermediate Microeconomic Theory",
"314,3140,Intermediate Macroeconomic Theory",
"319,3190,Introduction to Statistics and Probabili",
"320,3200,Introduction to Econometrics",
"321,3210,Applied Econometrics",
"322,3220,World Economic History",
"323,3230,American Economic History",
"324,3240,American Economic History",
"325,3250,Cross Section and Panel Econometrics",
"327,3270,Time Series Econometrics",
"331,3310,Money and Credit",
"333,3330,Financial Economics",
"335,3350,Public Finance: The Microeconomics of Go",
"336,3360,Public Finance: Resource Allocation and ",
"337,3370,Equilibrium and Welfare Economics",
"339,3390,State and Local Public Finance",
"341,3410,Economics of Wages and Employment II",
"342,3420,Economic Analysis of the University",
"344,3440,Development of Economic Thought and Inst",
"347,3470,Economics of Education",
"351,3510,Industrial Organization I",
"352,3520,Industrial Organization II",
"354,3540,The Economics of Regulation",
"358,3580,Behavioral Economics",
"361,3610,International Trade Theory and Policy",
"362,3620,International Monetary Theory and Policy",
"367,3670,Game Theoretic Methods",
"368,3680,Game Theory",
"371,3710,Economic Development",
"372,3720,Applied Economic Development",
"404,4040,Economics and the Law",
"405,4050,Auction Seminar",
"408,4080,Production Economics and Policy",
"409,4090,Environmental Economics",
"416,4160,Intertemporal Economics",
"417,4170,History of Economic Analysis",
"419,4190,Economic Decisions under Uncertainty",
"430,4300,Policy Analysis: Welfare Theory, Agricul",
"431,4310,Monetary Economics",
"434,4340,Financial Economics, Derivatives, and Ri",
"443,4430,Compensation, Incentives, and Productivi",
"444,4440,Evolution of Social Policy in Britain an",
"445,4450,Industrial Policy",
"447,4470,Economics of Social Security",
"450,4500,Resource Economics",
"451,4510,Economic Security",
"455,4550,Income Distribution",
"456,4560,The Economics of Employee Benefits",
"457,4570,Women in the Economy",
"458,4580,Topics in 20th-Century Economic History",
"459,4590,Economic History of British Labor 1750 t",
"460,4600,Economic Analysis of the Welfare State",
"461,4610,The Economics of Occupational Safety and",
"469,4690,China's Economy under Mao and Deng",
"473,4730,Economics of Export-Led Development",
"474,4740,Economics of Hunger and Malnutrition",
"475,4750,The Economy of India",
"476,4760,Decision Theory I",
"477,4770,Decision Theory II",
"480,4800,The Family in Asia",
"494,4940,Economic Methods for Engineering and Man",
"498,4980,Independent Study in Economics",
"499,4990,Honors Program",
"609,6090,Microeconomic Theory I",
"610,6100,Microeconomic Theory II",
"611,6110,Microeconomic Theory III",
"613,6130,Macroeconomic Theory I",
"614,6140,Macroeconomic Theory II",
"617,6170,Intermediate Mathematical Economics I",
"618,6180,Intermediate Mathematical Economics II",
"619,6190,Econometrics I",
"620,6200,Econometrics II",
"676,6760,Decision Theory I",
"677,6770,Decision Theory II",
"691,6910,Health Economics I",
"692,6920,Health Economics II",
"699,6990,Readings in Economics",
"703,7030,Seminar in Peace Science",
"710,7100,Stochastic Economics: Concepts and Techn",
"712,7120,Advanced Macroeconomics",
"713,7130,Advanced Macroeconomics II",
"714,7140,Empirical Macroeconomics",
"717,7170,Mathematical Economics",
"718,7180,Topics in Mathematical Economics",
"719,7190,Advanced Topics in Econometrics I",
"720,7200,Advanced Topics in Econometrics II",
"721,7210,Time Series Econometrics",
"722,7210,Topics in Time Series Econometrics",
"723,7230,Semi/Non Parametric Econometrics",
"731,7310,Monetary Economics",
"732,7320,Monetary Economics",
"735,7350,Public Finance: Resource Allocation and ",
"736,7360,Public Finance: Resource Allocation and ",
"737,7370,Location Theory and Regional Analysis",
"738,7380,Public Choice",
"739,7390,Advanced Topics in State and Local Publi",
"740,7400,Social and Economic Data",
"741,7410,Seminar in Labor Economics",
"742,7420,Seminar in Labor Economics",
"743,7430,Seminar in Labor Economics",
"746,7460,Economics of Higher Education",
"747,7470,Economics of Higher Education",
"748,7480,Applied Econometrics I",
"749,7490,Applied Econometrics II",
"751,7510,Industrial Organization and Regulation",
"752,7520,Industrial Organization and Regulation",
"756,7560,Noncooperative Game Theory",
"757,7570,Economics of Imperfect Information",
"758,7580,Psychology and Economic Theory",
"760,7600,Topics in Political Economy",
"761,7610,International Economics: Trade Theory an",
"762,7620,International Economics: International F",
"763,7630,Topics in International Economic History",
"770,7700,Topics in Economic Development",
"771,7711,Empirical Methods for the Analysis of Ho",
"772,7720,Economics of Development",
"773,7730,Economic Development",
"774,7740,Economic Systems",
"775,7750,Development Microeconomics",
"784,7840,Seminars in Advanced Economics",
"785,7850,Third-Year Research Seminar",
"ENGL,200,2000,Introduction to Criticism and Theory",
"201,2010,The English Literary Tradition",
"202,2020,The English Literary Tradition",
"203,2030,Introduction to American Literatures",
"204,2040,Introduction to American Literatures: Th",
"205,2050,Introduction to World Literatures in Eng",
"206,2060,The Great American Cornell Novel",
"207,2070,Introduction to Modern Poetry",
"208,2080,Shakespeare and the 20th Century",
"209,2090,Introduction to Cultural Studies",
"210,2100,Medieval Romance: Voyage to the Otherwor",
"213,2130,Cultures of the Middle Ages",
"217,2170,History of the English Language",
"227,2270,Shakespeare",
"251,2510,20th-Century Women Writers",
"252,2520,Late 20th-Century Women Writers and Visu",
"255,2550,African Literature",
"260,2600,Introduction to American Indian Literatu",
"262,2620,Asian American Literature",
"263,2630,Studies in Film Analysis: Hitchcock",
"264,2640,The Private I and the Public Eye: Explor",
"268,2680,Culture and Politics of the 1960s",
"270,2700,The Reading of Fiction",
"271,2710,The Reading of Poetry",
"272,2720,The Reading of Drama",
"273,2730,Children's Literature",
"274,2740,Scottish Literature",
"276,2760,Desire",
"277,2770,Literatures of the Black Atlantic: Readi",
"280,2800,Creative Writing",
"281,2810,Creative Writing",
"288,2880,Expository Writing",
"289,2890,Expository Writing",
"292,2920,Introduction to Visual Studies",
"296,2960,Linguistic Theory and Poetic Structure",
"302,3020,Literature and Theory",
"308,3080,Icelandic Family Sagas",
"311,3110,Old English",
"311,3110,Old English",
"312,3120,Beowulf",
"316,3160,Beasts, Bodies, and Boundaries",
"319,3190,Chaucer",
"320,3200,Renaissance Literatures: Blood Politics",
"321,3210,Spenser and Malory",
"322,3220,Studies in Renaissance Literature: Liter",
"323,3230,Renaissance Poetry",
"327,3270,Shakespeare",
"328,3280,The Bible as Literature",
"329,3290,Milton",
"330,3300,Restoration and 18th-Century Literature",
"333,3330,The 18th-Century English Novel",
"335,3350,Modern Western Drama, Modern Western The",
"340,3400,Studies in Romantic Literature: Green Ro",
"344,3440,American Film Melodrama",
"345,3450,Victorian Controversies",
"348,3480,Studies in Women's Literature: The Femin",
"349,3490,Shakespeare and Europe",
"350,3500,The Modern Tradition",
"352,3520,Americans Abroad",
"353,3530,The Modern Indian Novel",
"354,3540,The British Modernist Novel",
"355,3550,Decadence",
"360,3600,Another World Is Possible: The American ",
"361,3610,Studies in the Formation of U.S. Literat",
"362,3620,Studies in U.S. Literature after 1850: R",
"363,3630,Studies in U.S. Literature: The Age of R",
"364,3640,Studies in U.S. Literature After 1950: N",
"365,3650,American Literature Since 1945",
"366,3660,Studies in U.S. Fiction Before 1900: The",
"367,3670,Studies in U.S. Fiction After 1900: Majo",
"368,3680,Faulkner",
"369,3690,Fast-Talking Dames and Sad Ladies: 1940s",
"370,3700,The 19th-Century Novel",
"371,3710,The Literature of the Outlaw",
"372,3720,Medieval and Renaissance Drama",
"373,3730,Weird Science, Hard Poems",
"374,3740,Slavery in 20th-Century Film and Fiction",
"375,3750,Studies in Drama and Theatre: 20th-Centu",
"376,3760,Special Topics in Drama and Performance",
"379,3790,Reading Nabokov",
"380,3800,Time Sensitive: Poets of the Last Ten Mi",
"381,3810,Reading as Writing, Writing as Reading",
"382,3820,Narrative Writing",
"383,3830,Narrative Writing",
"384,3840,Verse Writing",
"385,3850,Verse Writing",
"386,3860,Philosophic Fictions",
"387,3870,Autobiography: Theory and Practice",
"388,3880,The Art of the Essay",
"390,3090,Autobiography: The Politics of History, ",
"397,3970,Policing and Prisons in American Culture",
"398,3980,Latino/a Popular Culture",
"402,4020,Literature as Moral Inquiry",
"403,4030,Advanced Seminar in Poetry: Studies in A",
"404,4040,Paleography, Bibliography, and Reception",
"405,4050,The Politics of Contemporary Criticism",
"407,4070,Society for the Humanities",
"408,4080,Society for the Humanities",
"412,4120,A Usable Past: History and Story in the ",
"413,4130,Middle English",
"414,4140,Bodies of the Middle Ages: Embodiment, I",
"419,4190,The Old English Laws and Their Politico-",
"420,4200,Renaissance Humanism",
"421,4210,Advanced Seminar in the Renaissance: Lit",
"422,4220,Renaissance Traffick”",
"423,4230,Renaissance Lyric",
"426,4260,The Animal",
"427,4270,Advanced Seminar in Shakespeare: The Gre",
"428,4280,Problem Poems: Close Reading and Critica",
"429,4290,Adam's Rib and Other Divine Signs",
"430,4300,Topics in American Studies",
"440,4440,Romantic Drama",
"444,4441,Text Analysis for Production: How to Get",
"446,4660,Comedy and Satire: The 19th Century",
"452,4520,Wilde and Woolf",
"453,4530,20th-Century Women Writers of Color",
"456,4560,Constructing the Book, Reconstructing th",
"457,4570,Constructing the Book, Reconstructing th",
"458,4580,Imagining the Holocaust",
"460,4601,Riddles of Rhythm",
"462,4620,Senior Seminar in Latina/o Studies: Chic",
"465,4650,American Violence",
"467,4670,Black Manhattan: 19191940",
"469,4690,The Paranoid Style in Contemporary Ameri",
"470,4700,Senior Seminar in the Novel: Austen and ",
"472,4720,Islands of Globalization",
"473,4730,Parody",
"474,4740,Senior Seminar on Major Authors: Hemingw",
"475,4750,Senior Seminar in the 20th Century: Narr",
"476,4760,Global Women's Literature",
"477,4600,Melville",
"478,4780,Intersections in Lesbian Fiction",
"479,4790,Advanced Seminar in American Literature:",
"480,4800,Seminar in Writing",
"481,4810,Seminar in Writing",
"482,4820,Hamlet, The Seminar",
"483,4601,Seminar in Comparative 20th-Century Angl",
"486,4860,American Indian Women's Literature",
"490,4900,Literature of the Fin de Siècle",
"491,4910,Honors Seminar I",
"492,4920,Honors Seminar II",
"493,4930,Honors Essay Tutorial I",
"494,4940,Honors Essay Tutorial II",
"495,4950,Independent Study",
"585,5850,Linguistic Theory and Poetic Structure",
"600,6000,Colloquium for Entering Students",
"603,6030,The Question of Feminist and Queer Criti",
"611,6110,Old English",
"612,6120,Beowulf",
"617,6170,Linguistic Structure of Old English",
"619,6190,Chaucer and Gower",
"624,6240,Renaissance Humanism",
"625,6250,Love, Loss, and Lament in the Renaissanc",
"626,6260,Forms of Life in the 16th and 17th Centu",
"629,6290,Deleuze and Lyotard: Aesthetics and Tech",
"633,6330,Satire, Sensibility, Imitation, and Mech",
"639,6390,Studies in Romantic Literature: Writers ",
"640,6400,Keats and His Successors",
"646,6460,The Uses of Inheritance",
"647,6470,Jefferson's America: From the Underside",
"650,6500,Constructing the Book, Reconstructing th",
"651,6510,Camp, Kitsch, and Trash",
"652,6520,Passionate Politics: Affect, Protest Per",
"653,6530,The Modern British Novel: Conrad, Joyce,",
"655,6550,Modernist Fiction and the Erotics of Sty",
"665,6650,Race, Gender, and Crossing Water: Narrat",
"671,6710,Law and Literature",
"681,6810,Trauma, Time, and History",
"699,6990,Studies in African American Literature: ",
"702,7020,Decolonization and Culture: Key Issues i",
"710,7100,Advanced Old English",
"785,7850,Reading for Writers: Contemporary Poetry",
"ENGLB,115,1050,English for Later Bilinguals",
"116,1060,English for Later Bilinguals",
"ENGLF,205,1005,English as a Second Language",
"206,1006,English as a Second Language",
"209,1009,English as a Second Language",
"210,1010,English as a Second Language",
"211,1011,English as a Second Language",
"212,1012,English as a Second Language",
"213,1013,Written English for Non-Native Speakers",
"FGSS,106,1060,FWS: Women and Writing",
"201,2010,Introduction to Feminist, Gender, and Se",
"202,2020,Introduction to Feminist, Gender, and Se",
"209,2090,Seminar in Early American History",
"212,2120,African American Women: 20th Century",
"214,2140,Biological Basis of Sex Differences",
"216,2160,Gender and Colonization in Latin America",
"219,2190,Women and Gender in South Asia",
"246,2460,Contemporary Narratives by Latina Writer",
"249,2490,Feminism and Philosophy",
"251,2510,20th-Century Women Writers",
"270,2700,Gender: Meanings and Practice",
"273,2730,Women in American Society, Past and Pres",
"276,2760,Desire",
"284,2840,Sex, Gender, and Communication",
"304,3040,Sex, Power, and Politics",
"307,3070,African American Women in Slavery and Fr",
"313,3130,Special Topics in Drama and Performance",
"321,3210,Sex and Gender in Cross-Cultural Perspec",
"325,3250,Queer Performance",
"344,3440,Male and Female in Chinese Culture and S",
"347,3470,Asian American Women's History",
"348,3480,Studies in Women's Literature",
"350,3500,Contemporary Issues in Women's Health",
"353,3530,Monsters AZ",
"355,3550,Decadence",
"358,3580,Theorizing Gender and Race in Asian Hist",
"360,3600,Gender and Globalization",
"363,3630,Age of Realism and Naturalism",
"368,3680,Marriage and Sexuality in Medieval Europ",
"369,3690,Fast-Talking Dames and Sad Ladies",
"370,3700,Gender and Age in Archeology",
"385,3850,Gender and Sexual Minorities",
"399,3990,Undergraduate Independent Study",
"400,4000,Senior Seminar in Feminist, Gender, and ",
"404,4040,Women Artists",
"406,4060,The Culture of Lives",
"410,4100,Health and Survival Inequalities",
"411,4110,Seminar: Devolution and Privatization: C",
"414,4140,Bodies in the Middle Ages: Embodiment, I",
"416,4160,Gender and Sex in South East Asia",
"420,4200,Government Policy Workshop",
"421,4210,Theories of Reproduction",
"422,4220,New York Women",
"425,4250,Bodies in Medicine, Science, and Technol",
"426,4260,Cutting and Film Cutting",
"427,4270,Parody",
"442,4420,Gossip",
"444,4440,Historical Issues of Gender and Science",
"445,4450,American Men",
"446,4460,Women in the Economy",
"448,4480,Global Perspectives on Violence against ",
"451,4510,Women in Italian Renaissance Art",
"461,4610,Sexuality and the Law",
"462,4620,Diversity and Employee Relations",
"475,4750,Advanced Undergraduate Seminar in Global",
"476,4760,Global Women's Literature:",
"477,4770,Intersections in Lesbian Fiction",
"478,4780,Senior Seminar in the 20th Century: Narr",
"480,4800,Studies in Gender Theory: Kinship and Em",
"499,4990,Senior Honors Thesis",
"603,6030,The Question of Feminist and Queer Criti",
"604,6040,Passionate Politics: Affect, Protest, Pe",
"605,6050,Camp, Kitsch and Trash",
"606,6060,Psychology of Adolescence in Case Study",
"611,6110,Seminar: Devolution and Privatization: C",
"612,6120,Population and Development in Asia",
"614,6140,Gender and International Development",
"617,6170,Feminist Methodology",
"618,6180,The Psychology of Moral Development and ",
"620,6200,Government Policy Workshop",
"621,6210,Black Communities and the Politics of He",
"624,6240,Epistemological Development and Reflecti",
"628,6280,Love, Loss, and Lament in the Renaissanc",
"631,6210,Sex and Gender in Cross-Cultural Perspec",
"636,6360,Comparative History of Women and Work",
"637,6370,Parody",
"638,6380,Seminar in Dramatic Theory: Theater and ",
"640,6400,Historical Issues of Gender and Science",
"642,6420,Gossip",
"655,6550,Modernist Fiction and the Erotics of Sty",
"670,6700,Gender and Age in Archeology",
"675,6750,Advanced Undergraduate Seminar in Global",
"691,6910,Gender and Sexuality in Early Modern Eur",
"695,6950,Topics in Music: Gender, Sexuality, and ",
"699,6990,Topics in Feminist, Gender, and Sexualit",
"762,7620,Sexuality and the Law",
"FILM,265,2650,Studies in Film Analysis: Hitchcock's Fi",
"274,2740,Introduction to Film Analysis: Meaning a",
"276,2760,Survey of American Film",
"293,2930,Middle Eastern Cinema",
"305,3050,Americans Abroad",
"324,3240,Animation Workshop: Experimental and Tra",
"325,3250,Animation History and Practice",
"329,3290,Political Theory and Cinema",
"341,3410,French Film",
"344,3440,American Film Melodrama",
"346,3460,Film Noir",
"369,3690,Fast-Talking Dames and Sad Ladies: 1940s",
"375,3750,History and Theory of the Commercial Nar",
"376,3760,History and Theory of Documentary and Ex",
"377,3770,Introduction to 16mm and Digital Filmmak",
"378,3780,Soviet Film of the 1920s and French Film",
"379,3790,Modern Documentary Film",
"383,3830,Screenwriting",
"386,3860,Cinema and Social Change",
"393,3930,International Film of the 1970s",
"422,4220,Cinematography",
"430,4300,Topics in American Studies: The Cinema a",
"455,4550,History of Modern Polish Film",
"473,4730,Film and Spiritual Questions",
"474,4740,Jung, Film, and the Process of Self-Know",
"475,4750,Seminar in Cinema",
"476,4760,Seminar in the Cinema II",
"477,4770,Intermediate Film and Video Projects: Do",
"478,4780,Intermediate Film and Video Projects: Na",
"485,4850,Undergraduate Internship",
"493,4930,Advanced Film and Video Projects",
"674,6740,Introduction to Film Analysis: Meaning a",
"722,7220,Independent Study in Film for Graduate S",
"FREN,121,1210,Elementary French",
"122,1220,Elementary French",
"123,1230,Continuing French",
"206,2060,French Intermediate Reading and Writing",
"209,2090,French Intermediate Composition and Conv",
"210,2100,Pronunciation of Standard French",
"219,2190,French Intermediate Composition and Conv",
"221,2210,Introduction to Textual Analysis",
"224,2240,The French Experience",
"301,3010,Advanced French Composition and Conversa",
"305,3050,Advanced French through Film",
"312,3120,Advanced French Stylistics",
"313,3130,Advanced French through News",
"321,3210,Readings in Modern French Literature and",
"322,3220,Readings in Early Modern French Literatu",
"331,3310,Detours of Desire: Love in France",
"332,3220,Speed Narrating: Nouvelles, Contes, Réc",
"353,3530,Monsters AX",
"370,3700,The French Enlightenment and the Modern ",
"373,3730,Religious Violence",
"389,3890,Canonical States, Canonical Stages",
"390,3900,The Roots of Modernism",
"404,4040,Troubadours and Heretics",
"413,4130,History of Jews: Modern France",
"418,4180,On the Inner Voice",
"419,4190,Special topics in French Literature",
"420,4200,Special topics in French Literature",
"422,4220,Women's",
"423,4230,Cerebral Seductions",
"424,4240,Psychoanalysis",
"426,4260,Reading French and Francophone",
"429,4290,Honors Work in French",
"430,4300,Honors Work in French",
"442,4420,Sex in French",
"607,6070,Proseminar",
"622,6220,Women's",
"629,6290,Colonial Language and Social Order",
"630,6300,French Reading for Graduates",
"639,6390,Special Topics in French Literature",
"640,6400,Special Topics in French Literature",
"642,6420,Sex in French",
"663,6330,Idolatry: Vision and Belief",
"667,6670,Rethinking the Symbolic",
"672,6720,Deleuze and Lyotard: Aesthetics and Tech",
"690,6900,Gender and Sexuality in Early Modern Eur",
"GERST,121,1210,Exploring German Contexts I",
"122,1220,Exploring German Contexts II",
"123,1230,Expanding the German Dossier",
"200,2000,Germany: Intercultural Context",
"202,2020,Literary Texts and Contexts",
"204,2040,Working with Texts",
"206,2060,German in Business Culture",
"301,3010,Scenes of the Crime: German Mystery and ",
"302,3020,Youth Culture: Adolescence in German Fic",
"303,3030,Angels and Demons in German Literature",
"306,3060,German Media",
"321,3210,After the Fires: Divided Germany 194519",
"325,3250,The Age of Goethe",
"353,3530,19th- and 20th-century European Philosop",
"355,3550,Political Theory and Cinema",
"360,3600,Words and Music",
"374,3740,Opera and Culture",
"377,3770,The Art of the Historical Avant-Garde",
"405,4050,Introduction to Medieval German Literatu",
"406,4060,Introduction to Medieval German Literatu",
"407,4070,Teaching German as a Foreign Language",
"410,4100,Senior Seminar",
"415,4150,Marx, Freud, Nietzsche",
"417,4170,Topics in German Philosophy",
"418,4180,New German Literature: After the Wall",
"419,4190,Vienna 1900 and the Challenge of Moderni",
"420,4200,Faust: Close Reading",
"424,4240,The Totalitarian Order: Vision and Criti",
"426,4260,The Animal",
"428,4280,Genius and Madness in German Literature",
"433,4330,History of Modern Jewry",
"441,4410,Introduction to Germanic Linguistics",
"442,4420,Changing Worlds: Migration, Minorities, ",
"443,4430,Love as Fiction. German Novellas from Th",
"451,4510,Independent Study",
"452,4520,Independent Study",
"453,4530,Honors Research",
"454,4540,Honors Thesis",
"457,4570,Imagining the Holocaust",
"496,4960,Theorizing the Public Sphere",
"615,6150,Jews in German Culture Since 1945",
"616,6160,Spaces of Literature",
"618,6180,The Science of the Experience of Conscio",
"620,6200,Faust: Close Reading",
"622,6220,Cultural Pessimism and the Fin-de-Siècl",
"627,6270,Baroque",
"630,6300,Classicism and Idealism",
"631,6310,Reading Academic German I and II",
"632,6320,Reading Academic German I and II",
"634,6340,German Romanticism",
"636,6360,Kleist and Kafka: Prose Works",
"637,6370,19th-Century Fiction: The Realist Projec",
"638,6380,Readings of Recollection",
"639,6390,Walter Benjamin: Constellations of Thoug",
"647,6470,German Literature from 1949 to 1989",
"650,6500,Culture in the Weimar Period",
"653,6530,Opera",
"655,6550,German 20th-Century Poetry",
"658,6580,Old High German, Old Saxon",
"662,6620,Reassembling Culture: Montage and Collag",
"663,6630,Nietzsche and Heidegger",
"668,6680,Literature and the Uncanny",
"671,6710,Postcolonial Theory and German Studies",
"689,6890,The Aesthetic Theory of Adorno",
"696,6960,Conceptualizing Cultural Contact",
"753,7530,Tutorial in German Literature",
"754,7540,Tutorial in German Literature",
"GOVT,111,1111,Introduction to American Government and ",
"131,1313,Introduction to Comparative Government a",
"161,1615,Introduction to Political Philosophy",
"181,1817,Introduction to International Relations",
"182,1827,WIM Section: Introduction to Internation",
"222,2225,Controversies About Equality",
"248,2485,Ethics and International Relations",
"274,2747,History of Modern Middle East in 1920th",
"282,2827,China and the World",
"294,2947,Global Thinking",
"302,3021,Social Movements in American Politics",
"303,3031,Imagining America",
"304,3043,Sex, Power, and Politics",
"306,3063,Society and Party Politics",
"307,3071,Introduction to Public Policy",
"309,3091,Science in the American Polity",
"311,3111,Urban Politics",
"312,3128,America's Changing Faces",
"313,3131,The Nature, Functions, and Limits of Law",
"314,3141,Prisons",
"316,3161,The American Presidency",
"318,3181,U.S. Congress",
"319,3191,Racial and Ethnic Politics",
"321,3212,Public Opinion and Representation",
"329,3293,Comparative Politics of Latin America",
"330,3303,Politics of the Global North",
"331,3313,Middle Eastern Politics",
"332,3323,Modern European Politics",
"336,3363,Postcommunist Transitions",
"338,3383,Comparative Political Economy",
"339,3393,Political Economy of Development",
"341,3413,Modern European Society and Politics",
"342,3427,Germany and Europe",
"343,3437,Politics of the European Union",
"351,3513,Politics of South Asia",
"354,3549,Capitalism, Competition, and Conflict in",
"360,3605,Ideology",
"361,3615,Liberalism and Its Critics",
"363,3633,Politics and Culture",
"364,3645,Politics of Nations Within”",
"366,3665,American Political Thought from Madison ",
"368,3685,Global Justice",
"370,3705,Political Theory and Cinema",
"375,3755,Visual Culture and Social Theory",
"383,3837,The Cold War",
"385,3857,American Foreign Policy",
"386,3867,The Causes of War",
"389,3898,International Law",
"393,3937,Introduction to Peace Studies",
"404,4041,American Political Development in the 20",
"405,4051,The Postmodern Presidency: 2004",
"406,4061,Politics of Slow-Moving Crisis",
"414,4142,Causes and Consequences of U.S. Foreign ",
"423,4231,The 1960s: Conceptualizing the Future fr",
"424,4241,Contemporary American Politics",
"426,4264,Social Movements in Latin America",
"428,4281,Government and Public Policy: An Introdu",
"431,4313,Model European Union I",
"432,4323,Model European Union II",
"458,4585,American Political Thought",
"461,4616,Interpreting Race and Racism: DuBois",
"462,4625,Sexuality and the Law",
"463,4635,Feminist Theory/Law and Society",
"464,4646,Theories of Empire",
"466,4665,Islamism",
"470,4705,Contemporary Reading of the Ancients",
"471,4715,Critical Reason, The Basics: Kant, Hegel",
"473,4735,Marx, Freud, Nietzsche",
"480,4809,Politics of '70s Films",
"482,4827,Unifying While Integrating: China and th",
"483,4837,The Military and New Technology",
"487,4877,Asian Security",
"491,4917,Ethics in International Relations",
"494,4949,Honors Seminar: Thesis Clarification and",
"495,4959,Honors Thesis: Research and Writing",
"499,4999,Undergraduate Independent Study",
"500,4998,Politics and Policy: Theory, Research, a",
"601,6019,Methods of Political Analysis I",
"602,6029,Methods of Political Analysis II",
"603,6031,Field Seminar in American Politics",
"605,6053,The Comparative Method in International ",
"606,6067,Field Seminar in International Relations",
"607,6075,Field Seminar in Political Thought",
"610,6101,Political Identity: Race, Ethnicity, and",
"612,6121,American Political Development in the 20",
"614,6142,Causes and Consequences of U.S. Foreign ",
"615,6151,State and Economy in Comparative Perspec",
"620,6202,Political Culture",
"626,6264,Social Movements in Latin America",
"627,6274,People, Markets, and Democracy",
"629,6291,Contemporary American Politics",
"630,6301,Institutions",
"634,6349,New Life Sciences: Emerging Technologies",
"635,6353,Field Seminar in Comparative Politics",
"639,6393,Comparative Political Participation",
"641,6413,Revitalizing Labor: A Comparative Perspe",
"642,6423,Feminist Methodology",
"652,6523,Political Culture",
"657,6573,Comparative Democratization",
"658,6585,American Political Thought",
"659,6595,Ethics and Cultural Difference",
"660,6603,States and Social Movements",
"661,6615,Secession, Intervention, and Just-War Th",
"662,6625,Field Seminar in Political Theory",
"664,6645,Democratic Theory",
"666,6665,Media Theory: Film and Photograph",
"668,6685,Normative Political Theory",
"669,6695,Modern Social Theory I",
"670,6705,Modern Social Theory II",
"677,6775,Language and Politics",
"678,6786,Theories of Empire",
"681,6817,Politics of Transnationalism",
"682,6827,Unifying While Integrating: China and th",
"685,6857,International Political Economy",
"687,6877,Asian Security",
"688,6887,Political Economy and National Security",
"689,6897,International Security Politics",
"691,6917,Normative Issues in IR",
"692,6927,Administration of Agriculture and Rural ",
"699,6999,CPAs Weekly Colloquium",
"703,7035,Political Economy",
"706,7063,Labor in Global Cities",
"728,7281,Government and Public Policy",
"735,7353,Politics of South Asia",
"760,7605,Theoretical Approaches to Ideology",
"762,7625,Sexuality and the Law",
"799,7999,Independent Study",
"GREEK,101,1101,Elementary Ancient Greek I",
"102,1102,Elementary Ancient Greek II",
"103,1103,Intensive Greek",
"104,1105,Elementary Ancient Greek III",
"201,2101,Greek Prose",
"202,2105,The Greek New Testament",
"203,2103,Homer",
"204,2104,Euripides: Alcestis",
"301,3101,Greek Epic",
"302,3102,Greek Historiography and Oratory",
"303,3103,Undergraduate Seminar: Greek Drama",
"304,3104,Greek Philosophy and Rhetoric",
"385,3185,Independent Study in Greek, Undergraduat",
"417,4101,Advanced Readings in Greek Literature",
"421,4451,Greek Comparative Grammar",
"425,4455,Greek Dialects",
"427,4457,Homeric Philology",
"429,4459,Mycenaean Greek",
"605,7105,Graduate Survey of Greek Literature",
"606,7106,Graduate Survey of Greek Literature",
"611,7111,Greek Philosophical Texts",
"671,7171,Graduate Seminar in Greek",
"672,7172,Graduate Seminar in Greek",
"701,7910,Independent Study for Graduate Students ",
"HINDI,101,1101,Elementary Hindi",
"102,1102,Elementary Hindi",
"109,1109,Accelerated Elementary Hindi",
"110,1110,Accelerated Elementary Hindi",
"201,2201,Intermediate Hindi",
"202,2202,Intermediate Hindi",
"301,3301,Advanced Hindi Reading",
"302,3302,Advanced Hindi Reading",
"431,4431,Directed Study",
"432,4432,Directed Study",
"HIST,101,1101,First-Year Writing Seminar: The Blues an",
"103,1103,First-Year Writing Seminar: Immigrant Ex",
"114,1141,First-Year Writing Seminar: Witchcraft i",
"119,1190,First-Year Writing Seminar: Gandhi and t",
"130,1300,First-Year Writing Seminar: History of t",
"140,1400,First-Year Writing Seminar: Kipling's In",
"151,1510,Introduction to Western Civilization",
"152,1520,Intro to Western Civilization Part II",
"153,1530,Introduction to American History",
"154,1531,Introduction to American History",
"190,1900,Introduction to Asian Civilizations",
"191,1910,Introduction to Modern Asian History",
"195,1950,Colonial Latin America",
"196,1960,Modern Latin America",
"201,2001,Supervised Reading",
"202,2020,The Court, Crime, and the Constitution",
"203,2030,Wilderness in North American History and",
"205,2050,The French Enlightenment: Methods, Ambit",
"206,2061,Small Wars in Greece and Rome",
"207,2070,The Occidental Tourist: Travel Writing a",
"208,2081,Microhistory and the Margins of Early Mo",
"209,2090,Seminar in Early American History",
"210,2100,The Government of God",
"211,2110,Black Religious Traditions: Sacred and S",
"212,2120,AfricanAmerican Women in the 20th Centu",
"214,2141,Crusade, Heresy, and Inquisition in the ",
"215,2150,Middle Ages on Film",
"216,2160,Gender and Colonization in Latin America",
"217,2171,Classic Works of American Cultural Criti",
"218,2180,Seminar on Genocide",
"219,2190,Women and Gender in South Asia: State an",
"220,2200,Travel in American History and Culture",
"221,2211,Seminar: The Blues and American Culture",
"223,2230,International Law",
"224,2240,Art and Politics in 20th-Century Latin H",
"226,2261,Society and Religion in China",
"227,2271,Family Life in Renaissance Italy",
"228,2280,Indian Ocean World",
"229,2290,Jefferson and Lincoln: American Ideas ab",
"230,2300,Seminar in History and Memory",
"234,2340,Seminar: Gender in Early Modern Europe",
"235,2350,Antisemitism and the Crisis of Modernity",
"236,2360,Native Peoples of the Northeast",
"238,2431,Families in China since the 17th Century",
"239,2390,Seminar in Iroquois History",
"241,2410,Riot and Revolution in 19th-Century Afri",
"242,2420,Religion and Politics in American Histor",
"243,2430,History of Things",
"244,2440,The United States in Vietnam",
"245,2450,Drugs: People, Policies, Politics",
"247,2470,The Age of Charlemagne",
"248,2480,Ghosts and Legacies: The Construction of",
"249,2491,French Social Thought from Rousseau to F",
"250,2500,Technology in Society",
"251,2510,Race and Popular Culture",
"252,2520,Modern East-Central Europe",
"255,2550,The Past and Present of Pre-Colonial Afr",
"256,2560,War and Peace in Greece and Rome",
"257,2571,China Encounters the World",
"259,2590,The Crusades",
"260,2600,Latinos in the United States: Colonial t",
"261,2610,Latinos in the United States: 1898 to th",
"262,2620,The Middle Ages: Introduction and Sample",
"264,2640,Introduction to Asian American History",
"265,2650,Ancient Greece from Homer to Alexander t",
"266,2660,Introduction to Native American History",
"267,2670,History of Rome I",
"268,2671,History of Rome II",
"269,2691,Holy War, Crusade, and Jihad in Judaism,",
"270,2700,The French Experience",
"271,2711,Politics of Violence in 20th-Century Eur",
"272,2720,The Atlantic World from Conquest to Revo",
"273,2730,Women in American Society, Past and Pres",
"274,2740,Foodways: A Social History of Food and E",
"275,2750,History of Modern South Asia",
"276,2674,History of the Middle East in the 20th C",
"277,2771,Getting Medieval I: The Early Middle Age",
"278,2772,Getting Medieval II: The Later Middle Ag",
"279,2790,International Humanitarianism",
"280,2800,Introduction to Korea",
"281,2810,Science in Western Civilization: Medieva",
"282,2820,Science in Western Civilization: Newton ",
"285,2850,From Medievalism to Modernity: The Histo",
"286,2861,History of Zionism and the Birth of Isra",
"287,2870,Evolution",
"289,2890,The U.S.Vietnam War",
"291,2910,Modern European Jewish History, 1789 to ",
"292,2920,Inventing an Information Society",
"294,2940,History of China in Modern Times",
"295,2950,Introduction to the History, Language, a",
"297,2971,Politics, Culture, and Society in Early ",
"302,3002,Supervised Research",
"303,3030,AfricanAmerican Women in Slavery and Fr",
"305,3050,Britain, 1660 to 1815",
"306,3060,Modern Mexico: From Independence to the ",
"307,3070,British History, 17601870",
"308,3080,History of Post-War Germany",
"309,3090,History and Geographical Imagination",
"310,3101,British History, 1870Present",
"311,3110,Andean History and Ethnohistory",
"312,3120,Forging Nations: Experiments in Latin Am",
"313,3130,U.S. Foreign Relations, 17501912",
"314,3140,History of American Foreign Policy, 1912",
"315,3150,Environmental History: The United States",
"316,3160,American Political Thought: From Madison",
"318,3180,American Constitutional Development",
"319,3191,Martial Arts and Society and Religion",
"320,3200,The Viking Age",
"321,3210,Colonial North America to 1763",
"323,3231,Race and Politics in 20th-Century Americ",
"324,3240,Varieties of American Dissent, 18801900",
"325,3250,Age of the American Revolution, 1754 to ",
"326,3260,History of the Modern British Empire",
"327,3270,The Old South",
"328,3280,Construction of Modern Japan",
"329,3290,Making Modern Science",
"330,3300,Japan from War to Prosperity",
"331,3310,Causes of the American Civil War, 1815 t",
"333,3331,Latin American Studies: Issues in Interd",
"338,3644,Sages and Saints/Ancient World",
"339,3391,Seminar on American Relations with China",
"340,3400,Recent American History, 1925 to 1965",
"341,3410,Recent American History, 1965 to the Pre",
"342,3420,History of Modern South Asia, 1700 to 19",
"343,3430,American Civil War and Reconstruction, 1",
"344,3440,South Asia and the Early Modern World",
"345,3450,Cultural and Intellectual Life of 19th-C",
"346,3460,The Modernization of the American Mind",
"347,3470,Asian American Women's History",
"348,3481,Modern France: 1870 to the Present",
"349,3490,Renaissance England, 1485 to 1660",
"350,3500,The Italian Renaissance",
"351,3510,Machiavelli",
"352,3520,20th-Century East AsianAmerican Relatio",
"356,3560,The Era of the French Revolution and Nap",
"357,3570,Engineering in American Culture",
"358,3580,Survey of German History, 1890 to the Pr",
"361,3611,Bakumatsu-Ishin: Conflicts and Transform",
"363,3631,History of Battle",
"364,3640,The Culture of the Renaissance II",
"365,3650,West Africa and the West: 14501850",
"366,3661,History of Southern Africa",
"367,3671,Survey of German History, 16481870",
"368,3680,Marriage and Sexuality in Medieval Europ",
"368,3860,Marriage and Sexuality in Medieval Europ",
"369,3690,The History of Florence in the Time of t",
"370,3700,History of the Holocaust",
"371,3710,World War II in Europe",
"373,3730,Law, Crime, and Society in Early Modern ",
"375,3750,The African American Workers, 1865 to 19",
"376,3760,The AfricanAmerican Workers, 1910 to th",
"378,3780,Topics in U.S. Women's History",
"379,3790,The First World War: Causes, Conduct, Co",
"388,3880,History of Vietnam",
"395,3950,Premodern Southeast Asia",
"396,3960,Southeast Asian History from the 18th Ce",
"400,4000,Honors Proseminar",
"401,4001,Honors Guidance",
"402,4002,Honors Research",
"403,4030,History of the U.S. Senate in the 20th C",
"404,4041,Ethnicity, Race, and Indigeneity in Lati",
"405,4050,U.S.Cuba Relations",
"406,4061,The New Cold War History",
"408,4080,Feudalism and Chivalry: Secular Culture ",
"409,4091,Contesting Identities in Modern Egypt",
"410,4100,Archipelago: Worlds of Indonesia",
"411,4111,Undergraduate Seminar: History of the Am",
"415,4150,Seminar in the History of Biology",
"416,4160,Undergraduate Seminar on Gender and Sexu",
"417,4170,History of Jews in Modern France",
"419,4190,Seminar in American Social History",
"420,4200,Asian American Communities",
"421,4210,Undergraduate Seminar in Cultural Histor",
"422,4221,British in India, 17501830",
"423,4230,Chronicles of the Conquest of Latin Amer",
"424,4240,Art and Politics in 20th-Century Latin A",
"425,4251,Ethics, Race, Religion, and Health Polic",
"426,4260,The West and Beyond: Frontiers and Borde",
"428,4261,Commodification in Historical Perspectiv",
"429,4290,The Mediterranean and Cervantes",
"430,4300,America in the Camera's Eye",
"431,4310,Farmworkers",
"432,4320,Topics in Ancient Greek History",
"433,4330,History of Modern German Jewry: From Enl",
"436,4360,Conflict Resolution in Medieval Europe",
"438,4381,Roman Social History",
"439,4390,Reconstruction and the New South",
"441,4411,Fourth Century and Early History of Gree",
"442,4421,To Be Enslaved Then and Now",
"444,4440,American Men",
"445,4451,New York Women",
"446,4460,Strategy in World War II",
"447,4470,Crusaders and Chroniclers",
"452,4520,History of the New Europe",
"456,4560,Topics in Medieval Historiography",
"457,4570,Seminar in European Fascism",
"458,4581,Intelligibility in Science",
"462,4620,Popular Culture in European History",
"463,4630,War and Society in Eastern Europe",
"465,4651,Special Topics: Chinese Historical Docum",
"466,4660,Iroquois History",
"468,4680,Love and Sex in the Italian Renaissance",
"469,4691,The Old English Laws and Their Politico-",
"473,4731,Politics and Protest in America: From Ci",
"474,4740,Topics in Modern European Intellectual a",
"476,4760,History and Story in the North Sagas",
"477,4771,Improvising Across the Disciplines",
"482,4821,Religious and Secular in American Cultur",
"483,4831,Christianization/Roman World",
"485,4850,Immigration: History, Theory, and Practi",
"486,4861,Classics and Early America",
"487,4870,Seminar on Thailand",
"488,4880,Seminar in the Late 19th-Century Europea",
"490,4900,New World Encounters, 1500 to 1800",
"491,4910,Approaches to Medieval Violence",
"491,4910,Approaches to Medieval Violence",
"492,4921,India: Nation and Narration, History, an",
"493,4930,Problems in Modern Chinese History",
"495,4950,Gender, Power, and Authority in England,",
"496,4961,History of Medicine and Healing in China",
"497,4970,Jim Crow and Exclusion-Era America",
"499,4990,Problems in Modern Chinese History",
"500,4997,Undergraduate Research Seminar",
"507,5070,Graduate Seminar: The Occidental Tourist",
"601,6010,European History Colloquium",
"602,6020,East Asian Colloquium",
"604,6040,Colloquium in American History",
"605,6050,U.S.Cuba Relations",
"606,6061,The New Cold War History",
"607,6041,Race and Ethnicity in Latin America",
"608,6051,Themes and Issues in Modern European His",
"610,6101,AfroAmerican Historiography",
"612,6120,Colonial Latin America",
"614,6140,Readings in Cultural Materialism: Theory",
"615,6150,The Past in the Present/The Present in t",
"616,6160,Gender and Sexuality in Southeast Asia",
"617,6100,Archipelago: Worlds of Indonesia",
"618,6180,Readings in 20th-Century U.S. Political,",
"619,6190,Seminar in the History of Technology",
"620,6200,Intelligibility in Science",
"623,6230,Nation, Empire, and Identity in 17th-Cen",
"626,6260,Graduate Seminar in the History of Ameri",
"627,6270,Graduate Seminar in Early American Histo",
"628,6280,Graduate Seminar: 19th-Century U.S. Hist",
"630,6300,Topics in Ancient History",
"631,6310,Farmworkers",
"633,6330,Topics in Ancient Greek History",
"636,6360,Ancient Warfare",
"637,6370,Popular Culture in Europe from the Middl",
"638,6381,Roman Social History",
"639,6390,Mao and the Chinese Revolution",
"641,6410,Science, Technology, Gender: Historical ",
"642,6420,The Politics of History-Writing: Histori",
"648,6480,Historiography of Latin America",
"649,6481,Seminar in Latin American History",
"654,6540,Topics in East-Central European History",
"655,6550,Early Modern Atlantic World",
"656,6560,Topics in Medieval Historiography",
"661,6610,Graduate Seminar in 20th-Century German ",
"663,6630,Graduate Seminar in Renaissance History",
"664,6641,Medieval Poverty",
"665,6651,Historical Documents on Modern China",
"667,6671,Spartacus",
"669,6691,The Old English Laws and Their Politico-",
"672,6720,Seminar in European Intellectual History",
"673,6730,Topics in Modern European Intellectual H",
"676,6760,History and Story in the North Sagas",
"677,6771,Improvising Across the Disciplines",
"680,6800,Historical Approaches to Science",
"681,6810,Intellectual History of Empire",
"683,6830,Seminar in American Labor History",
"686,6861,Readings in Japanese Historiography",
"687,6870,Seminar on Thailand",
"688,6880,History of Vietnam",
"692,6920,Approaches to Medieval Violence",
"693,6930,Problems in Modern Chinese History",
"694,6940,Problems in Modern Chinese History",
"696,6960,Southeast Asian History from the 18th Ce",
"697,6970,Jim Crow and Exclusion-Era America",
"698,6980,Seminar in Japanese Thought",
"709,7090,Introduction to the Graduate Study of Hi",
"711,7110,Introduction to Science and Technology S",
"804,8004,Supervised Reading",
"807,8007,Supervised Reading",
"HUNGR,131,1131,Elementary Hungarian",
"132,1132,Elementary Hungarian",
"133,1133,Continuing Hungarian",
"134,1134,Continuing Hungarian",
"300,3300,Directed Studies",
"427,4427,Structure of Hungarian",
"IM,351,3510,Independent Study",
"499,4990,Honors Research",
"INDO,121,1121,Elementary Indonesian",
"122,1122,Elementary Indonesian",
"205,2205,Intermediate Indonesian",
"206,2206,Intermediate Indonesian",
"301,3301,Advanced Indonesian",
"302,3302,Advanced Indonesian",
"431,4431,Directed Study",
"432,4432,Directed Study",
"INFO,130,1300,Introductory Design and Programming for ",
"172,1700,Computation, Information, and Intelligen",
"204,2040,Networks",
"214,2140,Cognitive Psychology",
"230,2300,Intermediate Design and Programming for ",
"245,2450,Psychology of Social Computing",
"292,2921,Inventing an Information Society",
"295,2950,Mathematical Methods for Information Sci",
"320,3200,New Media and Society",
"330,3300,Data-Driven Web Applications",
"345,3450,HumanComputer Interaction Design",
"345,3450,Human-Computer Interaction Design",
"349,3491,Media Technologies",
"355,3551,Computers: From the 17th Century to the ",
"356,3561,Computing Cultures",
"366,3650,History and Theory of Digital Art",
"372,3720,Explorations in Artificial Intelligence",
"387,3871,The Automatic Lifestyle: Consumer Cultur",
"415,4150,Environmental Interventions",
"429,4290,Copyright in the Digital Age",
"430,4300,Information Retrieval",
"431,4302,Web Information Systems",
"435,4350,Seminar on Applications of Information S",
"435,4390,Seminar on Applications of Information S",
"440,4400,Advanced HumanComputer Interaction Desi",
"440,4400,Advanced Human-Computer Interaction Desi",
"444,4144,Responsive Environments",
"445,4450,Seminar in Computer-Mediated Communicati",
"447,4470,Social and Economic Data",
"450,4500,Language and Technology",
"490,4900,Independent Reading and Research",
"490,4999,Independent Reading and Research",
"491,4910,Teaching in Information Science, Systems",
"515,5150,Culture, Law, and Politics of the Intern",
"530,5300,The Architecture of Large-Scale Informat",
"614,6140,Cognitive Psychology",
"630,6300,Advanced Language Technologies",
"634,6341,Information Technology in Sociocultural ",
"635,6390,Seminar on Applications of Information S",
"640,6400,HumanComputer Interaction Design",
"640,6400,Human-Computer Interaction Design",
"645,6450,Seminar in Computer-Mediated Communicati",
"648,6648,Speech Synthesis by Rule",
"650,6500,Language and Technology",
"651,6002,Critical Technical Practices",
"651,7002,Critical Technical Practices",
"685,6850,The Structure of Information Networks",
"709,7090,IS Colloquium",
"747,7400,Social and Economic Data",
"790,7900,Independent Research",
"990,9900,Thesis Research",
"ITAL,121,1210,Elementary Italian",
"122,1220,Elementary Italian",
"123,1230,Continuing Italian",
"209,2090,Italian Intermediate Composition and Con",
"219,2190,Italian Intermediate Composition and Con",
"227,2270,Family Life in Renaissance Italy",
"290,2900,Perspectives in Italian Culture",
"295,2950,The Cinematic Eye of Italy",
"297,2970,Introduction to Italian Literature",
"304,3040,Italian After the Renaissance",
"313,3130,Advanced Italian: Language in Italian Cu",
"330,3300,Italian Writing Workshop",
"333,3330,1919 A.D. The Rise of Italian Modernism",
"350,3500,The Italian Renaissance",
"389,3890,Modern Italian Novel",
"419,4190,Special Topics in Italian Literature",
"420,4200,Special Topics in Italian Literature",
"429,4290,Honors Work in Italian",
"430,4300,Honors Work in Italian",
"445,4450,Decameron",
"445,4450,Decameron",
"607,6070,Proseminar",
"633,6330,1919 A.D. The Rise of Italian Modernism",
"639,6390,Special Topics in Italian Literature",
"640,6400,Special Topics in Italian Literature",
"645,6450,Decameron",
"JAPAN,101,1101,Elementary Japanese",
"102,1102,Elementary Japanese",
"159,1159,Summer Intensive Japanese",
"160,1160,Introductory Intensive Japanese",
"201,2201,Intermediate Japanese Conversation I",
"202,2202,Intermediate Japanese Conversation I",
"203,2202,Intermediate Japanese Reading I",
"204,2204,Intermediate Japanese Reading I",
"241,2241,Intermediate Japanese at a Moderate Pace",
"242,2242,Intermediate Japanese at a Moderate Pace",
"260,2260,Intermediate Intensive Japanese",
"301,3301,Intermediate Japanese Conversation II",
"302,3302,Intermediate Japanese Conversation II",
"303,3303,Intermediate Japanese Reading II",
"304,3304,Intermediate Japanese Reading II",
"360,3360,Advanced Intensive Japanese",
"401,4401,Oral Narration and Public Speaking",
"402,4402,Oral Narration and Public Speaking",
"410,4410,History of the Japanese Language",
"421,4421,Directed Readings",
"422,4422,Directed Readings",
"431,4431,Directed Study",
"432,4432,Directed Study",
"JPLIT,406,4406,Introduction to Classical Japanese",
"408,4408,Readings in Classical Japanese",
"421,4421,Directed Readings",
"422,4422,Directed Readings",
"617,6617,Modern Japanese Philosophy",
"618,6618,Japanese Philosophical Discourse II",
"625,6625,Directed Readings",
"627,6627,Advanced Directed Readings",
"628,6628,Advanced Directed Readings",
"JWST,101,1101,Elementary Modern Hebrew I and II",
"102,1102,Elementary Modern Hebrew I and II",
"103,1103,Elementary Modern Hebrew III",
"123,1111,Introduction to Biblical Hebrew",
"200,2100,Intermediate Modern Hebrew",
"224,2724,Introduction to the Hebrew Bible: Prophe",
"251,2651,Holy War, Crusade, and Jihad in Judaism,",
"252,2910,Modern European Jewish History 17891948",
"254,2350,Antisemitism and Crisis Modernity",
"256,2556,Introduction to the Quran",
"261,2661,Ships and Seafaring: Introduction to Nau",
"263,2663,Introduction to Biblical History and Arc",
"268,2668,Ancient Egyptian Civilization",
"272,2672,Imperialism and the History of the Moder",
"274,2674,History of the Modern Middle East: 19th",
"275,2675,The Religions of Ancient Israel",
"291,2793,Middle Eastern Cinema",
"301,3101,Advanced Intermediate Modern Hebrew",
"302,3102,Advanced Intermediate Modern Hebrew",
"305,3105,Conversational Hebrew",
"353,3700,History of the Holocaust",
"365,3665,Ancient Iraq II",
"400,4100,Advanced Readings in Modern Hebrew",
"401,4101,Modern Hebrew Literature",
"420,4102,Biblical Hebrew Prose: Judges",
"438,4738,Imagining the Mediterranean",
"440,4540,Maimonides and Averroes",
"446,4170,History of Jews: Modern France",
"458,4580,Imagining the Holocaust",
"470,4670,Wealth and Power in Early Civilizations",
"491,4991,Independent Study: Undergraduate",
"492,4992,Independent Study: Undergraduate",
"620,6112,Readings in Medieval Hebrew Poetry and P",
"KHMER,121,1121,Elementary Khmer",
"122,1122,Elementary Khmer",
"201,2201,Intermediate Khmer Reading",
"202,2202,Intermediate Khmer Reading",
"203,2203,Intermediate Composition and Conversatio",
"204,2204,Intermediate Composition and Conversatio",
"301,3301,Advanced Khmer",
"302,3302,Advanced Khmer",
"431,4431,Directed Study",
"432,4432,Directed Study",
"KOREA,101,1101,Elementary Korean",
"102,1102,Elementary Korean",
"109,1109,Elementary Reading",
"110,1110,Elementary Reading",
"201,2201,Intermediate Korean",
"202,2202,Intermediate Korean",
"209,2209,Intermediate Reading",
"210,2210,Intermediate Reading",
"301,3301,Advanced Korean",
"302,3302,Advanced Korean",
"430,4430,Structure of Korean",
"431,4431,Directed Study",
"432,4432,Directed Study",
"KRLIT,405,4405,Readings in Korean Literature",
"432,4432,Middle Korean",
"615,6615,Development of Literary Modernity in Kor",
"617,6617,Colonial Modernity in Korea",
"LAT A,195,1950,Colonial Latin America",
"215,2150,The Tradition of Rupture",
"217,2170,Readings: Medieval/Early Mod Sp",
"220,2200,Perspectives on Latin America",
"245,2450,Drugs: People, Policies, Politics",
"301,3010,Hispanic Theater Production",
"306,3060,Modern Mexico",
"312,3211,Forging Nations",
"329,3290,Comparative Politics of Latin America",
"330,3300,Latin American Studies: Issues in Interd",
"339,3390,Political Economy of Mexico",
"368,3680,Modern and Contemporary Latin American A",
"371,3710,Cuba: Search for Development Alternative",
"376,3760,Latin American Cities",
"405,4050,U.S.-Cuba Relations",
"426,4260,Social Movements in Latin America",
"519,5190,Urban Theory and Spatial Development",
"600,6000,Contemporary Issues in Latin America",
"602,6020,Agriculture in the Developing Nations II",
"605,6050,U.S.-Cuba Relations",
"612,6120,Colonial Latin America",
"626,6260,Social Movements in Latin America",
"635,6350,Labor Markets and Income Distribution in",
"636,6360,Indigenous Globalization",
"674,6740,Transformations in the Global South",
"676,6760,Latin American Cities",
"739,7390,Political Economy of Mexico",
"LATIN,105,1201,Elementary Latin I",
"106,1202,Elementary Latin II",
"107,1203,Intensive Latin",
"108,1204,Latin in Review",
"109,1205,Elementary Latin III",
"205,2201,Latin Prose",
"206,2202,Ovid: Erotic Poetry",
"207,2203,Catullus",
"208,2204,Roman Drama",
"209,2205,Virgil",
"210,2206,Roman Letters",
"306,3201,Roman Epic",
"307,3202,Roman Historiography",
"308,3203,Roman Poetry",
"309,3204,Roman Prose",
"315,3215,Imperial Latin",
"317,3217,Latin Prose Composition",
"386,3286,Independent Study in Latin, Undergraduat",
"411,4201,Advanced Readings in Latin Literature",
"412,4202,Advanced Readings in Latin Literature",
"413,4213,Survey of Medieval Latin Literature",
"414,4216,Advanced Latin Prose Composition",
"422,4452,Latin Comparative Grammar",
"426,4456,Archaic Latin",
"453,4453,Structure of Latin",
"612,7212,Latin Philosophical Texts",
"613,7213,Survey of Medieval Latin Literature",
"625,7205,Graduate Survey of Latin Literature",
"626,7206,Graduate Survey of Latin Literature",
"679,7271,Graduate Seminar in Latin",
"680,7272,Graduate Seminar in Latin",
"682,7292,Seminar in Latin and Italic Linguistics",
"702,7920,Independent Study for Graduate Students ",
"LING,101,1101,Introduction to Linguistics",
"109,1109,English Words: Histories and Mysteries",
"111,1111,American Sign Language I",
"112,1112,American Sign Language II",
"131,1131,Elementary Sanskrit",
"132,1132,Elementary Sanskrit",
"170,1170,Introduction to Cognitive Science",
"215,2215,Psychology of Language",
"217,2217,History of the English Language to 1300",
"217,2217,History of English Language to 1300",
"218,2218,History of the English Language since 13",
"236,2236,Introduction to Gaelic",
"238,2238,Introduction to Welsh",
"241,2241,Yiddish Linguistics",
"244,2244,Language and Gender",
"246,2246,Minority Languages and Linguistics",
"251,2251,Intermediate Sanskrit",
"252,2252,Intermediate Sanskrit",
"270,2270,Truth and Interpretation",
"285,2285,Linguistic Theory and Poetic Structure",
"300,3300,Field Methods for Undergraduates",
"301,3301,Introduction to Phonetics",
"302,3302,Introduction to Phonology",
"303,3303,Introduction to Syntax",
"304,3304,Introduction to Semantics and Pragmatics",
"308,3308,Readings in Celtic Languages",
"314,3314,Introduction to Historical Linguistics",
"315,3315,Old Norse",
"316,3316,Old Norse",
"321,3321,History of the Romance Languages",
"322,3322,History of the Romance Languages",
"332,3332,Philosophy of Language",
"333,3333,Problems in Semantics",
"347,3347,Topics in the History of English",
"390,3390,Independent Study in Linguistics",
"400,4400,Language Typology",
"401,4401,Phonology I, II",
"402,4402,Phonology I, II",
"403,4403,Syntax I, II",
"404,4404,Syntax I, II",
"405,4405,Sociolinguistics",
"409,4409,Structure of Italian",
"411,4411,History of the Japanese Language",
"412,4412,Linguistic Structure of Japanese",
"413,4413,Applied Linguistics and Second Language ",
"416,4416,Structure of the Arabic Language",
"417,4417,History of the Russian Language",
"419,4419,Phonetics I",
"420,4420,Phonetics II",
"421,4421,Semantics I",
"422,4422,Semantics II",
"423,4423,Morphology",
"424,4424,Computational Linguistics",
"425,4425,Pragmatics",
"427,4427,Structure of Hungarian",
"428,4428,Connectionist Psycholinguistics",
"428,4428,Connectionist Psycholinguistics",
"430,4430,Structure of Korean",
"431,4431,Structure of an African Language",
"432,4432,Middle Korean",
"433,4433,The Lesser-Known Romance Languages",
"436,4436,Language Development",
"437,4437,Celtic Linguistic Structures",
"441,4441,Introduction to Germanic Linguistics",
"450,4450,Lab Course: Language Development",
"450,4500,Lab Course: Language Development",
"451,4451,Greek Comparative Grammar",
"452,4452,Latin Comparative Grammar",
"453,4453,Structure of Latin",
"455,4455,Greek Dialects",
"456,4456,Archaic Latin",
"457,4457,Homeric Philology",
"459,4459,Mycenaean Greek",
"460,4460,Sanskrit Comparative Grammar",
"461,4461,Introduction to Indo-European Linguistic",
"474,4474,Introduction to Natural Language Process",
"493,4493,Honors Thesis Research",
"494,4494,Honors Thesis Research",
"530,5530,Representation of Structure in Vision an",
"546,5546,Minority Languages and Linguistics",
"585,5585,Linguistic Theory and Poetic Structure",
"600,6600,Field Methods",
"601,6601,Topics in Phonological Theory",
"602,6602,Topics in Morphology",
"604,6604,Research Workshop",
"606,6606,Historical Syntax",
"609,6609,SLA and the Asian Languages",
"615,6615,Topics in Semantics",
"616,6616,Topics in Syntactic Theory",
"617,6617,Hittite",
"618,6618,Hittite",
"619,6619,Rigveda",
"621,6621,Avestan and Old Persian",
"623,6623,Old Irish I, II",
"624,6624,Old Irish I, II",
"625,6625,Middle Welsh",
"628,6628,Connectionist Psycholinguistics",
"633,6633,Language Acquisition Seminar",
"635,6635,Indo-European Workshop",
"636,6636,Indo-European Workshop",
"637,6637,Introduction to Tocharian",
"645,6645,Gothic",
"646,6646,Old High German, Old Saxon",
"648,6648,Speech Synthesis",
"649,6649,Structure of Old English",
"659,6659,Seminar in Vedic Philology",
"661,6661,Old Church Slavonic",
"662,6662,Old Russian Texts",
"671,6671,Comparative Slavic Linguistics",
"700,7700,Seminar",
"701,7701,Directed Research",
"702,7702,Directed Research",
"LSP,100,1301,Introduction to World Music: Africa and ",
"101,1101,Research Strategies in Latino Studies",
"201,2010,Latinos in the United States",
"202,2020,Spanish for English-Spanish Bilinguals",
"220,2200,Sociology of Health and Ethnic Minoritie",
"221,2721,Anthropological Representation: Ethnogra",
"230,2300,Latino Communities",
"246,2460,Contemporary Narratives by Latina Writer",
"248,2480,Poetry of the Latina/o Experience",
"260,2600,Latinos in the United States: Colonial t",
"261,2610,Latinos in the United States: 1898 to th",
"313,3130,Spanish Writing Workshop for Advanced En",
"319,3191,Racial and Ethnic Politics in the United",
"368,3551,Modern and Contemporary Latino/Latin Ame",
"375,3750,Comparative U.S. Racial and Ethnic Relat",
"377,3777,The United States",
"398,3980,Latina/o Popular Culture",
"405,4050,U.S.-Cuba Relations",
"420,4200,Undergraduate Independent Study",
"421,4210,Undergraduate Independent Study",
"423,4230,Borders",
"431,4310,Farmworkers",
"451,4510,Multicultural Issues in Education",
"485,4850,Immigration: History, Theory, and Practi",
"605,6050,U.S.-Cuba Relations",
"620,6200,Graduate Independent Study",
"621,6210,Graduate Independent Study",
"624,6424,Ethnoracial Identity in Anthropology, La",
"631,6310,Farmworkers",
"694,6940,Bilingual Education in Comparative Persp",
"MATH,5,1005,Academic Support for MATH 105",
"6,1006,Academic Support for MATH 106",
"11,1011,Academic Support for MATH 111",
"12,1012,Academic Support for MATH 112",
"100,1000,Calculus Preparation",
"103,1300,Mathematical Explorations",
"105,1105,Finite Mathematics for the Life and Soci",
"106,1106,Calculus for the Life and Social Science",
"109,1009,Precalculus Mathematics",
"111,1110,Calculus I",
"112,1120,Calculus II",
"122,1220,Honors Calculus II",
"134,1340,Mathematics and Politics",
"135,1350,The Art of Secret Writing",
"160,1600,Totally Awesome Mathematics",
"171,1710,Statistical Theory and Application in th",
"191,1910,Calculus for Engineers",
"192,1920,Multivariable Calculus for Engineers",
"213,2130,Calculus III",
"221,2210,Linear Algebra",
"222,2220,Multivariable Calculus",
"223,2230,Theoretical Linear Algebra and Calculus",
"224,2240,Theoretical Linear Algebra and Calculus",
"231,2310,Linear Algebra with Applications",
"275,2750,Living in a Random World",
"281,2810,Deductive Logic",
"293,2930,Differential Equations for Engineers",
"294,2940,Linear Algebra for Engineers",
"304,3040,Prove It!",
"311,3110,Introduction to Analysis",
"321,3210,Manifolds and Differential Forms",
"323,3230,Introduction to Differential Equations",
"332,3320,Algebra and Number Theory",
"336,3360,Applicable Algebra",
"356,3560,Groups and Geometry",
"362,3620,Dynamic Models in Biology",
"384,3840,Foundations of Mathematics",
"401,4010,Honors Seminar: Topics in Modern Mathema",
"403,4030,History of Mathematics",
"408,4080,Mathematics in Perspective",
"413,4130,Honors Introduction to Analysis I",
"414,4140,Honors Introduction to Analysis II",
"418,4180,Introduction to the Theory of Functions ",
"420,4200,Differential Equations and Dynamical Sys",
"422,4220,Applied Complex Analysis",
"424,4240,Wavelets and Fourier Series",
"425,4250,Numerical Analysis and Differential Equa",
"426,4260,Numerical Analysis: Linear and Nonlinear",
"428,4280,Introduction to Partial Differential Equ",
"431,4310,Linear Algebra",
"432,4320,Introduction to Algebra",
"433,4330,Honors Linear Algebra",
"434,4340,Honors Introduction to Algebra",
"437,4370,Computational Algebra",
"441,4410,Introduction to Combinatorics I",
"442,4420,Introduction to Combinatorics II",
"450,4500,Matrix Groups",
"451,4510,Euclidean and Spherical Geometry",
"452,4520,Classical Geometries",
"453,4530,Introduction to Topology",
"454,4540,Introduction to Differential Geometry",
"455,4550,Applicable Geometry",
"471,4710,Basic Probability",
"472,4720,Statistics",
"481,4810,Mathematical Logic",
"482,4820,Topics in Logic",
"486,4860,Applied Logic",
"490,4900,Supervised Reading and Research",
"505,5050,Educational Issues in Undergraduate Math",
"507,5070,Teaching Secondary Mathematics: Theory a",
"508,5080,Mathematics for Secondary School Teacher",
"611,6110,Real Analysis",
"612,6120,Complex Analysis",
"613,6130,Topics in Analysis",
"614,6140,Topics in Analysis",
"615,6150,Mathematical Methods in Physics",
"617,6170,Dynamical Systems",
"618,6180,Smooth Ergodic Theory",
"619,6190,Partial Differential Equations",
"620,6200,Partial Differential Equations",
"621,6210,Measure Theory and Lebesgue Integration",
"622,6220,Applied Functional Analysis",
"628,6280,Complex Dynamical Systems",
"631,6310,Algebra",
"632,6320,Algebra",
"633,6330,Noncommutative Algebra",
"634,6340,Commutative Algebra",
"649,6490,Lie Algebras",
"650,6500,Lie Groups",
"651,6510,Algebraic Topology",
"652,6520,Differentiable Manifolds I",
"653,6530,Differentiable Manifolds II",
"661,6610,Geometric Topology",
"662,6620,Riemannian Geometry",
"671,6710,Probability Theory I",
"672,6720,Probability Theory II",
"674,6740,Introduction to Mathematical Statistics",
"675,6750,Statistical Theories Applicable to Genom",
"681,6810,Logic",
"711,7110,Seminar in Analysis",
"712,7120,Seminar in Analysis",
"713,7130,Functional Analysis",
"715,7150,Fourier Analysis",
"717,7170,Applied Dynamical Systems",
"735,7350,Topics in Algebra",
"737,7370,Algebraic Number Theory",
"739,7390,Topics in Algebra",
"740,7400,Homological Algebra",
"753,7530,Algebraic Topology II",
"757,7570,Topics in Topology",
"758,7580,Topics in Topology",
"761,7610,Seminar in Geometry",
"762,7620,Seminar in Geometry",
"767,7670,Algebraic Geometry",
"771,7710,Seminar in Probability and Statistics",
"772,7720,Seminar in Probability and Statistics",
"774,7740,Statistical Learning Theory",
"777,7770,Stochastic Processes",
"778,7780,Stochastic Processes",
"781,7810,Seminar in Logic",
"782,7820,Seminar in Logic",
"783,7830,Model Theory",
"784,7840,Recursion Theory",
"787,7870,Set Theory",
"788,7880,Topics in Applied Logic",
"790,7900,Supervised Reading and Research",
"MEDVL,413,4103,Survey of Medieval Latin Literature",
"613,6103,Survey of Medieval Latin Literature",
"777,7770,Medieval Studies Proseminar",
"801,8010,Directed Study: Individual",
"802,8020,Directed Study: Group",
"MUSIC,100,1100,Elements of Musical Notation",
"101,1311,Popular Music in America: A Historical S",
"102,1101,Fundamentals of Music",
"103,1301,Introduction to World Music I: Africa an",
"104,1302,Introduction to World Music II: Asia",
"105,1105,Introduction to Music Theory",
"107,1201,Hildegard to Handel",
"108,1202,Mozart to Minimalism",
"120,1421,Introduction to Digital Music",
"151,2101,Tonal Theory I",
"152,2102,Tonal Theory II",
"153,2103,Musicianship I",
"154,2104,Musicianship II",
"165,1465,Computing in the Arts",
"204,2111,Physics of Musical Sound",
"207,3201,Survey of Western Music I",
"208,3202,Survey of Western Music II",
"220,2421,Computers in Music Performance",
"221,1312,History of Rock Music",
"222,1313,A Survey of Jazz",
"245,1341,Gamelan in Indonesian History and Cultur",
"251,3101,Tonal Theory III",
"252,3102,Tonal Theory IV",
"253,3103,Musicianship III",
"254,3104,Musicianship IV",
"261,2221,Bach and Handel",
"262,2222,Haydn and Mozart",
"263,2223,Beethoven",
"264,2231,Musical Romantics",
"272,2245,Words and Music",
"274,2241,Opera",
"276,2242,The Orchestra and Its Music",
"277,2243,The Piano and Its Music",
"300,3211,Proseminar in Musicology",
"320,3421,Scoring the Moving Image Using Digital T",
"321,3501,Individual Instruction",
"322,3502,Individual Instruction",
"323,4501,Individual Instruction",
"338,3631,Wind Symphony",
"342,3633,Wind Ensemble",
"348,3611,World Music Choir",
"355,3431,Sound Design and Digital Audio",
"356,3441,Interactive Performance Technology",
"361,3111,Jazz Improvisation I",
"362,3112,Jazz Improvisation II",
"363,3113,Jazz Improvisation III",
"365,3115,Jazz Piano",
"374,3222,Opera and Culture",
"381,3231,Topics in Western Art Music to 1750",
"382,3232,Topics in Western Art Music 1750Present",
"386,3301,Topics in Popular Music and Jazz",
"390,3242,Culture of the Renaissance II",
"400,4211,Senior Seminar",
"404,4301,Introduction to Ethnomusicology",
"407,4511,Early Dance",
"408,4512,Music and Choreography",
"410,4222,Music and Monstrous Imaginings",
"411,2244,The Organ in Western Culture",
"418,4181,Psychology of Music",
"451,4101,Counterpoint",
"452,4102,Topics in Music Analysis",
"453,4111,Composition",
"454,4112,Composition in Recent Styles",
"455,4121,Conducting",
"456,4122,Orchestration",
"457,4103,Topics in Post-Tonal Theory and Analysis",
"458,4123,Jazz Arranging",
"492,4231,Music and Queer Identity",
"493,4232,Women and Music",
"601,6201,Introduction to Bibliography and Researc",
"602,6101,Analytical Technique",
"603,6202,Editorial Practice",
"604,6301,Introduction to Ethnomusicology",
"620,6420,Techniques for Computer Music",
"653,7101,Topics in Tonal Theory and Analysis",
"654,7102,Topics in Post-Tonal Theory and Analysis",
"656,7121,Advanced Orchestral Technique",
"659,6421,Electroacoustic Composition",
"677,7221,Mozart: His Life, Works, and Times",
"680,7301,Topics in Ethnomusicology",
"681,7201,Seminar in Medieval Music",
"683,7231,Music and Postmodern Critical Theory",
"684,7202,Seminar in Renaissance Music",
"686,7203,Seminar in Baroque Music",
"688,7204,Seminar in Classical Music",
"689,7205,Seminar in Music of the Romantic Era",
"690,7206,Seminar in Music of the 20th Century",
"693,7211,Seminar in Performance Practice",
"695,7311,Gender, Sexuality, and Glam Rock",
"785,7103,History of Music Theory",
"787,7232,History and Criticism",
"NEPAL,101,1101,Elementary Nepali",
"102,1102,Elementary Nepali",
"201,2201,Intermediate Nepali Conversation",
"202,2202,Intermediate Nepali Conversation",
"203,2203,Intermediate Nepali Composition",
"204,2204,Intermediate Nepali Composition",
"301,3301,Advanced Nepali",
"302,3302,Advanced Nepali",
"431,4431,Directed Study",
"432,4432,Directed Study",
"NES,101,1101,Elementary Modern Hebrew I and II",
"102,1102,Elementary Modern Hebrew I and II",
"103,1103,Elementary Modern Hebrew III",
"111,1201,Elementary Arabic I and II",
"112,1202,Elementary Arabic I and II",
"113,1203,Intermediate Arabic I and II",
"115,1320,Elementary Persian I and II",
"116,1321,Elementary Persian I and II",
"117,1330,Elementary Turkish I and II",
"118,1331,Elementary Turkish I and II",
"119,1319,Intermediate Persian I and II",
"123,1111,Introduction to Biblical Hebrew I",
"125,1205,Elementary Arabic for Native Speakers",
"133,1211,Introduction to Qur'anic and Classical A",
"134,1212,Introduction to Qur'anic and Classical A",
"200,2100,Intermediate Modern Hebrew",
"201,2201,Intermediate Written Urdu",
"202,2202,Intermediate Written Urdu",
"210,2200,Intermediate Arabic I and II",
"219,2319,Intermediate Persian I and II",
"224,2624,Introduction to Hebrew Bible: Prophecy",
"247,2747,Introduction to Art History: Islamic Art",
"251,2651,Holy War, Crusade, and Jihad in Judaism,",
"256,2556,Introduction to the Quran",
"261,2661,Ships and Seafaring: Introduction to Nau",
"263,2663,Introduction to Biblical History and Arc",
"268,2668,Ancient Egyptian Civilization",
"272,2672,Imperialism and the History of the Moder",
"274,2674,History of the Modern Middle East: 19th",
"275,2675,The Religions of Ancient Israel",
"293,2793,Middle Eastern Cinema",
"301,3101,Advanced Intermediate Modern Hebrew I an",
"302,3102,Advanced Intermediate Modern Hebrew I an",
"303,3703,Cosmopolitan Alexandria",
"305,3105,Conversational Hebrew",
"309,3709,Modern Arabic Drama",
"311,3201,Advanced Intermediate Arabic I and II",
"312,3202,Advanced Intermediate Arabic I and II",
"320,3720,Women in Ancient Israel",
"333,3410,Elementary Akkadian I and II",
"334,3411,Elementary Akkadian I and II",
"350,3850,Middle Eastern Politics",
"365,3665,Ancient Iraq II",
"392,3792,The Discovery of Modernity in Iranian Li",
"400,4100,Advanced Readings in Modern Hebrew",
"401,4101,Modern Hebrew Literature",
"405,4605,Contesting Identities in Modern Egypt",
"414,4211,Readings in Arabic Literature",
"419,4203,Readings in Arabic Poetry",
"420,4102,Biblical Hebrew Prose: Judges",
"423,4523,Visualizing Sacred Iberia",
"438,4738,Imagining the Mediterranean",
"440,4540,Maimonides and Averroes",
"447,4947,Middle Eastern Music Ensemble",
"448,4948,Middle Eastern Music Ensemble",
"449,4549,The Mediterranean in the Age of Cervante",
"460,4560,Theory and Method in Near Eastern Studie",
"470,4670,Wealth and Power in Early Civilizations",
"472,4672,Nationalism",
"491,4991,Independent Study, Undergraduate Level",
"492,4992,Independent Study, Undergraduate Level",
"498,4998,Independent Study, Honors",
"499,4999,Independent Study, Honors",
"620,6112,Readings in Medieval Hebrew Poetry and P",
"640,4640,No title",
"640,6640,No title",
"691,6991,Independent Study: Graduate Level",
"692,6992,Independent Study: Graduate Level",
"PALI,131,1131,Elementary Pali",
"132,1132,Elementary Pali",
"450,4450,Readings in Pali",
"PHIL,101,1101,Introduction to Philosophy",
"145,1450,Contemporary Moral Issues",
"191,1910,Introduction to Cognitive Science",
"195,1950,Controversies About Inequality",
"201,2010,Puzzles and Paradoxes",
"211,2110,Ancient Philosophy",
"212,2120,Modern Philosophy",
"217,2170,19th- and 20th-Century European Thought",
"231,2310,Introduction to Deductive Logic",
"241,2410,Ethics",
"242,2420,Social and Political Philosophy",
"245,2450,Ethics and Health Care",
"246,2460,Ethics and the Environment",
"249,2490,Feminism and Philosophy",
"251,2510,Introduction to Philosophy of Art",
"261,2610,Knowledge and Reality",
"262,2620,Philosophy of Mind",
"263,2630,Religion and Reason",
"264,2640,Introduction to Metaphysics",
"270,2700,Truth and Interpretation",
"308,3080,Hellenistic Philosophy",
"310,3100,Aristotle",
"311,3110,The Rationalists",
"315,3150,Medieval Philosophy",
"318,3180,Origins of Analytic Philosophy",
"330,3300,Foundations of Mathematics",
"331,3310,Deductive Logic",
"332,3320,Philosophy of Language",
"347,3470,Global Justice",
"381,3810,Philosophy of Science: Knowledge and Obj",
"382,3820,Philosophy of Psychology",
"387,3870,Philosophy of Mathematics",
"390,3900,Independent Study",
"409,4090,German Philosophical Texts",
"410,4100,Latin Philosophical Texts",
"411,4110,Greek Philosophical Texts",
"417,4170,Topics in German Philosophy",
"419,4190,History of 20th-Century Philosophy",
"431,4310,Mathematical Logic",
"432,4320,Topics in Logic",
"437,4370,Problems in the Philosophy of Language",
"441,4410,Contemporary Ethical Theory",
"446,4460,Topics in Political Obligation",
"460,4600,Epistemology",
"464,4640,Metaphysics",
"490,4900,Informal Study for Honors",
"611,6110,Ancient Philosophy",
"612,6120,Medieval Philosophy",
"641,6410,Ethics and Value Theory",
"662,6620,Philosophy of Perception",
"665,6650,Metaphysics",
"700,7000,Informal Study",
"PHYS,12,1012,PHYS 112",
"13,1013,PHYS 213",
"101,1101,General Physics I",
"102,1102,General Physics II",
"103,1103,General Physics",
"112,1112,Physics I: Mechanics",
"116,1116,Physics I: Mechanics and Special Relativ",
"117,1117,Concepts of Modern Physics",
"190,1190,Supplemental Introductory Laboratory",
"201,1201,Why the Sky Is Blue: Aspects of the Phys",
"202,1202,How Physics Works",
"203,1203,Physics of the Heavens and the Earth: A ",
"204,1204,Physics of Musical Sound",
"207,2207,Fundamentals of Physics I",
"208,2208,Fundamentals of Physics II",
"213,2213,Physics II: Heat/Electromagnetism",
"214,2214,Physics III: Optics, Waves, and Particle",
"216,2216,Introduction to Special Relativity",
"217,2217,Physics II: Electricity and Magnetism",
"218,2218,Physics III: Waves and Thermal Physics",
"310,3310,Intermediate Experimental Physics",
"314,3314,Intermediate Mechanics",
"316,3316,Basics of Quantum Mechanics",
"317,3317,Applications of Quantum Mechanics",
"318,3318,Analytical Mechanics",
"323,3323,Intermediate Electricity and Magnetism",
"327,3327,Advanced Electricity and Magnetism",
"330,3330,Modern Experimental Optics",
"341,3341,Thermodynamics and Statistical Physics",
"360,3360,Electronic Circuits",
"400,4400,Informal Advanced Laboratory",
"410,4410,Advanced Experimental Physics",
"443,4443,Intermediate Quantum Mechanics",
"444,4444,Introduction to Particle Physics",
"445,4445,Introduction to General Relativity",
"454,4454,Introductory Solid-State Physics",
"455,4455,Geometrical Concepts in Physics",
"456,4456,Introduction to Accelerator Physics and ",
"480,4480,Computational Physics",
"481,4481,Quantum Information Processing",
"487,4487,Selected Topics in Accelerator Technolog",
"488,4488,Advanced Topics in Accelerator Physics",
"490,4490,Independent Study in Physics",
"500,6500,Informal Graduate Laboratory",
"510,6510,Advanced Experimental Physics",
"520,6520,Projects in Experimental Physics",
"525,6525,Physics of Black Holes, White Dwarfs, an",
"553,6553,General Relativity",
"554,6554,General Relativity",
"561,6561,Classical Electrodynamics",
"562,6562,Statistical Mechanics",
"572,6572,Quantum Mechanics I",
"574,6574,Applications of Quantum Mechanics II",
"599,6599,Cosmology",
"635,7635,Solid-State Physics I",
"636,7636,Solid-State Physics II",
"645,7645,An Introduction to the Standard Model of",
"646,7646,Topics in High-Energy Particle Physics",
"651,7651,Relativistic Quantum Field Theory I",
"652,7652,Relativistic Quantum Field Theory II",
"653,7653,Statistical Physics",
"654,7654,Basic Training in Condensed Matter Physi",
"656,7656,Introduction to Accelerator Physics and ",
"661,7661,Advanced Topics in High-Energy Particle ",
"665,7665,Seminar: Astrophy Gas Dynamics",
"667,7667,Theory of Stellar Structure and Evolutio",
"680,7680,Computational Physics",
"681,7681,Quantum Information Processing",
"682,7682,Computational Methods for Nonlinear Syst",
"687,7687,Selected Topics in Accelerator Technolog",
"688,7688,Advanced Topics in Accelerator Physics",
"689,7689,Special Topics",
"690,7690,Independent Study in Physics",
"POLSH,131,1131,Elementary Polish",
"132,1132,Elementary Polish",
"133,1133,Continuing Polish",
"134,1134,Continuing Polish",
"300,3300,Directed Studies",
"301,3301,Polish through Film and Literature",
"PORT,121,1210,Elementary Brazilian Portuguese III",
"122,1220,Elementary Brazilian Portuguese III",
"209,2090,Intermediate Brazilian Portuguese for Sp",
"219,2190,Intermediate Brazilian Portuguese for Sp",
"320,3200,Readings in Luso-Brazilian Literature of",
"420,4200,Special Topics in Brazilian Literature",
"640,6400,Special Topics-Grad",
"PSYCH,101,1101,Introduction to Psychology: The Frontier",
"102,1200,Introduction to Cognitive Science",
"103,1103,Introductory Psychology Seminars",
"111,1110,Brain, Mind, and Behavior",
"165,1650,Computing in the Arts",
"205,2050,Perception",
"209,2090,Developmental Psychology",
"214,2140,Cognitive Psychology",
"215,2150,Psychology of Language",
"223,2230,Introduction to Biopsychology",
"231,2310,Borges and I: A Quest for Self-Knowledge",
"265,2650,Psychology and Law",
"275,2750,Introduction to Personality Psychology",
"280,2800,Introduction to Social Psychology",
"282,2820,Community Outreach",
"305,3050,Visual Perception",
"313,3130,Problematic Behavior in Adolescence",
"316,3160,Auditory Perception",
"322,3220,Hormones and Behavior",
"324,3240,Biopsychology Laboratory",
"325,3250,Adult Psychopathology",
"326,3260,Evolution of Human Behavior",
"327,3270,Field Practicum I",
"328,3280,Field Practicum II",
"330,3300,Introduction to Computational Neuroscien",
"332,3320,Biopsychology of Learning and Memory",
"340,3400,Autobiographical Memory",
"342,3420,Human Perception: Applications to Comput",
"347,3470,Psychology of Visual Communications",
"350,3500,Statistics and Research Design",
"361,3610,Biopsychology of Normal and Abnormal Beh",
"380,3800,Social Cognition",
"385,3850,The Psychology of Emotion",
"396,3960,Introduction to Sensory Systems",
"405,4050,Intuitive Judgment",
"410,4101,Undergraduate Seminar in Psychology",
"412,4120,Laboratory in Cognition and Perception",
"413,4130,Information Processing: Conscious and No",
"414,4140,Comparative Cognition",
"415,4150,Concepts, Categories, and Word Meanings",
"416,4160,Modeling Perception and Cognition",
"417,4170,The Origins of Thought and Knowledge",
"418,4180,Psychology of Music",
"422,4220,Developmental Biopsychology",
"423,4230,Navigation, Memory, and Context: What Do",
"424,4240,Neuroethology",
"425,4250,Cognitive Neuroscience",
"426,4260,Learning Language",
"427,4270,Evolution of Language",
"427,4720,Evolution of Language",
"428,4280,Connectionist Psycholinguistics",
"429,4920,Olfaction and Taste: Structure and Funct",
"430,4300,Moral Reasoning",
"431,4310,Effects of Aging on Sensory and Perceptu",
"435,4350,Olfaction, Pheromones, and Behavior",
"436,4360,Language Development",
"437,4370,Lab Course: Language Development",
"440,4400,The Brain and Sleep",
"441,4410,Laboratory in Sleep Research",
"452,4520,Trauma and Treatment",
"460,4600,Human Neuroanatomy",
"465,4650,Topics in High-Level Vision",
"470,4700,Undergraduate Research in Psychology",
"471,4710,Advanced Undergraduate Research in Psych",
"472,4720,Multiple Regression",
"473,4730,General Linear Model",
"478,4780,Parenting and Child Development",
"481,4810,Advanced Social Psychology",
"482,4820,Automaticity",
"485,4850,The Self",
"489,4890,Seminar: Beliefs, Attitudes, and Ideolog",
"491,4910,Research Methods in Psychology",
"492,4920,Sensory Function",
"510,6100,Perception PSYCH 512514",
"511,6110,Perception PSYCH 512514",
"518,6181,Topics in Psycholinguistics",
"519,6830,Affects and Cognition",
"521,6210,Behavioral and Brain Sciences",
"522,6220,Topics in Perception and Cognition PSY",
"523,6230,Hormones and Behavior",
"527,6270,Topics in Biopsychology",
"530,6300,Structure in Vision and Language",
"535,6350,Evolutionary Perspectives on Behavior ",
"541,6410,Statistics in Current Psychological Rese",
"550,5500,Special Topics in Cognitive Science",
"550,6500,Special Topics in Cognitive Science",
"580,6800,Experimental Social Psychology",
"600,6000,General Research Seminar",
"605,6050,Perception",
"612,6120,Laboratory in Cognition and Perception",
"613,3150,Obesity and the Regulation of Body Weigh",
"614,6140,Cognitive Psychology",
"616,6160,Modeling Perception and Cognition",
"618,6180,Psychology of Music",
"623,6230,Navigation, Memory, and Context: What Do",
"625,6250,Cognitive Neuroscience",
"626,6260,Evolution of Human Behavior",
"627,6270,Evolution of Language",
"628,6280,Connectionist Psycholinguistics",
"629,6290,Olfaction and Taste: Structure and Funct",
"630,6300,Moral Reasoning",
"631,6310,Effects of Aging on Sensory and Perceptu",
"632,6320,Biopsychology of Learning and Memory",
"640,6400,The Brain and Sleep",
"641,6410,Laboratory in Sleep Research",
"642,6420,Human Perception: Applications to Comput",
"652,6520,Trauma and Treatment",
"665,6650,Topics in High-Level Vision",
"678,6780,Parenting and Child Development",
"681,6810,Advanced Social Psychology",
"682,6820,Automaticity",
"685,6850,The Self",
"689,6890,Seminar: Beliefs, Attitudes, and Ideolog",
"691,6910,Research Methods in Psychology",
"692,6920,Sensory Function",
"696,6960,Introduction to Sensory Systems",
"700,7000,Research in Biopsychology",
"709,7090,Developmental Psychology",
"710,7100,Research in Human Experimental Psycholog",
"713,7130,Information Processing: Conscious and No",
"714,7140,Comparative Cognition",
"716,7160,Auditory Perception",
"720,7200,Research in Social Psychology and Person",
"722,7220,Hormones and Behavior",
"726,7260,Learning Language",
"775,7750,Proseminar in Social Psychology I",
"776,7760,Proseminar in Social Psychology II",
"900,9000,Doctoral Thesis Research in Biopsycholog",
"910,9100,Doctoral Thesis Research in Human Experi",
"920,9200,Doctoral Thesis Research in Social Psych",
"QUECH,121,1210,Elementary Quechua",
"122,1220,Elementary Quechua",
"136,1360,Quechua Writing Lab",
"209,2090,Continuing Quechua",
"219,2190,Continuing Quechua",
"300,3000,Directed Studies",
"RELST,123,1111,Introduction to Biblical Hebrew 1",
"133,1211,Introduction to Qur'anic and Classical A",
"134,1212,Introduction to Qur'anic and Classical A",
"202,2105,The Greek New Testament",
"211,2110,Black Religious Traditions: Sacred and S",
"215,2150,Crusade, Heresy, and Inquisition in the ",
"224,2724,Introduction to the Hebrew Bible II",
"225,2261,Society and Religion in China",
"226,2646,Atheism Then and Now",
"242,2420,Religion and Politics in American Histor",
"250,2250,Introduction to Asian Religions",
"251,2651,Holy War, Crusade, and Jihad",
"256,2556,Introduction to the Qu'ran",
"262,2630,Religion and Reason",
"263,2663,Introduction to Biblical History and Arc",
"275,2675,Religions of Ancient Israel",
"277,2277,Meditation in Indian Culture",
"315,3150,Medieval Philosophy",
"320,3720,Women in the Hebrew Bible",
"323,3230,Myth, Ritual, and Symbol",
"326,3260,Christianity and Judaism",
"328,3280,Literature of Old Testament",
"332,3644,Sages and Saints/Ancient World",
"347,3347,Tantric Traditions",
"348,3348,Indian Devotional Poetry",
"349,3460,Modernization of the American Mind",
"351,3351,Indian Religious Worlds",
"354,3354,Indian Buddhism",
"355,3355,Japanese Religions: A Study of Practice",
"359,3359,Japanese Buddhism",
"368,3680,Marriage and Sexuality in Medieval Europ",
"405,4665,Augustine's",
"410,4100,Latin Philosophical Texts",
"420,4102,Biblical Hebrew Prose: Judges",
"421,4421,Religious Reflections on the Human Body",
"426,4260,New Testament Seminar",
"427,4280,Biblical Seminar",
"429,4290,Adam's Rib and Other Divine Signs: Readi",
"438,4438,Monks, Texts, and Relics: Transnational ",
"440,4540,Maimonides and Averroes",
"441,4441,Mahayana Buddhism",
"449,4449,History and Methods of the Academic Stud",
"460,4460,Indian Meditation Texts",
"475,4625,Christianization/Roman World",
"489,4489,Religion and Sustainability",
"490,4990,Directed Study",
"491,4991,Directed Study",
"495,4995,Senior Honors Essay",
"650,6650,Seminar on Asian Religions",
"654,6654,Indian Buddhism",
"ROM S,321,3210,History of Romance Language",
"452,4520,Renaissance Humanism",
"453,4530,Structure of Latin",
"507,5070,Methodology of Romance Language Learning",
"508,5080,TA Practicum",
"652,6520,Renaissance Humanism",
"RUSSA,103,1103,Conversation Practice",
"104,1104,Conversation Practice",
"121,1121,Elementary Russian through Film",
"122,1122,Elementary Russian through Film",
"125,1125,Reading Russian Press",
"126,1126,Reading Russian Press",
"203,2203,Intermediate Composition and Conversatio",
"204,2204,Intermediate Composition and Conversatio",
"300,3300,Directed Studies",
"303,3303,Advanced Composition and Conversation",
"304,3304,Advanced Composition and Conversation",
"305,3305,Reading and Writing for Heritage Speaker",
"306,3306,Reading and Writing for Heritage Speaker",
"308,3308,Russian Through Popular Culture",
"309,3309,Advanced Reading",
"310,3310,Advanced Reading",
"401,4401,History of the Russian Language",
"403,4403,Linguistic Structure of Russian",
"413,4413,Advanced Conversation and Stylistics",
"414,4414,Advanced Conversation and Stylistics",
"491,4491,Reading Course: Russian Literature in th",
"601,6601,Old Church Slavonic",
"602,6602,Old Russian Texts",
"633,6633,Russian for Russian Specialists",
"634,6634,Russian for Russian Specialists",
"651,6651,Comparative Slavic Linguistics",
"RUSSL,207,2207,Themes from Russian Culture",
"208,2208,Themes from Russian Culture",
"209,2209,Readings in Russian Prose and Poetry",
"212,2212,Readings in 20th-Century Russian Literat",
"279,2279,The Russian Connection, 1830 to 1867",
"280,2280,The Russian Connection, 1870 to 1960",
"331,3331,Introduction to Russian Poetry",
"332,3332,Russian Drama and Theater",
"333,3333,20th-Century Russian Poetry",
"334,3334,The Russian Short Story",
"335,3335,Gogol",
"337,3337,Films of Russian Literary Masterpieces",
"338,3338,Lermontov's Hero of Our Time",
"350,3350,Education and the Philosophical Fantasie",
"367,3367,The Russian Novel",
"368,3368,20th-Century Russian Literature",
"369,3369,Dostoevsky",
"373,3373,Chekhov in the Context of Contemporary E",
"385,3385,Reading Nabokov",
"393,3393,Honors Essay Tutorial",
"409,4409,Russian Stylistics",
"415,4415,Post-Symbolist Russian Poetry",
"430,4430,Practice in Translation",
"432,4432,Pushkin",
"433,4433,Short Works of Tolstoy",
"437,4437,A Moralist and a Pornographer",
"492,4492,Supervised Reading in Russian Literature",
"493,4493,Anton Chekhov",
"499,4499,The Avant-Garde in Russian Literature an",
"611,6611,Supervised Reading and Research",
"S HUM,404,4040,The Task of the Cleric",
"404,4040,The Task of the Cleric",
"408,4080,Improvisational Economies",
"408,4080,Improvisational Economies",
"415,4150,Environmental Interventions",
"415,4150,Environmental Interventions",
"416,4160,Poetry and Totality",
"416,4160,Poetry and Totality",
"418,4180,On the Inner Voice",
"418,4180,On the Inner Voice",
"419,4190,Imagining Contemporary Asia",
"419,4190,Imagining Contemporary Asia",
"420,4200,Bodies in Medicine and Culture",
"420,4200,Bodies in Medicine and Culture",
"421,4210,Cutting and Film Cutting",
"421,4210,Cutting and Film Cutting",
"423,4230,Futures of American Poetry",
"423,4230,Futures of American Poetry",
"424,4240,The Mediterranean and Cervantes",
"424,4240,The Mediterranean and Cervantes",
"425,4250,Cerebral Seductions",
"425,4250,Cerebral Seductions",
"426,4260,Modernity and Critique",
"426,4260,Modernity and Critique",
"428,4280,Sensing Thinking",
"428,4280,Sensing Thinking",
"430,4300,Epistemologies of U.S. Empire",
"430,4300,Epistemologies of U.S. Empire",
"450,4500,Science,  Religion,  and the Humanities ",
"450,4500,Science,  Religion,  and the Humanities ",
"477,4770,Improvising Across Disciplines",
"477,4770,Improvising Across Disciplines",
"S&TS,101,1101,Science and Technology in the Public Are",
"102,1102,Histories of the Future",
"201,2011,What Is Science? An Introduction to the ",
"205,2051,Ethical Issues in Health and Medicine",
"206,2061,Ethics and the Environment",
"233,2331,Agriculture, History, and Society: From ",
"250,2501,Technology in Society",
"281,2811,Science in Western Civilization: Medieva",
"281,2811,Science in Western Civilization: Newton ",
"282,2821,Science in Western Civilization: Newton ",
"285,2851,Communication in the Life Sciences",
"286,2861,Science and Human Nature",
"287,2871,Evolution",
"292,2921,Inventing an Information Society",
"301,3011,Life Sciences and Society",
"311,3110,Sociology of Medicine",
"324,3241,Environment and Society",
"330,3301,Making Modern Science",
"331,3311,Environmental Governance",
"343,3431,Biotechnology and the Economy",
"349,3491,Media Technologies",
"352,3521,Science Writing for the Mass Media",
"354,3541,The Sociology of Contemporary Culture",
"355,3551,Computers: From the 17th Century to the ",
"356,3561,Computing Cultures",
"357,3571,Engineering in American Culture",
"360,3601,Ethical Issues in Engineering",
"381,3811,Philosophy of Science: Knowledge and Obj",
"387,3871,The Automatic Lifestyle: Consumer Cultur",
"391,3911,Science in the American Polity, 1960 to ",
"399,3991,Undergraduate Independent Study",
"400,4001,Components and Systems: Engineering in a",
"401,4011,Genomics and Society",
"402,4021,Bodies in Medicine, Science, and Technol",
"407,4071,Law, Science, and Public Values",
"409,4091,From the Phonograph to Techno",
"411,4111,Knowledge, Technology, and Property",
"412,4101,Science, Technology, and Culture",
"415,4151,Environmental Interventions",
"417,4171,Science, Religion, and the Humanities si",
"422,4221,New York Women",
"423,4231,Gender and Technology",
"424,4241,Medicine, Science, and the Body in Postc",
"429,4291,Politics of Science",
"431,4311,From Surgery to Simulation",
"433,4331,International History of Science",
"434,4341,Science and Empire: The Case of Britain ",
"444,4441,Historical Issues of Gender and Science",
"447,4471,Seminar in the History of Biology",
"453,4531,Knowledge and Society",
"458,4581,Intelligibility in Science",
"466,4661,Public Communication of Science and Tech",
"468,4681,Understanding Innovation",
"471,4711,The Dark Side of Biology: Biological Wea",
"481,4811,Philosophy of Science",
"483,4831,The Military and New Technology",
"495,4951,Social Studies of the Human Sciences",
"496,4961,Medicine and Healing in China",
"626,6261,Seminar in the History of Technology",
"627,6271,Making People Through Expert Knowledge",
"628,6281,Self and Society",
"630,6301,Social Theory for Science Studies",
"631,6311,Qualitative Research Methods for Studyin",
"632,6321,Inside Technology: The Social Constructi",
"634,6341,Information Technology in Sociocultural ",
"640,6401,Science, Technology, Gender: Historical ",
"645,6451,The New Life Sciences: Emerging Technolo",
"680,6801,Historical Approaches to Science",
"681,6811,Philosophy of Science",
"693,6931,Economics Meets Science Studies",
"699,6991,Graduate Independent Study",
"700,7001,Special Topic 1: Science Studies and the",
"700,7002,Special Topic 2: Technology Transfer Iss",
"700,7003,Special Topic 3: Issues in the Social an",
"711,7111,Introduction to Science and Technology S",
"720,7201,Emerging Technologies",
"721,7211,Archiving Contemporary Science",
"SANSK,131,1131,Elementary Sanskrit",
"132,1132,Elementary Sanskrit",
"251,2251,Intermediate Sanskrit",
"252,2252,Intermediate Sanskrit",
"301,3301,Advanced Sanskrit I",
"302,3302,Advanced Sanskrit I",
"323,3323,Buddhist Hybrid Sanskrit",
"SEBCR,131,1131,Elementary Serbo-Croatian",
"132,1132,Elementary Serbo-Croatian",
"133,1133,Continuing Serbo-Croatian",
"134,1134,Continuing Serbo-Croatian",
"300,3300,Directed Studies",
"302,3302,Advanced Serbo-Croatian",
"SINHA,121,1121,Elementary Sinhala",
"122,1122,Elementary Sinhala",
"201,2201,Intermediate Sinhala",
"202,2202,Intermediate Sinhala",
"301,3301,Literary Sinhala I",
"400,4400,Literary Sinhala II",
"431,4431,Directed Study",
"432,4432,Directed Study",
"SNLIT,465,4465,The Literature of Ancient India",
"SOC,101,1101,Introduction to Sociology",
"105,1105,Introduction to Economic Sociology",
"115,1150,Utopia in Theory and Practice",
"202,2202,Population Dynamics",
"203,2203,Work and Family in Comparative Perspecti",
"206,2206,International Development",
"207,2070,Problems in Contemporary Society",
"208,2208,Social Inequality",
"209,2090,Networks",
"210,2100,What Is Science?",
"215,2150,Organizations: An Introduction",
"221,2210,Race, Class, and Gender Research in Prac",
"222,2220,Controversies about Inequality",
"246,2460,Drugs and Society",
"248,2480,Politics and Culture",
"250,2500,Aging and the Life Course",
"265,2650,Latinos in the United States",
"270,2700,Gender: Meanings and Practice",
"280,2800,Social Movements",
"301,3010,Evaluating Statistical Evidence",
"303,3030,Design and Measurement",
"304,3040,Social Networks and Social Processes",
"307,3070,Society and Party Politics",
"311,3110,Group Solidarity",
"313,3130,Sociology of Medicine",
"318,3180,Contemporary Latin American Societies",
"324,3240,Environment and Society",
"327,3270,Toleration and Fundamentalism",
"336,3360,Evolving Families: Challenges to Family ",
"337,3370,Racial and Ethnic Differentiation",
"341,3410,Modern European Society and Politics",
"357,3570,Schooling, Racial Inequality, and Public",
"362,3620,Inequality and the Workplace",
"371,3710,Comparative Social Stratification",
"375,3750,Classical Theory",
"395,3950,Advanced Economic Sociology",
"408,4080,Qualitative Methods",
"409,4090,From the Phonograph to Techno",
"410,4100,Health and Survival Inequalities",
"415,4150,Internet and Society",
"421,4210,Theories of Reproduction",
"425,4250,Artificial Societies",
"457,4570,Health and Social Behavior",
"478,4780,The Family and Society in Africa",
"491,4910,Independent Study",
"492,4920,Economic Sociology of Entrepreneurship",
"495,4950,Honors Research",
"496,4960,Honors Thesis: Senior Year",
"501,5010,Basic Problems in Sociology I",
"502,5020,Basic Problems in Sociology II",
"505,5050,Research Methods I",
"506,5060,Research Methods II",
"510,5100,Seminar on Comparative Societal Analysis",
"518,5180,Social Inequality",
"519,5190,Workshop on Social Inequality",
"527,5270,Artificial Societies",
"528,5280,Conflict and the Nation-State",
"540,5400,Organizational Research",
"580,5800,Identity and Interest in Collective Acti",
"591,5910,Special Seminars in Sociology",
"605,6050,Political Sociology",
"606,6060,Sociology Colloquium",
"607,6070,Sociology Colloquium",
"608,6080,Proseminar in Sociology",
"609,6090,Special Topics in Methodology",
"610,6100,The Sociological Classics",
"630,6300,Cultural Sociology",
"631,6310,Inside Technology: The Social Constructi",
"632,6320,Inside Technology: The Social Constructi",
"640,6400,Methods of Social Movements Research",
"660,6600,States and Social Movements",
"680,6800,Workshop on Transnational Contention",
"682,6820,Experimental Sociology Workshop",
"685,6850,Research Practicum on Gender",
"691,6910,Independent Study",
"778,7780,Solidarity in Groups",
"891,8910,Graduate Research",
"892,8920,Graduate Research",
"895,8950,Thesis Research",
"896,8960,Thesis Research",
"SPAN,112,1120,Elementary Spanish: Review and Continuat",
"121,1210,Elementary Spanish",
"122,1220,Elementary Spanish",
"123,1230,Continuing Spanish",
"200,2000,Spanish for English/Spanish Bilinguals",
"207,2070,Intermediate Spanish for the Medical and",
"209,2090,Spanish Intermediate Composition and Con",
"214,2140,The Spanish Difference: Readings in Mode",
"215,2150,The Tradition of Rupture: Latin American",
"217,2170,Early Hispanic Modernities: Readings in ",
"219,2190,Spanish Intermediate Composition and Con",
"220,2200,Perspectives on Latin America",
"223,2230,No title",
"246,2460,Contemporary Narratives by Latina Writer",
"248,2480,Poetry of the Latino Experience",
"301,3010,Hispanic Theatre Production",
"310,3100,Advanced Spanish Conversation and Pronun",
"311,3110,Advanced Spanish Writing Workshop",
"313,3130,Spanish Writing Workshop for Advanced En",
"330,3300,Literature and the Arts",
"404,4040,The Task of the Cleric",
"419,4190,Special Topics in Spanish Literature",
"420,4200,Special Topics in Spanish Literature",
"429,4290,Honors Work in Spanish",
"430,4300,Honors Work in Spanish",
"434,4340,The Mediterranean and Cervantes",
"441,4410,Iberian Communities",
"481,4810,Conspiracy Theories and Practices-Senior",
"490,4900,Borders",
"630,6300,Spanish for Reading",
"639,6390,Special Topics in Spanish Literature",
"640,6400,Special Topics in Spanish Literature",
"661,6610,Sin, Crimes, and Scandal in Early Modern",
"665,6650,Dandies and Decadents",
"SWED,121,1210,Elementary Swedish",
"122,1220,Elementary Swedish",
"203,2030,Intermediate Swedish",
"300,3000,Directed Studies",
"TAG,121,1121,Elementary Tagalog",
"122,1122,Elementary Tagalog",
"205,2205,Intermediate Tagalog",
"206,2206,Intermediate Tagalog",
"301,3301,Advanced Tagalog",
"302,3302,Advanced Tagalog",
"431,4431,Directed Study",
"432,4432,Directed Study",
"TAMIL,121,1121,Elementary Tamil",
"122,1122,Elementary Tamil",
"THAI,101,1101,Elementary Thai",
"102,1102,Elementary Thai",
"201,2201,Intermediate Thai Reading",
"202,2202,Intermediate Thai Reading",
"203,2203,Intermediate Composition and Conversatio",
"204,2204,Intermediate Composition and Conversatio",
"301,3301,Advanced Thai",
"302,3302,Advanced Thai",
"303,3303,Thai Literature",
"304,3304,Thai Literature",
"431,4431,Directed Study",
"432,4432,Directed Study",
"THETR,151,1510,Production Laboratory I",
"153,1530,Stage Management Production Laboratory I",
"155,1550,Rehearsal and Performance",
"177,1770,Student Laboratory Theatre Company",
"205,2050,Rehearsal Workshop",
"223,2230,The Comic Theater",
"236,2360,Public Voice and Civic Gesture",
"240,2400,Introduction to World Theatre I: Antiqui",
"241,2410,Introduction to World Theatre II: NEO Cl",
"250,2500,Fundamentals of Theatre Design and Techn",
"251,2510,Production Laboratory II",
"252,2520,Technical Production Studio I",
"253,2530,Stage Management Laboratory II",
"254,2540,Theatrical Makeup Studio",
"256,2560,Technical Production Studio II",
"273,2730,Opera",
"277,2770,Shakespeare",
"278,2780,Desire",
"280,2800,Introduction to Acting",
"281,2810,Acting I",
"282,2820,Standard American Stage Speech",
"284,2840,Speech and Dialects for Performance",
"300,3000,Independent Study",
"313,3130,Special Topics in Drama and Performance",
"319,3190,Music, Dance, and Light",
"326,3260,Queer Performance",
"335,3350,Modern Western Drama, Modern Western The",
"336,3360,American Drama and Theatre",
"337,3370,Contemporary American Theatre",
"340,3400,Theatrical Drafting and Technical Drawin",
"341,3410,CAD Studio for Theatre Design",
"343,3430,Costume History: From Fig Leaf to Vanity",
"345,3450,The Tragic Theatre",
"348,3480,Playwriting",
"349,3490,Advanced Playwriting",
"351,3510,Production Laboratory III",
"352,3520,Themed Entertainment: The Technical Pers",
"353,3530,Stage Management Laboratory III",
"354,3540,Stagecraft Studio",
"356,3560,Costume Construction Studio",
"360,3600,Costumes: Special Projects",
"362,3620,Lighting Design Studio I",
"364,3640,Scenic Design Studio",
"365,3650,Automated Lighting and Control",
"366,3660,Costume Design Studio",
"368,3680,Sound Design and Digital Audio",
"369,3690,Interactive Performance Technology",
"370,3700,Stage Management Studio",
"371,3710,Costume Design Studio II",
"372,3720,Medieval and Renaissance Drama",
"375,3750,Studies in Drama and Theatre: Enemies, A",
"380,3800,Acting II",
"381,3810,Acting III: Advanced Scene Study",
"384,3840,Commedia: A Contemporization of Physical",
"385,3850,Advanced Studies in Acting Techniques",
"386,3860,Solo Performance",
"398,3980,Fundamentals of Directing I",
"403,4030,Ritual, Play, Spectacle, Act: Performing",
"404,4040,Mythology and Postmodern Performance",
"420,4200,Parody",
"426,4260,Adaptation: Text/Theatricality",
"436,4360,The Female Dramatic Tradition",
"440,4400,Romantic Drama",
"445,4450,Text Analysis for Production: How to Get",
"446,4460,Shakespeare in",
"447,4470,Hamlet: The Seminar",
"451,4510,Production Laboratory IV",
"453,4530,Stage Management Laboratory IV",
"462,4620,Lighting Design Studio II",
"464,4640,Scene Design Studio II",
"481,4810,Senior Seminar in Theater Exploration",
"483,4830,Seminar in Comparative 20th-Century Angl",
"485,4850,Undergraduate Internship",
"495,4950,Honors Research Tutorial",
"496,4960,Honors Research Tutorial",
"497,4970,Seminar in Playwriting",
"498,4980,Fundamentals of Directing II",
"499,4990,Practicum in Directing",
"580,5800,Problems in Asian Art: Dancing the Stone",
"600,6000,Proseminar in Theatre Studies",
"605,6050,Camp, Kitsch, and Trash",
"606,6060,Passionate Politics",
"620,6200,Parody",
"627,6270,Studies in Shakespeare: Shakespeare and ",
"703,7030,Theorizing Film",
"710,7100,The Pedagogy of Theatre",
"UKRAN,300,3300,Directed Studies",
"URDU,125,1125,Introduction to the Urdu Script",
"201,2201,Intermediate Written Urdu",
"202,2202,Intermediate Written Urdu",
"431,4431,Directed Study",
"432,4432,Directed Study",
"VIET,101,1101,Elementary Vietnamese",
"102,1102,Elementary Vietnamese",
"201,2201,Intermediate Vietnamese",
"202,2202,Intermediate Vietnamese",
"203,2203,Intermediate Vietnamese Composition and ",
"204,2204,Intermediate Vietnamese Composition and ",
"301,3301,Advanced Vietnamese",
"302,3302,Advanced Vietnamese",
"431,4431,Directed Study",
"432,4432,Directed Study",
"VISST,101,1101,Visual Literacy and Interior Design",
"200,2000,Introduction to Visual Studies",
"203,2020,Introduction to Feminist Theory",
"211,2711,Beginning Dance Composition",
"219,2190,Thinking Surrealisms",
"230,2300,Survey of American Film",
"233,2533,Explorations in Movement",
"235,2430,Hip-Hop Hollywood",
"236,2430,Public Voice and Civic Gesture",
"244,2744,Gamelan in Indonesian History and Cultur",
"245,2645,Renaissance and Baroque",
"274,2174,Introduction to Film Analysis: Meaning a",
"293,2193,Middle Eastern Cinema",
"305,3305,Visual Perception",
"306,3605,Americans Abroad",
"308,3508,Dance Technique IV/Modern",
"319,3519,Music Dance and Light",
"335,3735,Modern Western Drama, Modern Western The",
"342,3342,Human Perception: Application to Compute",
"345,3645,American Film Melodrama",
"348,3480,Film Noir",
"356,3560,Computing Cultures",
"362,3660,Impressionism in Society",
"364,3620,Lighting Design Studio I",
"366,3466,History and Theory of Digital Art",
"372,3672,The Art of the Historical Avant-Garde",
"375,3175,History and Theory of Commercial Narrati",
"376,3176,History and Theory of Documentary and Ex",
"385,3850,Commedia: A Contemporization of Physical",
"387,3870,Literature and Film of South Asia",
"393,3930,International Film of the 1970s",
"394,3655,The House and the World: Architecture of",
"396,3696,Arts of Southeast Asia",
"398,3798,Fundamentals of Directing I",
"400,4200,Proseminar",
"407,4607,The Museum and the Object",
"412,4120,Science, Technology and Culture",
"415,4615,Environmental Interventions",
"419,4719,Movement in Time and Space",
"425,4625,Rasta, Race, and Resistance",
"426,4260,Adaption: Text/Theatrically",
"480,4800,Advanced Seminar in American Literature:",
"506,5106,Contemporary African Diaspora Art",
"619,6619,Translation in Theory",
"634,6340,Deleuze and Lyotard: Aesthetic Excess an",
"665,6625,Race, Gender, and Crossing Water",
"666,6466,Media Theory: Film and Photography",
"674,6174,Intro to Film Analysis",
"674,6174,Introduction to Film Analysis: Meaning a",
"VTLIT,222,2222,Introduction to Classical Vietnamese",
"WRIT,139,1139,Special Topics in Writing",
"700,7100,Teaching Writing",
"701,7101,Writing in the Majors Seminar",
"702,7102,Graduate Writing Workshop",
"703,7103,Work in Progress",
"BIOAP,214,2140,Biological Basis of Sex Differences,",
"311,3110,Introductory Animal Physiology, Lectures",
"312,3120,Farm Animal Behavior",
"316,3160,Cellular Physiology",
"319,3190,Animal Physiology Experimentation",
"413,4130,Histology: The Biology of the Tissues",
"416,4160,Cell Physiology and Genomics Laboratory",
"425,4250,Gamete Physiology and Fertilization",
"427,4270,Fundamentals of Endocrinology",
"458,4580,Mammalian Physiology",
"475,4750,Mechanisms Underlying Mammalian Developm",
"489,4890,Mammalian Embryology",
"619,6190,Lipids",
"710,7100,Special Topics in Physiology",
"711,7110,Readings in Applied Animal Behavior",
"714,7140,Cardiac Electrophysiology",
"715,7150,Stress Physiology: To Be Discussed as Pa",
"718,7180,Special Topics in Physiology",
"720,7200,Animal Physiology and Anatomy Seminar",
"757,7570,Current Concepts in Reproductive Biology",
"BIOBM,132,1320,Orientation Lectures in Molecular Biolog",
"330,3300,Principles of Biochemistry",
"331,3310,Principles of Biochemistry: Proteins and",
"332,3320,Principles of Biochemistry: Molecular Bi",
"333,3330,Principles of Biochemistry: Proteins, Me",
"334,3340,Computer Graphics and Molecular Biology",
"432,4320,Survey of Cell Biology",
"434,4340,Applications of Molecular Biology to Med",
"435,4350,Undergraduate Biochemistry Seminar",
"436,4360,Undergraduate Biochemistry Seminar",
"437,4370,Regulation of Cell Proliferation, Senesc",
"438,4380,The RNA World",
"439,4390,Molecular Basis of Human Disease",
"440,4400,Laboratory in Biochemistry and Molecular",
"443,4430,Experimental Molecular Neurobiology",
"450,4500,Principles of Chemical Biology",
"483,4834,Molecular Aspects of Plant Development I",
"485,4850,Bacterial Genetics",
"631,6310,Protein Structure, Dynamics, and Functio",
"633,6330,Biosynthesis of Macromolecules",
"636,6360,Functional Organization of Eukaryotic Ce",
"638,6380,Macromolecular Interactions and Cell Fun",
"639,6390,The Nucleus",
"641,6410,Laboratory in Plant Molecular Biology",
"730,7300,Protein NMR Spectroscopy",
"732,7320,Current Topics in Biochemistry",
"737,7370,Current Topics in Biochemistry",
"738,7380,Macromolecular Crystallography",
"751,7510,Ethical Issues and Professional Responsi",
"830,8300,Biochemistry Seminar",
"831,8310,Advanced Biochemical Methods I",
"832,8320,Advanced Biochemical Methods II",
"833,8330,Research Seminar in Biochemistry",
"836,8360,Methods and Logic in Biochemistry, Molec",
"838,8380,Methods and Logic in Biochemistry, Molec",
"BIOEE,154,1540,Introductory Oceanography, Lectures",
"155,1550,Introductory Oceanography, Laboratory",
"207,2070,Evolution",
"261,2610,Ecology and the Environment",
"263,2630,Field Ecology",
"264,2640,Tropical Field Ornithology",
"265,2650,Tropical Field Ecology and Behavior",
"267,2670,Introduction to Conservation Biology",
"274,2740,The Vertebrates: Structure, Function, an",
"278,2780,Evolutionary Biology",
"350,3500,Dynamics of Marine Ecosystems",
"351,3510,Marine Ecosystems Field Course",
"362,3620,Dynamic Models in Biology",
"363,3630,Field Methods in Ornithological Research",
"369,3690,Chemical Ecology",
"371,3710,Human Paleontology",
"373,3730,Biodiversity and Biology of the Marine I",
"405,4050,Biology of the Neotropics",
"446,4460,Plant Behavior: Induced Plant Responses ",
"450,4500,Mammalogy, Lectures",
"451,4501,Mammalogy, Laboratory",
"453,4530,Speciation",
"455,4550,Insect Ecology",
"456,4560,Stream Ecology",
"457,4570,Limnology: Ecology of Lakes, Lectures",
"458,4580,Community Ecology",
"459,4590,Limnology: Ecology of Lakes, Laboratory",
"460,4600,Theoretical Ecology",
"462,4620,Marine Ecology",
"464,4640,Macroevolution",
"466,4660,Physiological Plant Ecology, Lectures",
"467,4670,Seminar in the History of Biology",
"468,4680,Physiological Plant Ecology, Laboratory",
"469,4690,Food, Agriculture, and Society",
"470,4700,Herpetology, Lectures",
"472,4701,Herpetology, Laboratory",
"473,4730,Ecology of Agricultural Systems",
"475,4750,Ornithology",
"476,4760,Biology of Fishes",
"477,4770,Marine Invertebrates Seminar",
"478,4780,Ecosystem Biology",
"479,4790,Paleobiology",
"480,4800,Ecological Genetics",
"490,4900,Topics in Marine Biology",
"660,6600,Field Studies in Ecology and Evolutionar",
"661,6610,Environmental Policy",
"668,6680,Principles of Biogeochemistry",
"671,6710,Paleoanthropology of South Asia",
"671,6710,Palaeoanthropology of South Asia",
"673,6730,Human Evolution: Concepts, History, and ",
"675,6750,Current Topics in Plant Molecular Ecolog",
"750,7590,Special Topics in Evolution and Ecology",
"760,7600,Special Topics in Evolution and Ecology",
"761,7610,Microsatellite DNA: Techniques",
"764,7640,Plant-Insect Interactions Seminar",
"767,7670,Current Topics in Ecology and Evolutiona",
"770,7700,Workshop in Biogeochemistry",
"775,7705,Workshop in Biogeochemistry",
"780,7800,Graduate Seminar in Ornithology",
"899,8990,M.S. Thesis Research",
"999,9990,Ph.D. Dissertation Research",
"BIOG,101,1101,Biological Sciences, Lectures",
"102,1102,Biological Sciences, Lectures",
"103,1103,Biological Sciences, Laboratory",
"104,1104,Biological Sciences, Laboratory",
"105,1105,Introductory Biology",
"106,1106,Introductory Biology",
"107,1107,General Biology",
"108,1108,General Biology",
"109,1109,Biological Principles",
"110,1110,Biological Principles",
"112,1120,Issues in Social Biology: from Diet to D",
"125,1250,Biology Seminar",
"170,1700,Evolution of the Earth and Life",
"200,2000,Special Studies in Biology",
"299,2990,Introduction to Research Methods in Biol",
"305,3050,Basic Immunology",
"400,4005,Undergraduate Seminar in Biology",
"401,4010,Introduction to Scanning Electron Micros",
"403,4030,Transmission Electron Microscopy for Bio",
"404,4040,Planning for Graduate Study in Biology",
"408,4080,Presentation Skills for Biologists",
"410,4100,Teaching High School Biology",
"431,4310,Frontiers in Biophysics",
"450,4500,Light and Video Microscopy for Biologist",
"498,4980,Teaching Experience",
"499,4990,Independent Undergraduate Research in Bi",
"600,6000,Graduate Seminar in Biology",
"663,6630,Nanobiotechnology",
"705,7050,Advanced Immunology Lectures",
"706,7060,Immunology of Infectious Diseases",
"BIOGD,132,1320,Orientation Lectures in Molecular Biolog",
"280,2800,Lectures in Genetics",
"281,2810,Genetics",
"282,2820,Human Genetics",
"385,3850,Developmental Biology",
"394,3940,Circadian Rhythms",
"400,4000,A Genomics Approach to Studying Life",
"401,4010,Genomic Analysis",
"437,4370,Regulation of Cell Proliferation, Senesc",
"439,4390,Molecular Basis of Human Disease",
"440,4400,Stem Cell Biology: Basic Science and Cli",
"450,4500,Vertebrate Development",
"461,4610,Development and Evolution",
"481,4810,Population Genetics",
"482,4820,Human Genetics and Society",
"484,4840,Molecular Evolution",
"485,4850,Bacterial Genetics",
"486,4860,Advanced Eukaryotic Genetics",
"487,4870,Human Genomics",
"489,4890,Mammalian Embryology",
"490,4900,Manipulating the Mouse Genome",
"608,6080,Epigenetics",
"610,6100,Genomes as Chromosomes",
"611,6110,Genome Maintenance Mechanisms",
"612,6120,Overview of Model Genetic Organisms",
"613,6130,Genomics and Society",
"620,6200,Evolutionary Genomics of Bacteria",
"638,6380,Filamentous Fungal Genomics and Developm",
"682,6820,Fertilization and the Early Embryo",
"687,6870,Developmental Genetics",
"689,6890,Cellular Basis of Development",
"780,7800,Current Topics in Genetics and Developme",
"781,7810,Problems in Genetics and Development",
"782,7820,Current Genetics/Development Topics",
"783,7830,Current Genetics/Development Topics",
"784,7840,Introduction to Quantitative Analysis",
"786,7860,Research Seminar in Genetics and Develop",
"787,7870,Seminar in Genetics and Development",
"BIOMI,290,2900,General Microbiology Lectures",
"291,2910,General Microbiology Laboratory",
"292,2920,General Microbiology Discussion",
"331,3310,General Parasitology",
"391,3910,Advanced Microbiology Laboratory",
"394,3940,Applied and Food Microbiology",
"397,3970,Environmental Microbiology",
"404,4040,Pathogenic Bacteriology and Mycology",
"409,4090,Principles of Virology",
"414,4140,Prokaryotic Diversity",
"416,4160,Bacterial Physiology",
"417,4170,Medical Parasitology",
"418,4180,Microbial Ecology",
"420,4200,Microbial Genomics",
"431,4310,Medical Parasitology",
"482,4823,Molecular Plant-Microbe Interactions",
"485,4850,Bacterial Genetics",
"610,6100,Introduction to Chemical and Environment",
"651,6080,Genomics of Bacterium-Host Interactions",
"699,6990,Toxicology Journal Club Sec 01­: Enviro",
"725,7250,Mechanisms of Microbial Pathogenesis",
"740,6430,Veterinary Perspectives on Pathogen Cont",
"791,7910,Advanced Topics in Microbiology",
"796,7960,Current Topics in Microbiology",
"797,7970,Scientific Communication Skills",
"798,7980,Graduate Research Seminar in Microbiolog",
"799,7990,Microbiology Seminar",
"BIONB,111,1110,Brain, Mind, and Behavior",
"221,2210,Neurobiology and Behavior I: Introductio",
"222,2220,Neurobiology and Behavior II: Introducti",
"231,2310,Sophomore Seminar: Topics in Cognitive S",
"321,3210,State of the Planet",
"322,3220,Hormones and Behavior",
"323,3230,Methods in Animal Behavior",
"324,3240,Biopsychology Laboratory",
"325,3250,Insect Behavior",
"326,3260,The Visual System",
"327,3270,Evolutionary Perspectives on Human Behav",
"328,3280,Biopsychology of Learning and Memory",
"329,3290,Ecology of Animal Behavior",
"330,3300,Introduction to Computational Neuroscien",
"330,3330,Introduction to Computational Neuroscien",
"331,3310,Human Sociobiology",
"369,3690,Chemical Ecology",
"392,3920,Drugs and the Brain",
"394,3940,Circadian Rhythms",
"396,3960,Introduction to Sensory Systems",
"413,4130,Molecules of Social Behavior and Emotion",
"420,4200,Topics in Neurobiology and Behavior",
"421,4210,Effects of Aging on Sensory and Perceptu",
"422,4220,Modeling Behavioral Evolution",
"423,4230,Cognitive Neuroscience",
"424,4240,Neuroethology",
"425,4250,Molecular Neurophysiology",
"426,4260,Animal Communication",
"427,4270,Animal Social Behavior",
"428,4280,Clinical Neurobiology",
"429,4290,Olfaction and Taste: Structure and Funct",
"430,4300,Experimental Molecular Neurobiology",
"431,4310,Genes and Behavior",
"442,4420,Instrumentation for Biology",
"444,4440,Neural Computation",
"470,4700,Biophysical Methods",
"491,4910,Principles of Neurophysiology",
"492,4920,Sensory Function",
"493,4930,Developmental Neurobiology",
"494,4940,Brain Evolution and Behavior",
"495,4950,Molecular and Genetic Approaches to Neur",
"496,4960,Bioacoustic Signals in Animals and Man",
"720,7200,Seminar in Advanced Topics in Neurobiolo",
"721,7210,Introductory Graduate Survey in Neurobio",
"BIOPL,240,2400,Green World/Blue Planet",
"241,2410,Introductory Botany",
"242,2420,Plant Function and Growth Lectures",
"243,2430,Taxonomy of Cultivated Plants",
"244,2440,Plant Function and Growth, Laboratory",
"245,2450,Plant Biology",
"247,2470,Ethnobiology",
"248,2480,Taxonomy of Vascular Plants",
"342,3420,Plant Physiology, Lectures",
"343,3430,Molecular Biology and Genetic Engineerin",
"344,3421,Plant Physiology, Laboratory",
"345,3450,Plant Anatomy",
"347,3431,Laboratory in Molecular Biology and Gene",
"348,3480,The Healing Forest",
"359,3590,Biology of Grasses",
"380,3800,Strategies and Methods in Drug Discovery",
"404,4040,Crop Evolution, Domestication and Divers",
"422,4220,Plant Development",
"440,4400,Phylogenetic Systematics",
"442,4420,Current Topics in Ethnobiology",
"443,4430,Topics and Research Methods in Systemati",
"444,4440,Plant Cell Biology",
"447,4470,Molecular Systematics",
"448,4480,Plant Evolution and the Fossil Record",
"449,4490,Green Signals and Triggers: The Plant Ho",
"452,4520,Systematics of Tropical Plants",
"453,4530,Principles and Practice of Historical Bi",
"454,4540,Systematics of Tropical Plants: Field La",
"462,4620,Plant Biochemistry",
"641,6410,Laboratory in Plant Molecular Biology",
"642,6420,Plant Mineral Nutrition",
"647,6470,Systematic Biology Journal Club",
"649,6490,Solute Transport in Plants",
"651,6510,Water Transport in Plants",
"654,6540,Botanical Nomenclature",
"656,6560,Topics in Plant Evolution",
"740,7400,Plant Biology Seminar",
"741,7410,Problems in Plant Cell and Molecular Bio",
"742,7420,Current Papers in Plant Biology",
"743,7430,Faculty Research in Plant Cell and Molec",
"744,7440,Graduate Research in Plant Cell and Mole",
"745,7450,Seminar in Systematic Botany",
"746,7460,Seminar in Systematic Botany: Student Re",
"749,7490,Graduate Research in Botany",
"BIOSM,111,1110,A Marine Approach to Introductory Biolog",
"123,1230,Ocean Sciences",
"160,1600,The Oceanography of the Gulf of Maine",
"161,1610,Introduction to Marine Science",
"162,1620,Marine Environmental Science",
"204,2040,Biological Illustration",
"210,2100,Boats for Biologists",
"225,2250,Sustainability in the 21st Century",
"276,2760,Seabird Conservation",
"308,3080,Field Microbial Ecology",
"309,3090,Coastal Ecology and Bioclimates",
"310,3100,Marine Symbiosis",
"312,3120,Biology of the Lobster",
"320,3200,Functional Morphology of Marine Organism",
"329,3290,Ecology of Animal Behavior",
"362,3620,SEA Maritime History and Culture",
"364,3640,Field Marine Science",
"365,3650,Underwater Research",
"366,3660,SEA Introduction to Oceanography",
"367,3670,SEA Introduction to Maritime Studies",
"368,3680,SEA Introduction to Nautical Science",
"369,3690,SEA Practical Oceanography I",
"370,3700,SEA Practical Oceanography II",
"371,3710,SEA Marine Environmental History",
"372,3720,SEA Practical Oceanography III",
"374,3740,Field Ornithology",
"375,3750,Field Marine Biology and Ecology",
"376,3760,Marine Invertebrate Zoology",
"377,3770,Diversity of Fishes",
"378,3780,SEA Oceans and Climate: Oceans in the Gl",
"379,3790,SEA Ocean Science and Public Policy",
"380,3800,SEA Oceanographic Field Methods",
"381,3810,SEA Independent Research in Oceans and C",
"410,4100,The Herring Gull's World",
"413,4130,Research in Marine Biology",
"445,4450,Forensic Science for Marine Biologists",
"449,4490,Seaweeds, Plankton, and Seagrass: the Ec",
"465,4650,Sharks: The Biology, Evolution, and Cons",
"472,4720,Molecular Systematics",
"477,4770,Marine Vertebrates",
"495,4950,Research Methods in Marine Biology",
"499,4990,Research in Biology",
"650,6500,Field Marine Ecology and Environmental S",
"699,6990,Research in Biology for Teachers",
"AEM,101,1101,Introduction to Applied Economics and Ma",
"120,1200,Foundations of Entrepreneurship and Busi",
"121,1210,Entrepreneurship Speaker Series",
"122,1220,Entrepreneurship in the Life Sciences",
"200,2000,Contemporary Controversies in the Global",
"210,2100,Introductory Statistics",
"220,2200,Introduction to Business Management",
"221,2210,Financial Accounting",
"222,2220,Business Management Case Analysis",
"230,2300,International Trade and Finance",
"240,2400,Marketing",
"241,2410,Marketing Plan Development",
"250,2500,Environmental and Resource Economics",
"302,3020,Farm Business Management",
"320,3200,Business Law I",
"321,3210,Business Law II",
"322,3220,Internet Strategy",
"323,3230,Managerial Accounting",
"324,3240,Finance",
"325,3250,Personal Enterprise and Small Business M",
"328,3280,Innovation and Dynamic Management",
"329,3290,International Agribusiness Study Trip",
"330,3300,Managerial Economics and Decision Making",
"331,3310,Economics of Business Regulation",
"333,3330,European Business Institutions",
"334,3340,Women, Leadership, and Entrepreneurship",
"335,3350,International Technology Marketing of Bi",
"336,3360,Intermediate Accounting I",
"342,3420,Integrated Marketing Communication",
"344,3440,Consumer Behavior",
"346,3460,Dairy Markets and Policy",
"380,3800,Independent Honors Research in Social Sc",
"403,4030,Farm Management Study Trip",
"404,4040,Advanced Agricultural Finance Seminar",
"405,4050,Agricultural Finance",
"410,4100,Business Statistics",
"411,4110,Introduction to Econometrics",
"412,4120,Computational Methods for Management and",
"413,4130,Business Strategy Research",
"414,4140,Behavioral Economics and Managerial Deci",
"415,4150,Price Analysis",
"417,4170,Decision Models for Small and Large Busi",
"419,4190,Strategic Thinking",
"420,4200,Investments",
"421,4210,Derivatives and Risk Management",
"422,4220,Estate Planning",
"423,4230,Contemporary Topics in Applied Finance",
"424,4240,Management Strategy",
"425,4250,Small Business Management Workshop",
"426,4260,Fixed-Income Securities",
"427,4270,Agribusiness Strategy",
"428,4280,Valuation of Capital Investment",
"429,4290,International Finance",
"430,4300,International Trade Policy",
"431,4310,Agricultural and Food Policy",
"432,4320,Public Private Sector Economics Linkages",
"434,4340,Government Policy Workshop",
"435,4350,Political Economy of the WTO",
"437,4370,Innovation Strategy",
"442,4420,Emerging Markets",
"443,4430,Food-Industry Strategy",
"444,4440,Marketing Strategy and Brand Management",
"445,4450,Food Policy for Developing Countries",
"446,4460,Food Marketing Colloquium",
"447,4470,Food Marketing Colloquium",
"448,4480,Food Merchandising",
"449,4490,Global Marketing Strategy",
"450,4500,Resource Economics",
"451,4510,Environmental Economics",
"455,4550,Sustainability, Business and the Environ",
"460,4600,Security Trading and Market Making",
"464,4640,Economics of Agricultural Development",
"494,4940,Undergraduate Special Topics in Applied ",
"497,4970,Individual Study in Applied Economics an",
"498,4980,Supervised Teaching Experience",
"499,4990,Undergraduate Research",
"605,6050,Agricultural Finance",
"608,6080,Production Economics",
"611,6110,Global Modeling",
"612,6120,Applied Econometrics",
"630,6300,Policy Analysis: Welfare Theory, Agricul",
"632,6320,Open Economy Analysis: Theory and Applic",
"634,6340,Government Policy Workshop",
"640,6400,Analysis of Agricultural Markets",
"641,6410,Commodity Futures Markets",
"642,6420,Globalization, Food Safety, and Nutritio",
"651,6510,Environmental and Resource Economics",
"655,6550,Electric Systems Engineering and Economi",
"660,6600,Agroecosystems, Economic Development, an",
"667,6670,Topics in Economic Development",
"670,6700,Economics of Consumer Demand",
"694,6940,Graduate Special Topics in Applied Econo",
"698,6980,Supervised Graduate Teaching Experience",
"699,6990,M.P.S. Research",
"700,7000,Individual Study in Applied Economics an",
"708,7080,Advanced Production Economics",
"710,7100,Econometrics I",
"711,7110,Econometrics II",
"712,7120,Quantitative Methods I",
"713,7130,Dynamic Optimization",
"714,7140,Experimental Economics",
"717,7170,Research Methods in Agricultural Economi",
"730,7300,Seminar on International Trade Policy: A",
"735,7350,Public Finance: Resource Allocation and ",
"744,7440,Advanced Consumer Research",
"750,7500,Resource Economics",
"751,7510,Environmental Economics",
"762,7620,Microeconomics of International Developm",
"765,7650,Development Microeconomics Graduate Rese",
"800,8900,Master's-Level Thesis Research",
"900,9900,Graduate-Level Thesis Research",
"901,9910,Doctoral",
"AGSCI,401,4010,Seminar in Agricultural Sciences",
"494,4940,Special Topics in Agricultural Sciences",
"496,4960,Internship in Agricultural Sciences",
"AIS,100,1100,Introduction to American Indian Studies ",
"101,1110,Introduction to American Indian Studies ",
"195,1950,Colonial Latin America",
"230,2300,Cultures of Native North America",
"235,2350,Archaeology of North American Indians",
"236,2360,Native Peoples of the Northeast, Pre-Con",
"239,2390,Seminar in Iroquois History",
"260,2600,Survey of American Indian Literatures in",
"266,2660,Introduction to Native American History",
"311,3110,Social Movements",
"340,3400,Contested Terrain: Hawaii",
"348,3480,Iroquois Archaeology",
"353,3530,Anthropology of Colonialism",
"364,3640,Politics of Nations Within”",
"386,3860,Contemporary American Indian Fiction",
"400,4000,Critical Approaches to American Indian S",
"404,4040,Race and Ethnicity in Latin America",
"430,4300,Native American Philosophies",
"460,4600,Field and Analytical Methods in American",
"472,4720,Historical Archaeology of Indigenous Peo",
"475,4750,Governmentality, Citizenship, and Indige",
"486,4860,American Indian Women's Literature",
"490,4900,New World Encounters, 1500 to 1800",
"497,4970,Independent Study",
"600,6000,Critical Approaches to American Indian S",
"601,6010,American Indian Studies Proseminar",
"635,6350,Indigenous Peoples and Globalization",
"648,6480,Iroquois Archaeology",
"661,6610,Colonial American Literatures",
"671,6710,Law and Literature in the Antebellum Uni",
"772,7720,Historical Archaeology of Indigenous Peo",
"ALS,100,1100,College and Career Exploration in the Co",
"101,1101,Transition to and Success at Cornell",
"134,1340,Emergency Medical Technician",
"135,1350,Advanced Emergency Medical Technician, C",
"392,3920,New York State Government Affairs",
"400,4000,Internship",
"476,4760,Environmental Stewardship in the Cornell",
"477,4770,Environmental Stewardship in the Cornell",
"494,4940,Special Topics in Agriculture and Life S",
"500,4998,Politics and Policy: Theory, Research, a",
"580,5800,International Teaching Assistant Develop",
"581,5810,International Teaching Assistant Develop",
"661,6610,Environmental Policy",
"ANSC,100,1100,Domestic Animal Biology I",
"105,1105,Contemporary Perspectives of Animal Scie",
"110,1110,The Animals That Sustain Us: Lecture",
"111,1111,The Animals That Sustain Us: Lab",
"112,1120,Sustainable Animal Husbandry",
"150,1150,Domestic Animal Biology II",
"204,2040,Sophomore Seminar: Domestic Animal Issue",
"212,2120,Animal Nutrition",
"215,2150,Exotic Avian Husbandry and Propagation",
"221,2210,Introductory Animal Genetics",
"250,2500,Dairy Cattle Principles",
"251,2510,Applied Dairy Cattle Genetics",
"265,2650,Horses",
"290,2900,Meat Science",
"300,3000,Animal Reproduction and Development",
"301,3010,Animal Reproduction and Development Lab",
"305,3050,Farm Animal Behavior",
"310,3100,Introduction to Animal Welfare",
"341,3410,Biology of Lactation",
"351,3510,Dairy Herd Management",
"354,3540,Dairy Cattle Herd Health",
"355,3550,Dairy Cattle Nutrition",
"360,3600,Beef Cattle",
"380,3800,Sheep",
"400,4000,Livestock in Tropical Farming Systems",
"401,4010,Dairy Production Seminar",
"402,4020,Seminar in Animal Sciences",
"410,4100,Nutritional Physiology and Metabolism",
"411,4110,Applied Cattle Nutrition",
"412,4120,Whole-Farm Nutrient Management",
"414,4140,Ethics and Animal Science",
"425,4250,Gamete Physiology and Fertilization",
"427,4270,Fundamentals of Endocrinology",
"451,4510,Dairy Herd Business Management",
"456,4560,Dairy Management Fellowship",
"457,4570,Introductory Spanish for Dairy Producers",
"458,4580,Advanced Spanish for Dairy Producers",
"470,4700,Merchandizing Beef Cattle",
"494,4940,Special Topics in Animal Science",
"496,4960,Internship in Animal Science",
"497,4970,Individual Study in Animal Science",
"498,4980,Undergraduate Teaching",
"499,4990,Undergraduate Research",
"603,6030,Mineral Nutrition: Metabolic, Health, an",
"606,6060,Ruminant Nutrition: Microbial Ecology an",
"610,6100,Animal Science Seminar",
"619,6190,Field of Nutrition Seminar",
"621,6210,Reproductive Physiology/Endocrinology Se",
"622,6220,Seminar in Animal Metabolism",
"694,6940,Special Topics in Animal Science",
"800,8900,Master's-Level Thesis Research",
"900,9900,Graduate-Level Thesis Research",
"901,9910,Doctoral-Level Thesis Research",
"BEE,110,1130,Introduction to Metal Fabrication Techni",
"132,1140,Introduction to Wood Construction",
"151,1510,Introduction to Computer Programming",
"200,1200,The BEE Experience",
"222,2220,Bioengineering Thermodynamics and Kineti",
"251,2510,Engineering for a Sustainable Society",
"260,2600,Principles of Biological Engineering",
"299,3299,Sustainable Development: A Web-Based Cou",
"305,3050,Principles of Navigation",
"310,1050,Advanced Metal Fabrication Techniques",
"331,3310,Bio-Fluid Mechanics",
"350,3500,Biological and Environmental Transport P",
"360,3600,Molecular and Cellular Bioengineering",
"362,3620,Fundamentals of Tissue Engineering",
"365,3650,Properties of Biological Materials",
"368,3680,Biotechnology Applications: Animal Biore",
"371,3710,Physical Hydrology for Ecosystems",
"401,4010,Renewable Energy Systems",
"427,4270,Water Sampling and Measurement",
"435,4350,Principles of Aquaculture",
"450,4500,Bioinstrumentation",
"453,4530,Computer-Aided Engineering: Applications",
"454,4540,Physiological Engineering",
"459,4590,Biosensors and Bioanalytical Techniques",
"464,4640,Bioseparation Processes",
"471,4710,Introduction to Groundwater",
"473,4730,Watershed Engineering",
"474,4740,Water and Landscape Engineering Applicat",
"475,4750,Environmental Systems Analysis",
"476,4760,Solid Waste Engineering",
"478,4780,Ecological Engineering",
"481,4791,LRFDBased Engineering of Wood Structure",
"484,4840,Metabolic Engineering",
"487,4870,Sustainable Energy Systems",
"489,4890,Engineering Entrepreneurship, Management",
"493,4930,Technical Writing for Engineers",
"494,4940,Special Topics in Biological and Environ",
"494,4940,Introduction to Atmospheric Chemistry",
"495,4950,BEE Honors Research",
"496,4960,Capstone Design in Biological and Enviro",
"497,4970,Individual Study in Biological and Envir",
"498,4980,Undergraduate Teaching",
"499,4990,Undergraduate Research",
"501,5010,Bioengineering Seminar",
"520,5900,M.P.S. Project",
"533,5330,Engineering Professionalism",
"551,5950,Master of Engineering Design Project",
"647,6470,Water Transport in Plants",
"649,6490,Solute Transport in Plants",
"651,6510,Bioremediation: Engineering Organisms to",
"655,6550,Thermodynamics and Its Applications",
"659,6590,Biosensors and Bioanalytical Techniques",
"671,6710,Analysis of the Flow of Water and Chemic",
"672,6720,Drainage",
"674,6740,Ecohydrology",
"687,6870,The Science and Engineering Challenges t",
"694,6940,Graduate Special Topics in Biological an",
"697,6970,Graduate Individual Study in Biological ",
"700,7010,BEE Seminar Series",
"740,6430,Veterinary Perspectives on Pathogen Cont",
"750,7000,Orientation to Graduate Study",
"754,7540,Water and Culture in the Mediterranean: ",
"760,7600,Nucleic Acid Engineering",
"771,7710,Soil and Water Engineering Seminar",
"787,7870,Industrial Ecology of Agriculturally Bas",
"788,7880,Biomass Conversion of Energy and Chemica",
"800,8900,Master's-Level Thesis Research",
"900,9900,Doctoral-Level Thesis Research",
"BTRY,301,3010,Biological Statistics I",
"302,3020,Biological Statistics II",
"310,3100,Statistical Sampling",
"407,4070,Principles of Probability and Statistics",
"408,4080,Theory of Probability",
"409,4090,Theory of Statistics",
"410,4100,Multivariate Analysis",
"421,4210,Matrix Computation",
"482,4820,Statistical Genomics",
"483,4830,Quantitative Genomics and Genetics",
"484,4840,Computational Genomics",
"494,4940,Undergraduate Special Topics in Biometry",
"495,4950,Statistical Consulting",
"496,4960,Statistical Consulting II",
"497,4970,Undergraduate Individual Study in Biomet",
"498,4980,Undergraduate Supervised Teaching",
"499,4990,Undergraduate Research",
"601,6010,Statistical Methods I",
"602,6020,Statistical Methods II",
"603,6030,Statistical Methods III: Categorical Dat",
"604,6040,Statistical Methods IV: Applied Design",
"607,6070,Principles of Probability and Statistics",
"652,6520,Computationally Intensive Statistical In",
"682,6820,Statistical Genomics",
"683,6830,Quantitative Genomics and Genetics",
"684,6840,Computational Genomics",
"689,6890,Topics in Population Genetics and Genomi",
"694,6940,Graduate Special Topics in Biometry and ",
"697,6970,Individual Graduate Study in Biometry an",
"717,7170,Theory of Linear Models",
"718,7180,Generalized Linear Models",
"720,7200,Topics in Computational Genomics",
"726,7260,Problems and Perspectives in Computation",
"727,7270,Advanced Survival Analysis",
"795,7950,Statistical Consulting",
"798,7980,Graduate Supervised Teaching",
"800,8900,Master's-Level Thesis Research",
"900,9900,Graduate-Level Dissertation Research",
"901,9910,Doctoral-Level Dissertation Research",
"COMM,101,1101,Cases in Communication",
"130,1300,Visual Communication",
"131,1310,Writing about Communication",
"201,2010,Oral Communication",
"203,2030,Argumentation and Debate",
"220,2300,Contemporary Mass Communication",
"245,2450,Psychology of Social Computing",
"260,2600,Scientific Writing for Public Informatio",
"263,2630,Organizational Writing",
"272,2720,Principles of Public Relations and Adver",
"276,2760,Cases in Communication and Social Influe",
"282,2820,Research Methods in Communication Studie",
"284,2840,Sex, Gender, and Communication",
"285,2850,Communication in Life Sciences",
"301,3010,Business and Professional Presentation",
"303,3030,Speech and Debate Practicum",
"310,3100,Communication and Decision Making in Gro",
"320,3200,New Media and Society",
"345,3450,HumanComputer Interaction Design",
"349,3490,Media Technologies",
"352,3520,Science Writing for the Mass Media",
"353,3530,Science Writing Practicum",
"376,3760,Planning Communication Campaigns",
"398,3980,Issues in Teaching Communication",
"405,4050,Community Service Practicum",
"410,4100,Organizational Communication: Theory and",
"420,4200,Public Opinion and Social Process",
"421,4210,Communication and the Environment",
"422,4220,Psychology of Television",
"428,4280,Communication Law",
"429,4290,Copyright in the Digital Age",
"440,4400,Advanced Human-Computer Interaction Desi",
"445,4450,Seminar in Computer-Mediated Communicati",
"450,4500,Language and Technology",
"456,4560,Community Involvement in Environmental D",
"466,4660,Public Communication of Science and Tech",
"476,4760,Communication Fellows Program",
"480,4800,Independent Honors Research in Social Sc",
"486,4860,Risk Communication",
"494,4940,Special Topics in Communication",
"496,4960,Communication Internship",
"497,4970,Individual Study in Communication",
"498,4980,Communication Teaching Experience",
"499,4990,Independent Research",
"610,6100,Seminar in Social Networks",
"618,6180,Communication and Persuasion",
"621,6210,Advanced Communication and the Environme",
"622,6220,Advanced Psychology of Television",
"624,6240,Communication in the Developing Nations",
"640,6400,HumanComputer Interaction Design",
"645,6450,CMC Graduate Seminar",
"650,6500,Language and Technology",
"680,6800,Studies in Communication",
"681,6810,Advanced Communication Theory",
"682,6820,Methods of Communication Research",
"683,6830,Qualitative Research Methods in Communic",
"684,6840,Theories and Methods of Small Group Rese",
"686,6860,Risk Communication",
"691,6910,Seminar: Topics in Communication",
"694,6940,Special Topics in Communication",
"781,7810,Seminar in Psychology of Communication",
"794,7940,Seminar in Communication Issues",
"797,7970,Graduate Independent Study",
"798,7980,Communication Teaching Laboratory",
"799,7990,Graduate Research",
"800,8900,Master's-Level Thesis Research",
"901,9900,Doctoral-Level Dissertation Research",
"CSS,190,1900,Sustainable Agriculture: Food, Farming, ",
"260,2600,Soil Science",
"311,3110,Grains and Nutraceuticals",
"312,3120,Forage Crops",
"315,3150,Weed Biology and Management",
"317,3170,Seed Science and Technology",
"362,3620,Soil Morphology",
"363,3630,Soil Genesis, Classification, and Survey",
"365,3650,Environmental Chemistry: Soil, Air, and ",
"372,3720,Nutrient Management in Agroecosystems",
"397,3970,Environmental Microbiology [also BIOMI 3",
"403,4030,Traditional Agriculture in Developing Na",
"410,4100,The GMO Debate: Environmental Impacts",
"411,4110,Resource Inventory Methods",
"412,4120,Whole-Farm Nutrient Management",
"414,4140,Tropical Cropping Systems: Biodiversity,",
"420,4200,Geographic Information Systems",
"421,4210,Soil and Water Management",
"426,4260,Practicum in Forest Farming as an Agrofo",
"444,4440,Integrated Pest Management",
"455,4550,Mineral Nutrition of Crops and Landscape",
"465,4650,Global Positioning System",
"466,4660,Soil Ecology",
"471,4710,Properties and Appraisal of Soils of the",
"472,4720,Nutrient Management and Research in Agro",
"483,4830,Environmental Biophysics",
"485,4850,Problem Solving in Environmental and Agr",
"486,4860,Problem Solving in Environmental and Agr",
"494,4940,Special Topics in Crop and Soil Sciences",
"497,4970,Individual Study in Crop and Soil Scienc",
"498,4980,Teaching Experience in Crop and Soil Sci",
"499,4990,Undergraduate Research",
"608,6080,Water Status in Plants and Soils",
"610,6100,Physiology of Environmental Stresses",
"612,6120,Seed Biology",
"613,6130,Physiology and Ecology of Yield",
"614,6140,Weed Ecology and Management",
"620,6200,Spatial Modeling and Analysis",
"621,6210,Applications of Space-Time Statistics",
"642,6420,Mineral Nutrition: From Plants to Humans",
"660,6600,Remote Sensing Fundamentals",
"663,6630,Pedology",
"666,6660,Applied PlantMicrobe Interactions",
"667,6670,Advanced Soil Physics",
"669,6690,Organic Matter: Soils, Sediments, and Wa",
"671,6710,Soil Chemistry",
"672,6720,Nutrient Cycling in Natural and Managed ",
"674,6740,Environmental Genomics",
"675,6750,Modeling the Soil-Plant-Atmosphere Syste",
"684,6840,Topics in Soil Microbial Ecology",
"690,6900,Scientific Method in Practice",
"691,6941,Special Topics in Crop Science",
"693,6942,Special Topics in Soil Science",
"694,6943,Special Topics in Environmental Informat",
"696,6970,Seminar in Crop and Soil Sciences",
"820,8200,Master's-Level Thesis Research in Crop S",
"860,8900,Master's-Level Thesis Research in Enviro",
"880,8920,Master's-Level Thesis Research in Soil S",
"920,7910,Graduate-Level Thesis Research in Crop S",
"921,9910,Doctoral-Level Dissertation Research in ",
"960,9600,Graduate-Level Dissertation Research in ",
"961,9920,Doctoral-Level Dissertation Research in ",
"980,9800,Graduate-Level Dissertation Research in ",
"981,9900,Doctoral-Level Dissertation Research in ",
"DSOC,101,1101,Introduction to Sociology",
"111,1201,Development Sociology First-Year Writing",
"112,1200,Development Sociology First-Year Writing",
"201,2010,Population Dynamics",
"205,2050,Rural Sociology and International Develo",
"205,2050,International Development",
"207,2070,Problems of Contemporary Society",
"209,2090,Social Inequality",
"215,2150,Introductory Organizations",
"220,2200,Sociology of Health and Ethnic Minoritie",
"220,2200,Sociology of Health of Ethnic Minorities",
"222,2220,Controversies About Inequality",
"275,2750,Immigration and a Changing America",
"301,3010,Theories of Society and Development",
"305,3050,Education, Inequality, and Development",
"313,3130,Social Indicators and Introduction to So",
"314,3140,Spatial Thinking, GIS, and Related Metho",
"324,3240,Environment and Society",
"331,3310,Environmental Governance",
"336,3360,Rural Areas in Metropolitan Society",
"340,3400,Agriculture, Food, and Society",
"355,3550,Latinos, Law, and Identity",
"370,3700,Comparative Social Inequalities",
"375,3750,Comparative U.S. Racial and Ethnic Relat",
"380,4900,Independent Honors Research in Social Sc",
"410,4100,Health and Survival Inequalities",
"421,4210,Theories of Reproduction",
"430,4300,Human Migration: Internal and Internatio",
"432,4320,Environmental Strategies",
"438,4380,Population and Development",
"463,4630,Islam in Africa and Its Diaspora",
"481,4810,Global Conflict and Terrorism",
"494,4940,Special Topics in Development Sociology",
"497,4970,Independent Study in Development Sociolo",
"560,5600,Analytical Mapping and Spatial Modeling",
"603,6030,Classical Sociological Theory",
"606,6060,Sociological Theories of Development",
"608,6080,Demographic Techniques",
"612,6120,Population and Development in Asia",
"615,6150,Qualitative Research Methods",
"617,6170,Foundations in Social Research: Comparat",
"619,6190,Quantitative Research Methods",
"621,6210,Foundations of Environmental Sociology",
"629,6300,Human Migration: Internal and Internatio",
"632,6320,Environmental Governance",
"638,6380,Population and Development",
"663,6630,Islam in Africa and Its Diaspora",
"694,6800,Special Topics in Development Sociology",
"719,7190,Logistic Regression and Spatial Linear R",
"791,7910,Teaching Experience",
"800,8900,Master’s-Level Thesis Research",
"872,8720,Development Sociology",
"900,7900,Graduate-Level Thesis Research",
"901,9900,Doctoral-Level Thesis Research",
"EAS,101,1101,Introductory Geological Sciences",
"108,1108,Earth in the News",
"109,1109,Dinosaurs",
"119,1190,Fossil Preparation",
"121,1121,Introduction to MATLAB",
"122,1220,Earthquake!",
"131,1310,Basic Principles of Meteorology",
"133,1330,Basic Meteorology Lab",
"150,1500,FORTRAN Applications in Earth Science",
"154,1540,Introductory Oceanography, Lecture",
"155,1550,Introductory Oceanography, Laboratory",
"170,1700,Evolution of the Earth and Life",
"213,2130,Marine and Coastal Geology",
"220,2200,The Earth System",
"222,2220,Seminar: Hawaii's Environment",
"240,2400,Field Study of the Earth System",
"250,2500,Meteorological Observations and Instrume",
"268,2680,Climate and Global Warming",
"296,2960,Forecast Competition",
"301,3010,Evolution of the Earth System",
"303,3030,Introduction to Biogeochemistry",
"304,3040,Interior of the Earth",
"305,3050,Climate Dynamics",
"322,3220,Biogeochemistry of the Hawaiian Islands",
"334,3340,Microclimatology",
"341,3410,Atmospheric Thermodynamics and Hydrostat",
"342,3420,Atmospheric Dynamics",
"350,3500,Dynamics of Marine Ecosystems",
"351,3510,Marine Ecosystems Field Course",
"352,3520,Synoptic Meteorology",
"352,3520,Synoptic Meteorology I",
"353,3530,Physical Oceanography",
"401,4010,Fundamentals of Energy and Mineral Resou",
"404,4040,Geodynamics",
"405,4050,Active Tectonics",
"415,4150,Geomorphology",
"417,4170,Field Mapping in Argentina",
"425,4250,European Discovery of Impacts and Explos",
"426,4260,Structural Geology",
"434,4340,Exploration Geophysics",
"435,4350,Statistical Methods in Meteorology and C",
"437,4370,Geophysical Field Methods",
"440,4400,Seminar on the Intergovernmental Panel o",
"447,4470,Physical Meteorology",
"451,4510,Synoptic Meteorology II",
"453,4530,Mineralogy",
"454,4540,Petrology and Geochemistry",
"455,4550,Geochemistry",
"456,4560,Mesoscale Meteorology",
"457,4570,Atmospheric Air Pollution",
"458,4580,Volcanology",
"460,4600,Late Quaternary Paleoecology",
"461,4610,Paleoclimate: Since the Last Ice Age",
"462,4620,Marine Ecology",
"470,4700,Weather Forecasting and Analysis",
"471,4710,Introduction to Groundwater Hydrology",
"475,4750,Special Topics in Oceanography",
"476,4760,Sedimentary Basins",
"478,4780,Advanced Stratigraphy",
"479,4790,Paleobiology",
"481,4810,Senior Survey of Earth Systems",
"483,4830,Environmental Biophysics",
"484,4840,Inverse Methods in the Natural Sciences",
"487,4870,Introduction to Radar Remote Sensing",
"487,4870,Introduction to Radar and Remote Sensing",
"488,4880,Geophysics and Geotectonics",
"491,4910,Undergraduate Research",
"492,4920,Undergraduate Research",
"494,4940,Special Topics in Atmospheric Science",
"496,4960,Internship Experience",
"497,4790,Individual Study in Atmospheric Science",
"497,4970,Individual Study in Atmospheric Science",
"498,4980,Teaching Experience in Earth and Atmosph",
"499,4990,Undergraduate Research in Atmospheric Sc",
"500,5000,Design Project in Geohydrology",
"502,5020,Case Histories in Groundwater Analysis",
"505,5050,Fluid Dynamics in the Earth Sciences",
"522,5220,Advanced Structural Geology I",
"524,5240,Advanced Structural Geology II",
"542,5420,Numerical Methods in Atmospheric Modelin",
"553,5530,Advanced Petrology",
"575,5750,Planetary Atmospheres",
"577,5770,Planetary Surface Processes",
"578,5780,Planet Formation and Evolution",
"584,5840,Inverse Methods in the Natural Sciences",
"628,6280,Geology of Orogenic Belts",
"641,6410,Analysis of Biogeochemical Systems",
"648,6480,Air Quality and Atmospheric Chemistry",
"652,6520,Advanced Atmospheric Dynamics",
"656,6560,Isotope Geochemistry",
"666,6660,Applied Multivariate Statistics",
"675,6750,Modeling the Soil-Plant-Atmosphere Syste",
"692,6920,Special Topics in Atmospheric Science",
"693,6930,Special Topics in Geological Sciences",
"700,7000,Seminars and Special Work",
"701,7010,Thesis Research",
"702,7020,Thesis Research",
"711,7110,Upper Atmospheric and Space Physics",
"722,7220,Advanced Topics in Structural Geology",
"731,7310,Advanced Topics in Remote Sensing and Ge",
"733,7330,Advanced Topics in Geodynamics",
"750,7500,Satellite Remote Sensing in Biological O",
"750,7550,Satellite Remote Sensing in Biological O",
"751,7510,Petrology and Geochemistry",
"755,7550,Advanced Topics in Tectonics and Geochem",
"757,7570,Current Research in Petrology and Geoche",
"762,7620,Advanced Topics in Paleobiology",
"771,7710,Advanced Topics in Sedimentology and Str",
"773,7730,Paleobiology",
"775,7750,Advanced Topics in Oceanography",
"780,7800,Earthquake Record Reading",
"781,7810,Exploration Geophysics",
"793,7930,Andes-Himalayas Seminar",
"793,7930,Andes-Himalaya Seminar",
"795,7950,Low Temperature Geochemistry",
"795,7950,Low-Temperature Geochemistry",
"796,7960,Geochemistry of the Solid Earth",
"797,7970,Fluid-Rock Interactions",
"799,7990,Soil, Water, and Geology Seminar",
"850,8500,Master's-Level Thesis Research in Atmosp",
"950,9500,Graduate-Level Dissertation Research in ",
"951,9510,Doctoral-Level Dissertation Research in ",
"EDUC,220,2200,Community Learning and Service Partnersh",
"221,2210,Community Learning and Service Partnersh",
"240,2400,The Art of Teaching",
"271,2710,Social and Political Context of American",
"311,3110,Educational Psychology",
"331,3310,Careers in Agriculture, Extension, and A",
"335,3350,Youth Organizations",
"380,3800,Independent Honors Research in Social Sc",
"404,4040,Learning and Teaching I",
"405,4050,Learning and Teaching II",
"420,4200,Field Experience",
"441,4410,Language, Literacy, and Schooling",
"451,4510,Multiculturalism and Education",
"452,4520,Multicultural Issues in Secondary Educat",
"459,4590,Educational Innovations in Africa and th",
"463,4630,Policies, Practices, and Critical Issues",
"494,4940,Special Topics in Education",
"497,4970,Individual Study in Education",
"498,4980,Undergraduate Teaching",
"499,4990,Undergraduate Research",
"502,5020,Education and Development in Africa",
"503,5030,Diversity in the Classroom",
"532,5320,Educational Programs in Agricultural Sci",
"535,5350,Youth Organizations for Agricultural Sci",
"544,5440,Curriculum and Instruction",
"548,5480,Effective College Teaching",
"571,5710,Social and Political Context of American",
"578,5780,International Teaching Assistant Develop",
"579,5790,Further Training for International Teach",
"601,6010,Secondary Agriculture, Science, and Math",
"602,6020,Practicum Seminar",
"614,6140,Gender, Context, and Epistemological Dev",
"616,6160,Moral Psychology and Education",
"617,6170,Psychology of Adolescence in Case Study",
"620,6200,Internship in Education",
"620,6200,Internship In Education",
"621,6210,Work-Experience Coordinator Certificatio",
"622,6220,Work-Experience Coordinator Certificatio",
"633,6330,Program Planning in Adult and Extension ",
"647,6470,Innovative Teaching in the Sciences",
"651,6510,Anthropology and Education",
"661,6610,Administration Leadership and Organizati",
"662,6620,Evaluation Design",
"664,6640,Methods for Interpretive Research",
"668,6680,Narrative Inquiry in Social Science and ",
"671,6710,American School Reform: Organizational a",
"680,6800,Foundations of Adult and Extension Educa",
"681,6810,Democracy, Science, and Education",
"682,6820,Community Education and Development",
"683,6830,Adult Education and Globalization: Compa",
"685,6850,Training and Development: Theory and Pra",
"694,6940,Special Topics in Education",
"700,7000,Directed Readings",
"701,7010,Empirical Research",
"702,7020,Practicum",
"703,7030,Teaching Assistantship",
"704,7040,Research Assistantship",
"705,7050,Extension Assistantship",
"718,7180,Adult Learning and Development",
"762,7620,Comparative and International Education",
"783,7830,Farmer-Centered Research and Extension",
"800,8900,Master's-Level Thesis Research",
"900,9900,Doctoral-Level Thesis Research",
"ENTOM,201,2010,Alien Empire: Bizarre Biology of Bugs",
"210,2100,Plagues and People",
"212,2120,Insect Biology",
"215,2150,Spider Biology: Life on a Silken Thread",
"241,2410,Insect Pest Management for Practitioners",
"260,2600,Biology of the Honey Bee",
"264,2640,Practical Beekeeping",
"277,2770,Invasive Species and Natural Enemies",
"315,3150,Spider Biology",
"325,3250,Insect Behavior",
"331,3310,Insect Phylogeny and Evolution",
"332,3320,Insect Phylogeny and Evolution Laborator",
"333,3330,Maggots, Grubs, and Cutworms: Larval Ins",
"335,3350,Naturalist Outreach Practicum",
"336,3360,Naturalist Outreach in Biology",
"344,3440,Insect Conservation Biology",
"352,3520,Medical and Veterinary Entomology",
"353,3530,Lab in Medical and Veterinary Entomology",
"369,3690,Chemical Ecology",
"370,3700,Pesticides, the Environment, and Human H",
"400,4000,Insect Development",
"420,4200,Grape Pest Management",
"440,4400,Phylogenetic Systematics",
"443,4430,Entomology and Pathology of Trees and Sh",
"444,4440,Integrated Pest Management",
"453,4530,Principles and Practice of Historical Bi",
"455,4550,Insect Ecology",
"463,4630,Invertebrate Pathology",
"470,4700,Ecological Genetics",
"483,4830,Insect Physiology",
"490,4900,Toxicology of Insecticides",
"494,4940,Special Topics in Entomology",
"497,4970,Individual Study in Entomology",
"498,4980,Undergraduate Teaching",
"634,6340,Special Topics in Systematic Entomology",
"655,6550,Nomenclature Seminar",
"662,6620,Insect Behavior Seminar",
"670,6700,Seminar on Biological Control",
"685,6850,Seminar in Insect Physiology",
"707,7070,Individual Study for Graduate Students",
"709,7090,Teaching Entomology",
"757,7570,Spatial Population Ecology",
"767,7670,Current Topics in Entomology",
"800,8900,Master'sLevel Thesis Research",
"900,9900,DoctoralLevel Thesis Research",
"FDSC,101,1101,Science and Technology of Foods",
"102,1102,Exploring Food Processing",
"104,1104,Wines and Vines",
"150,1500,Food Choices and Issues",
"200,2000,Introduction to Physicochemical and Biol",
"210,2100,Food Analysis",
"250,2500,Kosher and Halal Food Regulations",
"290,2900,Meat Science",
"321,3210,Food Engineering Principles",
"340,3400,Microbiology and Technology of Winemakin",
"351,3510,Milk Quality",
"394,3940,Applied and Food Microbiology",
"395,3950,Food Microbiology Laboratory",
"396,3960,Food Safety Assurance",
"400,4000,Current Topics in Food Science and Techn",
"401,4010,Concepts of Product Development",
"402,4021,Agriculture in Developing Nations I",
"405,4050,Managing Food Waste Without Trashing the",
"406,4060,Dairy and Food Fermentations",
"410,4100,Sensory Evaluation of Food",
"415,4150,Principles of Food Packaging",
"417,4170,Food Chemistry I",
"418,4180,Food Chemistry II",
"419,4190,Food Chemistry Laboratory",
"423,4230,Physical Principles of Food Preservation",
"425,4250,Unit Operations and Dairy Foods Processi",
"430,4300,Understanding Wine and Beer",
"440,4400,Wine and Grape Flavor Development",
"450,4500,Fundamentals of Food Law",
"456,4560,Advanced Concepts in Sensory Evaluation",
"480,4800,Global Seminar: Building Sustainable Env",
"494,4940,Special Topics in Food Science",
"497,4970,Individual Study in Food Science",
"498,4980,Undergraduate Teaching Experience",
"499,4990,Undergraduate Research in Food Science",
"599,5990,Research for Lausanne Exchange Students",
"600,6000,Seminar in Food Science",
"602,6020,Agriculture in Developing Nations II",
"604,6040,Chemistry of Dairy Products",
"607,6070,Advanced Food Microbiology",
"608,6080,Chemometric Methods in Food Science",
"616,6160,Flavors: Analysis and Applications",
"620,6200,Food Carbohydrates",
"621,6210,Food Lipids",
"622,6220,Nutraceuticals and Functional Foods",
"664,6640,Food Polymer Science: Principles and App",
"665,6650,Food and Bioprocessing Systems",
"694,6940,Special Topics in Food Science",
"695,6950,Current Readings in Food Science",
"698,6980,Graduate Teaching Experience",
"800,8090,Master's-Level Thesis Research",
"900,9900,Graduate-Level Thesis Research",
"901,9010,Doctoral-Level Thesis Research",
"HORT,101,1101,Horticultural Science and Systems",
"102,1102,Hands-On Horticulture",
"104,1104,Introduction to Wines and Vines",
"201,2010,The Art of Horticulture",
"215,2150,Sophomore Seminar: Nonfiction Adventure ",
"220,2200,Practicing Sustainable Land Care",
"235,2350,Plants and Human Well-Being",
"240,2400,Exploring the Small Farm Dream",
"243,2430,Taxonomy of Cultivated Plants",
"300,3000,Herbaceous Plant Materials",
"310,3100,Production and Marketing of Greenhouse C",
"317,3170,Seed Science and Technology",
"330,3300,Golf and Sports Turf Management I",
"340,3400,Golf and Sports Turf Management Techniqu",
"391,3910,Woody Plant Identification and Use I",
"392,3920,Woody Plant Identification and Use II",
"400,4000,Principles of Plant Propagation",
"420,4200,Nursery-Crop Production",
"425,4250,Postharvest Biology of Horticultural Cro",
"426,4260,Practicum in Forest Farming as an Agrofo",
"435,4350,The Care of Woody and Herbaceous Plants ",
"440,4400,Restoration Ecology",
"442,4420,Berry Crops: Culture and Management",
"443,4430,Viticulture and Vineyard Management: I",
"444,4440,Viticulture and Vineyard Management: II",
"445,4450,Ecological Orchard Management",
"449,4490,Green Signals and Triggers: The Plant Ho",
"450,4500,Principles of Vegetable Production",
"455,4550,Mineral Nutrition of Crops and Landscape",
"460,4600,Cropping Systems Ecology",
"462,4620,Physiology of Vegetables and Flowers",
"466,4660,Soil Ecology",
"473,4730,Ecology of Agricultural Systems",
"480,4800,Plantations Lecture Series",
"485,4850,Public Garden Management",
"490,4900,Golf and Sports Turf Management II",
"491,4910,Creating the Urban Eden: Woody Plant Sel",
"492,4920,Creating the Urban Eden: Woody Plant Sel",
"494,4940,Special Topics in Horticulture",
"495,4950,Undergraduate Seminar: Current Topics in",
"496,4960,Internship in Horticulture",
"497,4970,Individual Study in Horticulture",
"498,4980,Undergraduate Teaching Experience",
"499,4990,Undergraduate Research",
"500,5900,Master of Professional Studies",
"600,6000,Seminar in Horticulture",
"610,6100,Extension Volunteer Development in Garde",
"611,6110,Field Experience in Extension Volunteer ",
"615,6150,Quantitative Methods in Horticultural Re",
"617,6170,Advanced Analytical Methods for Plant Sy",
"618,6180,Breeding for Pest Resistance",
"625,6251,Advanced Postharvest Biology",
"635,6350,Tools for Thought",
"640,6400,New Directions in Public Horticulture",
"645,6450,Advanced Viticultural Topics",
"694,6940,Special Topics in Horticulture",
"700,7000,Graduate Teaching Experience",
"800,8900,Thesis Research, Master of Science",
"900,9900,Thesis Research, Doctor of Philosophy",
"IARD,300,3000,Perspectives in International Agricultur",
"402,4020,Agriculture in Developing Nations I",
"403,4030,Traditional Agriculture in Developing Co",
"404,4040,Crop Evolution, Domestication, and Diver",
"405,4050,Patents, Plants, and Profits: Intellectu",
"414,4140,Tropical Cropping Systems: Biodiversity,",
"480,4800,Global Seminar: Building Sustainable Env",
"494,4940,Special Topics in International Agricult",
"496,4960,International Internship",
"497,4970,Independent Study in IARD",
"598,5980,International Development M.P.S. Project",
"599,5990,International Agriculture and Rural Deve",
"602,6020,Agriculture in Developing Nations II",
"620,6200,Rural Livelihoods and Biological Resourc",
"685,6850,Training and Development: Theory and Pra",
"694,6940,Graduate Special Topics in IARD",
"696,6960,Agroecological Perspectives for Sustaina",
"697,6970,International Development M.P.S. Seminar",
"698,6980,International Development M.P.S. Seminar",
"699,6990,International Agriculture and Rural Deve",
"783,7830,Farmer-Centered Research and Extension",
"INFO,130,1301,Introductory Design and Programming for ",
"172,1700,Computation, Information, and Intelligen",
"204,2040,Networks",
"214,2140,Cognitive Psychology",
"230,2300,Intermediate Design and Programming for ",
"245,2450,Psychology of Social Computing",
"292,2921,Inventing an Information Society",
"295,2950,Mathematical Methods for Information Sci",
"320,3200,New Media and Society",
"330,3300,Data-Driven Web Applications",
"345,3450,HumanComputer Interaction Design",
"345,3450,Human-Computer Interaction Design",
"349,3491,Media Technologies",
"355,3551,Computers: From the 17th Century to the ",
"356,3561,Computing Cultures",
"366,3650,History and Theory of Digital Art",
"372,3720,Explorations in Artificial Intelligence",
"387,3871,The Automatic Lifestyle: Consumer Cultur",
"415,4150,Environmental Interventions",
"429,4290,Copyright in the Digital Age",
"430,4300,Information Retrieval",
"431,4302,Web Information Systems",
"435,4350,Seminar on Applications of Information S",
"435,4390,Seminar on Applications of Information S",
"440,4400,Advanced HumanComputer Interaction Desi",
"440,4400,Advanced Human-Computer Interaction Desi",
"444,4144,Responsive Environments",
"445,4450,Seminar in Computer-Mediated Communicati",
"447,4470,Social and Economic Data",
"450,4500,Language and Technology",
"490,4900,Independent Reading and Research",
"490,4999,Independent Reading and Research",
"491,4910,Teaching in Information Science, Systems",
"515,5150,Culture, Law, and Politics of the Intern",
"530,5300,The Architecture of Large-Scale Informat",
"614,6140,Cognitive Psychology",
"630,6300,Advanced Language Technologies",
"634,6341,Information Technology in Sociocultural ",
"635,6390,Seminar on Applications of Information S",
"640,6400,HumanComputer Interaction Design",
"640,6400,Human-Computer Interaction Design",
"645,6450,Seminar in Computer-Mediated Communicati",
"648,6648,Speech Synthesis by Rule",
"650,6500,Language and Technology",
"651,6002,Critical Technical Practices",
"651,7002,Critical Technical Practices",
"685,6850,The Structure of Information Networks",
"709,7090,IS Colloquium",
"747,7400,Social and Economic Data",
"790,7900,Independent Research",
"990,9900,Thesis Research",
"NTRES,100,1001,Introduction to Environmental Studies",
"101,1102,Intro to the Science and Management of E",
"102,1103,Science Fiction and Environment",
"201,2010,Environmental Conservation",
"210,2100,Introductory Field Biology",
"232,2320,Nature and Culture",
"303,3030,Introduction to Biogeochemistry",
"310,3100,Applied Population Ecology",
"311,3110,Fish Ecology, Conservation, and Manageme",
"312,3111,Fish Ecology Laboratory",
"313,3130,Biological Statistics I",
"314,3140,Conservation of Birds",
"315,3141,Conservation of Birds Laboratory",
"322,3220,Global Ecology and Management",
"324,3240,Ecological Management of Water Resources",
"325,3250,Forest Management and Maple Syrup Produc",
"326,3260,Applied Conservation Ecology",
"330,3300,Natural Resources Planning and Managemen",
"331,3311,Environmental Governance",
"332,3320,Introduction to Ethics and Environment",
"410,4100,Conservation Biology: Concepts and Techn",
"411,4110,Quantitative Ecology and Management of F",
"412,4120,Wildlife Population Analysis: Techniques",
"413,4130,Biological Statistics II",
"420,4200,Forest Ecology",
"421,4201,Forest Ecology Laboratory",
"422,4220,Wetland Ecology and Management­: Lectur",
"423,4221,Wetland Ecology and Management: Laborato",
"424,4240,Landscape Impact Analysis",
"426,4260,Practicum in Forest Farming as an Agrofo",
"428,4280,Principles and Practices of Applied Wild",
"430,4300,Environmental and Natural Resources Poli",
"431,4310,Environmental Strategies",
"432,4320,Human Dimensions of Natural Resource Man",
"433,4330,Applied Environmental Philosophy",
"434,4340,International Conservation: Communities ",
"444,4440,Resource Management and Environmental La",
"456,4560,Stream Ecology",
"480,4800,Global Seminar: Building Sustainable Env",
"493,4930,Individual Study in Resource Policy, Man",
"494,4940,Special Topics in Natural Resources",
"495,4850,Individual Study in Fish and Wildlife Bi",
"496,4960,Individual Study in Ecology and Manageme",
"497,4991,Honors Research in Natural Resources",
"498,4980,Teaching in Natural Resources",
"500,5900,Professional Projects: M.P.S.",
"600,6000,Introduction to Graduate Study in Natura",
"601,6010,Seminar on Selected Topics in Natural Re",
"604,6040,Seminar on Selected Topics in Resource P",
"611,6110,Quantitative Ecology and Management of F",
"612,6120,Wildlife Population Analysis: Techniques",
"614,6140,Fish and Wildlife Ecology Seminar",
"616,6160,Forest Science and Management Seminar",
"628,6280,Principles and Practices of Applied Wild",
"630,6300,Writing for the Biological Sciences",
"631,6310,Environmental Governance",
"634,6340,International Conservation: Communities ",
"670,6700,Spatial Statistics",
"694,6940,Special Topics in Natural Resources",
"696,6960,Agroecological Perspectives for Sustaina",
"699,6970,Graduate Individual Study in Natural Res",
"780,7800,Graduate Seminar in Ornithology",
"800,8900,Master's Thesis Research",
"900,7900,Graduate-Level Thesis Research",
"901,9900,Doctoral-Level Thesis Research",
"PLBR,201,2010,Plants, Genes, and Global Food Productio",
"225,2250,Plant Genetics",
"299,2990,Introduction to Research Methods in Plan",
"300,3000,Introduction to Genomics",
"401,4010,Plant Cell and Tissue Culture",
"402,4011,Plant Tissue Culture Laboratory",
"403,4030,Genetic Improvement of Crop Plants",
"404,4040,Crop Evolution, Domestication and Divers",
"405,4050,Patents, Plants, and Profits: Intellectu",
"406,4060,Methods of Plant Breeding Laboratory",
"446,4460,Plant Cytogenetics Laboratory",
"494,4940,Special Topics in Plant Breeding",
"496,4960,Internship in Plant Breeding",
"497,4970,Individual Study in Plant Breeding",
"498,4980,Undergraduate Teaching",
"499,4990,Undergraduate Research",
"606,6060,Advanced Plant Genetics",
"618,6180,Breeding for Pest Resistance",
"622,6220,Seminar",
"650,6500,Special Problems in Research and Teachin",
"694,6940,Special Topics in Plant Breeding",
"716,7160,Perspectives in Plant Breeding Strategie",
"717,7170,Quantitative Genetics in Plant Breeding",
"800,8900,Master's-Level Thesis Research",
"900,7900,Graduate-Level Dissertation",
"901,9900,Doctoral-Level Dissertation Research",
"PLPA,110,1100,Symbiotic Associations in Nature",
"120,1200,Evolution: Evaluating the Public Debate",
"201,2010,Magical Mushrooms, Mischievous Molds",
"301,3010,Biology and Management of Plant Diseases",
"309,3090,Fungi",
"319,3190,Mushrooms of Field and Forest",
"394,3940,Circadian Rhythms",
"409,4090,Principles of Virology",
"411,4110,Plant Disease Diagnosis",
"419,4190,Agricultural Application of Plant Diseas",
"420,4200,Grape Pest Management",
"443,4430,Pathology and Entomology of Trees and Sh",
"448,4480,Evolution and Ecology of Symbiotic Assoc",
"463,4630,Plant Molecular Biology 1",
"464,4823,Molecular Plant-Microbe Interactions",
"470,4700,Professional Skills in Plant Science",
"494,4940,Special Topics in Plant Pathology",
"497,4970,Independent Study",
"498,4980,Teaching Experience",
"499,4990,Undergraduate Research",
"601,6010,Concepts of Plant Pathology",
"602,6020,Biology of Plant Pathogens",
"606,6060,Molecular Plant Virology",
"608,6080,Genomics of Bacterium-Host Interactions",
"625,6250,Evolution and Ecology of Mutualisms",
"638,6380,Filamentous Fungal Genomics and Developm",
"642,6420,Pathogen Population Biology",
"642,6420,Special Topics Series",
"644,6440,Current Topics in Oomycete",
"645,6450,Plant Virology",
"647,6470,Phytobacteriology Research Updates",
"649,6490,Fungal Biology",
"650,6500,Diseases of Vegetable Crops",
"652,6520,Field Crop Pathology",
"660,6600,Special Topics in Plant Disease Manageme",
"661,6610,Diagnostic Lab Experience",
"681,6810,Plant Pathology Seminar",
"682,6820,Graduate Student Research Updates",
"694,6940,Special Topics in Plant Pathology",
"788,7880,Research in Molecular Plant Pathology",
"797,7970,Special Topics",
"798,7980,Graduate Teaching Experience",
"800,8900,Master's-Level Thesis Research",
"900,7900,Graduate-Level Thesis Research",
"901,9900,Doctoral-Level Thesis Research",
"SNES,101,1010,Intro to the Science and Management of E",
"200,2000,Environmental Sciences Colloquium",
"TOX,370,3700,Pesticides and the Environment",
"437,4370,Eukaryotic Cell Proliferation",
"490,4900,Insect Toxicology and Insecticidal Chemi",
"597,5970,Risk Analysis and Management",
"610,6100,Introduction to Chemical and Environment",
"611,6110,Molecular Toxicology",
"698,6980,Current Topics in Environmental Toxicolo",
"699,6990,Environmental Toxicology Journal Club",
"701,7010,Mouse Pathology and Transgenesis",
"702,7020,Seminar in Toxicology",
"713,7130,Cell Cycle Analysis",
"890,8900,Master's Thesis and Research",
"990,9900,Doctoral Thesis and Research",
"CIS,121,1121,Introduction to MATLAB",
"122,1002,Application of FORTRAN in the Earth and ",
"165,1610,Computing in the Arts",
"167,1620,Visual Imaging in the Electronic Age",
"190,1900,Service Learning in Computing: Collabora",
"300,3000,Introduction to Computer Game Design",
"400,4002,Advanced Projects in Game Design",
"490,4999,Independent Reading and Research",
"504,5040,Applied Systems Engineering",
"505,5050,Systems Analysis Architecture, Behavior,",
"565,5640,Computer Animation",
"566,5642,Advanced Animation",
"576,5846,Decision Theory I",
"577,5847,Decision Theory II",
"629,6229,Computation Methods for Nonlinear System",
"790,7999,Independent Research",
"797,7970,Topics in CIS/IGERT Seminars",
"CS,99,1109,Fundamental Programming Concepts",
"100H,1113,Computing Using Java: Honors",
"100J,1110,Introduction to Computing Using Java",
"100M,1112,Introduction to Computing Using MATLAB",
"100R,1114,Introduction to Computing Using MATLAB a",
"101J,1130,Transition to Object-oriented Programmin",
"101M,1132,Transition to MATLAB",
"113,2022,Introduction to C",
"114,2042,Unix Tools",
"130,1300,Introductory Design and Programming for ",
"165,1610,Computing in the Arts",
"167,1620,Visual Imaging in the Electronic Age",
"170,1710,Introduction to Cognitive Science",
"172,1700,Computation, Information, and Intelligen",
"211,2110,Object-Oriented Programming and Data Str",
"212,2111,Programming Practicum",
"213,2024,C++ Programming",
"214,2044,Advanced UNIX Programming and Tools",
"215,2026,Introduction to C#",
"230,2300,Intermediate Design and Programming for ",
"280,2800,Discrete Structures",
"285,2850,Networks",
"305,3050,Creative Problem-Solving in Computer Sci",
"312,3110,Data Structures and Functional Programmi",
"314,3420,Computer Organization",
"316,3410,Systems Programming",
"321,3510,Numerical Methods in Computational Molec",
"322,3220,Introduction to Scientific Computation",
"324,3740,Computational Linguistics",
"330,3300,Data-Driven Web Applications",
"372,3700,Explorations in Artificial Intelligence",
"381,3810,Introduction to Theory of Computing",
"400,4150,The Science of Programming",
"411,4110,Programming Languages and Logics",
"412,4120,Introduction to Compilers",
"413,4121,Practicum in Compilers",
"414,4410,Operating Systems",
"415,4411,Practicum in Operating Systems",
"416,4420,Computer Architecture",
"419,4450,Computer Networks",
"421,4210,Numerical Analysis and Differential Equa",
"422,4220,Numerical Analysis: Linear and Nonlinear",
"426,4520,Introduction to Bioinformatics",
"428,4510,Introduction to Computational Biophysics",
"430,4300,Information Retrieval",
"431,4302,Web Information Systems",
"432,4320,Introduction to Database Systems",
"433,4321,Practicum in Database Systems",
"465,4620,Introduction to Computer Graphics",
"466,4621,Computer Graphics Practicum",
"472,4700,Foundations of Artificial Intelligence",
"473,4701,Practicum in Artificial Intelligence: Ro",
"474,4740,Introduction to Natural Language Process",
"475,4702,Artificial Intelligence: Uncertainty and",
"478,4780,Machine Learning",
"482,4820,Introduction to Analysis of Algorithms",
"483,4812,Quantum Computation",
"485,4850,Mathematical Foundations for the Informa",
"486,4860,Applied Logic",
"487,4830,Introduction to Cryptography",
"490,4999,Independent Reading and Research",
"501,5150,Software Engineering",
"513,5430,System Security",
"514,5410,Intermediate Computer Systems",
"516,5420,Parallel Computer Architecture",
"519,5450,Advanced Computer Networks",
"530,5300,The Architecture of Large-Scale Informat",
"565,5640,Computer Animation",
"566,5642,Advanced Animation",
"567,5643,Physically Based Animation for Computer ",
"569,5620,Interactive Computer Graphics",
"572,5722,Heuristic Methods for Optimization",
"578,5780,Empirical Methods in Machine Learning an",
"611,6110,Advanced Programming Languages",
"612,6120,Advanced Compilers and Program Analyzers",
"614,6410,Advanced Systems",
"615,6460,Peer-to-Peer Systems",
"619,6450,Research in Computer Networks",
"621,6210,Matrix Computations",
"622,6220,Numerical Optimization and Nonlinear Alg",
"624,6240,Numerical Solution of Differential Equat",
"626,6510,Computational Molecular Biology",
"628,6522,Biological Sequence Analysis",
"632,6320,Database Management Systems",
"633,6322,Advanced Database Systems",
"664,6670,Machine Vision",
"665,6620,Advanced Interactive Graphics",
"667,6630,Physically Based Rendering",
"671,6762,Introduction to Automated Reasoning",
"672,6700,Advanced Artificial Intelligence",
"673,6724,Integration of Artificial Intelligence a",
"674,6740,Natural Language Processing",
"676,6764,Reasoning about Knowledge",
"677,6766,Reasoning about Uncertainty",
"678,6780,Advanced Topics in Machine Learning",
"681,6820,Analysis of Algorithms",
"682,6810,Theory of Computing",
"683,6822,Advanced Design and Analysis of Algorith",
"684,6840,Algorithmic Game Theory",
"685,6850,The Structure of Information Networks",
"686,6860,Logics of Programs",
"687,6830,Cryptography",
"709,7090,Computer Science Colloquium",
"714,7410,Topics in Systems",
"715,7192,Seminar in Programming Refinement Logics",
"717,7430,Topics in Parallel Architectures",
"718,7690,Computer Graphics Seminar",
"719,7190,Seminar in Programming Languages",
"726,7590,Problems and Perspectives in Computation",
"732,7320,Topics in Database Systems",
"733,7390,Database Seminar",
"750,7726,Evolutionary Computation and Design Auto",
"754,7490,Systems Research Seminar",
"764,7670,Visual Object Recognition",
"772,7790,Seminar in Artificial Intelligence",
"775,7794,Seminar in Natural Language Understandin",
"785,7850,Seminar on Information Networks",
"786,7860,Introduction to Kleene Algebra",
"789,7890,Seminar in Theory of Algorithms and Comp",
"790,7999,Independent Research",
"990,9999,Thesis Research",
"INFO,130,1301,Introductory Design and Programming for ",
"172,1700,Computation, Information, and Intelligen",
"204,2040,Networks",
"214,2140,Cognitive Psychology",
"230,2300,Intermediate Design and Programming for ",
"245,2450,Psychology of Social Computing",
"292,2921,Inventing an Information Society",
"295,2950,Mathematical Methods for Information Sci",
"320,3200,New Media and Society",
"330,3300,Data-Driven Web Applications",
"345,3450,HumanComputer Interaction Design",
"345,3450,Human-Computer Interaction Design",
"349,3491,Media Technologies",
"355,3551,Computers: From the 17th Century to the ",
"356,3561,Computing Cultures",
"366,3650,History and Theory of Digital Art",
"372,3720,Explorations in Artificial Intelligence",
"387,3871,The Automatic Lifestyle: Consumer Cultur",
"415,4150,Environmental Interventions",
"429,4290,Copyright in the Digital Age",
"430,4300,Information Retrieval",
"431,4302,Web Information Systems",
"435,4350,Seminar on Applications of Information S",
"435,4390,Seminar on Applications of Information S",
"440,4400,Advanced HumanComputer Interaction Desi",
"440,4400,Advanced Human-Computer Interaction Desi",
"444,4144,Responsive Environments",
"445,4450,Seminar in Computer-Mediated Communicati",
"447,4470,Social and Economic Data",
"450,4500,Language and Technology",
"490,4900,Independent Reading and Research",
"490,4999,Independent Reading and Research",
"491,4910,Teaching in Information Science, Systems",
"515,5150,Culture, Law, and Politics of the Intern",
"530,5300,The Architecture of Large-Scale Informat",
"614,6140,Cognitive Psychology",
"630,6300,Advanced Language Technologies",
"634,6341,Information Technology in Sociocultural ",
"635,6390,Seminar on Applications of Information S",
"640,6400,HumanComputer Interaction Design",
"640,6400,Human-Computer Interaction Design",
"645,6450,Seminar in Computer-Mediated Communicati",
"648,6648,Speech Synthesis by Rule",
"650,6500,Language and Technology",
"651,6002,Critical Technical Practices",
"651,7002,Critical Technical Practices",
"685,6850,The Structure of Information Networks",
"709,7090,IS Colloquium",
"747,7400,Social and Economic Data",
"790,7900,Independent Research",
"990,9900,Thesis Research",
"STSCI,210,2010,Introductory Statistics",
"501,5010,Applied Statistical Analysis",
"502,5020,Applied Statistical Analysis",
"600,6000,Statistics Seminar",
"AEP,102,1020,Introduction to Nanoscience and Nanoengi",
"110,1110,Lasers and Photonics",
"217,2170,Electricity and Magnetism",
"252,2520,The Physics of Life",
"264,2640,Computer-Instrumentation Design",
"321,3210,Mathematical Physics I",
"322,3220,Mathematical Physics II",
"324,3240,Maple Supplement to Mathematical Physics",
"330,3330,Modern Experimental Optics",
"333,3330,Mechanics of Particles and Solid Bodies",
"355,3550,Intermediate Electromagnetism",
"356,3560,Intermediate Electrodynamics",
"361,3610,Introductory Quantum Mechanics",
"362,3620,Intermediate Quantum Mechanics",
"363,3630,Electronic Circuits",
"423,4230,Statistical Thermodynamics",
"434,4340,Continuum Physics",
"438,4380,Computational Engineering Physics",
"440,4440,Quantum and Nonlinear Optics",
"450,4500,Introductory Solid State Physics",
"470,4700,Biophysical Methods",
"484,4840,Introduction to Controlled Fusion: Princ",
"490,4900,Independent Study in Engineering Physics",
"491,4910,Independent Study in Engineering Physics",
"550,5500,Applied Solid State Physics",
"571,5710,Biophysical Methods Advanced Laboratory",
"607,6070,Advanced Plasma Physics",
"633,6330,Nuclear Reactor Engineering",
"661,6610,Nanocharacterization",
"662,6620,Micro/Nano-fabrication and Processing",
"663,6630,Nanobiotechnology",
"711,7110,Principles of Diffraction",
"751,7510,M.Eng. Project",
"753,7530,Special Topics Seminar in Applied Physic",
"781,7810,Advanced Plasma Physics I: Cosmic Plasma",
"782,7820,Advanced Plasma Physics",
"BEE,110,1030,Introduction to Metal Fabrication Techni",
"132,1040,Introduction to Wood Construction",
"151,1510,Introduction to Computer Programming",
"200,1200,The BEE Experience",
"222,2220,Bioengineering Thermodynamics and Kineti",
"251,2510,Engineering for a Sustainable Society",
"260,2600,Principles of Biological Engineering",
"299,3299,Sustainable Development: A Web-Based Cou",
"305,3050,Principles of Navigation",
"310,1050,Advanced Metal Fabrication Techniques",
"331,3310,Bio-Fluid Mechanics",
"350,3500,Biological and Environmental Transport P",
"360,3600,Molecular and Cellular Bioengineering",
"362,3620,Fundamentals of Tissue Engineering",
"365,3650,Properties of Biological Materials",
"368,3680,Biotechnology Applications: Animal Biore",
"371,3710,Physical Hydrology for Ecosystems",
"401,4010,Renewable Energy Systems",
"427,4270,Water Sampling and Measurement",
"435,4350,Principles of Aquaculture",
"450,4500,Bioinstrumentation,",
"453,4530,Computer-Aided Engineering: Applications",
"454,4540,Physiological Engineering,",
"459,4590,Biosensors and Bioanalytical Techniques,",
"464,4640,Bioseparation Processes,",
"471,4710,Introduction to Groundwater,",
"473,4730,Watershed Engineering,",
"474,4740,Water and Landscape Engineering Applicat",
"475,4750,Environmental Systems Analysis,",
"476,4760,Solid Waste Engineering,",
"478,4780,Ecological Engineering,",
"481,4791,LRFDBased Engineering of Wood Structure",
"484,4840,Metabolic Engineering,",
"487,4870,Sustainable Energy Systems,",
"489,4890,Engineering Entrepreneurship, Management",
"493,4930,Technical Writing for Engineers,",
"494,4940,Special Topics in Biological and Environ",
"494,4940,Introduction to Atmospheric Chemistry",
"495,4950,BEE Honors Research",
"496,4960,Capstone Design in Biological and Enviro",
"497,4970,Individual Study in Biological and Envir",
"498,4980,Undergraduate Teaching",
"499,4990,Undergraduate Research",
"501,5010,Bioengineering Seminar",
"520,5900,M.P.S. Project",
"533,5330,Engineering Professionalism",
"551,5950,Master of Engineering Design Project",
"647,6470,Water Transport in Plants",
"649,6490,Solute Transport in Plants",
"651,6510,Bioremediation: Engineering Organisms to",
"655,6550,Thermodynamics and Its Applications",
"659,6590,Biosensors and Bioanalytical Techniques",
"671,6710,Analysis of the Flow of Water and Chemic",
"672,6720,Drainage",
"674,6740,Ecohydrology",
"687,6870,The Science and Engineering Challenges t",
"694,6940,Graduate Special Topics in Biological an",
"697,6970,Graduate Individual Study in Biological ",
"700,7010,BEE Seminar Series",
"740,6430,Veterinary Perspectives on Pathogen Cont",
"750,7000,Orientation to Graduate Study",
"754,7540,Water and Culture in the Mediterranean: ",
"760,7600,Nucleic Acid Engineering",
"771,7710,Soil and Water Engineering Seminar",
"787,7870,Industrial Ecology of Agriculturally Bas",
"788,7880,Biomass Conversion of Energy and Chemica",
"800,8900,Master's-Level Thesis Research",
"900,9900,Doctoral-Level Thesis Research",
"BME,131,1310,Introduction to Biomedical Engineering,",
"301,3010,Molecular Principles of Biomedical Engin",
"302,3020,Cellular Principles of Biomedical Engine",
"330,3300,Introduction to Computational Neuroscien",
"360,3600,Molecular and Cellular Bioengineering,",
"401,4010,Biomedical Engineering Analysis of Metab",
"402,4020,Electrical and Chemical Physiology",
"404,4040,Biomedical System Design",
"411,4110,Science and Technology Approaches to Pro",
"442,4420,Instrumentation for Biology",
"463,4630,Neuromuscular Biomechanics",
"464,4640,Orthopaedic Tissue Mechanics",
"481,4810,Biomedical Engineering",
"490,4900,Independent Undergraduate Project in Bio",
"491,4910,Principles of Neurophysiology",
"501,5010,Bioengineering Seminar",
"539,5390,Biomedical Materials and Devices for Hum",
"550,5500,Product Engineering and Design in Biomed",
"562,5620,Biomineralization",
"565,5650,No title",
"570,5700,Biophysical Methods",
"578,5780,Computer Analysis of Biomed Images",
"581,5810,Soft Tissue Biomechanics",
"585,5850,Current Practice in Tissue Engineering,",
"591,5910,Design Project",
"593,5930,Independent Design Project",
"618,6180,Principles of Medical Imaging",
"626,6260,Biomedical Optics, Imaging, and Spectros",
"631,6310,Engineering Principles for Drug Delivery",
"641,6410,Biomedical Engineering Analysis of Prote",
"664,6640,Mechanics of Bone",
"665,6650,Principles of Tissue Engineering",
"703,7030,Graduate Student Teaching Experience",
"711,7110,Fundamentals of Biomedical Engineering R",
"712,7120,Fundamentals of Biomedical Engineering R",
"716,7160,Immersion Experience in Medical Research",
"731,7310,Advanced Biomedical Engineering Analysis",
"760,7600,Nucleic Acid Engineering",
"790,7900,Biomedical Engineering Seminar",
"890,8999,M.S. Thesis Research",
"990,9999,Ph.D. Thesis Research",
"CEE,113,1130,Sustainability Design for Appledore Isla",
"116,1160,Modern Structures",
"255,2550,AguaClara: Sustainable Water Supply Proj",
"304,3040,Uncertainty Analysis in Engineering",
"308,3080,Introduction to CADD",
"309,3090,Special Topics in Civil and Environmenta",
"320,3200,Engineering Computation",
"323,3230,Engineering Economics and Management",
"331,3310,Fluid Mechanics",
"332,3320,Hydraulic Engineering",
"341,3410,Introduction to Geotechnical Engineering",
"351,3510,Environmental Quality Engineering",
"361,3610,Introduction to Transportation Engineeri",
"371,3710,Structural Modeling and Behavior",
"372,3720,Intermediate Solid Mechanics",
"400,4000,Senior Honors Thesis",
"401,4010,Undergraduate Engineering Teaching in CE",
"406,4060,Civil Infrastructure Systems",
"411,4110,Remote Sensing: Resource Inventory Metho",
"432,4320,Hydrology",
"435,4350,Coastal Engineering",
"436,4360,Case Studies in Environmental Fluid Mech",
"437,4370,Experimental Methods in Fluid Dynamics",
"440,4400,Foundation Engineering",
"441,4410,Retaining Structures and Slopes",
"444,4440,Environmental Site and Remediation Engin",
"451,4510,Microbiology for Environmental Engineeri",
"452,4520,Water Supply Engineering",
"453,4530,Laboratory Research in Environmental Eng",
"454,4540,Sustainable Small-Scale Water Supplies",
"455,4550,AguaClara: Sustainable Water Supply Proj",
"461,4610,Urban Transportation Planning and Modeli",
"463,4630,Transportation and Information Technolog",
"464,4640,Transportation Systems Design",
"465,4650,Environment/Energy and Transportation Pl",
"471,4710,Fundamentals of Structural Mechanics",
"472,4720,Introduction to the Finite Element Metho",
"473,4730,Design of Concrete Structures",
"474,4740,Design of Steel Structures",
"475,4750,Concrete Materials and Construction",
"476,4760,Evaluation and Failure of Structures",
"477,4770,Introduction to Composite Materials",
"478,4780,Structural Dynamics and Earthquake Engin",
"481,4781,LRFD-Based Engineering of Wood Structure",
"492,4920,Engineers for a Sustainable World: Engin",
"501,5021,Project in Environmental and Water Resou",
"501,5031,Project in Environmental Fluid Mechanics",
"501,5041,Project in Geotechnical Engineering",
"501,5051,Agua Clara: Sustainable Water Supply Pro",
"501,5061,Project in Transportation Engineering",
"501,5071,Project in Structural Engineering",
"501,5073,Project in Civil Engineering Materials",
"501,5081,Project in Civil Infrastructure Systems",
"502,5022,Project in Environmental and Water Resou",
"502,5032,Project in Environmental Fluid Mechanics",
"502,5042,Project in Geotechnical Engineering",
"502,5052,Agua Clara: Sustainable Water Supply Pro",
"502,5062,Project in Transportation Engineering",
"502,5072,Project in Structural Engineering",
"502,5074,Project in Civil Engineering Materials",
"502,5082,Project in Civil Infrastructure Systems",
"504,5240,Applied Systems Engineering",
"505,5252,System Architecture, Behavior, and Optim",
"509,5290,Heuristic Methods for Optimization",
"590,5800,Project Management",
"591,5910,Engineering Management Project",
"592,5920,Engineering Management Project",
"593,5930,Engineering Management Methods",
"594,5940,Economic Methods for Engineering and Man",
"595,5950,Construction Planning and Operations",
"596,5960,Management Issues in Forensic Engineerin",
"597,5970,Risk Analysis and Management",
"601,6020,Seminar: Water Resources and Environment",
"602,6070,Seminar: Civil Infrastructure",
"603,6080,Seminar: Engineering Systems and Managem",
"606,6860,Civil Infrastructure Systems",
"609,6090,Numerical Methods for Engineers",
"610,6100,Remote Sensing Fundamentals",
"615,6150,Digital Image Processing",
"617,6015,Special Topics: Remote Sensing",
"620,6200,Water-Resources Systems Engineering",
"621,6210,Stochastic Hydrology",
"623,6230,Environmental Quality Systems Engineerin",
"628,6021,Seminar: Environmental and Water Resourc",
"630,6300,Computational Fluid Dynamics for Environ",
"631,6310,Computational Simulation of Flow and Tra",
"632,6320,Hydrology",
"633,6330,Flow in Porous Media and Groundwater",
"634,6340,Boundary Layer Meteorology",
"635,6350,Small and Finite Amplitude Water Waves",
"636,6360,Environmental Fluid Mechanics",
"637,6370,Experimental Methods in Fluid Dynamics",
"638,6030,Seminar: Hydraulics",
"639,6035,Special Topics in Hydraulics",
"640,6400,Foundation Engineering",
"641,6410,Retaining Structures and Slopes",
"644,6440,Environmental Site and Remediation Engin",
"649,6045,Special Topics in Geotechnical Engineeri",
"653,6530,Water Chemistry for Environmental Engine",
"654,6540,Aquatic Chemistry",
"655,6550,Transport, Mixing, and Transformation in",
"656,6560,Physical/Chemical Process",
"657,6570,Biological Processes",
"658,6580,Biodegradation and Biocatalysis",
"659,6051,Seminar: Environmental Quality Engineeri",
"661,6610,Urban Transportation Planning and Modeli",
"662,6620,Urban Transportation Network Design and ",
"663,6630,Network Flows and Algorithms",
"665,6650,Environment/Energy and Transportation Pl",
"668,6060,Seminar: Transportation System Engineeri",
"671,6710,Fundamentals of Structural Mechanics",
"672,6720,Introduction to the Finite Element Metho",
"673,6730,Design of Concrete Structures",
"675,6750,Concrete Materials and Construction",
"676,6760,Advanced Composite Materials",
"677,6770,Engineering Analysis",
"678,6780,Structural Dynamics and Earthquake Engin",
"679,6760,Evaluation and Failure of Structures",
"690,6900,Creativity, Innovation, and Leadership",
"692,6095,Special Topics in Engineering Management",
"693,6930,Public Systems Modeling",
"694,6940,Research in Engineering Management",
"697,6075,Special Topics in Structural Engineering",
"710,7010,Research: Remote Sensing",
"722,7020,Environmental and Water Resources System",
"729,6025,Special Topics in Environmental and Wate",
"735,7030,Research in Environmental Fluid Mechanic",
"736,7360,Turbulence and Turbulent Mixing in Envir",
"740,7400,Engineering Behavior of Soils",
"741,7410,Rock Engineering",
"744,7440,Advanced Foundation Engineering",
"745,7450,Soil Dynamics",
"746,7460,Embankment Dam Engineering",
"749,7040,Research in Geotechnical Engineering",
"750,7050,Research in Environmental Engineering",
"759,6055,Special Topics in Environmental Engineer",
"762,7620,Practicum in Modeling Transportation Sys",
"764,6065,Special Topics in Transportation",
"770,7700,Engineering Fracture Mechanics",
"771,7710,Stochastic Mechanics in Science and Engi",
"772,7720,Random Vibration",
"773,7730,Structural Reliability",
"774,7740,Advanced Structural Concrete",
"775,7750,Nonlinear Finite Element Analysis",
"776,7760,Advanced Topics in Stability",
"777,7770,Computational Solid and Structural Mecha",
"779,7790,Advanced Behavior of Metal Structures",
"783,7073,Civil and Environmental Engineering Mate",
"785,7070,Research in Structural Engineering",
"786,7860,Special Topics In Structural Engineering",
"810,8100,Thesis: Remote Sensing",
"820,8200,Thesis: Environmental and Water Resource",
"830,8300,Thesis: Environmental Fluid Mechanics an",
"840,8400,Thesis: Geotechnical Engineering",
"850,8500,Thesis: Environmental Engineering",
"860,8600,Thesis: Transportation Systems Engineeri",
"880,8700,Thesis: Structural Engineering",
"890,8800,Thesis: Civil Infrastructure Systems",
"CHEME,112,1120,Introduction to Chemical Engineering",
"219,2190,Mass and Energy Balances",
"288,2880,Biomolecular Engineering: Fundamentals a",
"301,3010,Nonresident Lectures",
"313,3130,Chemical Engineering Thermodynamics",
"323,3230,Fluid Mechanics",
"324,3240,Heat and Mass Transfer",
"332,3320,Analysis of Separation Processes",
"372,3720,Introduction to Process Dynamics and Con",
"390,3900,Reaction Kinetics and Reactor Design",
"401,4010,Molecular Principles of Biomedical Engin",
"402,4020,Cellular Principles of Biomedical Engine",
"424,4240,Physics of Micro- and Nanoscale Fluid Me",
"432,4320,Chemical Engineering Laboratory",
"462,4620,Chemical Process Design",
"470,4700,Process Control Strategies",
"472,4720,Feedback Control Systems",
"480,4800,Chemical Processing of Electronic Materi",
"481,4810,Biomedical Engineering",
"484,4840,Microchemical and Microfluidic Systems",
"490,4900,Undergraduate Projects in Chemical Engin",
"499,4990,Senior Seminar",
"520,5200,An Overview of Chemical Processing",
"521,5201,Introduction to Biomedical Engineering",
"522,5202,Introduction to Electronic Materials Pro",
"523,5203,Introduction to Polymer Processing",
"524,5204,Turbomachinery Applications",
"525,5205,Chemical Engineering Tools and Equipment",
"526,5206,Hydrocarbon Resource Exploration and Dev",
"527,5207,Introduction to Petroleum Refining",
"528,5208,Renewable Resources from Agriculture: Su",
"543,5430,Bioprocess Engineering",
"564,5640,Design of Chemical Reactors",
"565,5650,Design Project",
"572,5720,Managing New Business Development",
"590,5999,Special Projects in Chemical Engineering",
"631,6310,Engineering Principles for Drug Delivery",
"640,6400,Polymeric Materials",
"644,6440,Aerosols and Colloids",
"661,6610,Air Pollution Control",
"664,6640,Energy Economics",
"665,6650,Energy Engineering",
"675,6750,Synthetic Polymer Chemistry",
"711,7110,Advanced Chemical Engineering Thermodyna",
"713,7130,Chemical Kinetics and Transport",
"731,7310,Advanced Fluid Mechanics and Heat Transf",
"741,7410,Selected Topics in Biochemical Engineeri",
"745,7450,Physical Polymer Science I",
"751,7510,Mathematical Methods of Chemical Enginee",
"753,7530,Analysis of Nonlinear Systems: Stability",
"790,7900,Seminar",
"792,7920,Principles and Practices of Graduate Res",
"890,8999,Thesis Research",
"990,9999,Thesis Research",
"CS,99,1109,Fundamental Programming Concepts",
"100H,1113,Computing Using Java: Honors",
"100J,1110,Introduction to Computing Using Java",
"100M,1112,Introduction to Computing Using MATLAB",
"100R,1114,Introduction to Computing Using MATLAB a",
"101J,1130,Transition to Object-oriented Programmin",
"101M,1132,Transition to MATLAB",
"113,2022,Introduction to C",
"114,2042,Unix Tools",
"130,1300,Introductory Design and Programming for ",
"165,1610,Computing in the Arts",
"167,1620,Visual Imaging in the Electronic Age",
"170,1710,Introduction to Cognitive Science",
"172,1700,Computation, Information, and Intelligen",
"211,2110,Object-Oriented Programming and Data Str",
"212,2111,Programming Practicum",
"213,2024,C++ Programming",
"214,2044,Advanced UNIX Programming and Tools",
"215,2026,Introduction to C#",
"230,2300,Intermediate Design and Programming for ",
"280,2800,Discrete Structures",
"285,2850,Networks",
"305,3050,Creative Problem-Solving in Computer Sci",
"312,3110,Data Structures and Functional Programmi",
"314,3420,Computer Organization",
"316,3410,Systems Programming",
"321,3510,Numerical Methods in Computational Molec",
"322,3220,Introduction to Scientific Computation",
"324,3740,Computational Linguistics",
"330,3300,Data-Driven Web Applications",
"372,3700,Explorations in Artificial Intelligence",
"381,3810,Introduction to Theory of Computing",
"400,4150,The Science of Programming",
"411,4110,Programming Languages and Logics",
"412,4120,Introduction to Compilers",
"413,4121,Practicum in Compilers",
"414,4410,Operating Systems",
"415,4411,Practicum in Operating Systems",
"416,4420,Computer Architecture",
"419,4450,Computer Networks",
"421,4210,Numerical Analysis and Differential Equa",
"422,4220,Numerical Analysis: Linear and Nonlinear",
"426,4520,Introduction to Bioinformatics",
"428,4510,Introduction to Computational Biophysics",
"430,4300,Information Retrieval",
"431,4302,Web Information Systems",
"432,4320,Introduction to Database Systems",
"433,4321,Practicum in Database Systems",
"465,4620,Introduction to Computer Graphics",
"466,4621,Computer Graphics Practicum",
"472,4700,Foundations of Artificial Intelligence",
"473,4701,Practicum in Artificial Intelligence: Ro",
"474,4740,Introduction to Natural Language Process",
"475,4702,Artificial Intelligence: Uncertainty and",
"478,4780,Machine Learning",
"482,4820,Introduction to Analysis of Algorithms",
"483,4812,Quantum Computation",
"485,4850,Mathematical Foundations for the Informa",
"486,4860,Applied Logic",
"487,4830,Introduction to Cryptography",
"490,4999,Independent Reading and Research",
"501,5150,Software Engineering",
"513,5430,System Security",
"514,5410,Intermediate Computer Systems",
"516,5420,Parallel Computer Architecture",
"519,5450,Advanced Computer Networks",
"530,5300,The Architecture of Large-Scale Informat",
"565,5640,Computer Animation",
"566,5642,Advanced Animation",
"567,5643,Physically Based Animation for Computer ",
"569,5620,Interactive Computer Graphics",
"572,5722,Heuristic Methods for Optimization",
"578,5780,Empirical Methods in Machine Learning an",
"611,6110,Advanced Programming Languages",
"612,6120,Advanced Compilers and Program Analyzers",
"614,6410,Advanced Systems",
"615,6460,Peer-to-Peer Systems",
"619,6450,Research in Computer Networks",
"621,6210,Matrix Computations",
"622,6220,Numerical Optimization and Nonlinear Alg",
"624,6240,Numerical Solution of Differential Equat",
"626,6510,Computational Molecular Biology",
"628,6522,Biological Sequence Analysis",
"632,6320,Database Management Systems",
"633,6322,Advanced Database Systems",
"664,6670,Machine Vision",
"665,6620,Advanced Interactive Graphics",
"667,6630,Physically Based Rendering",
"671,6762,Introduction to Automated Reasoning",
"672,6700,Advanced Artificial Intelligence",
"673,6724,Integration of Artificial Intelligence a",
"674,6740,Natural Language Processing",
"676,6764,Reasoning about Knowledge",
"677,6766,Reasoning about Uncertainty",
"678,6780,Advanced Topics in Machine Learning",
"681,6820,Analysis of Algorithms",
"682,6810,Theory of Computing",
"683,6822,Advanced Design and Analysis of Algorith",
"684,6840,Algorithmic Game Theory",
"685,6850,The Structure of Information Networks",
"686,6860,Logics of Programs",
"687,6830,Cryptography",
"709,7090,Computer Science Colloquium",
"714,7410,Topics in Systems",
"715,7192,Seminar in Programming Refinement Logics",
"717,7430,Topics in Parallel Architectures",
"718,7690,Computer Graphics Seminar",
"719,7190,Seminar in Programming Languages",
"726,7590,Problems and Perspectives in Computation",
"732,7320,Topics in Database Systems",
"733,7390,Database Seminar",
"750,7726,Evolutionary Computation and Design Auto",
"754,7490,Systems Research Seminar",
"764,7670,Visual Object Recognition",
"772,7790,Seminar in Artificial Intelligence",
"775,7794,Seminar in Natural Language Understandin",
"785,7850,Seminar on Information Networks",
"786,7860,Introduction to Kleene Algebra",
"789,7890,Seminar in Theory of Algorithms and Comp",
"790,7999,Independent Research",
"990,9999,Thesis Research",
"EAS,101,1101,Introductory Geological Sciences",
"108,1108,Earth in the News",
"109,1109,Dinosaurs",
"119,1190,Fossil Preparation",
"121,1121,Introduction to MATLAB",
"122,1220,Earthquake!",
"131,1310,Basic Principles of Meteorology",
"133,1330,Basic Meteorology Lab",
"150,1500,FORTRAN Applications in Earth Science",
"154,1540,Introductory Oceanography, Lecture",
"155,1550,Introductory Oceanography, Laboratory",
"170,1700,Evolution of the Earth and Life",
"213,2130,Marine and Coastal Geology",
"220,2200,The Earth System",
"222,2220,Seminar: Hawaii's Environment",
"240,2400,Field Study of the Earth System",
"250,2500,Meteorological Observations and Instrume",
"268,2680,Climate and Global Warming",
"296,2960,Forecast Competition",
"301,3010,Evolution of the Earth System",
"303,3030,Introduction to Biogeochemistry",
"304,3040,Interior of the Earth",
"305,3050,Climate Dynamics",
"322,3220,Biogeochemistry of the Hawaiian Islands",
"334,3340,Microclimatology",
"341,3410,Atmospheric Thermodynamics and Hydrostat",
"342,3420,Atmospheric Dynamics",
"350,3500,Dynamics of Marine Ecosystems",
"351,3510,Marine Ecosystems Field Course",
"352,3520,Synoptic Meteorology",
"352,3520,Synoptic Meteorology I",
"353,3530,Physical Oceanography",
"401,4010,Fundamentals of Energy and Mineral Resou",
"404,4040,Geodynamics",
"405,4050,Active Tectonics",
"415,4150,Geomorphology",
"417,4170,Field Mapping in Argentina",
"425,4250,European Discovery of Impacts and Explos",
"426,4260,Structural Geology",
"434,4340,Exploration Geophysics",
"435,4350,Statistical Methods in Meteorology and C",
"437,4370,Geophysical Field Methods",
"440,4400,Seminar on the Intergovernmental Panel o",
"447,4470,Physical Meteorology",
"451,4510,Synoptic Meteorology II",
"453,4530,Mineralogy",
"454,4540,Petrology and Geochemistry",
"455,4550,Geochemistry",
"456,4560,Mesoscale Meteorology",
"457,4570,Atmospheric Air Pollution",
"458,4580,Volcanology",
"460,4600,Late Quaternary Paleoecology",
"461,4610,Paleoclimate: Since the Last Ice Age",
"462,4620,Marine Ecology",
"470,4700,Weather Forecasting and Analysis",
"471,4710,Introduction to Groundwater Hydrology",
"475,4750,Special Topics in Oceanography",
"476,4760,Sedimentary Basins",
"478,4780,Advanced Stratigraphy",
"479,4790,Paleobiology",
"481,4810,Senior Survey of Earth Systems",
"483,4830,Environmental Biophysics",
"484,4840,Inverse Methods in the Natural Sciences",
"487,4870,Introduction to Radar Remote Sensing",
"487,4870,Introduction to Radar and Remote Sensing",
"488,4880,Geophysics and Geotectonics",
"491,4910,Undergraduate Research",
"492,4920,Undergraduate Research",
"494,4940,Special Topics in Atmospheric Science",
"496,4960,Internship Experience",
"497,4790,Individual Study in Atmospheric Science",
"497,4970,Individual Study in Atmospheric Science",
"498,4980,Teaching Experience in Earth and Atmosph",
"499,4990,Undergraduate Research in Atmospheric Sc",
"500,5000,Design Project in Geohydrology",
"502,5020,Case Histories in Groundwater Analysis",
"505,5050,Fluid Dynamics in the Earth Sciences",
"522,5220,Advanced Structural Geology I",
"524,5240,Advanced Structural Geology II",
"542,5420,Numerical Methods in Atmospheric Modelin",
"553,5530,Advanced Petrology",
"575,5750,Planetary Atmospheres",
"577,5770,Planetary Surface Processes",
"578,5780,Planet Formation and Evolution",
"584,5840,Inverse Methods in the Natural Sciences",
"628,6280,Geology of Orogenic Belts",
"641,6410,Analysis of Biogeochemical Systems",
"648,6480,Air Quality and Atmospheric Chemistry",
"652,6520,Advanced Atmospheric Dynamics",
"656,6560,Isotope Geochemistry",
"666,6660,Applied Multivariate Statistics",
"675,6750,Modeling the Soil-Plant-Atmosphere Syste",
"692,6920,Special Topics in Atmospheric Science",
"693,6930,Special Topics in Geological Sciences",
"700,7000,Seminars and Special Work",
"701,7010,Thesis Research",
"702,7020,Thesis Research",
"711,7110,Upper Atmospheric and Space Physics",
"722,7220,Advanced Topics in Structural Geology",
"731,7310,Advanced Topics in Remote Sensing and Ge",
"733,7330,Advanced Topics in Geodynamics",
"750,7500,Satellite Remote Sensing in Biological O",
"750,7550,Satellite Remote Sensing in Biological O",
"751,7510,Petrology and Geochemistry",
"755,7550,Advanced Topics in Tectonics and Geochem",
"757,7570,Current Research in Petrology and Geoche",
"762,7620,Advanced Topics in Paleobiology",
"771,7710,Advanced Topics in Sedimentology and Str",
"773,7730,Paleobiology",
"775,7750,Advanced Topics in Oceanography",
"780,7800,Earthquake Record Reading",
"781,7810,Exploration Geophysics",
"793,7930,Andes-Himalayas Seminar",
"793,7930,Andes-Himalaya Seminar",
"795,7950,Low Temperature Geochemistry",
"795,7950,Low-Temperature Geochemistry",
"796,7960,Geochemistry of the Solid Earth",
"797,7970,Fluid-Rock Interactions",
"799,7990,Soil, Water, and Geology Seminar",
"850,8500,Master's-Level Thesis Research in Atmosp",
"950,9500,Graduate-Level Dissertation Research in ",
"951,9510,Doctoral-Level Dissertation Research in ",
"ECE,210,2100,Introduction to Circuits for Electrical ",
"220,2200,Signals and Information",
"230,2300,Introduction to Digital Logic Design",
"250,2500,Technology in Society",
"291,2910,Sophomore Electrical and Computer Engine",
"292,2920,Sophomore Electrical and Computer Engine",
"293,2930,Sophomore Electrical and Computer Engine",
"294,2940,Sophomore Electrical and Computer Engine",
"298,2980,Inventing an Information Society",
"303,3030,Electromagnetic Fields and Waves",
"304,3040,Computational Electronics, Electrodynami",
"306,3060,Fundamentals of Quantum and Solid-State ",
"310,3100,Introduction to Probability and Random S",
"311,3110,Electrical and Computer Engineering Hono",
"314,3140,Computer Organization",
"315,3150,Introduction to Microelectronics",
"320,3200,Networks and Systems",
"325,3250,Foundations of ECE Mathematics",
"391,3910,Junior Electrical and Computer Engineeri",
"392,3920,Junior Electrical and Computer Engineeri",
"393,3930,Junior Electrical and Computer Engineeri",
"394,3940,Junior Electrical and Computer Engineeri",
"402,4020,Biomedical System Design",
"411,4110,Random Signals in Communications and Sig",
"413,4130,Introduction to Nuclear Science and Engi",
"415,4150,GPS: Theory and Design",
"425,4250,Digital Signal Processing",
"426,4260,Applications of Signal Processing",
"430,4300,Lasers and Optical Electronics",
"432,4320,MicroElectro Mechanical Systems",
"433,4320,Microwave Theory, Devices, and Applicati",
"437,4370,Fiber and Integrated Optics",
"445,4450,Computer Networks and Telecommunications",
"446,4460,Digital Communications Over Packet-Switc",
"451,4510,Electric Power Systems I",
"452,4520,Electric Power Systems II",
"453,4530,Analog Integrated Circuit Design",
"457,4570,Silicon Device Fundamentals",
"467,4670,Digital Communication Receiver Design",
"468,4680,Telecommunication Systems",
"472,4720,Feedback Control Systems",
"473,4730,Optimizing Compilers",
"474,4740,Digital VLSI Design",
"475,4750,Computer Architecture",
"476,4760,Digital Systems Design Using Microcontro",
"482,4820,Plasma Processing of Electronic Material",
"484,4840,Introduction to Controlled Fusion: Princ",
"487,4870,Introduction to Radar and Remote Sensing",
"488,4880,Radio Frequency",
"491,4910,Senior Electrical and Computer Independe",
"492,4920,Senior Electrical and Computer Independe",
"493,4930,Senior Electrical and Computer Engineeri",
"494,4940,Senior Electrical and Computer Engineeri",
"495,4950,Special Topics in Electrical and Compute",
"499,4990,Special Topics in Electrical and Compute",
"504,5040,Advanced Computational Electronics, Elec",
"512,5120,Applied Systems Engineering I",
"513,5130,Applied Systems Engineering II",
"521,5210,Theory of Linear Systems",
"522,5220,Nonlinear System Analysis and Computatio",
"526,5260,Signal Representation and Modelling",
"531,5310,Applied Quantum Optics for Photonics and",
"535,5350,Semiconductor Physics",
"536,5360,Nanofabrication of Semiconductor Devices",
"537,5370,Nanoscale Devices, Circuits, and Physics",
"547,5470,Computer Vision",
"548,5480,Digital Image Processing",
"551,5510,Electric Systems Engineering and Economi",
"554,5540,Advanced Analog VLSI Circuit Design",
"562,5620,Fundamental Information Theory",
"564,5640,Detection and Estimation",
"566,5660,Fundamentals of Networks",
"567,5670,Digital Communications",
"568,5680,Mobile Communication Systems",
"572,5720,Parallel Computer Architecture",
"574,5740,Advanced Digital VLSI",
"575,5750,High-Performance Microprocessor Architec",
"576,5760,Advanced Microcontroller Design",
"578,5780,Computer Analysis of Biomed Images",
"579,5790,Advanced High-Speed and RF Integrated Ci",
"581,5810,Introduction to Plasma Physics",
"583,5830,Introduction to Technical Management",
"584,5840,Advanced GPS Receiver Design",
"585,5850,Upper Atmospheric Physics I",
"586,5860,Upper Atmospheric Physics II",
"587,5870,Energy Seminar I",
"588,5880,Energy Seminar II",
"591,5910,Adaptive Feedback Systems",
"593,5930,Advanced Topics in Electrical and Comput",
"599,5990,Advanced Topics in Electrical and Comput",
"610,6100,Graduate Seminar in Medical Instrumentat",
"662,6620,Network Information Theory",
"683,6830,Seminar in GPS and GNSS",
"685,6850,Memory Technologies and Systems",
"693,6930,Master of Engineering Design",
"697,6970,Master of Engineering Research",
"698,6980,Master of Engineering Research",
"791,7910,Thesis Research",
"792,7920,Thesis Research",
"ENGRC,334,3340,Independent Study in Engineering Communi",
"335,3350,Communications for Engineering Managers",
"350,3500,Engineering Communications",
"ENGRD,202,2020,Mechanics of Solids",
"203,2030,Dynamics",
"210,2100,Introduction to Circuits for Electrical ",
"211,2110,Object-Oriented Programming and Data Str",
"219,2190,Mass and Energy Balances",
"221,2210,Thermodynamics",
"230,2300,Introduction to Digital Logic Design",
"251,2510,Engineering for a Sustainable Society",
"252,2520,The Physics of Life",
"260,2600,Principles of Biological Engineering",
"261,2610,Mechanical Properties of Materials: From",
"262,2620,Electronic Materials for the Information",
"264,2640,Computer-Instrumentation Design",
"270,2700,Basic Engineering Probability and Statis",
"320,3200,Engineering Computation",
"321,3510,Numerical Methods in Computational Molec",
"322,3220,Introduction to Scientific Computation",
"ENGRG,150,1050,Engineering Seminar",
"160,1060,Exploration in Engineering Seminar",
"191,1091,Cooperative Workshop for MATH 191",
"192,1092,Cooperative Workshop for MATH 192",
"209,1009,Cooperative Workshop for CHEM 209",
"211,1011,Cooperative Workshop for CS 211",
"235,2350,Career Development for Engineering",
"250,2500,Technology in Society",
"293,1093,Cooperative Workshop for MATH 293",
"294,1094,Cooperative Workshop for MATH 294",
"298,2980,Inventing an Information Society",
"323,3230,Engineering Economics and Management",
"357,3570,Engineering in American Culture",
"360,3600,Ethical and Social Issues in Engineering",
"461,4610,Entrepreneurship for Engineers",
"678,6780,Teaching Seminar",
"ENGRI,102,1020,Introduction to Nanoscience and Nanoengi",
"110,1100,Lasers and Photonics",
"111,1110,Nanotechnology",
"112,1120,Introduction to Chemical Engineering",
"113,1130,Sustainability Design for Appledore Isla",
"115,1101,Engineering Applications of Operations R",
"116,1160,Modern Structures",
"117,1170,Introduction to Mechanical Engineering",
"118,1180,Design Integration: DVDs and iPods",
"119,1190,Biomaterials for the Skeletal System",
"122,1120,Earthquake!",
"126,1260,Introduction to Signals and Telecommunic",
"127,1270,Introduction to Entrepreneurship and Ent",
"131,1310,Introduction to Biomedical Engineering",
"165,1610,Computing in the Arts",
"167,1670,Visual Imaging in the Electronic Age",
"172,1700,Computation, Information, and Intelligen",
"MAE,103,1130,Introduction to Computer-Aided Manufactu",
"111,1110,Naval Ship Systems",
"117,1170,Introduction to Mechanical Engineering",
"127,1270,Introduction to Entrepreneurship and Ent",
"212,2120,Mechanical Properties and Selection of E",
"221,2210,Thermodynamics",
"225,2250,Mechanical Synthesis",
"305,3050,Introduction to Aeronautics",
"306,3060,Spacecraft Engineering",
"312,3120,Mechanical Properties of Materials, Proc",
"313,3130,Atomic and Molecular Structure of Matter",
"323,3230,Introductory Fluid Mechanics",
"324,3240,Heat Transfer",
"325,3250,Analysis of Mechanical and Aerospace Str",
"326,3260,System Dynamics",
"327,3272,Mechanical Property and Performance Labo",
"378,3780,Mechatronics",
"400,4000,Components and Systems: Engineering in a",
"402,4020,Windpower",
"415,4150,GPS: Theory and Design",
"417,4170,Introduction to Robotics: Dynamics, Cont",
"423,4230,Intermediate Fluid Dynamics",
"425,4250,FSAE Automotive Design Project",
"427,4272,Fluids/Heat Transfer Laboratory",
"428,4280,Engineering Design",
"429,4291,Supervised Senior Design Experience",
"449,4490,Combustion Engines and Fuel Cells",
"453,4530,Computer-Aided Engineering: Applications",
"455,4550,Introduction to Composite Materials",
"457,4570,Space Systems and National Security",
"458,4580,Introduction to Nuclear Science and Engi",
"459,4590,Introduction to Controlled Fusion: Princ",
"461,4610,Entrepreneurship for Engineers",
"463,4630,Neuromuscular Biomechanics",
"464,4640,Orthopaedic Tissue Mechanics",
"466,4660,Biomedical Engineering Analysis of Metab",
"470,4700,Finite Element Analysis for Mechanical a",
"473,4730,Practicum in Artificial Intelligence",
"477,4770,Engineering Vibrations",
"478,4780,Feedback Control Systems",
"479,4791,Modeling and Simulation of Mechanical an",
"486,4860,Automotive Engineering",
"490,4900,Special Investigations in Mechanical and",
"498,4980,Teaching Experience in Mechanical Engine",
"500,5000,Components and Systems: Engineering in a",
"501,5010,Future Energy Systems",
"506,5060,Aerospace Propulsion Systems",
"507,5070,Dynamics of Flight Vehicles",
"513,5130,Mechanical Properties of Thin Films",
"517,5170,Introduction to Robotics: Dynamics, Cont",
"520,5200,Dimensional Tolerancing in Mechanical De",
"521,5210,Theory of Linear Systems",
"523,5230,Intermediate Fluid Dynamics",
"524,5240,Physics of Micro- and Nanoscale Fluid Me",
"543,5430,Combustion Processes",
"545,5459,Energy Seminar I",
"546,5469,Energy Seminar II",
"563,5630,Neuromuscular Biomechanics",
"565,5650,Biomechanical Systems: Analysis and Desi",
"570,5700,Finite Element Analysis for Mechanical a",
"571,5710,Applied Dynamics",
"577,5770,Engineering Vibrations",
"578,5780,Feedback Control Systems",
"579,5790,Modeling and Simulation of Mechanical an",
"586,5680,Soft Tissue Biomechanics",
"590,5900,AXP/FSAE Special Investigations",
"591,5910,Applied Systems Engineering",
"592,5920,System Architecture, Behavior, and Optim",
"593,5930,Systems Engineering for the Design and O",
"594,5949,Enterprise Engineering Colloquium",
"601,6010,Foundations of Fluid Dynamics and Aerody",
"602,6020,Fluid Dynamics at High Reynolds Numbers",
"606,6060,Spacecraft Dynamics and Mission Design",
"608,6080,Physics of Fluids",
"624,6240,Physics of Micro- and Nanoscale Fluid Me",
"627,6270,Experimental Methods in Fluid Dynamics",
"631,6310,Turbulence and Turbulent Flows",
"632,6320,Multiphase Turbulence: Particulates, Dro",
"636,6360,Elements of Computational Aerodynamics",
"643,6430,Computational Combustion",
"645,6450,Turbulent Reactive Flow",
"648,6480,Air Quality and Atmospheric Chemistry",
"650,6500,Evolutionary Computation and Design Auto",
"651,6510,Conduction and Radiation Heat Transfer",
"652,6520,Convection Heat Transfer",
"655,6550,Composite Materials",
"656,6560,Nanoscale Energy Transport and Conversio",
"663,6630,Neural Control",
"664,6640,Mechanics of Bone",
"665,6650,Principles of Tissue Engineering",
"675,6750,System Identification and Control",
"676,6760,Model-Based Estimation",
"678,6780,Multivariable Control Theory",
"690,6901,Special Investigations in Mechanical and",
"695,6950,Special Topics in Mechanical and Aerospa",
"711,7110,X-Ray Diffraction Methods for Engineerin",
"712,7120,Mechanics of Materials with Oriented Mic",
"714,7140,Computational Sensorics: Information Tec",
"715,7150,Atomistic Modeling of Materials",
"734,7340,Analysis of Turbulent Flows",
"736,7360,Theory of Computational Aerodynamics",
"737,7370,Computational Fluid Mechanics and Heat T",
"791,7910,Mechanical and Aerospace Research Confer",
"799,7999,Mechanical and Aerospace Engineering Col",
"890,8900,Research in Mechanical and Aerospace Eng",
"990,9900,Research in Mechanical and Aerospace Eng",
"MSE,111,1110,Nanotechnology",
"118,1180,Design Integration: DVDs and iPods",
"119,1190,Biomaterials for the Skeletal Systems",
"206,2060,Atomic and Molecular Structure of Matter",
"261,2610,Mechanical Properties of Materials: From",
"262,2620,Electronic Materials for the Information",
"269,2690,Technologies for Making the Small",
"291,2910,Research Involvement IIa and IIb",
"292,2920,Research Involvement IIa and IIb",
"301,3010,Materials Chemistry",
"303,3030,Thermodynamics of Condensed Systems",
"304,3040,Kinetics, Diffusion, and Phase Transform",
"305,3050,Electronic, Magnetic, and Dielectric Pro",
"307,3070,Materials Design Concepts I",
"311,3110,Junior Laboratory I",
"312,3120,Junior Laboratory II",
"391,3910,Research Involvement IIIa and IIIb",
"392,3920,Research Involvement IIIa and IIIb",
"402,4020,Mechanical Properties of Materials, Proc",
"403,4030,Senior Materials Laboratory I and II",
"404,4040,Senior Materials Laboratory I and II",
"405,4050,Senior Thesis I and II",
"406,4060,Senior Thesis I and II",
"407,4070,Materials Design Concepts II",
"410,4100,Physical Metallurgy and Applications",
"433,4330,Materials for Energy Production, Storage",
"461,4610,Biomedical Materials and Their Applicati",
"481,4810,Technology Management",
"482,4820,Plasma Processing of Electronic Material",
"487,4870,Ethics and Technology",
"489,4890,Colloids and Colloid Assemblies for Adva",
"491,4910,Research Involvement IVa and IVb",
"492,4920,Research Involvement IVa and IVb",
"495,4950,Undergraduate Teaching Involvement",
"501,5010,Special Project",
"502,5020,Special Project",
"512,5120,Mechanical Properties of Thin Films",
"521,5210,Properties of Solid Polymers",
"523,5230,Physics of Soft Materials",
"525,5250,Organic Optoelectronics",
"531,5310,Introduction to Ceramics",
"533,5330,Materials for Energy Production, Storage",
"541,5410,Nanofabrication of Semiconductor Devices",
"542,5420,Flexible Electronics",
"543,5430,Thin-Film Materials Science",
"545,5450,Magnetic and Ferroelectric Materials",
"555,5550,Introduction to Composite Materials",
"562,5620,Biomineralization: The Formation and Pro",
"563,5630,Nanobiotechnology",
"571,5710,Analytical Techniques for Material Scien",
"572,5720,Computational Materials Science",
"581,5810,Materials Chemistry",
"582,5820,Mechanical Properties of Materials, Proc",
"584,5840,Kinetics, Diffusion, and Phase Transform",
"585,5850,Electronic, Magnetic, and Dielectric Pro",
"587,5870,Technology Management",
"589,5890,Colloids and Colloid Assemblies for Adva",
"601,6010,Chemistry of Materials",
"602,6020,Elasticity, Plasticity, and Fracture",
"603,6030,Thermodynamics of Materials",
"604,6040,Kinetics of Reactions in Condensed Matte",
"605,6050,Electronic Properties of Materials",
"606,6060,Condensed Matter Structure",
"610,6100,Physical Metallurgy and Applications",
"621,6210,Advanced Inorganic Chemistry III: Solid-",
"655,6550,Composite Materials",
"665,6650,Principles of Tissue Engineering",
"671,6710,Principles of Diffraction",
"681,6810,Surfaces and Interfaces in Materials",
"800,8000,Research in Materials Science",
"801,8010,Materials Science and Engineering Colloq",
"802,8020,Materials Science Research Seminars",
"NSE,413,4130,Introduction to Nuclear Science and Engi",
"484,4840,Introduction to Controlled Fusion: Princ",
"545,5450,Energy Seminar",
"590,5900,Independent Study",
"591,5910,Project",
"ORIE,311,3800,Information Systems and Analysis",
"312,3120,Industrial Data and Systems Analysis",
"320,3300,Optimization I",
"321,3310,Optimization II",
"350,3150,Financial and Managerial Accounting",
"360,3500,Engineering Probability and Statistics I",
"361,3510,Introductory Engineering Stochastic Proc",
"416,4100,Design of Manufacturing Systems",
"431,4330,Discrete Models",
"432,4320,Nonlinear Optimization",
"434,4300,Optimization Modeling",
"435,4350,Introduction to Game Theory",
"436,4360,A Mathematical Examination of Fair Repre",
"437,4370,Computational Optimization",
"451,4150,Economic Analysis of Engineering Systems",
"452,4152,Entrepreneurship for Engineers",
"453,4154,Revenue Management",
"462,4520,Introductory Engineering Stochastic Proc",
"464,4540,Extreme Value Analysis with Applications",
"468,4600,Introduction to Financial Engineering",
"473,4630,Operations Research Tools for Financial ",
"474,4740,Statistical Data Mining I",
"476,4710,Applied Linear Statistical Models",
"480,4800,Information Technology",
"481,4810,Delivering OR Solutions with Information",
"483,4850,Applications of Operations Research and ",
"490,4990,Teaching in ORIE",
"499,4999,ORIE Project",
"512,5140,Applied Systems Engineering",
"513,5142,Systems Analysis Architecture, Behavior,",
"515,5100,Design of Manufacturing Systems",
"516,5110,Case Studies",
"518,5126,Supply Chain Management",
"519,5130,Service System Modeling and Design",
"520,5300,Operations Research I: Optimization I",
"521,5310,Optimization II",
"522,5311,Operations Research I: Topics in Linear ",
"523,5510,Operations Research II: Introduction to ",
"525,5120,Production Planning and Scheduling Theor",
"528,5190,Selected Topics in Applied Operations Re",
"529,5191,Selected Topics in Applied Operations Re",
"533,5340,Heuristic Methods for Optimization",
"551,5150,Economic Analysis of Engineering Systems",
"558,5660,Valuation of Interest Rate Securities in",
"559,5630,Computational Methods in Finance",
"560,5500,Engineering Probability and Statistics I",
"561,5560,Queueing Systems: Theory and Application",
"562,5122,Inventory Management",
"563,5550,Applied Time-Series Analysis",
"564,5520,Introductory Engineering Stochastic Proc",
"565,5960,Applied Financial Engineering",
"566,5540,Extreme Value Analysis with Applications",
"567,5620,Credit Risk: Modeling, Valuation, and Ma",
"568,5600,Financial Engineering with Stochastic Ca",
"569,5610,Financial Engineering with Stochastic Ca",
"573,5640,Statistics for Financial Engineering",
"575,4711,Experimental Design",
"576,4712,Regression",
"577,5770,Quality Control",
"579,5650,Quantitative Methods of Financial Risk M",
"580,4580,Monte Carlo Simulation",
"581,5581,Discrete-Event Simulation",
"582,5582,Monte Carlo Methods in Financial Enginee",
"597,5940,Systems Engineering Project",
"598,5910,Master of Engineering Manufacturing Proj",
"599,5980,Project",
"625,6335,Scheduling Theory",
"626,6122,Advanced Production and Inventory Planni",
"627,6127,Computational Issues in Large Scale Data",
"629,6350,Foundations of Game Theory and Mechanism",
"630,6300,Mathematical Programming I",
"631,6310,Mathematical Programming II",
"632,6320,Nonlinear Programming",
"633,6330,Graph Theory and Network Flows",
"634,6334,Combinatorial Optimization",
"635,6325,Interior-Point Methods for Mathematical ",
"636,6336,Integer Programming",
"637,6327,Semidefinite Programming",
"639,6328,Convex Analysis",
"640,6570,Queues and Control of Queues: The Dynami",
"650,6500,Applied Stochastic Processes",
"651,6510,Probability",
"662,6540,Advanced Stochastic Processes",
"670,6700,Statistical Principles",
"671,6710,Intermediate Applied Statistics",
"673,6630,Empirical and Computational Issues in Fi",
"674,6740,Statistical Learning Theory for Data Min",
"677,6720,Sequential Methods in Statistics",
"678,6780,Bayesian Statistics and Data Analysis",
"680,6580,Simulation",
"728,7190,Selected Topics in Applied Operations Re",
"729,7191,Selected Topics in Applied Operations Re",
"738,7390,Selected Topics in Mathematical Programm",
"739,7391,Selected Topics in Mathematical Programm",
"768,7590,Selected Topics in Applied Probability",
"769,7591,Selected Topics in Applied Probability",
"778,7790,Selected Topics in Applied Statistics",
"779,7791,Selected Topics in Applied Statistics",
"790,7900,Special Investigations",
"799,9999,Thesis Research",
"891,9000,Operations Research Graduate Colloquium",
"893,9100,Enterprise Engineering Colloquium",
"894,9101,Enterprise Engineering Colloquium",
"SYSEN,101,1010,Getting Design Right: A Systems Approach",
"510,5100,Applied Systems Engineering",
"511,5110,Applied Systems Engineering",
"520,5200,Systems Architecture, Behavior, and Opti",
"521,5210,Systems Architecture, Behavior, and Opti",
"530,5300,Systems Engineering for the Design and O",
"531,5310,Systems Engineering For the Design and O",
"570,5700,Special Topics in Systems Engineering",
"571,5710,Practicum in Systems Engineering",
"590,5900,Systems Engineering Design Project",
"680,6800,Topics in Systems Engineering Research",
"TAM,118,1180,Design Integration: DVDs and iPods",
"202,2020,Mechanics of Solids",
"203,2030,Dynamics",
"310,3100,Introduction to Applied Mathematics I",
"311,3110,Introduction to Applied Mathematics II",
"312,3120,Introduction to Mathematical Modeling",
"413,4130,Introduction to Nuclear Science and Engi",
"455,4550,Introduction to Composite Materials",
"491,4910,Project in Engineering Science",
"492,4920,Project in Engineering Science",
"511,5110,Introduction to Applied Mathematics II",
"512,5120,Introduction to Mathematical Modeling",
"570,5700,Intermediate Dynamics",
"578,5780,Nonlinear Dynamics and Chaos",
"591,5910,Master of Engineering Design Project I",
"592,5920,Master of Engineering Design Project I",
"610,6100,Methods of Applied Mathematics I",
"611,6110,Methods of Applied Mathematics II",
"612,6120,Methods of Applied Mathematics III",
"613,6130,Asymptotics and Perturbation Methods",
"617,6170,Advanced Mathematical Modeling: Biologic",
"655,6550,Advanced Composite Materials",
"663,6630,Solid Mechanics I",
"664,6640,Solid Mechanics II",
"671,6710,Hamiltonian Dynamics",
"672,6720,Celestial Mechanics",
"673,6730,Mechanics of the Solar System",
"675,6750,Nonlinear Vibrations",
"718,7180,Topics in Applied Mathematics",
"751,7510,Continuum Mechanics and Thermodynamics",
"752,7520,Nonlinear Elasticity",
"753,7530,Fracture",
"754,7540,Topics in Continuum Mechanics",
"757,7570,Inelasticity",
"759,7590,Boundary Element Methods",
"768,7680,Elastic Waves in Solids",
"776,7760,Applied Dynamical Systems",
"796,7609,Mechanics of Terrestrial Locomotion",
"796,7960,Topics in Theoretical and Applied Mechan",
"800,8000,Topics in Theoretical and Applied Mechan",
"890,8900,Master's Degree Research in Theoretical ",
"990,9900,Doctoral Research in Theoretical and App",
"HADM,105,1105,Introduction to Hotel Operations",
"106,1106,Introduction to Food Service Operations",
"110,1110,Distinguished Lectures in Hospitality Ma",
"115,1115,Organizational Behavior and Interpersona",
"120,1120,Personal Financial Management",
"121,1121,Financial Accounting",
"141,1141,Micro-economics for the Service Industry",
"165,1165,Managerial Communication I",
"174,1174,Microcomputing",
"201,2201,Hospitality Quantitative Analysis",
"210,2210,The Management of Human Resources",
"211,2211,Human Resource Management",
"217,2217,Statler Leadership Development Program",
"221,2221,Managerial Accounting",
"222,2222,Finance",
"223,2223,Financial Accounting Principles",
"225,2225,Finance",
"236,2236,Culinary Theory and Practice",
"241,2241,Marketing Principles",
"243,2243,Marketing Management for Services",
"255,2255,Hospitality Development and Planning",
"274,2274,Microcomputing",
"275,2275,Introduction to Information Systems Mana",
"290,2290,Introduction to Culinary Arts",
"301,3301,Service Operations Management",
"303,3303,Club Management",
"305,3305,Restaurant Management",
"313,3313,Training and Development",
"321,3321,Hospitality Financial Management",
"325,3325,Fundamentals of Financial Planning",
"340,3340,Franchising in the Hospitality Industry",
"343,3343,Marketing Research for Decision Makers",
"347,3347,Consumer Behavior",
"351,3351,Hospitality Facilities Design",
"355,3355,Hospitality Facilities Management",
"364,3364,Corporate Communication",
"365,3365,Managerial Communication II",
"374,3374,Fundamentals of Database Management and ",
"385,3385,Business Law I",
"387,3387,Business and Hospitality Law",
"401,4401,Restaurant Entrepreneurship",
"403,4403,Specialty Food and Beverage Operations: ",
"404,4404,Catering and Special Events Management",
"408,4408,Introduction to Casino Operations",
"410,4410,Hospitality Management Seminar",
"411,4110,Negotiations in the Hospitality Industry",
"413,4413,Introductory Hospitality Entrepreneurshi",
"415,4415,Managerial Leadership in the 21st Centur",
"420,4420,Principles of Real Estate",
"421,4421,Internal Control in Hospitality Operatio",
"422,4422,Taxation and Management Decisions",
"423,4423,Hospitality Real Estate Finance",
"426,4426,Advanced Corporate Finance",
"427,4427,Multinational Finance and International ",
"429,4429,Investment Analysis and Portfolio Manage",
"430,4430,Introduction to Wines",
"431,4431,Wine and Food Pairing Principles and Pro",
"432,4432,Contemporary Healthy Foods",
"435,4435,Selection, Procurement, and Supply Manag",
"436,4436,Beverage Management",
"437,4437,Anheuser Busch Seminar in Quality Brewin",
"438,4438,Seminar in Culture and Cuisine",
"441,4441,Strategic Management",
"447,4447,Managing Hospitality Distribution Strate",
"451,4451,Restaurant Development",
"452,4452,Sustainable Development and the Global H",
"453,4453,Foodservice Facilities Design",
"457,4457,Hotel Development",
"462,4462,Intercultural Communication in the Hospi",
"476,4476,Visual Basic for Applications: End-user ",
"477,4477,Advanced Business Modeling",
"485,4485,Employment Discrimination Law and Union",
"487,4487,Real Estate Law",
"489,4489,The Law of the Internet and e-Commerce",
"490,4490,Exploring Social Responsibility: Hunger ",
"491,4491,Hotel Ezra Cornell",
"493,4493,Management Intern Program I: Operations",
"494,4494,Management Intern Program II: Academic",
"495,4495,Implementing Strategies for Tying Wellne",
"497,4497,Undergraduate Research",
"498,4498,Undergraduate Independent Study",
"499,4499,Undergraduate Independent Study",
"502,5502,Advanced Hospitality Quantitative Analys",
"528,5528,Advanced Topics in Real Estate and Finan",
"574,5574,Strategic Information Systems",
"602,6602,Spa and Spa Hotel and Resort Development",
"603,6603,Quality and Process Improvement",
"605,6605,Yield Management",
"606,6606,Restaurant Revenue Management",
"609,6609,Airline Service Management",
"610,6610,M.M.H. Discussion Forums in Hospitality ",
"611,6611,Negotiations in the Hospitality Industry",
"614,6614,High-Performance Leadership",
"620,6620,Principles of Real Estate",
"621,6621,Hospitality Real Estate Finance",
"622,6622,Hospitality Asset Management",
"624,6624,Reporting and Analysis of Financial Stat",
"625,6625,Securitization and Structured Financial ",
"626,6626,Advanced Corporate Finance",
"627,6627,Multinational Finance and International ",
"628,6628,Real Estate Finance and Investments",
"631,6631,Case Studies in Restaurant Management",
"645,6645,Services Marketing and Customer Experien",
"698,6698,Graduate Independent Research",
"699,6699,Graduate Independent Research",
"703,7703,Operations Management",
"711,7711,Organizational Behavior",
"712,7712,Human-Resource Management",
"723,7723,Corporate Finance",
"724,7724,Managerial Accounting",
"743,7743,Marketing Management for Services",
"744,7744,Competitive Strategies for the Hospitali",
"751,7751,Properties Development and Planning",
"761,7761,M.M.H. Managerial Communication",
"772,7720,Information Systems Management",
"790,7790,Externship",
"791,7791,Professional Development I",
"792,7792,Professional Development II",
"795,7795,Master of Management in Hospitality Mast",
"796,7796,M.M.H. Charette",
"797,7797,Hospitality Industry Leadership Developm",
"890,8890,M.S. Thesis Research",
"990,9990,Ph.D. Thesis Research",
"DEA,101,1010,Design Studio I",
"102,1020,Design Studio II",
"111,1110,Making a Difference: By Design",
"115,1150,Design Graphics and Visualization",
"150,1500,Introduction to Human-Environment Relati",
"201,2010,Design Studio III",
"202,2020,Design Studio IV",
"203,2030,Digital Communications",
"204,2040,No title",
"215,2150,Digital Graphics",
"241,2410,Introduction to Computer-Aided Design",
"242,2420,Advanced Computer-Aided Design",
"250,2500,The Environment and Social Behavior",
"251,2510,History and Theory of the Interior",
"300,3000,Special Studies for Undergraduates",
"301,3010,Design Studio V",
"302,3020,Design Studio VI",
"303,3030,Interior Materials and Sustainable Eleme",
"304,3040,Introduction to Professional Practice of",
"305,3050,Construction Documents and Detailing",
"325,3250,Human Factors: Ergonomics: Anthropometri",
"350,3500,Human Factors: The Ambient Environment",
"354,3540,Facility Planning and Management Studio",
"400,4000,Directed Readings",
"401,4010,Empirical Research",
"402,4020,Supervised Fieldwork",
"403,4030,Teaching Apprenticeship",
"407,4070,Design Studio VII",
"408,4080,Design Studio VIII",
"410,4100,Facility Planning and Design in a Divers",
"415,4150,Strategic Planning for Healthcare and Ed",
"422,4220,Ecological Literacy and Design",
"423,4230,No title",
"430,4300,Furniture as a Social Art",
"451,4510,Introduction to Facility Planning and Ma",
"453,4530,Planning and Managing the Workplace",
"454,4540,Computer-Aided Facilities Management.",
"455,4550,Research Methods in HumanEnvironment Re",
"459,4590,Programming Methods in Design",
"460,4600,Design City",
"470,4700,Applied Ergonomic Methods",
"472,4720,Environments for Elders: Housing and Des",
"499,4990,Senior Honors Thesis",
"600,6000,Special Problems for Graduate Students",
"603,6030,Special Problems for Graduate Students",
"645,6450,Dancing Mind/Thinking Heart: Creative Pr",
"648,6480,Virtual Design, Analysis, and Representa",
"650,6500,Programming Methods in Design",
"651,6510,Human Factors: Ergonomics-Anthropometric",
"652,6520,Human Factors: The Ambient Environment",
"653,6530,Planning and Managing the Workplace",
"654,6540,Facility Planning and Management Studio",
"656,6560,Research Methods in Human-Environment Re",
"659,6590,Introduction to Facility Planning and Ma",
"660,6660,The Environment and Social Behavior",
"661,6610,Environments and Health",
"668,6680,Design Theory and Criticism Seminar",
"670,6700,Applied Ergonomics Methods",
"899,8990,Master's Thesis and Research",
"FSAD,114,1140,Introduction to Computer-Aided Design",
"117,1170,Fashion Graphics",
"125,1250,Art, Design, and Visual Thinking",
"135,1350,Fibers, Fabrics, and Finishes",
"136,1360,Fiber and Yarn Analysis Laboratory",
"145,1450,Introduction to Apparel Design",
"237,2370,Structural Fabric Design",
"264,2640,Draping",
"265,2650,Apparel Patternmaking",
"266,2660,Apparel Design: Product Development",
"300,3000,Special Studies for Undergraduates",
"325,3250,Color and Surface Design of Textiles",
"335,3350,Fiber Science",
"336,3360,Fundamentals of Color and Dyeing",
"346,3460,Design Process",
"369,3690,Style, Fashion, and the Apparel Industry",
"370,3700,History of Color and Design in Textiles",
"400,4000,Directed Reading",
"401,4010,Empirical Research",
"402,4020,Supervised Fieldwork",
"403,4030,Teaching Apprenticeships",
"431,4310,Apparel Production and Management",
"432,4320,Product Quality Assessment",
"436,4360,Fiber Chemistry",
"439,4390,Biomedical Materials and Devices for Hum",
"444,4440,Apparel/Textile Retailing and Distributi",
"466,4660,Textiles, Apparel, and Innovation",
"470,4700,Fashion Presentation: Portfolio Developm",
"499,4990,Honors Thesis Research",
"600,6000,Special Problems for Graduate Students",
"616,6160,Rheology of Solids: Dynamic Mechanical A",
"620,6200,Physical Properties of Fiber-Forming Pol",
"626,6260,The Chemistry of Textile Finishes and Dy",
"637,6370,Research Seminars in Apparel Design",
"639,6390,Mechanics of Fibrous Assemblies",
"664,6640,Human Factors: Anthropometrics and Appar",
"666,6660,Fiber Formation: Theory and Practice",
"670,6700,Fashion Theory",
"675,6750,Aesthetics and Meaning in World Dress",
"899,8990,Master's Thesis and Research",
"999,9990,Doctoral Thesis and Research",
"HD,115,1150,Human Development",
"116,1160,Section for Introduction to Human Develo",
"216,2160,Adolescence and Emerging Adulthood",
"218,2180,Human Development: Adulthood and Aging",
"220,2200,The Human Brain and Mind: Biological Iss",
"220,2220,Biological Issues in Human Development: ",
"230,2300,Cognitive Development",
"233,2330,Children and the Law",
"238,2380,Thinking and Reasoning",
"251,2510,Social Gerontology: Aging and the Life C",
"260,2600,Introduction to Personality",
"261,2610,The Development of Social Behavior",
"266,2660,Emotional Functions of the Brain",
"282,2820,Community Outreach",
"311,3110,Educational Psychology",
"319,3190,Memory and the Law",
"320,3200,Human Developmental Neuropsychology",
"327,3270,Field Practicum I",
"328,3280,Field Practicum II",
"334,3340,The Growth of the Mind",
"336,3360,Connecting Social, Cognitive, and Emotio",
"337,3370,Language Development",
"342,3420,Participation with Groups of Young Child",
"343,3430,Social Worlds of Childhood",
"344,3440,Infant Behavior and Development",
"346,3460,The Role and Meaning of Play",
"347,3470,Human Growth and Development: Biological",
"353,3530,Risk and Opportunity Factors in Childhoo",
"362,3620,Human Bonding",
"366,3660,Emotional Functions of the Brain",
"370,3700,Adult Psychopathology",
"382,3820,Research Methods in Human Development",
"384,3840,Gender and Sexual Minorities",
"414,4140,Social and Psychological Aspects of the ",
"418,4180,Aging: Contemporary Issues",
"419,4190,Midlife Development",
"420,4200,Laboratory in Risk and Rational Decision",
"431,4310,Mind, Self, and Emotion",
"432,4320,Cognitive, Social, and Developmental Asp",
"433,4330,Developmental Cognitive Neuroscience",
"433,4330,Developmental Cognitive Neurosciences",
"434,4340,Current Topics in Cognitive Development",
"437,4370,Lab Course: Language Development",
"440,4440,Internship in Educational Settings for C",
"448,4480,Advanced Participation with Children",
"452,4520,Culture and Human Development",
"457,4570,Health and Social Behavior",
"464,4640,Adolescent Sexuality",
"466,4660,Psychobiology of Temperament and Persona",
"468,4680,Stress in Childhood and Adolescence",
"474,4740,Autism and the Development of Social Cog",
"478,4780,Attention Deficit/Hyperactivity Disorder",
"483,4830,Early Care and Education in Global Persp",
"498,4980,Senior Honors Seminar",
"499,4990,Senior Honors Thesis",
"602,6020,Research in Risk and Rational Decision M",
"614,6140,Social and Psychological Aspects of the ",
"617,6170,Adolescence",
"619,6190,Memory and the Law",
"620,6200,First-Year Proseminar in Human Developme",
"621,6210,Seminar on Autobiographical Memory",
"631,6310,Proseminar on Cognitive Development",
"632,6320,Cognitive Neuroscience Seminar: Applicat",
"633,6330,Language Acquisition Seminar",
"634,6340,Judgment, Decision Making, and Scientifi",
"636,6360,Connecting Social, Cognitive, and Emotio",
"637,6370,First-Language Acquisition",
"640,6400,Infancy",
"651,6510,Interdisciplinary Community-Based Scient",
"660,6600,Social Development",
"666,6660,Emotions and the Brain",
"674,6740,Autism Spectrum Conditions",
"686,6860,Graduate Seminar in Research Methods",
"687,6870,Issues in Professional Development",
"691,6910,Poverty, the Life Course, and Public Pol",
"692,6920,Seminar in Translational Developmental S",
"700,7000,Directed Readings.",
"701,7010,Empirical Research.",
"702,7020,Practicum.",
"703,7030,Teaching Assistantship.",
"704,7040,Research Assistantship.",
"705,7050,Extension Assistantship.",
"706,7060,Supervised Teaching.",
"711,7110,Psychological Expert Testimony in the Co",
"806,8060,Teaching Practicum",
"899,8990,Master's Thesis and Research",
"999,9990,Doctoral Thesis and Research",
"HE,100,1000,Critical Reading and Thinking",
"101,1010,College Achievement Seminar",
"301,3010,Collaborative Leadership",
"405,4050,Mentoring for Advanced Leadership",
"406,4060,Fieldwork in Diversity and Professional ",
"407,4070,Leadership in the Nonprofit Environment",
"470,4700,Multicultural Issues in Urban Affairs",
"480,4800,Communities in Multicultural Practice",
"490,4900,Multicultural Practice",
"495,4950,Culture, Medicine, and Professional Prac",
"PAM,200,2000,Intermediate Microeconomics",
"204,2040,Economics of the Public Sector",
"210,2100,Introduction to Statistics",
"215,2150,Research Methods",
"222,2220,Controversies about Inequality",
"230,2300,Introduction to Policy Analysis",
"303,3030,Ecology and Epidemiology of Health",
"310,3100,Multiple Regression Analysis",
"323,3230,Consumer Behavior",
"333,3330,Law, Economics, and Public Policy",
"334,3340,Corporations, Shareholders, and Policy",
"335,3350,Low-Income Families: Qualitative and Pol",
"336,3360,Evolving Families: Challenges to Family ",
"337,3370,Racial and Ethnic Differentiation",
"340,3400,The Economics of Consumer Policy",
"341,3410,Economics of Consumer Law and Protection",
"346,3460,Economics of Social Security",
"350,3500,Contemporary Issues in Women's Health",
"377,3770,Child Policy",
"380,3800,Human Sexuality",
"382,3820,Marketing, Obesity, and the Consumer",
"383,3830,Social Welfare as a Social Institution",
"392,3920,New York State Government Affairs: Capit",
"400,4000,Directed Readings",
"401,4010,Empirical Research",
"402,4020,Supervised Fieldwork",
"403,4030,Teaching Apprenticeship",
"406,4998,Politics and Policy: Theory, Research, a",
"423,4230,Risk Management and Policy",
"433,4330,Topics in Corporations and Policy",
"435,4350,The U.S. Health Care System",
"437,4370,Economics of Health Policy",
"438,4380,Economics of Public Health",
"440,4400,Critical Perspectives",
"444,4440,Violence against Women: Policy Implicati",
"457,4570,Innovation and Entrepreneurship in the H",
"462,4620,The Welfare of America's Children",
"473,4730,Social Policy",
"498,4980,Honors Seminar",
"499,4990,Honors Program",
"547,5470,Microeconomics for Management and Policy",
"552,5520,Health Care Services: Consumer and Ethic",
"554,5540,Legal Aspects of Health Care",
"556,5560,Managed Health Delivery Systems: Primary",
"557,5570,Health Care Organization",
"558,5580,Field Studies in Health Administration a",
"559,5590,Epidemiology, Clinical Medicine, and Man",
"562,5620,Health Care Financial Management I",
"563,5630,Health Care Financial Management II",
"564,5640,Information Resources Management in Heal",
"566,5660,Strategic Management and Organizational ",
"567,5670,Health Policy",
"569,5690,Regression Analysis and Managerial Forec",
"570,5700,Health Care Accounting",
"571,5710,Organizational Development/Human Resourc",
"572,5720,Economic Evaluations in Health Care",
"574,5740,Short Course in Fundamentals of Health F",
"576,5760,Long-Term Care and Lifestyle Alternative",
"577,5570,Marketing for Health Care Managers",
"581,5810,Measuring and Evaluating Health Program ",
"600,6000,Special Problems for Graduate Students",
"603,6030,Experimental, Quasi-Experimental, and Ec",
"604,6040,Qualitative, Survey, and Mixed-Method Ap",
"605,6050,Economics of Family Policy",
"606,6060,Demographic Techniques",
"608,6080,Economics of Consumer Demand",
"631,6310,Ethics, Public Policy in American Societ",
"632,6320,The Intergovernmental System: Analysis o",
"633,6330,Seminar in Pharmaceutical Policy Issues",
"639,6390,Microeconomics for Policy Analysis",
"640,6400,Consumers, Information, and Regulatory P",
"691,6910,Health Economics I",
"692,6920,Health Economics II",
"760,7600,Challenges and Trends in the Health Serv",
"899,8990,Master's Thesis and Research",
"999,9990,Doctoral Thesis and Research",
"ILRCB,100,1100,Introduction to U.S. Labor History",
"201,2010,Labor and Employment Law",
"205,2050,Collective Bargaining",
"209,2090,Work and Labor in the Global Economy",
"301,3010,Labor Union Administration",
"302,3020,Strangers and Citizens: Immigration and ",
"303,3030,Working-Class America in Mass Media and ",
"304,3040,Special Topics: Labor History",
"305,3050,Introduction to Labor Arbitration and Al",
"306,3060,Recent History of American Workers: From",
"307,3070,U.S. Business History Since the Civil Wa",
"383,3830,Workers' Rights as Human Rights",
"385,3850,African American Social History, 1865 to",
"386,3860,African American Social History, 1910 to",
"388,3880,Unfree Labor: Servants, Slaves, and Wive",
"400,4000,Union Organizing",
"402,4020,Farmworkers",
"404,4040,Contract Administration",
"407,4070,Contemporary Trade Union Movement",
"482,4820,Ethics at Work",
"488,4880,Liberty and Justice for All",
"495,4950,Honors Program",
"497,4970,Internship",
"498,4980,Internship",
"499,4990,Directed Studies",
"500,5000,Collective Bargaining",
"501,5010,Labor and Employment Law",
"502,5020,History of Industrial Relations in the U",
"504,5040,The U.S. Industrial Relations System",
"600,6000,Special Topics: Labor Law",
"602,6020,Arbitration",
"603,6030,The Economics of Collective Bargaining i",
"604,6040,Theories of Equality and Their Applicati",
"606,6060,Theories of Industrial Relations Systems",
"607,6070,Values in Law, Economics, and Industrial",
"608,6080,Collective Bargaining Simulation",
"610,6011,Negotiation: Theory and Practice",
"611,6012,Managing and Resolving Conflict",
"618,6018,Current Issues in Collective Bargaining:",
"651,6014,Industrial Relations in Transition",
"655,6014,Employment Law I",
"656,6016,Employment Law II",
"683,6830,Research Seminar in the History of Indus",
"684,6840,Employment Discrimination and the Law",
"686,6860,Collective Bargaining in Public Sector",
"687,6870,Introduction to Labor Research",
"689,6890,Constitutional Aspects of Labor Law",
"703,7030,Qualitative Research Methods in Industri",
"705,7050,The Economics of Collective Bargaining",
"708,7080,Negotiations in Practice",
"783,7081,Seminar in American Labor History",
"790,7900,ILR M.P.S. Program",
"798,7980,Internship",
"799,7990,Directed Studies",
"980,9800,Workshop in Collective Bargaining, Labor",
"ILRHR,260,2600,Human Resource Management",
"266,2660,Essential Desktop Applications",
"268,2680,Job Loss",
"360,3600,Human Resource Economics and Public Poli",
"362,3620,Career Development: Theory and Practice",
"365,3650,Organizational Consulting: Process and R",
"367,3670,Employee Training and Development",
"456,4600,International Human Resource Management",
"461,4610,Working in the New Economy: The Sociolog",
"462,4620,Staffing Organizations",
"463,4630,Diversity and Employee Relations",
"464,4640,Business Strategy",
"465,4650,Globalization at Work",
"466,4660,Entrepreneurship and Small Business",
"467,4670,Leadership Development",
"468,4680,Human Resources Management Simulation",
"469,4690,Immigration Policy and the American Labo",
"495,4950,Honors Program",
"497,4970,Internship",
"498,4980,Internship",
"499,4990,Directed Studies",
"560,5600,Human Resource Management",
"564,5640,Human Resources Management in Effective ",
"651,6510,Developing Leadership: Personally and in",
"653,6601,Research on Education Reform and Human R",
"654,6602,Introduction to HR Information Systems",
"658,6604,Field Study in Strategic Human Resources",
"659,6590,HR Challenge: Balancing, Ethics, Economi",
"660,6600,HR Leadership: Views from the Top",
"661,6610,Applied Personal and Organization Develo",
"662,6620,The Agile Enterprise: Exploring the Dyna",
"663,6630,Managerial Financial Analysis",
"664,6640,HR Online Research and Reporting Methods",
"665,6650,Business Strategy and Human Resources",
"666,6660,Strategic HR Metrics",
"667,6670,Diversity and Inclusion in Organizations",
"668,6680,Staffing Organizations",
"669,6690,Managing Compensation",
"690,6900,International Comparative Human Resource",
"691,6910,Finance for Human Resources",
"693,6930,Training and Development in Organization",
"694,6940,Service Management in Global Perspective",
"695,6950,Education, Technology, and Productivity",
"697,6970,Special Topics in Resource Studies",
"698,6980,International Human Resource Policies an",
"699,6990,Advanced Desktop Applications",
"756,7560,Organizational Consulting",
"760,7600,Seminar in Human Resource Studies",
"763,7630,Interdisciplinary Perspectives on the Or",
"764,7640,Comparative International Perspectives o",
"790,7900,ILR M.P.S. Program",
"798,7980,Internship",
"799,7990,Directed Studies",
"960,9600,Workshop in Human Resource Studies",
"961,9610,Doctoral Research Seminar in Human Resou",
"962,9620,Doctoral Research Seminar in Strategic H",
"963,9630,Research Methods in HRM/Strategic Human ",
"ILRIC,235,2350,Work, Labor, and Capital in the Global E",
"333,4330,Politics of the Global North",
"334,3340,Perspectives on Work and Welfare",
"339,3390,The Political Economy of Mexico",
"499,4990,Directed Studies",
"533,6330,Politics of the Global North",
"630,6301,Special Topics: Crossing Borders: Contem",
"630,6331,Special Topics",
"631,4310,Comparative Labor Movements in Latin Ame",
"632,6320,Revitalizing the Labor Movement: A Compa",
"633,6331,Labor, Industry, and Politics in Germany",
"634,6340,International Labor Law",
"635,4350,Labor Markets and Income Distribution in",
"636,6360,Comparative History of Women and Work",
"637,6370,Labor Relations in Asia",
"638,6380,Labor, Free Trade, and Economic Integrat",
"639,6390,Building a Social Europe”: Regional In",
"730,7300,Research Seminar on Labor Markets in Com",
"731,7310,Industrial Relations in Latin America",
"737,7370,Special Topics: Labor, Democracy, and Gl",
"739,7390,The Political Economy of Mexico",
"790,7900,ILR M.P.S. Program",
"799,7990,Directed Studies",
"ILRID,150,1500,Freshman Colloquium",
"250,2500,Diversity in the Workplace",
"566,5660,Public Policy",
"599,5990,Cross-Cultural Work Experience",
"790,7900,ILR M.P.S. Program",
"ILRLE,240,2400,Economics of Wages and Employment",
"344,3440,Development of Economic Thought and Inst",
"440,4400,Labor Market Analysis",
"441,4410,Income Distribution",
"442,4420,The Economics of Employee Benefits",
"443,4430,Compensation, Incentives, and Productivi",
"444,4440,The Evolution of Social Policy in Britai",
"445,4450,Women in the Economy",
"446,4460,Economy History of British Labor",
"447,4470,Social and Economic Data",
"448,4480,Topics in 20th-Century Economic History:",
"495,4950,Honors Program",
"497,4970,Internship",
"498,4980,Internship",
"499,4990,Directed Studies",
"540,5400,Labor Economics",
"544,5440,Labor Market and Personnel Economics",
"642,6420,Economic Analysis of the Welfare State",
"647,6470,Economics of Education",
"648,6480,Economic Analysis of the University",
"740,7400,Social and Economic Data",
"741,7410,Applied Econometrics I",
"742,7420,Applied Econometrics II",
"743,7430,Applied Econometrics III",
"745,7450,Seminar in Labor Economics I",
"746,7460,Seminar in Labor Economics II",
"747,7470,Economics of Education",
"748,7480,Economics of Employee Benefits",
"749,7490,Economics of Development",
"790,7900,ILR M.P.S. Program",
"798,7980,Internship",
"799,7990,Directed Studies",
"940,9400,Workshop in Labor Economics",
"ILROB,122,1220,Introduction to Organizational Behavior",
"175,1750,Behavior, Values, and Performance",
"222,2220,Controversies about Inequality",
"320,3200,The Psychology of Industrial Engineering",
"321,3210,Group Solidarity",
"329,3290,Organizational Cultures",
"370,3700,The Study of Work Motivation",
"422,4220,Organizations and Deviance",
"423,4230,Leadership in Organizations",
"424,4240,Social Influence and Persuasion",
"425,4250,Seminar in Organizational Culture",
"426,4260,Managing Creativity",
"427,4270,The Professions: Organization and Contro",
"428,4280,Blue-Collar Work in America",
"429,4290,Organizational Politics and Institutiona",
"470,4700,Group Processes",
"471,4710,Organizations and Negotiation",
"472,4720,Applied Organizational Behavior",
"475,4750,Organizational Uncertainty and Tactical ",
"495,4950,Honors Program",
"497,4970,Internship",
"498,4980,Internship",
"499,4990,Directed Studies",
"520,5200,Organizational Behavior and Analysis",
"525,5250,Organizational Behavior",
"579,5790,Negotiation and Conflict Resolution",
"625,6250,Conflict, Power, and Negotiation",
"626,6260,Organizations and Social Inequality",
"627,6270,Leadership in Organizations",
"671,6710,Work, Health, and Health Care",
"679,6790,Methods of Observation and Analysis of B",
"721,7210,Advanced Micro Organizational Behavior",
"722,7220,Advanced Macro Organizational Behavior",
"724,7240,Managing Social Influence",
"725,7250,Analysis of Published Research in Organi",
"726,7260,Selected Topics in Organizational Behavi",
"727,7270,Leadership in Organizations",
"728,7280,Theories of Motivation and Leadership",
"729,7290,Organizational Change and Intervention",
"778,7780,Solidarity in Groups",
"790,7900,ILR M.P.S. Program",
"798,7980,Internship",
"799,7990,Directed Studies",
"920,9200,Organizational Behavior Workshop",
"ILRST,210,2100,Introductory Statistics",
"212,2120,Statistical Reasoning",
"213,2130,Applied Regression Methods",
"310,3100,Statistical Sampling",
"311,3110,Practical Matrix Algebra",
"312,3120,Applied Regression Methods",
"410,4100,Techniques of Multivariate Analysis",
"411,4110,Statistical Analysis of Qualitative Data",
"499,4990,Directed Studies",
"510,5100,Statistical Methods for the Social Scien",
"511,5110,Statistical Methods for the Social Scien",
"515,5150,Statistical Research Methods",
"610,6100,Statistical Methods I",
"614,4140,Structural Equations with Latent Variabl",
"619,6190,Special Topics in Social Statistics",
"715,7150,Likelihood Interference",
"717,7170,Analysis of Longitudinal Data",
"799,7990,Directed Studies",
"NBA,300,3000,Entrepreneurship and Enterprise",
"500,5000,Intermediate Accounting",
"501,5010,Taxes and Business Strategy",
"502,5020,Managerial Cost Accounting",
"503,5030,Strategic Cost Management",
"506,5060,Financial Statement Analysis",
"507,5070,Entrepreneurship for Scientists and Engi",
"509,5090,Advanced Financial Analysis",
"511,5110,Financial Modeling",
"512,5120,Applied Portfolio Management",
"515,5150,Leadership Theory and Practice",
"518,5180,Data Mining for Marketing, Sales, and Cu",
"519,5190,Sustainability as a Driver for Innovatio",
"521,5210,Investing in Distressed Corporations",
"522,5220,Negotiations: The Global Perspective",
"524,5240,Macroeconomics and International Trade",
"527,5270,Applied Price Theory",
"530,5300,Entrepreneurship Lab",
"532,5320,Due Diligence in Private Equity Investme",
"537,5370,Information in Markets",
"540,5400,Advanced Corporate Finance",
"542,5420,Investment and Portfolio Management",
"543,5430,Financial Markets and Institutions",
"548,5480,International Political Risk Management",
"549,5490,Managerial Finance: Practicum",
"552,5520,Cases in Corporate Finance",
"553,5530,Accounting and Financial Analysis for En",
"554,5540,International Finance",
"555,5550,Fixed-Income Securities and Interest Rat",
"556,5560,Investment Banking: Practicum",
"557,5570,Case Studies in Venture Investment and M",
"558,5580,Corporate Financial Policy",
"559,5590,Venture Capital Industry and Private Equ",
"560,5600,Business Law I",
"561,5610,Business Law II",
"562,5620,Estate Planning",
"563,5630,The IPO Process and Deal Structure Alter",
"564,5640,Entrepreneurship and Private Equities",
"565,5650,Corporate Governance",
"567,5670,Management Writing",
"568,5680,Oral Communication",
"569,5690,Management Consulting",
"570,5700,Leadership in Management",
"571,5710,Cornell Management Simulation",
"573,5730,Seminar in Sustainable Development",
"574,5740,Management Practicum for Scientists and ",
"575,5750,Management Projects",
"578,5780,Consulting Process",
"579,5790,Cases in Business Strategy",
"580,5800,Strategies for Global Competitiveness",
"583,5830,Capital Markets and Asset Management Pra",
"584,5840,International Competitive Strategy",
"587,5870,International Mergers and Acquisitions",
"589,5890,International Management",
"590,5900,Business in Transition Economies",
"592,5920,Experience in International Management",
"593,5930,International Entrepreneurship",
"594,5940,Asian Business",
"595,5950,Economics of Financial Crises",
"598,5980,Behavioral Finance",
"599,5990,Business in the European Union",
"600,6000,The Strategic Role of Information Techno",
"601,6010,Electronic Commerce",
"602,6020,Commercialization of Fundamental Technol",
"603,6030,Sustainable Global Enterprise",
"608,6080,The Business of Biotechnology: Taxonomy ",
"610,6100,Technology Management, Bio, Info, Nano",
"612,6120,Disruptive Technologies",
"618,6180,Global Innovation and Technology Commerc",
"620,6200,Marketing Research",
"621,6210,Marketing Communications",
"622,6220,Marketing Strategy",
"624,6240,Brand Management: Practicum",
"625,6250,International Marketing",
"626,6260,Consumer Behavior",
"634,6340,Consumer Relationship Management",
"639,6390,Data-Driven Marketing",
"641,6410,Logistics and Manufacturing Strategy",
"642,6420,Global Corporate Citizenship",
"643,6430,Managerial Spreadsheet Modeling",
"647,6470,Advanced Spreadsheet Modeling",
"650,6500,Semester in Strategic Operations Practic",
"653,6530,Strategic Alliances",
"655,6550,Advanced Valuations",
"656,6560,Valuation Principles",
"656,6560,Valuations Principles",
"658,6580,Sustainable Global Enterprise Practicum",
"663,6630,Managerial Decision Making",
"666,6660,Negotiations",
"668,6680,Leading Teams and Organizations",
"670,6700,Perspectives on Leadership",
"671,6710,Business Ethics",
"672,6720,Goal Setting for Personal Leadership",
"673,6730,Introduction to Derivatives, Part 1",
"674,6740,Introduction to Derivatives, Part 2",
"678,6780,Advance Private Equity; Negotiations and",
"689,6890,Law for High-Growth Business",
"693,6930,Strategy and Tactics of Pricing",
"694,6940,Equity Derivatives and Related Products",
"NCC,500,5000,Financial Accounting",
"501,5010,Statistics for Management",
"502,5020,Microeconomics for Management",
"503,5030,Marketing Management",
"504,5040,Managing and Leading in Organizations",
"506,5060,Managerial Finance",
"508,5080,Managing Operations",
"509,5090,Strategy",
"550,5500,Financial Accounting",
"553,5530,Marketing Management",
"554,5540,Management and Leading in Organizations",
"556,5560,Managerial Finance",
"559,5590,Strategy",
"NMI,500,5000,Directed Reading and Research",
"503,5030,Six-Sigma Quality and Process Improvemen",
"510,5100,Multicultural Work Environments",
"NRE,501,5010,No title",
"502,5020,Doctoral Seminar In Marketing",
"504,5040,Judgment and Decision Making, Research a",
"518,5180,Marketing Models",
"536,5360,Doctoral Seminar on Introduction to Asse",
"537,5370,Doctoral Seminar in Global Business",
"LAW,405,4051,The Death Penalty in America",
"408,4081,Law, Science, and Sustainability",
"413,3131,Government: The Nature, Functions, and L",
"500,5001,Civil Procedure",
"502,5021,Constitutional Law",
"504,5041,Contracts",
"506,5061,Criminal Law",
"508,5081,Lawyering",
"512,5121,Property",
"515,5151,Torts",
"600,6001,Accounting for Lawyers",
"601,6011,Administrative Law: The Law of the Regul",
"601,6012,Administrative Law Research",
"606,6061,Advanced Legal Research: International a",
"607,6071,Advanced Legal Research: U.S. Legal Rese",
"610,6101,Antitrust Law",
"612,6121,Bankruptcy",
"613,6131,Business Organizations",
"614,6141,Law and Ethics of Business Practice",
"615,6151,Chinese Legal Systems",
"616,6161,Comparative Law: The Civil Law Tradition",
"619,6191,Conflict of Laws",
"622,6221,Anglo-American Contract Law and Related ",
"623,6231,Copyright",
"624,6241,Corporate and White Collar Crime",
"624,6243,Comparative Corporate Governance: Curren",
"626,6261,Criminal Procedure I",
"630,6301,Directed Reading",
"631,6311,Education Law",
"633,6331,Employment Law",
"636,6361,Environmental Law",
"640,6401,Evidence",
"642,6421,Family Law",
"643,6431,Federal Courts",
"644,6441,Federal Income Taxation",
"646,6461,Financial Institutions",
"647,6471,Health Law",
"649,6491,The IPO and M  & A Processes",
"650,6501,Insurance Law",
"652,6521,International Business Transactions",
"653,6531,International Commercial Arbitration",
"659,6592,Labor Law, Practice, and Policy",
"660,6601,Land Use",
"662,6621,Law and Social Change: International Exp",
"662,6622,Law and Society",
"663,6631,Law for High-Growth Companies",
"664,6641,The Law Governing Lawyers",
"665,6651,Law of Branding and Advertising: Tradema",
"666,6661,The Law of the European Union",
"668,6681,International Law and Foreign",
"673,6731,Dispute Resolution: Negotiation, Mediati",
"674,6741,Online Legal Research",
"674,6742,Patent Law and Trade Secrets",
"676,6761,Principles of American Legal Writing",
"678,6781,Products Liability",
"679,6791,Public International Law",
"679,6792,Real Estate Transactions and Deal Struct",
"679,6793,Real Estate Finance for Lawyers",
"681,6811,Secured Transactions",
"682,6821,Securities Regulation",
"682,6822,Social Science and the Law",
"683,6831,Social Security Law",
"684,6841,Sports Law",
"686,6861,Supervised Teaching",
"687,6871,Supervised Writing",
"688,6881,Supervised Teaching and Supervised Writi",
"689,6891,Taxation of Corporations and Shareholder",
"692,6921,Trial Advocacy",
"694,6941,Trusts and Estates",
"698,6981,WTO and International Trade Law",
"700,7002,Advanced Civil Procedure: Trial and Appe",
"703,7031,Advanced Legal Research",
"705,7052,Advanced Persuasive Writing and Appellat",
"709,7091,Biblical Law",
"710,7101,Central Topics in Jurisprudence and Lega",
"714,7142,Comparative Law and Medical Ethics",
"716,7162,Contemporary American Jury",
"716,7164,Corporate Governance Seminar",
"716,7165,Criminal Law Theory",
"717,7171,Corruption Control",
"717,7172,Employment Discrimination",
"719,7191,The Impact of Digital Technology on Lega",
"726,7261,Federal Litigation Seminar",
"729,7291,Global and Regional Economic Integration",
"731,7311,Immigration and Refugee Law",
"732,7321,International Criminal Law",
"732,7322,International Tax Seminar",
"737,7371,Islamic Law and History",
"739,7391,Labor Arbitration Practice",
"740,7402,Law and Economics Meets Radical Imaginat",
"741,7411,Law and Higher Education",
"741,7412,Law and Humanities Colloquium",
"756,7561,Legal Aspects of Commercial Real Estate ",
"759,7591,Mergers and Acquisitions",
"759,7594,New York Civil Practice",
"760,7601,Organized-Crime Control",
"761,7611,Philosophical Foundations of Legal Ethic",
"763,7631,Pretrial Practice, Litigation Strategies",
"765,7652,The Sociology of the Legal Profession",
"767,7671,Race and Law in the U.S. Since 1890",
"774,7741,Separation of Powers",
"774,7742,Social Justice Lawyering",
"776,7761,Tax Policy",
"777,7772,Taking a Case Before an Administrative A",
"778,7783,Theories of Intellectual Property",
"780,7801,Asylum and Convention Against Torture Ap",
"780,7802,Capital Appellate Clinic",
"781,7811,Capital Punishment Clinic: Post-Convicti",
"781,7812,Child Advocacy Clinic",
"782,7821,Empire Justice Center: Domestic Violence",
"783,7833,Criminal Defense Trial Clinic",
"785,7855,International Human Rights Clinic",
"786,7861,Judicial Externship",
"787,7871,Labor Law Clinic",
"787,7872,Land Use, Development and Natural Resour",
"788,7881,Law Guardian Externship",
"790,7901,Legislative Externship",
"792,7921,Prosecution Trial Clinic",
"793,7931,Public Interest Clinic 1",
"793,7932,Public Interest Clinic 2",
"793,7933,Public Interest Clinic 3",
"796,7961,Water Law in Theory and Practice 1",
"799,7991,The Cornell Graduate Colloquium",
"899,8991,Thesis",
"990,9901,Graduate Research",
"NS,115,1150,Nutrition, Health, and Society",
"116,1160,Personalized Concepts and Controversies",
"120,1200,Nutrition and Health: Issues, Outlooks, ",
"122,1220,Nutrition and the Life Cycle",
"206,2060,Introduction to Global Health",
"222,2220,Maternal and Child Nutrition",
"245,2450,Social Science Perspectives on Food and ",
"247,2470,Food for Contemporary Living",
"260,2600,Introduction to Global Health",
"275,2750,Human Biology and Evolution",
"300,3000,Special Studies for Undergraduates",
"306,3060,Nutritional Problems of Developing Natio",
"315,3150,Obesity and the Regulation of Body Weigh",
"320,3200,Introduction to Human Biochemistry",
"331,3310,Physiological and Biochemical Bases of H",
"332,3320,Methods in Nutritional Sciences",
"341,3410,Human Anatomy and Physiology",
"345,3450,Introduction to Physicochemical and Biol",
"347,3470,Human Growth and Development: Biological",
"361,3610,Biology of Normal and Abnormal Behavior",
"361,3610,Biopsychology of Normal and Abnormal Beh",
"398,3980,Research in Human Nutrition and Health",
"400,4000,Directed Readings",
"401,4010,Empirical Research",
"402,4020,Supervised Fieldwork",
"403,4030,Teaching Apprenticeship",
"421,4210,Nutrition and Exercise",
"425,4250,Nutrition Communications and Counseling",
"431,4310,Mineral Nutrition and Chronic Disease",
"441,4410,Nutrition and Disease",
"442,4420,Implementation of Nutrition Care",
"445,4450,Food Policy for Developing Nations",
"450,4500,Public Health Nutrition",
"452,4520,Molecular Epidemiology and Dietary Marke",
"457,4570,Health, Poverty, and Inequality: A Globa",
"475,4750,Mechanisms Underlying Mammalian Developm",
"488,4880,Applied Dietetics in Food Service System",
"490,4900,Manipulating the Mouse Genome",
"499,4990,Honors Problem",
"600,6000,Special Problems for Graduate Students",
"603,6030,No title",
"605,6050,Nutritional Biochemistry Colloquium",
"607,6070,Nutrition as an Integrating Discipline: ",
"608,6080,Epigenetics",
"610,6100,Proteins and Amino Acids: Nutritional Re",
"611,6110,Molecular Toxicology",
"614,6140,Topics in Maternal and Child Nutrition",
"617,6170,Teaching Seminar",
"618,6180,Teaching Experience",
"619,6190,Field of Nutrition Seminar",
"625,6250,Community Nutrition in Action",
"630,6300,Anthropometric Assessment",
"631,6310,Micronutrients: Function, Homeostasis, a",
"632,6320,Regulation of Macronutrient Metabolism",
"635,6350,Introduction to Community Nutrition Rese",
"637,6370,Epidemiology of Nutrition",
"638,6380,Epidemiology of Nutrition Seminar",
"640,6400,Social Science Theories in Nutrition",
"642,6420,Globalization, Food Security, and Nutrit",
"644,6440,Community Nutrition Seminar",
"646,6460,Seminar in Physicochemical Aspects of Fo",
"650,6500,Assessing Food and Nutrition in a Social",
"660,6660,Special Topics in Nutrition",
"680,6800,International Nutrition Problems, Policy",
"685,6850,Empirical Methods for the Analysis of Ho",
"690,6900,Trace Element and Isotopic Analysis",
"698,6980,International Nutrition Seminar",
"699,6990,Special Topics in International Nutritio",
"702,7020,Seminar in Toxicology",
"703,7030,Seminar in Nutritional Sciences",
"899,8990,Master's Thesis and Research",
"999,9990,Doctoral Thesis and Research",
"AIR S,161,1161,The Foundations of the United States Air",
"162,1162,The Foundations of the United States Air",
"211,2211,The Evolution of USAF Air and Space Powe",
"212,2212,The Evolution of USAF Air and Space Powe",
"331,3331,Air Force Leadership Studies I",
"332,3332,Air Force Leadership Studies II",
"401,4401,National Security Affairs/Preparation fo",
"402,4402,National Security Affairs/Preparation fo",
"441,4441,Advanced Leadership Experiences,",
"442,4442,Precommissioning Laboratory",
"MIL S,101,1101,Foundations of Officership",
"102,1102,Foundations in Leadership",
"151,1111,MIL S 152",
"152,1111,No title",
"201,2201,Individual Leadership Studies/Teamwork",
"250,2250,Basic Mountaineering Course",
"251,2211,MIL S 252",
"252,2211,No title",
"260,2260,Basic Orienteering",
"270,2270,Basic Rifle Marksmanship",
"301,3301,Leadership and Problem Solving",
"302,3302,Leadership and Ethics",
"321,3321,Armed Conflict in Society",
"351,3311,MIL S 352",
"352,3311,No title",
"401,4401,Leadership and Management",
"402,4402,Officership",
"451,4411,MIL S 452",
"452,4411,No title",
"NAV S,101,1101,Fundamentals of Naval Science",
"102,1102,Sea Power and Maritime Affairs",
"157,1480,Small Boat Sailing",
"201,2201,Leadership and Management I",
"202,2201,Naval Ship Systems I",
"301,3050,Navigation",
"302,3302,Naval Operations",
"310,3310,Evolution of Warfare",
"401,4401,Naval Ships Systems II",
"402,4402,Leadership and Ethics",
"410,4410,Amphibious Warfare",
"VETCS,618,6180,Principles of Medical Imaging",
"701,7010,Pathophysiology of Orthopedic Surgery",
"702,7020,Pathophysiology of Respiratory and Cardi",
"703,7030,Surgical Principles and Surgery of the I",
"704,7040,Pathophysiology of Urogenital Surgery",
"706,7060,Pathophysiology of Neurologic Surgery",
"710,7100,Advanced Veterinary Anesthesiology I",
"711,7110,Advanced Veterinary Anesthesiology II",
"VETMI,299,2990,Research Opportunities in Microbiology a",
"315,3150,Basic Immunology",
"331,3310,General Parasitology",
"404,4040,Pathogenic Bacteriology and Mycology",
"409,4090,Principles of Virology",
"431,4310,Medical Parasitology",
"605,6050,Special Projects in Microbiology",
"620,6200,Research Fellowship in Microbiology and ",
"700,7000,The Biology of Animal and Plant Viruses",
"705,7050,Advanced Immunology",
"707,7070,Advanced Work in Bacteriology, Virology,",
"712,7120,Seminars in Infection and Immunity",
"713,7130,Biological and Biomedical Sciences Progr",
"719,7190,Immunology of Infectious Diseases",
"723,7230,Current Topics in Immunology",
"725,7250,Mechanisms of Microbial Pathogenesis",
"737,7370,Advanced Work in Animal Parasitology",
"770,7700,Advanced Work in Avian Diseases",
"772,7720,Advanced Work in Aquatic Animal Diseases",
"773,7730,Advanced Work in Avian Immunology",
"783,7830,Seminars in Parasitology",
"VETMM,470,4700,Biophysical Methods",
"571,5710,Biophysics Methods Advanced Laboratory",
"610,6100,Cellular and Molecular Pharmacology",
"611,6110,Systems Pharmacology",
"700,7000,Calcium as a Second Messenger in Cell Ac",
"701,7010,Organ-System Toxicology",
"703,7030,Receptor-Ligand Interactions",
"704,7040,CNS Synaptic Transmission",
"705,7050,Chemistry of Signal Transduction",
"706,7060,Growth FactorCoupled Signaling",
"707,7070,Protein NMR Spectroscopy",
"709,7090,Topics in Cancer Cell Biology",
"710,7100,Biological and Biomedical Graduate Progr",
"720,7200,Patch-Clamp Techniques in Biology",
"730,7300,Graduate Research in Pharmacology or Mol",
"740,7400,Special Projects and Research in Pharmac",
"760,7600,Directed Readings in Pharmacology",
"VTBMS,346,3460,No title",
"400,4000,A Genomic Approach to Studying Life",
"401,4010,Genomic Analysis",
"600,6000,Special Projects in Anatomy",
"610,6100,Genomes as Chromosomes",
"611,6110,Genomes Maintenance Mechanisms",
"612,6120,Overview of Model Genetic Organisms",
"620,6200,Research Fellowship in Biomedical Scienc",
"701,7010,Mouse Pathology and Transgenesis",
"702,7020,The Practice of Laboratory Animal Medici",
"703,7030,The Biology and Diseases of Laboratory A",
"713,7130,Cell Cycle Analysis",
"720,7200,Special Problems in Molecular and Integr",
"788,7880,Seminar in Surgical Pathology",
"VTMED,510,5100,The Animal Body",
"517,5701,Animals, Veterinarians, and Society",
"520,5200,Cell Biology and Genetics",
"522,5220,Neuroanatomy",
"527,5702,Animals, Veterinarians, and Society",
"530,5300,Function and Dysfunction: Part I",
"531,5310,Function and Dysfunction: Part II",
"537,5703,Animals, Veterinarians, and Society",
"540,5400,Host, Agent, and Defense",
"541,5410,Veterinary Parasitology",
"547,5704,Animals, Veterinarians, and Society",
"550,5500,Animal Health and Disease: Part I",
"551,5510,Animal Health and Disease: Part II",
"557,5705,Animals, Veterinarians, and Society",
"558,5706,Animals, Veterinarians, and Society",
"560,5600,Ambulatory and Production Medicine",
"561,5601,Community Practice Service: Medicine",
"563,5602,Small-Animal Medicine",
"564,5603,Small-Animal Soft Tissue Surgery Service",
"564,6611,Small-Animal Orthopedic Surgery Service",
"566,5604,Large-Animal Medicine Service",
"567,5605,Large-Animal Soft Tissue Surgery Service",
"567,6612,Large-Animal Orthopedic Surgery Service",
"568,5606,Anesthesiology Service",
"569,5607,Dermatology Service",
"570,5608,Ophthalmology Service",
"571,5609,Pathology Service",
"572,5610,Radiology Service",
"573,5612,Fourth-Year Seminar",
"601,6100,Anatomy of the Carnivore",
"602,6101,Anatomy of the Horse",
"603,6102,Anatomy of the Ruminant",
"605,6103,Comparative Anatomy: Pattern and Functio",
"607,6720,The Literature and Subject Matter of Nat",
"609,6120,Anatomy and Histology of Fish",
"610,6721,Veterinary Aspects of Avian Biology",
"613,6722,No title",
"614,6521,No title",
"615,6723,Veterinary Medicine in Developing Nation",
"616,6522,Diseases of Birds",
"622,6420,Foreign Infectious Diseases of Animals",
"624,6524,Feline Infectious Diseases",
"625,6525,Osteoarthritis",
"626,6421,Epidemiology of Infectious Diseases",
"628,6320,Clinical Pathology",
"630,6422,Clinical Biostatistics for Journal Reade",
"631,6423,Clinical Diagnostic Parasitology",
"632,6724,Senior Seminar",
"635,6726,Introduction to the Professional Literat",
"637,6727,Introduction to Community Practice Servi",
"638,6526,Veterinary Nutrition",
"639,6560,Small-Animal Veterinary Dentistry",
"640,6527,Veterinary Aspects of Captive Wildlife M",
"641,6424,Approaches to Problems in Canine Infecti",
"642,6321,Management of Fluid and Electrolyte Diso",
"644,6528,Equine Surgical and Anesthetic Technique",
"645,6529,Food-Animal Surgical and Anesthetic Tech",
"646,6530,Llama Tutorial",
"647,6531,Poisonous Plants",
"648,6728,Clinical Management of Native Wildlife",
"649,6729,Introduction to Equine Practice",
"652,6532,Avian Medicine and Surgery",
"653,6533,Advanced Equine Lameness",
"654,6534,Equine Reproduction",
"656,6538,Special Problems in Equine Medicine",
"657,6539,Disorders of Large-Animal Neonates",
"659,6540,Equine Soft-Tissue Surgery",
"661,6541,Surgical Pathology",
"665,6542,Medical and Surgical Problems of Dairy C",
"666,6500,Veterinary Clinical Oncology",
"667,6543,Special Problems in Small-Animal Medicin",
"668,6544,Practice Management",
"672,6324,Antimicrobial Drug Therapy in Veterinary",
"676,6547,Clinical Ophthalmology",
"677,6548,Dairy Production Medicine",
"678,6549,Small-Animal Theriogenology",
"679,6550,Clinical Pharmacology",
"680,6730,Behavior Problems of Horses",
"681,6731,Behavior Problems of Small Animals",
"692,6327,Current Concepts in Reproductive Biology",
"700,6600,Theriogenology Service",
"701,6601,Cardiology Service",
"702,6602,Laboratory-Animal Medicine",
"703,6603,Clinical Wildlife-, Exotic-, and Zoo-Ani",
"704,6604,Quality Milk",
"705,6605,Special Opportunities in Clinical Veteri",
"707,6607,Poultry Medicine and Production Rotation",
"708,6608,Clinical Oncology",
"709,5611,Small-Animal Clinical Emergency and Crit",
"710,6609,Animal Behavior Clinic",
"711,6610,Herd Health and Biosecurity Risk Evaluat",
"712,6613,Equine Specialty Rotation",
"713,6614,Large-Animal Clinical Emergency and Crit",
"714,6616,Veterinary Dentistry Service",
"715,6617,South American Camelid Specialty Rotatio",
"720,6425,Shelter Medicine I",
"721,6426,Timely Topics in Veterinary Parasitology",
"722,6427,Timely Topics in Veterinary Parasitology",
"726,6554,Reptile and Amphibian Medicine and Surge",
"730,6428,Vaccines: Theory and Practice",
"732,6438,Veterinary Clinical Toxicology",
"733,6429,Infectious Diseases and Management of Sw",
"735,6614,Special Topics in Ambulatory and Product",
"737,6239,Principles of Pathology",
"740,6430,Veterinary Perspectives on Pathogen Cont",
"741,6431,Microbial Safety of Animal-Based Foods",
"742,6555,Dairy Business Management and Health Eco",
"743,6732,Interaction with the Animal Health Diagn",
"744,6733,Veterinarians and Food-Animal Production",
"745,6556,Dairy Herd Health Epidemiology",
"746,6432,Fish Health Management",
"747,6557,Exotic Small Mammals as Pets",
"748,6222,Canine and Feline Medical Genetics",
"749,6433,Anaerobic Infections of Animals",
"750,6434,Shelter Medicine II",
"751,6558,Applied Dairy Nutrition for Practitioner",
"752,6558,Advanced Small-animal Clinical Oncology",
"753,6734,Companion Animal Welfare Issues",
"754,6735,Conservation Medicine",
"755,6630,Student Rounds in Radiology",
"756,6561,Advanced Imaging: Cross Sectional and Fu",
"757,6435,Forensic Science for Marine Biologists",
"VTPMD,299,2990,Undergraduate Research in Epidemiology",
"625,6250,Evolutionary Genomics of Bacteria",
"664,6640,Introduction to Epidemiology",
"665,6650,Study Designs",
"666,6660,Advanced Methods in Epidemiology",
"700,7000,Special Projects in Diagnostic Endocrino",
"701,7010,Special Projects in Infectious Diseases",
"702,7020,Special Topics in Infectious Diseases",
"704,7040,Master's-Level Thesis Research",
"707,7070,Clinical Biostatistics",
"708,7080,Epidemiology Seminar Series",
"766,7660,No title",
"769,7690,Doctoral-Level Thesis Research",
"799,7990,Independent Studies in Epidemiology",
"11111,11111,title"
);
   
   
