From 98ef7e237ef8d5ac5f45cce65004453abc3d3604 Mon Sep 17 00:00:00 2001 From: Zac Wood Date: Sat, 2 Feb 2019 12:17:13 -0500 Subject: [PATCH] Fixes the broken API methods which didn't filter by semester --- .../api/course_listings_controller.rb | 16 +- .../api/course_sections_controller.rb | 41 +- .../app/controllers/api/courses_controller.rb | 26 +- schedules/courses.html | 10678 ---------------- schedules/help | 4866 ------- .../api/course_listings_controller_test.rb | 16 +- .../api/course_sections_controller_test.rb | 5 +- .../api/courses_controller_test.rb | 6 +- 8 files changed, 84 insertions(+), 15570 deletions(-) delete mode 100644 schedules/courses.html delete mode 100644 schedules/help diff --git a/schedules/app/controllers/api/course_listings_controller.rb b/schedules/app/controllers/api/course_listings_controller.rb index d775528..40307e7 100644 --- a/schedules/app/controllers/api/course_listings_controller.rb +++ b/schedules/app/controllers/api/course_listings_controller.rb @@ -3,13 +3,13 @@ class API::CourseListingsController < ApplicationController short 'Working with courses and associated sections' end - api :GET, '/course_listings', "Get all available courses and their sections" - param :subject, String, desc: 'Course subject, e.g. "CS" or "ACCT"' - param :number, Integer, desc: 'Course number, e.g. "112"' - def index - # Make a separate list so that we can include sections - @courses = API::CourseListingsHelper::CourseListing.wrap(Course.fetch(params).all) + # api :GET, '/course_listings', "Get all available courses and their sections" + # param :subject, String, desc: 'Course subject, e.g. "CS" or "ACCT"' + # param :number, Integer, desc: 'Course number, e.g. "112"' + # def index + # # Make a separate list so that we can include sections + # @courses = API::CourseListingsHelper::CourseListing.wrap(Course.fetch(params).all) - render json: @courses - end + # render json: @courses + # end end diff --git a/schedules/app/controllers/api/course_sections_controller.rb b/schedules/app/controllers/api/course_sections_controller.rb index f424676..1055890 100644 --- a/schedules/app/controllers/api/course_sections_controller.rb +++ b/schedules/app/controllers/api/course_sections_controller.rb @@ -9,10 +9,43 @@ class API::CourseSectionsController < ApplicationController param :course_id, Integer, desc: "Only get the course sections belonging to the course with this ID" param :crn, String, desc: "Get the course section with this CRN" param :instructor, String, desc: "Get course sections being taught by this instructor" - param :query, String, desc: 'A generic query ex. "CS 110"' - def index - @sections = CourseSection.fetch(params).all - render json: @sections + @sections = CourseSection + .select('course_sections.*, courses.semester_id, instructors.name AS instructor_name') + .joins(:course).where('courses.semester_id = ?', @semester.id) + .joins(:instructor) + + if params.key?(:course_id) + @sections = @sections.where(course_id: params[:course_id]) + end + + if params.key?(:crn) + @sections = @sections.where(crn: params[:crn]) + end + + if params.key?(:instructor) + @sections = @sections.where('UPPER(instructors.name) LIKE UPPER(?)', "%#{params[:instructor]}%") + end + + # @sections = CourseSection.fetch(params).all + res = @sections.map do |s| + { + id: s.id, + semester_id: s.semester_id, + course_id: s.course_id, + name: s.name, + crn: s.crn, + title: s.title, + instructor_name: s.instructor_name, + section_type: s.section_type, + start_date: s.start_date, + end_date: s.end_date, + days: s.days, + start_time: s.start_time, + end_time: s.end_time, + location: s.location, + } + end + render json: res end end diff --git a/schedules/app/controllers/api/courses_controller.rb b/schedules/app/controllers/api/courses_controller.rb index 4b90f85..3408e3b 100644 --- a/schedules/app/controllers/api/courses_controller.rb +++ b/schedules/app/controllers/api/courses_controller.rb @@ -8,8 +8,30 @@ class API::CoursesController < ApplicationController param :subject, String, desc: 'Course subject, e.g. "CS" or "ACCT"' param :course_number, Integer, desc: 'Course number, e.g. "112"' def index - @courses = Course.fetch(params).all - render json: @courses + @courses = Course.where(semester_id: params[:semester_id]) + + if params.key?(:subject) + @courses = @courses.where("UPPER(courses.subject) LIKE ?", "%#{params[:subject]}%") + end + + if params.key?(:course_number) + @courses = @courses.where(course_number: params[:course_number]) + end + + result = @courses.map do |c| + { + id: c.id, + semester_id: c.semester_id, + subject: c.subject, + course_number: c.course_number, + description: c.description, + credits: c.credits, + title: c.title, + prereqs: c.prereqs + } + end + + render json: result end api :GET, '/courses/:id', "Get a list of all course sections for the course with the given id." diff --git a/schedules/courses.html b/schedules/courses.html deleted file mode 100644 index 3ac17d6..0000000 --- a/schedules/courses.html +++ /dev/null @@ -1,10678 +0,0 @@ - - - - - - -Class Schedule Listing - - - - - -
-George Mason University -
-
-
-
- - - - - -
-
-  -
-

- -HELP -| -EXIT - -

-
-
- - - - - - - - - -
-

Class Schedule Listing

-
-  -

-

-Fall 2018
-Aug 28, 2018
-
-
Transparent Image
- -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Sections Found
Basic Concepts in Psychology - 70514 - PSYC 100 - 001
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: For reporting purposes only., Mason Core (All), Social/Behavioral Sciences, Undergraduate - Lower Division -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class9:00 am - 10:15 amMWEnterprise Hall 80Aug 27, 2018 - Dec 19, 2018LectureAli Momen (P)E-mail
-
-
-
Basic Concepts in Psychology - 70515 - PSYC 100 - 002
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: For reporting purposes only., Mason Core (All), Social/Behavioral Sciences, Undergraduate - Lower Division -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class7:20 pm - 10:00 pmTLecture Hall 1Aug 27, 2018 - Dec 19, 2018LectureRaymond J Lattanzio (P)E-mail
-
-
-
Basic Concepts in Psychology - 74405 - PSYC 100 - DL1
-PSYC 100 DL1 is a distance education section. -Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: For reporting purposes only., Mason Core (All), Social/Behavioral Sciences, Undergraduate - Lower Division -
-
-Online Campus -
-Lecture Schedule Type -
-Off-campus F2F 0-1% Async Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
ClassTBA ON LINEAug 27, 2018 - Dec 19, 2018LectureKeith D Renshaw (P)E-mail
-
-
-
Basic Concepts in Psychology - 83225 - PSYC 100 - K01
-Associated Term: Fall 2018 -
-
-Registration Dates: May 27, 2018 to Sep 03, 2018 -
-Drop without Tuition Penalty Dates: -May 27, 2018 to Sep 03, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: -Sep 04, 2018 to Sep 09, 2018 -
-Attributes: For reporting purposes only., Mason Core (All), Social/Behavioral Sciences, Undergraduate - Lower Division -
-
-GMU Korea Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class12:00 pm - 1:15 pmTRMason Korea G203Aug 27, 2018 - Dec 20, 2018LectureVias C Nicolaides (P)E-mail
-
-
-
Developmental Psychology - 72403 - PSYC 211 - 001
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Mason Core (All), Social/Behavioral Sciences, Undergraduate - Lower Division -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class10:30 am - 11:45 amMWInnovation Hall 136Aug 27, 2018 - Dec 19, 2018LectureNicholas Michael Hertz (P)E-mail
-
-
-
Developmental Psychology - 70517 - PSYC 211 - 002
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Mason Core (All), Social/Behavioral Sciences, Undergraduate - Lower Division -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class1:30 pm - 2:45 pmMWPlanetary Hall 206Aug 27, 2018 - Dec 19, 2018LectureNicholas Michael Hertz (P)E-mail
-
-
-
Developmental Psychology - 81114 - PSYC 211 - 004
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Mason Core (All), Social/Behavioral Sciences, Undergraduate - Lower Division -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class7:20 pm - 10:00 pmMKrug Hall 5Aug 27, 2018 - Dec 19, 2018LectureAmy Hansen (P)E-mail
-
-
-
Developmental Psychology - 81115 - PSYC 211 - 005
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Mason Core (All), Social/Behavioral Sciences, Undergraduate - Lower Division -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class12:00 pm - 1:15 pmTRKrug Hall 204Aug 27, 2018 - Dec 19, 2018LectureBrittany Thompson (P)E-mail
-
-
-
Developmental Psychology - 73631 - PSYC 211 - DL1
-PSYC 211 DL1 is a distance education section. -Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Mason Core (All), Social/Behavioral Sciences, Undergraduate - Lower Division -
-
-Online Campus -
-Lecture Schedule Type -
-Off-campus F2F 0-1% Async Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
ClassTBA ON LINEAug 27, 2018 - Dec 19, 2018LectureJordan Greenburg (P)E-mail
-
-
-
Developmental Psychology - 82912 - PSYC 211 - DL2
-PSYC 211 DL2 is a distance education section. -Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Mason Core (All), Social/Behavioral Sciences, Undergraduate - Lower Division -
-
-Online Campus -
-Lecture Schedule Type -
-Off-campus F2F 0-1% Async Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
ClassTBA ON LINEAug 27, 2018 - Dec 19, 2018LectureRobin Shusko (P)E-mail
-
-
-
Developmental Psychology - 83209 - PSYC 211 - DL3
-PSYC 211 DL3 is a distance education section. -Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Mason Core (All), Social/Behavioral Sciences, Undergraduate - Lower Division -
-
-Online Campus -
-Lecture Schedule Type -
-Off-campus F2F 0-1% Async Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
ClassTBA ON LINEAug 27, 2018 - Dec 19, 2018LectureMayra Parada (P)E-mail
-
-
-
Social Psychology - 70520 - PSYC 231 - 001
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Mason Core (All), Social/Behavioral Sciences, Undergraduate - Lower Division -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class9:00 am - 10:15 amMWRobinson Hall B220Aug 27, 2018 - Dec 19, 2018LectureElisa Torres (P)E-mail
-
-
-
Social Psychology - 70522 - PSYC 231 - 003
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Mason Core (All), Social/Behavioral Sciences, Undergraduate - Lower Division -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class10:30 am - 11:45 amTRKrug Hall 204Aug 27, 2018 - Dec 19, 2018LectureJohn H Riskind (P)E-mail
-
-
-
Social Psychology - 70523 - PSYC 231 - 004
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Mason Core (All), Social/Behavioral Sciences, Undergraduate - Lower Division -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class1:30 pm - 4:10 pmTRobinson Hall B208Aug 27, 2018 - Dec 19, 2018LectureJune P Tangney (P)E-mail
-
-
-
Social Psychology - 79553 - PSYC 231 - 005
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Mason Core (All), Social/Behavioral Sciences, Undergraduate - Lower Division -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class3:00 pm - 4:15 pmMWKrug Hall 204Aug 27, 2018 - Dec 19, 2018LectureMichael Shulman (P)E-mail
-
-
-
Social Psychology - 70521 - PSYC 231 - DL1
-PSYC 231 DL1 is a distance education section. -Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Mason Core (All), Social/Behavioral Sciences, Undergraduate - Lower Division -
-
-Online Campus -
-Lecture Schedule Type -
-Off-campus F2F 0-1% Async Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
ClassTBA ON LINEAug 27, 2018 - Dec 19, 2018LectureElisa Torres (P)E-mail
-
-
-
Social Psychology - 83266 - PSYC 231 - DL2
-PSYC 231 DL2 is a distance education section. -Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Mason Core (All), Social/Behavioral Sciences, Undergraduate - Lower Division -
-
-Online Campus -
-Lecture Schedule Type -
-Off-campus F2F 0-1% Async Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
ClassTBA ON LINEAug 27, 2018 - Dec 19, 2018LectureMichael Shulman (P)E-mail
-
-
-
Statistics in Psychology - 70524 - PSYC 300 - 001
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 4.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class10:30 am - 11:45 amMWNguyen Engineering Building 1110Aug 27, 2018 - Dec 19, 2018LectureErin Q Murdoch (P)E-mail
-
-
-
Statistics in Psychology - 70528 - PSYC 300 - 002
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 4.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class12:00 pm - 1:15 pmMWInnovation Hall 133Aug 27, 2018 - Dec 19, 2018LectureErin Q Murdoch (P)E-mail
-
-
-
Statistics in Psychology - 74408 - PSYC 300 - 003
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 4.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class3:00 pm - 4:15 pmTRRobinson Hall B108Aug 27, 2018 - Dec 19, 2018LectureMichael E Hurley (P)E-mail
-
-
-
Statistics in Psychology - 70532 - PSYC 300 - 004
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 4.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class1:30 pm - 2:45 pmTRKrug Hall 19Aug 27, 2018 - Dec 19, 2018LectureMartin Wiener (P)E-mail
-
-
-
Statistics in Psychology - 70537 - PSYC 300 - 005
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 4.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class7:20 pm - 10:00 pmMInnovation Hall 209Aug 27, 2018 - Dec 19, 2018LectureMartin Wiener (P)E-mail
-
-
-
Lab for Lecture 001 - 70525 - PSYC 300 - 201
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division -
-
-Fairfax Campus -
-Laboratory Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 0.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class8:30 am - 10:20 amRInnovation Hall 317Aug 27, 2018 - Dec 19, 2018LaboratoryJillian D Nelson (P)E-mail
-
-
-
Lab for Lecture 001 - 70526 - PSYC 300 - 202
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division -
-
-Fairfax Campus -
-Laboratory Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 0.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class10:30 am - 12:20 pmRInnovation Hall 317Aug 27, 2018 - Dec 19, 2018LaboratoryShea Fyffe (P)E-mail
-
-
-
Lab for Lecture 002 - 70529 - PSYC 300 - 203
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division -
-
-Fairfax Campus -
-Laboratory Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 0.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class2:30 pm - 4:20 pmWInnovation Hall 317Aug 27, 2018 - Dec 19, 2018LaboratoryMichael Waltrip (P)E-mail
-
-
-
Lab for Lecture 002 - 70531 - PSYC 300 - 204
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division -
-
-Fairfax Campus -
-Laboratory Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 0.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class4:30 pm - 6:20 pmWInnovation Hall 333Aug 27, 2018 - Dec 19, 2018LaboratoryMichael Waltrip (P)E-mail
-
-
-
Lab for Lecture 003 - 74538 - PSYC 300 - 205
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division -
-
-Fairfax Campus -
-Laboratory Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 0.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class8:30 am - 10:20 amFInnovation Hall 333Aug 27, 2018 - Dec 19, 2018LaboratoryShea Fyffe (P)E-mail
-
-
-
Lab for Lecture 003 - 74539 - PSYC 300 - 206
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division -
-
-Fairfax Campus -
-Laboratory Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 0.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class10:30 am - 12:20 pmFInnovation Hall 203Aug 27, 2018 - Dec 19, 2018LaboratoryJason Feinberg (P)E-mail
-
-
-
Lab for Lecture 004 - 70534 - PSYC 300 - 207
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division -
-
-Fairfax Campus -
-Laboratory Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 0.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class12:30 pm - 2:20 pmMInnovation Hall 317Aug 27, 2018 - Dec 19, 2018LaboratoryTiancheng Chen (P)E-mail
-
-
-
Lab for Lecture 004 - 70535 - PSYC 300 - 208
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division -
-
-Fairfax Campus -
-Laboratory Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 0.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class2:30 pm - 4:20 pmMInnovation Hall 317Aug 27, 2018 - Dec 19, 2018LaboratoryAlenamie N Alegrado (P)E-mail
-
-
-
Lab for Lecture 005 - 70538 - PSYC 300 - 209
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division -
-
-Fairfax Campus -
-Laboratory Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 0.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class6:00 pm - 7:50 pmWInnovation Hall 317Aug 27, 2018 - Dec 19, 2018LaboratoryLauren Nicole Padgett Campbell (P)E-mail
-
-
-
Lab for Lecture 005 - 70539 - PSYC 300 - 210
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division -
-
-Fairfax Campus -
-Laboratory Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 0.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class8:00 pm - 9:50 pmWInnovation Hall 317Aug 27, 2018 - Dec 19, 2018LaboratoryDaSean Young (P)E-mail
-
-
-
Research Methods in Psyc - 71491 - PSYC 301 - 001
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division, Writing Intensive in Major -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 4.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class9:00 am - 10:15 amMWInnovation Hall 215GAug 27, 2018 - Dec 19, 2018LectureBrianna Lee Artz (P)E-mail
-
-
-
Research Methods in Psyc - 81116 - PSYC 301 - 002
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division, Writing Intensive in Major -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 4.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class12:00 pm - 1:15 pmMWNguyen Engineering Building 1108Aug 27, 2018 - Dec 19, 2018LectureElizabeth Gayle Esser-Adomako (P)E-mail
-
-
-
Research Methods in Psyc - 81122 - PSYC 301 - 003
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division, Writing Intensive in Major -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 4.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class7:20 pm - 10:00 pmRInnovation Hall 215GAug 27, 2018 - Dec 19, 2018LectureMarcia J McKinley (P)E-mail
-
-
-
Research Methods in Psyc - 70542 - PSYC 301 - 004
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division, Writing Intensive in Major -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 4.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class10:30 am - 11:45 amTRInnovation Hall 207Aug 27, 2018 - Dec 19, 2018LectureErin Q Murdoch (P)E-mail
-
-
-
Research Methods in Psyc - 83093 - PSYC 301 - 005
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division, Writing Intensive in Major -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 4.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class3:00 pm - 4:15 pmMWRobinson Hall B224Aug 27, 2018 - Dec 19, 2018LectureAllyson B Patterson (P)E-mail
-
-
-
Lab for Lecture 001 - 70544 - PSYC 301 - 201
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division, Writing Intensive in Major -
-
-Fairfax Campus -
-Laboratory Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 0.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class8:30 am - 10:20 amTInnovation Hall 203Aug 27, 2018 - Dec 19, 2018LaboratoryEleanor A Jones (P)E-mail
-
-
-
Lab for Lecture 001 - 70545 - PSYC 301 - 202
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division, Writing Intensive in Major -
-
-Fairfax Campus -
-Laboratory Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 0.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class10:30 am - 12:20 pmTInnovation Hall 317Aug 27, 2018 - Dec 19, 2018LaboratoryKristina Marisa Volgenau (P)E-mail
-
-
-
Lab for Lecture 002 - 81117 - PSYC 301 - 203
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division, Writing Intensive in Major -
-
-Fairfax Campus -
-Laboratory Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 0.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class12:30 pm - 2:20 pmRInnovation Hall 317Aug 27, 2018 - Dec 19, 2018LaboratoryRichard Harry Ogoe (P)E-mail
-
-
-
Lab for Lecture 002 - 81118 - PSYC 301 - 204
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division, Writing Intensive in Major -
-
-Fairfax Campus -
-Laboratory Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 0.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class2:30 pm - 4:20 pmRInnovation Hall 317Aug 27, 2018 - Dec 19, 2018LaboratoryLauren Nicole Padgett Campbell (P)E-mail
-
-
-
Lab for Lecture 003 - 81123 - PSYC 301 - 205
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division, Writing Intensive in Major -
-
-Fairfax Campus -
-Laboratory Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 0.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class6:00 pm - 7:50 pmTInnovation Hall 327Aug 27, 2018 - Dec 19, 2018LaboratoryJasmine Sierra Dang (P)E-mail
-
-
-
Lab for Lecture 003 - 81124 - PSYC 301 - 206
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division, Writing Intensive in Major -
-
-Fairfax Campus -
-Laboratory Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 0.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class8:00 pm - 9:50 pmTInnovation Hall 327Aug 27, 2018 - Dec 19, 2018LaboratoryKara E Hokes (P)E-mail
-
-
-
Lab for Lecture 004 - 70550 - PSYC 301 - 207
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division, Writing Intensive in Major -
-
-Fairfax Campus -
-Laboratory Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 0.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class8:30 am - 10:20 amFInnovation Hall 203Aug 27, 2018 - Dec 19, 2018LaboratoryKara E Hokes (P)E-mail
-
-
-
Lab for Lecture 004 - 70551 - PSYC 301 - 208
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division, Writing Intensive in Major -
-
-Fairfax Campus -
-Laboratory Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 0.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class10:30 am - 12:20 pmFInnovation Hall 205Aug 27, 2018 - Dec 19, 2018LaboratoryRachel T Nguyen (P)E-mail
-
-
-
Lab for Lecture 005 - 83094 - PSYC 301 - 209
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division, Writing Intensive in Major -
-
-Fairfax Campus -
-Laboratory Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 0.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class8:30 am - 10:20 amMInnovation Hall 203Aug 27, 2018 - Dec 19, 2018LaboratoryRachel T Nguyen (P)E-mail
-
-
-
Lab for Lecture 005 - 83095 - PSYC 301 - 210
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division, Writing Intensive in Major -
-
-Fairfax Campus -
-Laboratory Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 0.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class8:30 am - 10:20 amWInnovation Hall 203Aug 27, 2018 - Dec 19, 2018LaboratoryMarissa Davila (P)E-mail
-
-
-
Lab for Lecture DL1 - 81120 - PSYC 301 - 2D1
-PSYC 301 2D1 is a distance education section. -Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division, Writing Intensive in Major -
-
-Online Campus -
-Laboratory Schedule Type -
-Off-campus F2F 0-1% Async Instructional Method -
- 0.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
ClassTBA ON LINEAug 27, 2018 - Dec 19, 2018LaboratoryKelsey Lynn Mauro (P)E-mail
-
-
-
Lab for Lecture DL1 - 81121 - PSYC 301 - 2D2
-PSYC 301 2D2 is a distance education section. -Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division, Writing Intensive in Major -
-
-Online Campus -
-Laboratory Schedule Type -
-Off-campus F2F 0-1% Async Instructional Method -
- 0.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
ClassTBA ON LINEAug 27, 2018 - Dec 19, 2018LaboratoryKelsey Lynn Mauro (P)E-mail
-
-
-
Research Methods in Psyc - 81119 - PSYC 301 - DL1
-PSYC 301 DL1 is a distance education section. -Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division, Writing Intensive in Major -
-
-Online Campus -
-Lecture Schedule Type -
-Off-campus F2F 0-1% Async Instructional Method -
- 4.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
ClassTBA ON LINEAug 27, 2018 - Dec 19, 2018LectureOlga Kornienko (P)E-mail
-
-
-
Principles of Learning - 71492 - PSYC 304 - 001
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division, Writing Intensive in Major -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 4.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class9:00 am - 10:15 amTRRobinson Hall B108Aug 27, 2018 - Dec 19, 2018LectureKristen M Craven (P)E-mail
-
-
-
Lab for Lecture 001 - 78989 - PSYC 304 - 201
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division, Writing Intensive in Major -
-
-Fairfax Campus -
-Laboratory Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 0.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class8:30 am - 10:20 amMInnovation Hall 205Aug 27, 2018 - Dec 19, 2018LaboratoryVjosa Poshka (P)E-mail
-
-
-
Lab for Lecture 001 - 81125 - PSYC 304 - 202
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division, Writing Intensive in Major -
-
-Fairfax Campus -
-Laboratory Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 0.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class10:30 am - 12:20 pmMInnovation Hall 317Aug 27, 2018 - Dec 19, 2018LaboratoryLindsay Shaffer (P)E-mail
-
-
-
Lab for Lecture DL1 - 78393 - PSYC 304 - 2D1
-PSYC 304 2D1 is a distance education section. -Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division, Writing Intensive in Major -
-
-Online Campus -
-Laboratory Schedule Type -
-Off-campus F2F 0-1% Async Instructional Method -
- 0.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
ClassTBA ON LINEAug 27, 2018 - Dec 19, 2018LaboratoryLogan J Woodhouse (P)E-mail
-
-
-
Lab for Lecture DL1 - 78394 - PSYC 304 - 2D2
-PSYC 304 2D2 is a distance education section. -Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division, Writing Intensive in Major -
-
-Online Campus -
-Laboratory Schedule Type -
-Off-campus F2F 0-1% Async Instructional Method -
- 0.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
ClassTBA ON LINEAug 27, 2018 - Dec 19, 2018LaboratoryBrianna Lee Artz (P)E-mail
-
-
-
Principles of Learning - 78395 - PSYC 304 - DL1
-PSYC 304 DL1 is a distance education section. -Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division, Writing Intensive in Major -
-
-Online Campus -
-Lecture Schedule Type -
-Off-campus F2F 0-1% Async Instructional Method -
- 4.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
ClassTBA ON LINEAug 27, 2018 - Dec 19, 2018LectureDoris Bitler Davis (P)E-mail
-
-
-
Sens/Percept/Info Proc - 71717 - PSYC 309 - 001
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division, Writing Intensive in Major -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 4.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class10:30 am - 11:45 amTRKrug Hall 19Aug 27, 2018 - Dec 19, 2018LectureMatthew S Peterson (P)E-mail
-
-
-
Lab for Lecture 001 - 81126 - PSYC 309 - 201
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division, Writing Intensive in Major -
-
-Fairfax Campus -
-Laboratory Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 0.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class8:30 am - 10:20 amFInnovation Hall 205Aug 27, 2018 - Dec 19, 2018LaboratoryShane Kelly (P)E-mail
-
-
-
Lab for Lecture 001 - 71719 - PSYC 309 - 202
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division, Writing Intensive in Major -
-
-Fairfax Campus -
-Laboratory Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 0.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class10:30 am - 12:20 pmFInnovation Hall 326Aug 27, 2018 - Dec 19, 2018LaboratoryEric L Russell (P)E-mail
-
-
-
Educational Psychology - 74409 - PSYC 312 - 001
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class12:00 pm - 1:15 pmTRPlanetary Hall 122Aug 27, 2018 - Dec 19, 2018LectureLaura Rose Elizabeth Stokes (P)E-mail
-
-
-
Child Development - 70552 - PSYC 313 - 001
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class3:00 pm - 4:15 pmTRKrug Hall 204Aug 27, 2018 - Dec 19, 2018LectureKarin Alicia Pedemonte (P)E-mail
-
-
-
Child Development - 74410 - PSYC 313 - DL1
-PSYC 313 DL1 is a distance education section. -Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division -
-
-Online Campus -
-Lecture Schedule Type -
-Off-campus F2F 0-1% Async Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
ClassTBA ON LINEAug 27, 2018 - Dec 19, 2018LectureMarcia J McKinley (P)E-mail
-
-
-
Adolescent Development - 70554 - PSYC 314 - 001
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class3:00 pm - 4:15 pmMWRobinson Hall B111Aug 27, 2018 - Dec 19, 2018LectureOlga Kornienko (P)E-mail
-
-
-
Adolescent Development - 74411 - PSYC 314 - DL1
-PSYC 314 DL1 is a distance education section. -Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division -
-
-Online Campus -
-Lecture Schedule Type -
-Off-campus F2F 0-1% Async Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
ClassTBA ON LINEAug 27, 2018 - Dec 19, 2018LectureKristina N Pak (P)E-mail
-
-
-
Cognitive Psychology - 70556 - PSYC 317 - 001
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class12:00 pm - 1:15 pmMWKrug Hall 7Aug 27, 2018 - Dec 19, 2018LectureCandice T Stanfield-Wiswell (P)E-mail
-
-
-
Cognitive Psychology - 72213 - PSYC 317 - 003
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class7:20 pm - 10:00 pmWKrug Hall 204Aug 27, 2018 - Dec 19, 2018LectureElizabeth Gayle Esser-Adomako (P)E-mail
-
-
-
Cognitive Psychology - 81127 - PSYC 317 - 004
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class1:30 pm - 2:45 pmTRRobinson Hall B224Aug 27, 2018 - Dec 19, 2018LectureAbdulaziz Abubshait (P)E-mail
-
-
-
Cognitive Psychology - 81128 - PSYC 317 - 005
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class1:30 pm - 2:45 pmMWPeterson Hall 1105Aug 27, 2018 - Dec 19, 2018LectureKerry Kelso (P)E-mail
-
-
-
Cognitive Psychology - 71946 - PSYC 317 - DL1
-PSYC 317 DL1 is a distance education section. -Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division -
-
-Online Campus -
-Lecture Schedule Type -
-Off-campus F2F 0-1% Async Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
ClassTBA ON LINEAug 27, 2018 - Dec 19, 2018LectureWilliam S Helton (P)E-mail
-
-
-
Cognitive Psychology - 83210 - PSYC 317 - DL2
-PSYC 317 DL2 is a distance education section. -Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division -
-
-Online Campus -
-Lecture Schedule Type -
-Off-campus F2F 0-1% Async Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
ClassTBA ON LINEAug 27, 2018 - Dec 19, 2018LectureTyler H Shaw (P)E-mail
-
-
-
Psyc Tests and Measurement - 72434 - PSYC 320 - 001
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 4.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class12:00 pm - 1:15 pmTRPlanetary Hall 124Aug 27, 2018 - Dec 19, 2018LecturePhilseok Lee (P)E-mail
-
-
-
Lab for Lecture 001 - 81140 - PSYC 320 - 202
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division -
-
-Fairfax Campus -
-Laboratory Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 0.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class2:30 pm - 4:20 pmRInnovation Hall 327Aug 27, 2018 - Dec 19, 2018LaboratoryLinden T Hughes (P)E-mail
-
-
-
Lab for Lecture 001 - 82725 - PSYC 320 - 203
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division -
-
-Fairfax Campus -
-Laboratory Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 0.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class10:30 am - 12:20 pmWInnovation Hall 205Aug 27, 2018 - Dec 19, 2018LaboratoryLinden T Hughes (P)E-mail
-
-
-
Clinical Psychology - 71867 - PSYC 321 - 001
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class10:30 am - 11:45 amMWInnovation Hall 208Aug 27, 2018 - Dec 19, 2018LectureJerome Short (P)E-mail
-
-
-
Clinical Psychology - 70559 - PSYC 321 - DL1
-PSYC 321 DL1 is a distance education section. -Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division -
-
-Online Campus -
-Lecture Schedule Type -
-Off-campus F2F 0-1% Async Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
ClassTBA ON LINEAug 27, 2018 - Dec 19, 2018LectureJerome Short (P)E-mail
-
-
-
Personality Theory - 74412 - PSYC 324 - 001
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class10:30 am - 11:45 amTRArt and Design Building 2026Aug 27, 2018 - Dec 19, 2018LectureSeth Kaplan (P)E-mail
-
-
-
Abnormal Psychology - 70562 - PSYC 325 - 001
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class9:00 am - 10:15 amMWInnovation Hall 134Aug 27, 2018 - Dec 19, 2018LectureJohn Hawley (P)E-mail
-
-
-
Abnormal Psychology - 70564 - PSYC 325 - 003
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class3:00 pm - 4:15 pmMWNguyen Engineering Building 1108Aug 27, 2018 - Dec 19, 2018LectureStefanie F Goncalves (P)E-mail
-
-
-
Abnormal Psychology - 70566 - PSYC 325 - 004
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class7:20 pm - 10:00 pmMKrug Hall 204Aug 27, 2018 - Dec 19, 2018LectureSarah D'Elia (P)E-mail
-
-
-
Abnormal Psychology - 78396 - PSYC 325 - 005
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class1:30 pm - 2:45 pmTRKrug Hall 204Aug 27, 2018 - Dec 19, 2018LectureJennifer M Loya (P)E-mail
-
-
-
Abnormal Psychology - 74414 - PSYC 325 - DL1
-PSYC 325 DL1 is a distance education section. -Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division -
-
-Online Campus -
-Lecture Schedule Type -
-Off-campus F2F 0-1% Async Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
ClassTBA ON LINEAug 27, 2018 - Dec 19, 2018LecturePaige J Trojanowski (P)E-mail
-
-
-
Abnormal Psychology - 83267 - PSYC 325 - DL2
-PSYC 325 DL2 is a distance education section. -Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division -
-
-Online Campus -
-Lecture Schedule Type -
-Off-campus F2F 0-1% Async Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
ClassTBA ON LINEAug 27, 2018 - Dec 19, 2018LectureWilliam R Kochen (P)E-mail
-
-
-
Therapeutic Communicat Skills - 70567 - PSYC 326 - 001
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class9:00 am - 10:15 amTRRobinson Hall B368Aug 27, 2018 - Dec 19, 2018LectureLauren B Cattaneo (P)E-mail
-
-
-
Psychology in the Community - 70568 - PSYC 327 - 001
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: For reporting purposes only., Undergraduate - Upper Division -
-
-Fairfax Campus -
-Internship Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class12:00 pm - 1:15 pmMWRobinson Hall B122Aug 27, 2018 - Dec 19, 2018InternshipMichael E Hurley (P)E-mail
-
-
-
Psychology in the Community - 76815 - PSYC 328 - 002
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: For reporting purposes only., Undergraduate - Upper Division -
-
-Fairfax Campus -
-Internship Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 1.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class1:30 pm - 2:45 pmMWRobinson Hall B102Aug 27, 2018 - Dec 19, 2018InternshipMichael E Hurley (P)E-mail
-
-
-
Industrial/Organizational Psyc - 78375 - PSYC 333 - 001
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class1:30 pm - 2:45 pmMWNguyen Engineering Building 1109Aug 27, 2018 - Dec 19, 2018LectureLois E Tetrick (P)E-mail
-
-
-
Industrial/Organizational Psyc - 78376 - PSYC 333 - 002
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class9:00 am - 10:15 amTRArt and Design Building L008Aug 27, 2018 - Dec 19, 2018LectureReeshad S Dalal (P)E-mail
-
-
-
Human Factors Psychology - 78397 - PSYC 340 - 002
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class12:00 pm - 1:15 pmTRKrug Hall 7Aug 27, 2018 - Dec 19, 2018LectureShane Kelly (P)E-mail
-
-
-
Psychology of Gender - 73805 - PSYC 362 - DL1
-PSYC 362 DL1 is a distance education section. -Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division -
-
-Online Campus -
-Lecture Schedule Type -
-Off-campus F2F 0-1% Async Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
ClassTBA ON LINEAug 27, 2018 - Dec 19, 2018LectureHannah Markell (P)E-mail
-
-
-
Physiological Psychology - 70569 - PSYC 372 - 001
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class10:30 am - 11:45 amMWRobinson Hall B220Aug 27, 2018 - Dec 19, 2018LectureLinda Doss Chrosniak (P)E-mail
-
-
-
Physiological Psychology - 70570 - PSYC 372 - 002
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class12:00 pm - 1:15 pmTRMusic/Theater Building 1006Aug 27, 2018 - Dec 19, 2018LectureKristen M Craven (P)E-mail
-
-
-
Physiological Psychology - 81132 - PSYC 372 - 003
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class7:20 pm - 10:00 pmTKrug Hall 204Aug 27, 2018 - Dec 19, 2018LectureLogan J Woodhouse (P)E-mail
-
-
-
Physiological Psychology - 81133 - PSYC 372 - 004
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class3:00 pm - 4:15 pmMWRobinson Hall B220Aug 27, 2018 - Dec 19, 2018LectureJennifer Brielmaier Sontag (P)E-mail
-
-
-
Physiological Psychology - 72824 - PSYC 372 - DL1
-PSYC 372 DL1 is a distance education section. -Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division -
-
-Online Campus -
-Lecture Schedule Type -
-Off-campus F2F 0-1% Async Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
ClassTBA ON LINEAug 27, 2018 - Dec 19, 2018LectureJennifer Brielmaier Sontag (P)E-mail
-
-
-
Physiological Psychology Lab - 70571 - PSYC 373 - 201
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division -
-
-Fairfax Campus -
-Laboratory Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 1.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class4:30 pm - 6:20 pmMDavid King Jr. Hall 2084Aug 27, 2018 - Dec 19, 2018LaboratoryAaron B Booth (P)E-mail
-
-
-
Physiological Psychology Lab - 70572 - PSYC 373 - 202
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division -
-
-Fairfax Campus -
-Laboratory Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 1.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class6:30 pm - 8:20 pmMDavid King Jr. Hall 2084Aug 27, 2018 - Dec 19, 2018LaboratoryAaron B Booth (P)E-mail
-
-
-
Physiological Psychology Lab - 70573 - PSYC 373 - 203
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division -
-
-Fairfax Campus -
-Laboratory Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 1.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class8:30 am - 10:20 amTDavid King Jr. Hall 2084Aug 27, 2018 - Dec 19, 2018LaboratoryPaul J Beatty (P)E-mail
-
-
-
Physiological Psychology Lab - 70574 - PSYC 373 - 204
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division -
-
-Fairfax Campus -
-Laboratory Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 1.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class8:30 am - 10:20 amRDavid King Jr. Hall 2084Aug 27, 2018 - Dec 19, 2018LaboratoryCaroline Leigh Copeland Neely (P)E-mail
-
-
-
Physiological Psychology Lab - 71626 - PSYC 373 - 205
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division -
-
-Fairfax Campus -
-Laboratory Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 1.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class9:30 am - 11:20 amFDavid King Jr. Hall 2084Aug 27, 2018 - Dec 19, 2018LaboratoryPaul J Beatty (P)E-mail
-
-
-
Physiological Psychology Lab - 71804 - PSYC 373 - 206
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division -
-
-Fairfax Campus -
-Laboratory Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 1.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class11:30 am - 1:20 pmFDavid King Jr. Hall 2084Aug 27, 2018 - Dec 19, 2018LaboratoryNatalie Coschigano (P)E-mail
-
-
-
Brain and Sensory Processes - 70575 - PSYC 375 - 001
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class10:30 am - 11:45 amTRPlanetary Hall 206Aug 27, 2018 - Dec 19, 2018LectureCraig G McDonald (P)E-mail
-
-
-
Brain and Sensory Processes - 81134 - PSYC 375 - 002
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class1:30 pm - 2:45 pmTRMusic/Theater Building 1006Aug 27, 2018 - Dec 19, 2018LectureCraig G McDonald (P)E-mail
-
-
-
Brain and Behavior - 81135 - PSYC 376 - 001
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class1:30 pm - 2:45 pmMWLecture Hall 3Aug 27, 2018 - Dec 19, 2018LectureCaroline Leigh Copeland Neely (P)E-mail
-
-
-
Applied Cross-Cultur Psy - 71720 - PSYC 379 - 001
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Mason Core (All), Global Understanding, Undergraduate - Upper Division -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class3:00 pm - 4:15 pmMWInnovation Hall 134Aug 27, 2018 - Dec 19, 2018LectureCarol Mindy Wong (P)E-mail
-
-
-
Applied Cross-Cultur Psy - 73035 - PSYC 379 - DL1
-PSYC 379 DL1 is a distance education section. -Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Mason Core (All), Global Understanding, Undergraduate - Upper Division -
-
-Online Campus -
-Lecture Schedule Type -
-Off-campus F2F 0-1% Async Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
ClassTBA ON LINEAug 27, 2018 - Dec 19, 2018LectureCarol Mindy Wong (P)E-mail
-
-
-
Intro Forensic Psychology - 77910 - PSYC 380 - 001
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class9:00 am - 10:15 amTRLecture Hall 2Aug 27, 2018 - Dec 19, 2018LectureSabine Heisman (P)E-mail
-
-
-
Intro Forensic Psychology - 77911 - PSYC 380 - DL1
-PSYC 380 DL1 is a distance education section. -Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division -
-
-Online Campus -
-Lecture Schedule Type -
-Off-campus F2F 0-1% Async Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
ClassTBA ON LINEAug 27, 2018 - Dec 19, 2018LectureAngelique B Williams (P)E-mail
-
-
-
Mental Illness/Criminal Justic - 77913 - PSYC 381 - 001
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class9:00 am - 10:15 amTRLecture Hall 1Aug 27, 2018 - Dec 19, 2018LectureJustin Ramsdell (P)E-mail
-
-
-
Psychology of Crime Victims - 77914 - PSYC 382 - 001
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class12:00 pm - 1:15 pmMWEast 201Aug 27, 2018 - Dec 19, 2018LectureJustin Ramsdell (P)E-mail
-
-
-
Psychology: College to Career - 81136 - PSYC 399 - DL1
-PSYC 399 DL1 is a distance education section. -Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division -
-
-Online Campus -
-Seminar Schedule Type -
-Off-campus F2F 0-1% Async Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
ClassTBA ON LINEAug 27, 2018 - Dec 19, 2018SeminarErin Q Murdoch (P)E-mail
-
-
-
Mystery, Madness, and Murder - 71905 - PSYC 405 - 001
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Mason Core (All), Synthesis, Undergraduate - Upper Division -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class9:00 am - 10:15 amMWInnovation Hall 136Aug 27, 2018 - Dec 19, 2018LectureRaul Gabriel Ramirez (P)E-mail
-
-
-
Mystery, Madness, and Murder - 74416 - PSYC 405 - 002
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Mason Core (All), Synthesis, Undergraduate - Upper Division -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class9:00 am - 10:15 amTRInnovation Hall 134Aug 27, 2018 - Dec 19, 2018LectureAli Momen (P)E-mail
-
-
-
Mystery, Madness, and Murder - 72050 - PSYC 405 - 004
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Mason Core (All), Synthesis, Undergraduate - Upper Division -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class7:20 pm - 10:00 pmWKrug Hall 210Aug 27, 2018 - Dec 19, 2018LectureKristopher Gebhard (P)E-mail
-
-
-
Mystery, Madness, and Murder - 73608 - PSYC 405 - DL1
-PSYC 405 DL1 is a distance education section. The focus of this section of PSYC 405 will be Traumatology. -Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Mason Core (All), Synthesis, Undergraduate - Upper Division -
-
-Online Campus -
-Lecture Schedule Type -
-Off-campus F2F 0-1% Async Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
ClassTBA ON LINEAug 27, 2018 - Dec 19, 2018LectureRebecca Susan Morse (P)E-mail
-
-
-
Mystery, Madness, and Murder - 83547 - PSYC 405 - DL2
-PSYC 405 DL2 is a distance learning section. -Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Mason Core (All), Synthesis, Undergraduate - Upper Division -
-
-Online Campus -
-Lecture Schedule Type -
-Off-campus F2F 0-1% Async Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
ClassTBA ON LINEAug 27, 2018 - Dec 19, 2018LectureRebecca Susan Morse (P)E-mail
-
-
-
Behav Disords Childhood - 81138 - PSYC 414 - DL1
-PSYC 414 DL1 is a distance education section. -Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division -
-
-Online Campus -
-Lecture Schedule Type -
-Off-campus F2F 0-1% Async Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
ClassTBA ON LINEAug 27, 2018 - Dec 19, 2018LectureJason Feinberg (P)E-mail
-
-
-
Psyc Factors in Aging - 76448 - PSYC 415 - DL1
-PSYC 415 DL1 is a distance education section. -Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division -
-
-Online Campus -
-Lecture Schedule Type -
-On-campus F2F 0-1% Async Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
ClassTBA ON LINEAug 27, 2018 - Dec 19, 2018LecturePaige J Trojanowski (P)E-mail
-
-
-
Science of Well Being - 81139 - PSYC 417 - 001
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class3:00 pm - 4:15 pmMWInnovation Hall 206Aug 27, 2018 - Dec 19, 2018LectureLawrence Edward Minnis (P)E-mail
-
-
-
Death, Dying, and Grieving - 76605 - PSYC 418 - DL1
-PSYC 418 DL1 is a distance education section. -Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division -
-
-Online Campus -
-Lecture Schedule Type -
-Off-campus F2F 0-1% Async Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
ClassTBA ON LINEAug 27, 2018 - Dec 19, 2018LectureAngelique B Williams (P)E-mail
-
-
-
Community Engagement - 81141 - PSYC 427 - 001
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Mason Core (All), Synthesis, Undergraduate - Upper Division -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class1:30 pm - 2:45 pmTRRobinson Hall B122Aug 27, 2018 - Dec 19, 2018LectureKristopher Gebhard (P)E-mail
-
-
-
Clinical Practicum in Psych - 82827 - PSYC 430 - 003
-PSYC 430 003 enrollment is controlled. Please contact the instructor (kpak2@gmu.edu) for permission to register. -Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division -
-
-Off-campus Building Campus -
-Fieldwork Schedule Type -
-Off-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class10:00 am - 11:00 amF10340 Democracy Ln 203NAug 27, 2018 - Dec 19, 2018FieldworkKristina N Pak (P)E-mail
-
-
-
Personnel Training and Dev - 76453 - PSYC 435 - DL1
-PSYC 435 DL1 is a distance education section. -Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division -
-
-Online Campus -
-Lecture Schedule Type -
-Off-campus F2F 0-1% Async Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
ClassTBA ON LINEAug 27, 2018 - Dec 19, 2018LectureHannah Markell (P)E-mail
-
-
-
Criminal Behavior Psycho/Neuro - 77917 - PSYC 441 - 001
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class12:00 pm - 1:15 pmTRLecture Hall 3Aug 27, 2018 - Dec 19, 2018LectureJustin Ramsdell (P)E-mail
-
-
-
Cognitiive Interventions - 72052 - PSYC 461 - 001
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Topic Varies, Undergraduate - Upper Division -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
ClassTBA To Be Arranged TBAAug 27, 2018 - Dec 19, 2018LectureRobert Pasnak (P)E-mail
-
-
-
Emotional Bases of Behavior - 81146 - PSYC 461 - 003
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Topic Varies, Undergraduate - Upper Division -
-
-Fairfax Campus -
-Lec/Sem #2 (Repeatable) Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class3:00 pm - 4:15 pmTRRobinson Hall B222Aug 27, 2018 - Dec 19, 2018Lec/Sem #1 (Repeatable)Thalia R Goldstein (P)E-mail
-
-
-
Organizing Culture Change - 76408 - PSYC 461 - 006
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Topic Varies, Undergraduate - Upper Division -
-
-Fairfax Campus -
-Lec/Sem #5 (Repeatable) Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class1:30 pm - 4:10 pmMRobinson Hall B208Aug 27, 2018 - Dec 19, 2018Lec/Sem #1 (Repeatable)Peter N Stearns (P)E-mail
-
-
-
Animal Cognition - 81143 - PSYC 461 - 007
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Topic Varies, Undergraduate - Upper Division -
-
-Fairfax Campus -
-Lec/Sem #1 (Repeatable) Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class1:30 pm - 2:45 pmMWRobinson Hall B203Aug 27, 2018 - Dec 19, 2018Lec/Sem #1 (Repeatable)Doris Bitler Davis (P)E-mail
-
-
-
Gender/Culture/Health in US - 81782 - PSYC 461 - 008
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Topic Varies, Undergraduate - Upper Division -
-
-Fairfax Campus -
-Lec/Sem #1 (Repeatable) Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class4:30 pm - 7:10 pmRJames Buchanan Hall D001Aug 27, 2018 - Dec 19, 2018Lec/Sem #1 (Repeatable)Leah Maria Adams (P)E-mail
-
-
-
Cognitiive Interventions - 82391 - PSYC 461 - 009
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Topic Varies, Undergraduate - Upper Division -
-
-Fairfax Campus -
-Lec/Sem #1 (Repeatable) Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
ClassTBA TBAAug 27, 2018 - Dec 19, 2018Lec/Sem #1 (Repeatable)Robert Pasnak (P)E-mail
-
-
-
Congitive Interventions - 82392 - PSYC 461 - 010
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Topic Varies, Undergraduate - Upper Division -
-
-Fairfax Campus -
-Lec/Sem #7 (Repeatable) Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 2.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
ClassTBA TBAAug 27, 2018 - Dec 19, 2018Lec/Sem #7 (Repeatable)Robert Pasnak (P)E-mail
-
-
-
Cognitiive Interventions - 82393 - PSYC 461 - 011
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Topic Varies, Undergraduate - Upper Division -
-
-Fairfax Campus -
-Lec/Sem #6 (Repeatable) Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 1.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
ClassTBA TBAAug 27, 2018 - Dec 19, 2018Lec/Sem #6 (Repeatable)Robert Pasnak (P)E-mail
-
-
-
Expl Brn Hlth & Sckns Bks &Flm - 82564 - PSYC 461 - 012
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Topic Varies, Undergraduate - Upper Division -
-
-Fairfax Campus -
-Lec/Sem #1 (Repeatable) Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class1:30 pm - 2:45 pmTRResearch Hall 201Aug 27, 2018 - Dec 19, 2018Lec/Sem #1 (Repeatable)Jane M Flinn (P)E-mail
-
-
-
Drugs and the Brain - 82822 - PSYC 461 - 013
-PSYC 461 013 is a distance education section. -Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Topic Varies, Undergraduate - Upper Division -
-
-Online Campus -
-Lec/Sem #1 (Repeatable) Schedule Type -
-Off-campus F2F 0-1% Async Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
ClassTBA ON LINEAug 27, 2018 - Dec 19, 2018Lec/Sem #1 (Repeatable)William R Kochen (P)E-mail
-
-
-
Select Top Forensic Psychology - 81690 - PSYC 462 - 001
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Topic Varies, Undergraduate - Upper Division -
-
-Fairfax Campus -
-Lec/Sem #1 (Repeatable) Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class9:00 am - 10:15 amMWRobinson Hall B122Aug 27, 2018 - Dec 19, 2018Lec/Sem #1 (Repeatable)Justin Ramsdell (P)E-mail
-
-
-
Psyc of Intimate Relationships - 81145 - PSYC 466 - 001
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class3:00 pm - 4:15 pmMWInnovation Hall 208Aug 27, 2018 - Dec 19, 2018LectureSyeda Younus Buchwach (P)E-mail
-
-
-
Psyc Working-Grps/Teams - 76454 - PSYC 467 - DL1
-PSYC 467 DL1 is a distance education section. -Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division -
-
-Online Campus -
-Lecture Schedule Type -
-Off-campus F2F 0-1% Async Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
ClassTBA ON LINEAug 27, 2018 - Dec 19, 2018LectureStephen J Zaccaro (P)E-mail
-
-
-
Neuronal Bases Lrng/Mem - 82631 - PSYC 472 - 003
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Topic Varies, Undergraduate - Upper Division -
-
-Fairfax Campus -
-Lec/Sem #1 (Repeatable) Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class3:00 pm - 4:15 pmTRExploratory Hall L111Aug 27, 2018 - Dec 19, 2018LectureJane M Flinn (P)E-mail
-
-
-
Psychology Honors II - 70589 - PSYC 491 - 001
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Research Associated, Research (All), Undergraduate - Upper Division -
-
-Fairfax Campus -
-Seminar Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class1:30 pm - 2:45 pmMWRobinson Hall B120Aug 27, 2018 - Dec 19, 2018SeminarLinda Doss Chrosniak (P)E-mail
-
-
-
Cog Eng:Cog Sci Appl-HF - 79152 - PSYC 530 - 002
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Graduate - First -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class4:30 pm - 7:10 pmRDavid King Jr. Hall 2073AAug 27, 2018 - Dec 19, 2018LectureCarryl L Baldwin (P)E-mail
-
-
-
Mammalian Neurobiology - 78887 - PSYC 531 - 202
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Graduate - First -
-
-Fairfax Campus -
-Laboratory Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class1:30 pm - 2:45 pmTRInnovation Hall 203Aug 27, 2018 - Dec 19, 2018LaboratoryJames C Thompson (P)E-mail
-
-
-
Psychometric Methods - 73658 - PSYC 557 - 002
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Graduate - First -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class12:00 pm - 1:15 pmTRRobinson Hall B228Aug 27, 2018 - Dec 19, 2018LectureSeth Kaplan (P)E-mail
-
-
-
Neuronal Bases Lrng/Mem - 82568 - PSYC 558 - 003
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Graduate - First -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class3:00 pm - 4:15 pmTRExploratory Hall L111Aug 27, 2018 - Dec 19, 2018LectureJane M Flinn (P)E-mail
-
-
-
Emotional Bases of Behavior - 77920 - PSYC 592 - 001
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Topic Varies, Graduate - First -
-
-Fairfax Campus -
-Lec/Sem #4 (Repeatable) Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class3:00 pm - 4:15 pmTRRobinson Hall B222Aug 27, 2018 - Dec 19, 2018Lec/Sem #1 (Repeatable)Thalia R Goldstein (P)E-mail
-
-
-
Developmental Neuroscience - 81156 - PSYC 592 - 003
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Topic Varies, Graduate - First -
-
-Fairfax Campus -
-Lec/Sem #5 (Repeatable) Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class4:30 pm - 7:10 pmRKrasnow Building 229Aug 27, 2018 - Dec 19, 2018LectureKarl J Fryxell (P)E-mail
-
-
-
Animal Cognition - 81152 - PSYC 592 - 004
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Topic Varies, Graduate - First -
-
-Fairfax Campus -
-Lec/Sem #6 (Repeatable) Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class1:30 pm - 2:45 pmMWRobinson Hall B203Aug 27, 2018 - Dec 19, 2018Lec/Sem #1 (Repeatable)Doris Bitler Davis (P)E-mail
-
-
-
Gender/Culture/Health in US - 81783 - PSYC 592 - 005
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Topic Varies, Graduate - First -
-
-Fairfax Campus -
-Lec/Sem #7 (Repeatable) Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class4:30 pm - 7:10 pmRJames Buchanan Hall D001Aug 27, 2018 - Dec 19, 2018Lec/Sem #1 (Repeatable)Leah Maria Adams (P)E-mail
-
-
-
Expl Brn Hlth & Sckns Bks &Flm - 83769 - PSYC 592 - 009
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Topic Varies, Graduate - First -
-
-Fairfax Campus -
-Lec/Sem #9 (Repeatable) Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class1:30 pm - 2:45 pmTRResearch Hall 201Aug 27, 2018 - Dec 19, 2018Lec/Sem #1 (Repeatable)Jane M Flinn (P)E-mail
-
-
-
Human Factors Practicum - 84195 - PSYC 592 - 011
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Topic Varies, Graduate - First -
-
-Fairfax Campus -
-Lec/Sem #2 (Repeatable) Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
ClassTBA To Be Arranged TBAAug 27, 2018 - Dec 19, 2018Lec/Sem #2 (Repeatable)Tyler H Shaw (P)E-mail
-
-
-
Human Factors Practicum - 84196 - PSYC 592 - 012
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Topic Varies, Graduate - First -
-
-Fairfax Campus -
-Lec/Sem #3 (Repeatable) Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 1.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
ClassTBA To Be Arranged TBAAug 27, 2018 - Dec 19, 2018Lec/Sem #3 (Repeatable)Tyler H Shaw (P)E-mail
-
-
-
Social Robotics - 84451 - PSYC 592 - 014
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Topic Varies, Graduate - First -
-
-Fairfax Campus -
-Lec/Sem #1 (Repeatable) Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 1.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
ClassTBA TBAAug 27, 2018 - Dec 19, 2018Lec/Sem #1 (Repeatable)Eva Wiese (P)E-mail
-
-
-
Adv Stat/Rsrch Meth PsyI - 73062 - PSYC 611 - 001
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Graduate - First -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 4.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class10:30 am - 11:45 amTRRobinson Hall B122Aug 27, 2018 - Dec 19, 2018LectureLeah Maria Adams (P)E-mail
-
-
-
Adv Stat/Rsrch Meth PsyI - 71624 - PSYC 611 - 002
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Graduate - First -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 4.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class9:00 am - 10:15 amMWPlanetary Hall 124Aug 27, 2018 - Dec 19, 2018LecturePatrick E McKnight (P)E-mail
-
-
-
Lab for Lecture 001 - 81153 - PSYC 611 - 201
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Graduate - First -
-
-Fairfax Campus -
-Laboratory Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 0.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class8:30 am - 10:20 amFInnovation Hall 326Aug 27, 2018 - Dec 19, 2018LaboratoryAaron David Hunt (P)E-mail
-
-
-
Lab for Lecture 001 - 73064 - PSYC 611 - 202
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Graduate - First -
-
-Fairfax Campus -
-Laboratory Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 0.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class10:30 am - 12:20 pmFInnovation Hall 327Aug 27, 2018 - Dec 19, 2018LaboratoryAaron David Hunt (P)E-mail
-
-
-
Lab for Lecture 002 - 81154 - PSYC 611 - 203
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Graduate - First -
-
-Fairfax Campus -
-Laboratory Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 0.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class1:30 pm - 3:20 pmWInnovation Hall 333Aug 27, 2018 - Dec 19, 2018LaboratoryZe Zhu (P)E-mail
-
-
-
Lab for Lecture 002 - 70591 - PSYC 611 - 204
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Graduate - First -
-
-Fairfax Campus -
-Laboratory Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 0.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class11:30 am - 1:20 pmWInnovation Hall 327Aug 27, 2018 - Dec 19, 2018LaboratoryZe Zhu (P)E-mail
-
-
-
Survey of Industrial Psy - 81791 - PSYC 636 - 001
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Graduate - First -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class1:30 pm - 4:10 pmRPeterson Hall 2408Aug 27, 2018 - Dec 19, 2018LectureReeshad S Dalal (P)E-mail
-
-
-
Survey of Orgaztn Psyc - 71721 - PSYC 639 - 001
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Graduate - First -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class10:30 am - 11:45 amTREnterprise Hall 274Aug 27, 2018 - Dec 19, 2018LectureLois E Tetrick (P)E-mail
-
-
-
Longitudinal Data Analysis - 81157 - PSYC 646 - 001
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Graduate - First -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class10:30 am - 11:45 amTRInnovation Hall 203Aug 27, 2018 - Dec 19, 2018LectureTimothy Walter Curby (P)E-mail
-
-
-
Longitudinal Data Analysis - 82658 - PSYC 646 - 002
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Graduate - First -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class3:00 pm - 4:15 pmTRInnovation Hall 205Aug 27, 2018 - Dec 19, 2018LectureTimothy Walter Curby (P)E-mail
-
-
-
Develop Psychopathology - 82742 - PSYC 648 - 002
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Graduate - First -
-
-Off-campus Building Campus -
-Seminar Schedule Type -
-Off-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class9:00 am - 11:40 amM10340 Democracy Ln 203NAug 27, 2018 - Dec 19, 2018SeminarTara Marie Chaplin (P)E-mail
-
-
-
Small Group Behavior - 81159 - PSYC 667 - 001
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Graduate - First -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class4:30 pm - 7:10 pmMNguyen Engineering Building 1108Aug 27, 2018 - Dec 19, 2018LectureStephen J Zaccaro (P)E-mail
-
-
-
Life-Span Development - 72917 - PSYC 704 - 001
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Graduate - Advanced -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class12:00 pm - 1:15 pmTRResearch Hall 202Aug 27, 2018 - Dec 19, 2018LectureThalia R Goldstein (P)E-mail
-
-
-
Social Robotics - 77922 - PSYC 734 - 002
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Graduate - Advanced -
-
-Fairfax Campus -
-Lec/Sem #1 (Repeatable) Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class4:30 pm - 7:10 pmMDavid King Jr. Hall 2073AAug 27, 2018 - Dec 19, 2018Lec/Sem #1 (Repeatable)Eva Wiese (P)E-mail
-
-
-
Physical Ergonomics - 83039 - PSYC 734 - 003
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Graduate - Advanced -
-
-Fairfax Campus -
-Lec/Sem #2 (Repeatable) Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class1:30 pm - 4:10 pmMInnovation Hall 333Aug 27, 2018 - Dec 19, 2018Lec/Sem #1 (Repeatable)Jeffrey E Fernandez (P)E-mail
-
-
-
Human Performance - 70637 - PSYC 768 - 001
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Topic Varies, Graduate - Advanced -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class10:30 am - 1:10 pmTDavid King Jr. Hall 2073AAug 27, 2018 - Dec 19, 2018LectureWilliam S Helton (P)E-mail
-
-
-
Cognitive Neuroscience of Attn - 81160 - PSYC 768 - 002
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Topic Varies, Graduate - Advanced -
-
-Fairfax Campus -
-Lec/Sem #1 (Repeatable) Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class1:30 pm - 4:10 pmRDavid King Jr. Hall 2073AAug 27, 2018 - Dec 19, 2018Lec/Sem #1 (Repeatable)Matthew S Peterson (P)E-mail
-
-
-
ADP Practicum - 81161 - PSYC 792 - 001
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Graduate - Advanced -
-
-Fairfax Campus -
-Internship Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 1.000 TO 6.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class12:30 pm - 1:20 pmFKrug Hall 19Aug 27, 2018 - Dec 19, 2018InternshipRobert Pasnak (P)E-mail
-
-
-
Psychological Assessment I - 72995 - PSYC 810 - 001
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Graduate - Advanced -
-
-Off-campus Building Campus -
-Lecture Schedule Type -
-Off-campus F2F 76-100% Instructional Method -
- 4.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class12:20 pm - 3:00 pmM10340 Democracy Ln 203NAug 27, 2018 - Dec 19, 2018LectureJerome Short (P)E-mail
-
-
-
Lab for Lecture 001 - 76633 - PSYC 810 - 202
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Graduate - Advanced -
-
-Off-campus Building Campus -
-Laboratory Schedule Type -
-Off-campus F2F 76-100% Instructional Method -
- 0.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class10:30 am - 12:00 pmM10340 Democracy Ln 203BAug 27, 2018 - Dec 19, 2018LaboratoryTBA
-
-
-
Scientific Found Clin Psyc I - 82394 - PSYC 822 - 003
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Graduate - Advanced -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class1:30 pm - 4:10 pmTEnterprise Hall 77Aug 27, 2018 - Dec 19, 2018LectureSarah Nowaczyk (P)E-mail
-
-
-
Soc Cog Found of Clini Psyc - 82750 - PSYC 833 - 003
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Graduate - Advanced -
-
-Off-campus Building Campus -
-Lecture Schedule Type -
-Off-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class12:30 pm - 3:10 pmM10340 Democracy Ln 203BAug 27, 2018 - Dec 19, 2018LectureJohn H Riskind (P)E-mail
-
-
-
Teaching Practicum in Psyc - 81163 - PSYC 850 - DL1
-PSYC 850 DL1 is a distance education section. -Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Graduate - Advanced -
-
-Online Campus -
-Lecture Schedule Type -
-Off-campus F2F 0-1% Async Instructional Method -
- 1.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
ClassTBA ON LINEAug 27, 2018 - Dec 19, 2018LectureDoris Bitler Davis (P)E-mail
-
-
-
Intro Hlp Skill/Motiv Intrview - 72975 - PSYC 860 - 001
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Graduate - Advanced -
-
-Fairfax Campus -
-Seminar Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class1:30 pm - 4:10 pmRDavid King Jr. Hall 2013Aug 27, 2018 - Dec 19, 2018SeminarJune P Tangney (P)E-mail
-
-
-
Cognitive Behav Therapy Youth - 82976 - PSYC 861 - 003
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Graduate - Advanced -
-
-Off-campus Building Campus -
-Seminar Schedule Type -
-Off-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class1:00 pm - 3:40 pmT10340 Democracy Ln 203NAug 27, 2018 - Dec 19, 2018SeminarChristianne Lee Esposito-Smythers (P)E-mail, Jenna Marie Calton E-mail
-
-
-
Cognitive Behav Therapy Adults - 82828 - PSYC 862 - 003
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Graduate - Advanced -
-
-Off-campus Building Campus -
-Seminar Schedule Type -
-Off-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class9:00 am - 11:40 amW10340 Democracy Ln 203NAug 27, 2018 - Dec 19, 2018SeminarSarah Nowaczyk (P)E-mail
-
-
-
Practicum in Clinical Psych - 83671 - PSYC 881 - 003
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Graduate - Advanced -
-
-Fairfax Campus -
-Lec/Sem #1 (Repeatable) Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
ClassTBA TBAAug 27, 2018 - Dec 19, 2018Lec/Sem #1 (Repeatable)Tara Marie Chaplin (P)E-mail, Robyn Mehlenbeck E-mail
-
-
-
Clinical Externship - 73972 - PSYC 885 - 001
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Graduate - Advanced -
-
-Fairfax Campus -
-Internship Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 0.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
ClassTBA To Be Arranged TBAAug 27, 2018 - Dec 19, 2018InternshipTBA
-
-
-
Prosem in Applied Dev Psyc - 81164 - PSYC 890 - 001
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Graduate - Advanced -
-
-Fairfax Campus -
-Lec/Sem #1 (Repeatable) Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 1.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class12:00 pm - 1:15 pmMWRobinson Hall B120Aug 27, 2018 - Dec 19, 2018Lec/Sem #1 (Repeatable)Adam J Winsler (P)E-mail
-
-
-
Prosem in Cog Behav Neurosci - 81165 - PSYC 890 - 002
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Graduate - Advanced -
-
-Fairfax Campus -
-Lec/Sem #1 (Repeatable) Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 1.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class12:00 pm - 1:15 pmMDavid King Jr. Hall 2054Aug 27, 2018 - Dec 19, 2018Lec/Sem #1 (Repeatable)Doris Bitler Davis (P)E-mail
-
-
-
Bayesian Statistics - 78516 - PSYC 892 - 006
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: For reporting purposes only., Topic Varies, Graduate - Advanced -
-
-Fairfax Campus -
-Lec/Sem #6 (Repeatable) Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class9:00 am - 10:15 amTRKrug Hall 204Aug 27, 2018 - Dec 19, 2018Lec/Sem #6 (Repeatable)Patrick E McKnight (P)E-mail
-
-
-
IO Brownbag - 83425 - PSYC 892 - 008
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: For reporting purposes only., Topic Varies, Graduate - Advanced -
-
-Fairfax Campus -
-Lec/Sem #1 (Repeatable) Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 1.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class9:00 am - 10:15 amTKrug Hall 210Aug 27, 2018 - Dec 19, 2018Lec/Sem #1 (Repeatable)Seth Kaplan (P)E-mail
-
-
-
Doctoral Diss Proposal - 78898 - PSYC 998 - 056
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Graduate - Advanced -
-
-Fairfax Campus -
-Dissertation Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 1.000 TO 6.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
ClassTBA TBAAug 27, 2018 - Dec 19, 2018DissertationTBA
-
-
-
Doctoral Diss Proposal - 70028 - PSYC 998 - XXX
-PSYC 998 students must contact the department for permission and CRN to register via Patriot Web. -Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Graduate - Advanced -
-
-Fairfax Campus -
-Dissertation Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 1.000 TO 6.000 Credits -
-View Catalog Entry -
-
-
-
-
Doctoral Dissertation - 70029 - PSYC 999 - XXX
-PSYC 999 students must email chssdiss@gmu.edu for permission and CRN to register. Please indicate your major and semester in the subject heading. -Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Graduate - Advanced -
-
-Fairfax Campus -
-Dissertation Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 1.000 TO 9.000 Credits -
-View Catalog Entry -
-
-
-
-
-
- - - - -
-Return to Previous -
- - -
Transparent Image
-Skip to top of page -
-
- -
-
- -
-
- -
-
- -
-
-Release: 8.7.2.6 -
-
-
-
-
-
-
-
-
- - - diff --git a/schedules/help b/schedules/help deleted file mode 100644 index 865eb2b..0000000 --- a/schedules/help +++ /dev/null @@ -1,4866 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Sections Found
Survey of Accounting - 71117 - ACCT 203 - 001
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Lower Division, SOM Core (Enrollment Targets) -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class1:30 pm - 2:45 pmMInnovation Hall 103Aug 27, 2018 - Dec 19, 2018LectureConstance M Hylton (P)E-mail -
-
-
-
Survey of Accounting - 71118 - ACCT 203 - 002
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Lower Division, SOM Core (Enrollment Targets) -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class1:30 pm - 2:45 pmWInnovation Hall 103Aug 27, 2018 - Dec 19, 2018LectureConstance M Hylton (P)E-mail -
-
-
-
Survey of Accounting - 71119 - ACCT 203 - 003
-ACCT 203 003 does not require a recitation section. -Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Lower Division, SOM Core (Enrollment Targets) -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class7:20 pm - 10:00 pmMArt and Design Building 2003Aug 27, 2018 - Dec 19, 2018LecturePaul T Harley (P)E-mail -
-
-
-
Survey of Accounting - 80027 - ACCT 203 - 004
-ACCT 203 Section 004 does not require a recitation -Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Lower Division, SOM Core (Enrollment Targets) -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class7:20 pm - 10:00 pmTInnovation Hall 204Aug 27, 2018 - Dec 19, 2018LectureSandra McKean Wendler (P)E-mail -
-
-
-
Survey of Accounting - 83091 - ACCT 203 - 005
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Lower Division, SOM Core (Enrollment Targets) -
-
-Loudoun Campus -
-Lecture Schedule Type -
-Off-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class1:30 pm - 2:45 pmWLoudoun: Signal Hill 208Aug 27, 2018 - Dec 19, 2018LectureConstance M Hylton (P)E-mail -
-
-
-
Recitation for Lecture 001 - 71120 - ACCT 203 - 301
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Lower Division, SOM Core (Enrollment Targets) -
-
-Fairfax Campus -
-Recitation Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 0.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class7:30 am - 8:45 amFEnterprise Hall 173Aug 27, 2018 - Dec 19, 2018RecitationJonathan Becerra (P)E-mail, Constance M Hylton E-mail -
-
-
-
Recitation for Lecture 001 - 71123 - ACCT 203 - 302
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Lower Division, SOM Core (Enrollment Targets) -
-
-Fairfax Campus -
-Recitation Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 0.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class9:00 am - 10:15 amFEnterprise Hall 174Aug 27, 2018 - Dec 19, 2018RecitationJonathan Becerra (P)E-mail, Constance M Hylton E-mail -
-
-
-
Recitation for Lecture 001 - 71936 - ACCT 203 - 303
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Lower Division, SOM Core (Enrollment Targets) -
-
-Fairfax Campus -
-Recitation Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 0.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class10:30 am - 11:45 amFJames Buchanan Hall D005Aug 27, 2018 - Dec 19, 2018RecitationBrian Thomas Ferron (P)E-mail, Constance M Hylton E-mail -
-
-
-
Recitation for Lecture 001 - 71121 - ACCT 203 - 304
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Lower Division, SOM Core (Enrollment Targets) -
-
-Fairfax Campus -
-Recitation Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 0.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class12:00 pm - 1:15 pmFEnterprise Hall 174Aug 27, 2018 - Dec 19, 2018RecitationBrian Thomas Ferron (P)E-mail, Constance M Hylton E-mail -
-
-
-
Recitation for Lecture 002 - 71122 - ACCT 203 - 305
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Lower Division, SOM Core (Enrollment Targets) -
-
-Fairfax Campus -
-Recitation Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 0.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class1:30 pm - 2:45 pmFEnterprise Hall 174Aug 27, 2018 - Dec 19, 2018RecitationBrian Thomas Ferron (P)E-mail, Constance M Hylton E-mail -
-
-
-
Recitation for Lecture 002 - 76379 - ACCT 203 - 306
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Lower Division, SOM Core (Enrollment Targets) -
-
-Fairfax Campus -
-Recitation Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 0.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class10:30 am - 11:45 amFEnterprise Hall 274Aug 27, 2018 - Dec 19, 2018RecitationConstance M Hylton (P)E-mail -
-
-
-
Recitation for Lecture 002 - 73563 - ACCT 203 - 307
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Lower Division, SOM Core (Enrollment Targets) -
-
-Fairfax Campus -
-Recitation Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 0.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class9:00 am - 10:15 amFEnterprise Hall 275Aug 27, 2018 - Dec 19, 2018RecitationConstance M Hylton (P)E-mail -
-
-
-
Recitation for Lecture 005 - 78575 - ACCT 203 - 308
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Lower Division, SOM Core (Enrollment Targets) -
-
-Loudoun Campus -
-Recitation Schedule Type -
-Off-campus F2F 76-100% Instructional Method -
- 0.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class12:00 pm - 1:15 pmFLoudoun: Signal Hill 211Aug 27, 2018 - Dec 19, 2018RecitationJonathan Becerra (P)E-mail, Constance M Hylton E-mail -
-
-
-
Recitation for Lecture 002 - 84013 - ACCT 203 - 310
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Lower Division, SOM Core (Enrollment Targets) -
-
-Fairfax Campus -
-Recitation Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 0.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class1:30 pm - 2:45 pmFPlanetary Hall 126Aug 27, 2018 - Dec 19, 2018RecitationYu-Chieh Lee (P)E-mail, Constance M Hylton E-mail -
-
-
-
Survey of Accounting - 72573 - ACCT 203 - DL1
-ACCT 203 DL1 is a distance education section that will meet for mid-term and final exams on the Fairfax campus. Contact the instructor for exam dates and times. -Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Lower Division, SOM Core (Enrollment Targets) -
-
-Online Campus -
-Lecture Schedule Type -
-Off-campus F2F 0-1% Async Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
ClassTBA ON LINEAug 27, 2018 - Dec 19, 2018LectureKathleen R Roberts (P)E-mail -
-
-
-
Survey of Accounting - 81523 - ACCT 203 - DL2
-ACCT 203 DL2 is a distance education section. -Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Lower Division, SOM Core (Enrollment Targets) -
-
-Online Campus -
-Lecture Schedule Type -
-Off-campus F2F 0-1% Async Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
ClassTBA ON LINEAug 27, 2018 - Dec 19, 2018LectureConstance M Hylton (P)E-mail -
-
-
-
Survey of Accounting - 73887 - ACCT 203 - K01
-Associated Term: Fall 2018 -
-
-Registration Dates: May 27, 2018 to Sep 03, 2018 -
-Drop without Tuition Penalty Dates: -May 27, 2018 to Sep 03, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: -Sep 04, 2018 to Sep 09, 2018 -
-Attributes: Undergraduate - Lower Division, SOM Core (Enrollment Targets) -
-
-GMU Korea Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class12:00 pm - 1:15 pmTRMason Korea G106Aug 27, 2018 - Dec 20, 2018LectureTBA
-
-
-
Accounting for Decision Making - 73451 - ACCT 303 - 001
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class12:00 pm - 1:15 pmTRArt and Design Building 2003Aug 27, 2018 - Dec 19, 2018LectureJamie J Johnson (P)E-mail -
-
-
-
Accounting for Decision Making - 74102 - ACCT 303 - 002
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class10:30 am - 1:10 pmFExploratory Hall L003Aug 27, 2018 - Dec 19, 2018LectureLilai Gebreselassie (P)E-mail -
-
-
-
Accounting for Decision Making - 81315 - ACCT 303 - 003
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class9:00 am - 10:15 amMWInnovation Hall 204Aug 27, 2018 - Dec 19, 2018LectureJanet A Faughnan (P)E-mail -
-
-
-
Accounting for Decision Making - 77709 - ACCT 303 - 004
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class1:30 pm - 2:45 pmTRExploratory Hall L004Aug 27, 2018 - Dec 19, 2018LectureJamie J Johnson (P)E-mail -
-
-
-
Accounting for Decision Making - 77710 - ACCT 303 - 005
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class7:20 pm - 10:00 pmWArt and Design Building 2003Aug 27, 2018 - Dec 19, 2018LectureGustavo A Rodriguez (P)E-mail -
-
-
-
Accounting for Decision Making - 83579 - ACCT 303 - 006
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class7:20 pm - 10:00 pmRInnovation Hall 105Aug 27, 2018 - Dec 19, 2018LectureJonathan Saad (P)E-mail -
-
-
-
Accounting for Decision Making - 81489 - ACCT 303 - DL1
-ACCT 303 DL1 is a distance education section. -Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division -
-
-Online Campus -
-Lecture Schedule Type -
-Off-campus F2F 0-1% Async Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
ClassTBA ON LINEAug 27, 2018 - Dec 19, 2018LectureJanet A Faughnan (P)E-mail -
-
-
-
Managerial and Cost Accounting - 71124 - ACCT 311 - 001
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class7:30 am - 8:45 amTRRobinson Hall B203Aug 27, 2018 - Dec 19, 2018LectureFrancisco J Roman (P)E-mail -
-
-
-
Managerial and Cost Accounting - 71125 - ACCT 311 - 002
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class12:00 pm - 1:15 pmMWPeterson Hall 2413Aug 27, 2018 - Dec 19, 2018LectureMassood Y Zadeh (P)E-mail -
-
-
-
Managerial and Cost Accounting - 71367 - ACCT 311 - 003
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class9:00 am - 10:15 amMWMusic/Theater Building 1005Aug 27, 2018 - Dec 19, 2018LectureMassood Y Zadeh (P)E-mail -
-
-
-
Managerial and Cost Accounting - 72859 - ACCT 311 - 004
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class7:20 pm - 10:00 pmRPlanetary Hall 124Aug 27, 2018 - Dec 19, 2018LectureJeffrey Q Jardine (P)E-mail -
-
-
-
Managerial and Cost Accounting - 76522 - ACCT 311 - 005
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class10:30 am - 11:45 amTRRobinson Hall B224Aug 27, 2018 - Dec 19, 2018LectureFrancisco J Roman (P)E-mail -
-
-
-
Financial Accounting I - 73452 - ACCT 330 - 001
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class9:00 am - 10:15 amTRInnovation Hall 132Aug 27, 2018 - Dec 19, 2018LectureJanet A Faughnan (P)E-mail -
-
-
-
Financial Accounting I - 73453 - ACCT 330 - 002
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class12:00 pm - 1:15 pmMWArt and Design Building 2003Aug 27, 2018 - Dec 19, 2018LectureEugenia P Tsirigotis (P)E-mail -
-
-
-
Financial Accounting I - 74104 - ACCT 330 - 003
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class7:20 pm - 10:00 pmTNguyen Engineering Building 1101Aug 27, 2018 - Dec 19, 2018LectureJennifer A Yarde (P)E-mail -
-
-
-
Financial Accounting I - 74105 - ACCT 330 - 004
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class4:30 pm - 7:10 pmRExploratory Hall L003Aug 27, 2018 - Dec 19, 2018LectureJill E Mitchell (P)E-mail -
-
-
-
Financial Accounting I - 78217 - ACCT 330 - 005
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class4:30 pm - 7:10 pmMExploratory Hall L003Aug 27, 2018 - Dec 19, 2018LectureJanet A Faughnan (P)E-mail -
-
-
-
Financial Accounting I - 79249 - ACCT 330 - K01
-Associated Term: Fall 2018 -
-
-Registration Dates: May 27, 2018 to Sep 03, 2018 -
-Drop without Tuition Penalty Dates: -May 27, 2018 to Sep 03, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: -Sep 04, 2018 to Sep 09, 2018 -
-Attributes: Undergraduate - Upper Division -
-
-GMU Korea Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class2:00 pm - 3:15 pmMWMason Korea G105Aug 27, 2018 - Dec 20, 2018LectureJung-wha Lee (P)E-mail -
-
-
-
Financial Accounting II - 71406 - ACCT 331 - 001
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class3:00 pm - 4:15 pmMWPlanetary Hall 124Aug 27, 2018 - Dec 19, 2018LectureMariia Nykyforovych (P)E-mail -
-
-
-
Financial Accounting II - 71127 - ACCT 331 - 002
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class7:30 am - 8:45 amMWRobinson Hall B202Aug 27, 2018 - Dec 19, 2018LectureMariia Nykyforovych (P)E-mail -
-
-
-
Financial Accounting II - 72931 - ACCT 331 - 003
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class10:30 am - 11:45 amTRInnovation Hall 208Aug 27, 2018 - Dec 19, 2018LectureKathleen R Roberts (P)E-mail -
-
-
-
Financial Accounting II - 73934 - ACCT 331 - 004
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class9:00 am - 10:15 amMWPlanetary Hall 122Aug 27, 2018 - Dec 19, 2018LectureMariia Nykyforovych (P)E-mail -
-
-
-
Financial Accounting II - 77008 - ACCT 331 - 005
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class7:20 pm - 10:00 pmMEnterprise Hall 174Aug 27, 2018 - Dec 19, 2018LectureKathleen R Roberts (P)E-mail -
-
-
-
Financial Accounting II - 79858 - ACCT 331 - K01
-Associated Term: Fall 2018 -
-
-Registration Dates: May 27, 2018 to Sep 03, 2018 -
-Drop without Tuition Penalty Dates: -May 27, 2018 to Sep 03, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: -Sep 04, 2018 to Sep 09, 2018 -
-Attributes: Undergraduate - Upper Division -
-
-GMU Korea Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class9:00 am - 11:40 amTMason Korea G210Aug 27, 2018 - Dec 20, 2018LectureJung-wha Lee (P)E-mail -
-
-
-
Financial Accounting III - 71130 - ACCT 332 - 001
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class10:30 am - 11:45 amTRInnovation Hall 206Aug 27, 2018 - Dec 19, 2018LectureMark A Ingram (P)E-mail -
-
-
-
Financial Accounting III - 71129 - ACCT 332 - 002
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class7:30 am - 10:10 amFNguyen Engineering Building 1109Aug 27, 2018 - Dec 19, 2018LectureGary D Brooks (P)E-mail -
-
-
-
Financial Accounting III - 71132 - ACCT 332 - 003
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class1:30 pm - 4:10 pmFRobinson Hall B202Aug 27, 2018 - Dec 19, 2018LectureMark A Ingram (P)E-mail -
-
-
-
Financial Accounting III - 71131 - ACCT 332 - 004
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class7:20 pm - 10:00 pmWPlanetary Hall 224Aug 27, 2018 - Dec 19, 2018LectureGary D Brooks (P)E-mail -
-
-
-
Financial Accounting III - 74108 - ACCT 332 - 005
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class9:00 am - 10:15 amTRArt and Design Building 2026Aug 27, 2018 - Dec 19, 2018LectureMark A Ingram (P)E-mail -
-
-
-
Taxation/Mngrl Decision Mkg - 71133 - ACCT 351 - 001
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class1:30 pm - 2:45 pmMWNguyen Engineering Building 1103Aug 27, 2018 - Dec 19, 2018LectureColin Koutney (P)E-mail -
-
-
-
Taxation/Mngrl Decision Mkg - 71134 - ACCT 351 - 002
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class3:00 pm - 4:15 pmMWPlanetary Hall 122Aug 27, 2018 - Dec 19, 2018LectureColin Koutney (P)E-mail -
-
-
-
Taxation/Mngrl Decision Mkg - 71135 - ACCT 351 - 003
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class7:20 pm - 10:00 pmTEnterprise Hall 174Aug 27, 2018 - Dec 19, 2018LectureKyle Sweeney (P)E-mail -
-
-
-
Taxation/Mngrl Decision Mkg - 73016 - ACCT 351 - 004
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class7:30 am - 8:45 amTRKrug Hall 204Aug 27, 2018 - Dec 19, 2018LectureSusan Mooradian (P)E-mail -
-
-
-
Taxation/Mngrl Decision Mkg - 74011 - ACCT 351 - 005
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class9:00 am - 10:15 amTRRobinson Hall B220Aug 27, 2018 - Dec 19, 2018LectureKevin S Matthews (P)E-mail -
-
-
-
Taxation/Mngrl Decision Mkg - 74106 - ACCT 351 - 006
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class7:30 am - 8:45 amMWKrug Hall 204Aug 27, 2018 - Dec 19, 2018LectureColin Koutney (P)E-mail -
-
-
-
Accounting Analytics - 71136 - ACCT 361 - 001
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class10:30 am - 11:45 amMWInnovation Hall 222Aug 27, 2018 - Dec 19, 2018LectureHeather M Baker (P)E-mail -
-
-
-
Accounting Analytics - 71137 - ACCT 361 - 002
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class7:20 pm - 10:00 pmRInnovation Hall 222Aug 27, 2018 - Dec 19, 2018LectureKaren Louise Oberst (P)E-mail -
-
-
-
Accounting Analytics - 71878 - ACCT 361 - 003
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class9:00 am - 10:15 amTRInnovation Hall 222Aug 27, 2018 - Dec 19, 2018LectureKaren A Kitching (P)E-mail -
-
-
-
Accounting Analytics - 71882 - ACCT 361 - 004
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class12:00 pm - 1:15 pmTRInnovation Hall 222Aug 27, 2018 - Dec 19, 2018LectureKathleen R Roberts (P)E-mail -
-
-
-
Accounting Analytics - 77007 - ACCT 361 - 005
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class9:00 am - 10:15 amMWInnovation Hall 222Aug 27, 2018 - Dec 19, 2018LectureHeather M Baker (P)E-mail -
-
-
-
Advanced Financial Accounting - 82359 - ACCT 433 - 002
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class7:20 pm - 10:00 pmTDavid King Jr. Hall 1006Aug 27, 2018 - Dec 19, 2018LectureMark A Ingram (P)E-mail -
-
-
-
Foundations Assurance Services - 71139 - ACCT 461 - 001
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division, Writing Intensive in Major -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class7:30 am - 8:45 amTREnterprise Hall 277Aug 27, 2018 - Dec 19, 2018LectureKyle Sweeney (P)E-mail -
-
-
-
Assurance and Audit Services - 71140 - ACCT 461 - 002
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division, Writing Intensive in Major -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class9:00 am - 10:15 amTREnterprise Hall 277Aug 27, 2018 - Dec 19, 2018LectureKyle Sweeney (P)E-mail -
-
-
-
Foundations Assurance Services - 71960 - ACCT 461 - 003
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division, Writing Intensive in Major -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class7:20 pm - 10:00 pmTEnterprise Hall 173Aug 27, 2018 - Dec 19, 2018LectureMark E Turbyfill (P)E-mail -
-
-
-
Assurance and Audit Services - 73025 - ACCT 461 - 004
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division, Writing Intensive in Major -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class7:20 pm - 10:00 pmRInnovation Hall 207Aug 27, 2018 - Dec 19, 2018LectureJonathan T Liljegren (P)E-mail -
-
-
-
Assurance and Audit Services - 76523 - ACCT 461 - 005
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division, Writing Intensive in Major -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class3:00 pm - 4:15 pmMWEnterprise Hall 174Aug 27, 2018 - Dec 19, 2018LectureKyle Sweeney (P)E-mail -
-
-
-
Govt/Not-for-Profit Accounting - 78609 - ACCT 472 - 001
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class4:30 pm - 7:10 pmMNguyen Engineering Building 1109Aug 27, 2018 - Dec 19, 2018LectureSyed Hasan (P)E-mail -
-
-
-
Internship in Accounting - 72621 - ACCT 492 - 001
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Undergraduate - Upper Division -
-
-Fairfax Campus -
-Internship Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
ClassTBA To Be Arranged TBAAug 27, 2018 - Dec 19, 2018InternshipConstance M Hylton (P)E-mail -
-
-
-
Foundations Financial Report I - 73871 - ACCT 531 - 001
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Graduate - First -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class7:20 pm - 10:00 pmMEnterprise Hall 174Aug 27, 2018 - Dec 19, 2018LectureKathleen R Roberts (P)E-mail -
-
-
-
Foundatns Financial Report II - 81411 - ACCT 532 - 001
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Graduate - First -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class7:20 pm - 10:00 pmWPlanetary Hall 224Aug 27, 2018 - Dec 19, 2018LectureGary D Brooks (P)E-mail -
-
-
-
Fnd Taxation Business Entities - 73870 - ACCT 551 - 001
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Graduate - First -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class7:20 pm - 10:00 pmTEnterprise Hall 174Aug 27, 2018 - Dec 19, 2018LectureKyle Sweeney (P)E-mail -
-
-
-
Foundations Assurance Services - 79073 - ACCT 561 - 002
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Graduate - First -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class7:20 pm - 10:00 pmTEnterprise Hall 173Aug 27, 2018 - Dec 19, 2018LectureMark E Turbyfill (P)E-mail -
-
-
-
Foundations Assurance Services - 82297 - ACCT 561 - 003
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 10, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Graduate - First -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class7:20 pm - 10:00 pmRInnovation Hall 207Aug 27, 2018 - Dec 19, 2018LectureJonathan T Liljegren (P)E-mail -
-
-
-
Identify/Res Adv Iss Fnan Acct - 82327 - ACCT 633 - 002
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Oct 29, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Oct 29, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Graduate - First -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 51-75% Sync Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class6:30 pm - 10:05 pmTInnovation Hall 206Oct 22, 2018 - Dec 22, 2018LectureBret A Johnson (P)E-mail -
ClassTBA ON LINEOct 22, 2018 - Dec 22, 2018LectureBret A Johnson (P)E-mail -
-
-
-
Fraud Examination - 81415 - ACCT 636 - 001
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 04, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Graduate - First -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 51-75% Sync Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class6:30 pm - 10:05 pmWJames Buchanan Hall D005Aug 27, 2018 - Oct 20, 2018LectureRobert S Broshears (P)E-mail -
ClassTBA ON LINEAug 27, 2018 - Oct 20, 2018LectureRobert S Broshears (P)E-mail -
-
-
-
Fraud Examination - 81416 - ACCT 636 - 002
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 04, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Graduate - First -
-
-Arlington Campus -
-Lecture Schedule Type -
-On-campus F2F 51-75% Sync Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class6:30 pm - 10:05 pmTArlington: Founders Hall 118Aug 27, 2018 - Oct 20, 2018LectureRobert S Broshears (P)E-mail -
ClassTBA ON LINEAug 27, 2018 - Oct 20, 2018LectureRobert S Broshears (P)E-mail -
-
-
-
ID/Res Adv Iss Taxation - 71864 - ACCT 651 - 001
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Oct 29, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Oct 29, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Graduate - First -
-
-Arlington Campus -
-Lecture Schedule Type -
-On-campus F2F 51-75% Async Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class6:30 pm - 10:05 pmTArlington: Founders Hall 118Oct 22, 2018 - Dec 22, 2018LectureGary D Dittmer (P)E-mail -
ClassTBA ON LINEOct 22, 2018 - Dec 22, 2018LectureGary D Dittmer (P)E-mail -
-
-
-
Governmtl/Nonprofit Accounting - 83969 - ACCT 672 - 003
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Oct 29, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Oct 29, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Graduate - First -
-
-Arlington Campus -
-Lecture Schedule Type -
-On-campus F2F 51-75% Sync Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class6:30 pm - 10:05 pmWArlington: Founders Hall 466Oct 22, 2018 - Dec 16, 2018LectureSyed Hasan (P)E-mail -
ClassTBA ON LINEOct 22, 2018 - Dec 16, 2018LectureSyed Hasan (P)E-mail -
-
-
-
Prof'l Accounting Colloquium - 71829 - ACCT 690 - 001
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 04, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Graduate - First -
-
-Arlington Campus -
-Lecture Schedule Type -
-On-campus F2F 51-75% Sync Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class6:30 pm - 10:05 pmWArlington: Founders Hall 466Aug 27, 2018 - Oct 20, 2018LectureConstance M Hylton (P)E-mail -
ClassTBA ON LINEAug 27, 2018 - Oct 20, 2018LectureConstance M Hylton (P)E-mail -
-
-
-
Prof'l Accounting Colloquium - 82224 - ACCT 690 - 003
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 04, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Graduate - First -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 51-75% Sync Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class6:30 pm - 10:05 pmTInnovation Hall 206Aug 27, 2018 - Oct 20, 2018LectureConstance M Hylton (P)E-mail -
ClassTBA ON LINEAug 27, 2018 - Oct 20, 2018LectureConstance M Hylton (P)E-mail -
-
-
-
Graduate Field Experience - 77716 - ACCT 695 - 001
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 04, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Graduate - First -
-
-Off-campus/Other Campus -
-Internship Schedule Type -
-Off-campus F2F 76-100% Instructional Method -
- 1.500 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
ClassTBA OFF CAMPUSAug 27, 2018 - Oct 20, 2018InternshipRobert S Broshears (P)E-mail -
-
-
-
Graduate Field Experience - 83053 - ACCT 695 - 003
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Sep 04, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Sep 04, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Graduate - First -
-
-Off-campus/Other Campus -
-Internship Schedule Type -
-Off-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
ClassTBA OFF CAMPUSAug 27, 2018 - Oct 20, 2018InternshipRobert S Broshears (P)E-mail -
-
-
-
Graduate Field Experience - 83054 - ACCT 695 - 004
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Oct 29, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Oct 29, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Graduate - First -
-
-Off-campus/Other Campus -
-Internship Schedule Type -
-Off-campus F2F 76-100% Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
ClassTBA OFF CAMPUSOct 22, 2018 - Dec 22, 2018InternshipRobert S Broshears (P)E-mail -
-
-
-
Advanced Topics in Fraud - 82340 - ACCT 738 - 004
-Associated Term: Fall 2018 -
-
-Registration Dates: Apr 03, 2018 to Oct 29, 2018 -
-Drop without Tuition Penalty Dates: -Apr 03, 2018 to Oct 29, 2018 -
-Drop with Tuition Penalty (and final drop deadline) Dates: - to -
-Attributes: Graduate - Advanced -
-
-Fairfax Campus -
-Lecture Schedule Type -
-On-campus F2F 51-75% Sync Instructional Method -
- 3.000 Credits -
-View Catalog Entry -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Scheduled Meeting Times
TypeTimeDaysWhereDate RangeSchedule TypeInstructors
Class6:30 pm - 10:05 pmWJames Buchanan Hall D005Oct 22, 2018 - Dec 22, 2018LectureRobert J Pawlewicz (P)E-mail -
ClassTBA ON LINEOct 22, 2018 - Dec 22, 2018LectureRobert J Pawlewicz (P)E-mail -
-
-
-
\ No newline at end of file diff --git a/schedules/test/controllers/api/course_listings_controller_test.rb b/schedules/test/controllers/api/course_listings_controller_test.rb index 9b79061..1ddfb8d 100644 --- a/schedules/test/controllers/api/course_listings_controller_test.rb +++ b/schedules/test/controllers/api/course_listings_controller_test.rb @@ -1,15 +1,15 @@ require 'test_helper' class API::CourseListingsControllerTest < ActionDispatch::IntegrationTest - test 'should grab sections for course' do - get course_listings_url course_id: courses(:cs112).id, semester_id: semesters(:fall2018).id - assert_response :success + # test 'should grab sections for course' do + # get course_listings_url course_id: courses(:cs112).id, semester_id: semesters(:fall2018).id + # assert_response :success - listing_returned = JSON.parse @response.body - assert listing_returned.size.positive? + # listing_returned = JSON.parse @response.body + # assert listing_returned.size.positive? - assert listing_returned[0].include?("sections") + # assert listing_returned[0].include?("sections") - assert_equal(listing_returned[0]["sections"].length, 2) - end + # assert_equal(listing_returned[0]["sections"].length, 2) + # end end diff --git a/schedules/test/controllers/api/course_sections_controller_test.rb b/schedules/test/controllers/api/course_sections_controller_test.rb index 548d914..d1d99f4 100644 --- a/schedules/test/controllers/api/course_sections_controller_test.rb +++ b/schedules/test/controllers/api/course_sections_controller_test.rb @@ -6,7 +6,10 @@ class API::CourseSectionsControllerTest < ActionDispatch::IntegrationTest assert_response :success sections_returned = JSON.parse @response.body - num_sections = CourseSection.where(course_id: courses(:cs112).id).count + num_sections = CourseSection + .joins(course: :semester) + .where('semesters.id = ?', semesters(:fall2018).id) + .where(course_id: courses(:cs112).id).count assert_equal num_sections, sections_returned.count end diff --git a/schedules/test/controllers/api/courses_controller_test.rb b/schedules/test/controllers/api/courses_controller_test.rb index 551ee82..c130c3e 100644 --- a/schedules/test/controllers/api/courses_controller_test.rb +++ b/schedules/test/controllers/api/courses_controller_test.rb @@ -6,7 +6,7 @@ class API::CoursesControllerTest < ActionDispatch::IntegrationTest assert_response :success courses_returned = JSON.parse @response.body - courses_count = Course.all.count + courses_count = Course.where(semester_id: semesters(:fall2018).id).count assert_equal courses_count, courses_returned.count end @@ -15,7 +15,7 @@ class API::CoursesControllerTest < ActionDispatch::IntegrationTest assert_response :success courses_returned = JSON.parse @response.body - courses_count = Course.where(subject: "CS").count + courses_count = Course.where(subject: "CS", semester_id: semesters(:fall2018).id).count assert_equal courses_count, courses_returned.count end @@ -25,7 +25,7 @@ class API::CoursesControllerTest < ActionDispatch::IntegrationTest assert_response :success courses_returned = JSON.parse @response.body - courses_count = Course.where(subject: "CS", course_number: "112").count + courses_count = Course.where(subject: "CS", course_number: "112", semester_id: semesters(:fall2018).id).count assert_equal courses_count, courses_returned.count end -- GitLab