-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcoursedata.json
More file actions
2710 lines (2710 loc) · 185 KB
/
Copy pathcoursedata.json
File metadata and controls
2710 lines (2710 loc) · 185 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"2-d-mixed-media": {
"considerations": "",
"courseid": "ART235",
"coursename": "2-D Mixed Media",
"credits": "5",
"description": "Art Exploration is required before taking this course. Students will continue to develop the skills learned in Art Exploration and experiment new techniques using a wide variety of materials, including oil paint, collage, and Xerox transfer. Students will learn how to communicate their ideas in creative ways by combining paint with other materials to create their artwork.",
"format": "Block",
"gradelevels": "10-12",
"length": "1 Quarter",
"prerequisites": "Art Exploration",
"tags": ["Art"]
},
"3-d-mixed-media": {
"considerations": "Art Exploration is required before taking this class. This course will involve written work as well as artwork projects. Presentations and class discussions are regular occurrences in this course.",
"courseid": "ART145",
"coursename": "3-D Mixed Media",
"credits": "5",
"description": "Students will learn a variety of techniques related to 3-D Art, such as, sculpture in the round, relief, assemblage, mobiles, and installations. Students will learn to create art by reflecting on their own personal experiences and by researching other cultures and artists.",
"format": "Block",
"gradelevels": "10-12",
"length": "1 Quarter",
"prerequisites": "Art Exploration",
"tags": ["Art"]
},
"academic-literacy-i": {
"considerations": "Students are placed in this course per recommendation of the 8th grade language arts teachers, Iowa Assessment scores and other indicators. This course is designed for students reading significantly below grade level. * May be required for individual students.",
"courseid": "ENG105",
"coursename": "Academic Literacy I",
"credits": "5",
"description": "This course develops reading rate and comprehension skills of material presented in all content areas. Each unit will include the reading process, independent reading, and vocabulary. Specific units will focus on reading textbooks, fiction, non-fiction, internet, graphics, and tests.",
"format": "Skinny",
"gradelevels": "9-10",
"length": "1 Semester",
"prerequisites": "approval",
"tags": ["English"]
},
"academic-literacy-ii": {
"considerations": "Students are placed in this course per recommendation of 9th grade English teachers, Iowa Assessment scores, and other indicators. This course is designed for students reading significantly below grade level. *May be required for individual students.",
"courseid": "ENG205",
"coursename": "Academic Literacy II",
"credits": "5",
"description": "This course continues to develop reading rate and comprehension of material presented in all content areas. This course reinforces strategies learning in Academic Literacy I.",
"format": "Block",
"gradelevels": "9-10",
"length": "1 Quarter",
"prerequisites": "Academic Literacy I or Instructor approval",
"tags": ["English"]
},
"accounting": {
"considerations": "None",
"courseid": "BUS330",
"coursename": "Accounting",
"credits": "10",
"description": "Students will learn the fundamentals of double-entry accounting for personal and small business use. They will also learn about payroll, income tax and banking activities. Computers and various business forms will be used to help students develop a beginning understanding of the business world.",
"format": "Block",
"gradelevels": "10-12",
"length": "2 Quarters",
"prerequisites": "None",
"tags": ["Business"]
},
"acting": {
"considerations": "See prerequisites. Acting, Rhetoric, or Speech is required for graduation. Acting DOES NOT meet the Board of Regents criteria for the RAI. Admission to the class is subject to availability.",
"courseid": "ENG370",
"coursename": "Acting",
"credits": "5",
"description": "Acting is designed to make students more effective communicators by emphasizing a variety of speaking situations and building self-confidence in all these settings. Because this is a performance-based class, students should carefully consider potential conflicts that may result in absences.",
"format": "Block",
"gradelevels": "11-12",
"length": "1 Quarter",
"prerequisites": "English II, English III, or English Department approval",
"tags": ["English"]
},
"advanced-accounting": {
"considerations": "See prerequisite. HP 10b11. Financial calculator is required.",
"courseid": "BUS430",
"coursename": "Advanced Accounting",
"credits": "10",
"description": "This course uses an integrated approach to teach accounting, by learning how businesses plan for and evaluate their operating, financing, and investing decisions and then how accounting systems gather and provide data to decision makers. The course covers all the objectives of a traditional college level financial accounting course, plus those from a managerial accounting course. Topics include accounting information systems, time value of money, and accounting for merchandising firms, sales and receivables, fixed assets, debt, equity, statement of cash flows, financial ratios, cost-volume profit analysis and variance analysis.",
"format": "Block",
"gradelevels": "10-12",
"length": "2 Quarters",
"prerequisites": "Accounting",
"tags": ["Business"]
},
"advanced-art": {
"considerations": "11th and 12th grade students only",
"courseid": "ART450",
"coursename": "Advanced Art",
"credits": "5",
"description": "This class will emphasize preparing a portfolio for scholarship, college admission, and learning about art-related careers. Students will learn attitudes that promote independent idea development and problem-solving. They will explore selected ideas and media in depth in their development as beginning artist.",
"format": "Block",
"gradelevels": "11-12",
"length": "1 Quarter",
"prerequisites": "3 or more Art Classes",
"tags": ["Art"]
},
"advanced-biology": {
"considerations": "Compass Only. See prerequisites. Strong comprehensive vocabulary, reading and study skills. This course meets the L-M science elective requirement. .",
"courseid": "SCI230",
"coursename": "Advanced Biology",
"credits": "5",
"description": "This course provides a more in-depth study of areas of biology. The areas of emphasis include cell processes, energy pathways, genetics, DNA structure, and the regulation of gene expression.",
"format": "Block",
"gradelevels": "10-12",
"length": "1 Quarter",
"prerequisites": "General Biology",
"tags": ["Science"]
},
"advanced-english-i": {
"considerations": "English I or Advanced English I required for graduation. Students earning a 90 or higher in this course may opt to bypass English II. Students need to be highly motivated in reading and writing. Expectations are high regarding motivation and achievement, reflected in the pace and rigor of the curriculum. Additionally, good basic writing and research skills are expected.",
"courseid": "ENG130",
"coursename": "Advanced English I",
"credits": "10",
"description": "This is an accelerated class which emphasizes analytical reading and writing. Students should be independent learners. Students will read several novels, non-fiction, drama, and short stories.",
"format": "Block",
"gradelevels": "9",
"length": "2 Quarters",
"prerequisites": "None",
"tags": ["English"]
},
"advanced-english-ii": {
"considerations": "See prerequisite. Fulfills the 10th grade English requirement for graduation.",
"courseid": "ENG215",
"coursename": "Advanced English II",
"credits": "10",
"description": "This is an accelerated version of English II where students will analyze/interpret a variety of American and global literature with an emphasis on analytical writing and interpreting literary pieces. Students will also write argumentative, research, and personal essays. Students should be highly self-motivated and independent and should expect homework each night. This course has a high level of rigor and expectations. The following texts will be covered in class: • Selection of short pieces of fiction and nonfiction from American authors and those outside of the global North • I am Malala • Love Hate & Other Filters • Fahrenheit 451 • A literary circle novel (The Fishermen, Under the Udala Trees, No Friend but the Mountains) • Possible additional texts (Of Mice and Men, House on Mango Street, Shakespeare)",
"format": "Block",
"gradelevels": "10-12",
"length": "2 Quarters",
"prerequisites": "English I or Advanced English I",
"tags": ["English"]
},
"advanced-english-iii": {
"considerations": "Fulfills the literature and writing requirement for graduation and is encouraged for students planning to take AP English.",
"courseid": "ENG325",
"coursename": "Advanced English III",
"credits": "10",
"description": "This is an accelerated version of English III where students will analyze/interpret a variety of American literature with an emphasis on analytical writing and interpreting literary pieces. Students will also write informative, persuasive, research, and personal essays. Students should be highly self-motivated and independent and should expect homework each night. This course has a high level of rigor and expectations. The following text will be covered in class: • Billy Budd • The Awakening • The Jungle • The Adventures of Huckleberry Finn • The Great Gatsby • The Crucible • Selections of poetry from Walt Whitman, Emily Dickinson, and other American poets • Short pieces of fiction and nonfiction from American authors",
"format": "Block",
"gradelevels": "10-12",
"length": "2 Quarters",
"prerequisites": "English II or English Department approval",
"tags": ["English"]
},
"advanced-placement-american-government": {
"considerations": "Instructor approval for 10th graders. Fulfills the government graduation requirement. Students may take the American Government AP exam in May.",
"courseid": "SOC500",
"coursename": "Advanced Placement American Government",
"credits": "10",
"description": "Several topics covered in this course include Constitutional underpinnings, political beliefs & behaviors, political parties, interest groups & mass media, institutions of national government, public policy & civil rights, and civil liberties.",
"format": "Block",
"gradelevels": "11-12 or approval",
"length": "2 Quarters during second semester",
"prerequisites": "none",
"tags": ["Advanced Placement", "Social Studies"]
},
"advanced-placement-biology-1-%26-2": {
"considerations": "Advanced Placement Biology 1 & 2 is a NGSS course based on the completion of NGSS Life Science Standards and successful completion will meet the life science requirement for graduation. Students MUST sign up for both sections listed above. General Biology is recommended but not required for enrollment in AP Biology. Students taking this course must have completed Chemistry I. Students may take the AP Biology exam in May.",
"courseid": "SCI511 & SCI512",
"coursename": "Advanced Placement Biology 1 & 2",
"credits": "15",
"description": "This course is designed as an in-depth study of the field of biology. Areas of emphasis include energy pathways; the cell; genetics and genetic engineering; and organisms and their environments.",
"format": "Block",
"gradelevels": "10-12",
"length": "3 Quarters",
"prerequisites": "Chemistry I and General Biology (or instructor approval)",
"tags": ["Advanced Placement", "Science"]
},
"advanced-placement-calculus-(ab)": {
"considerations": "Students may take the AP Calculus exam in May. Graphing calculator is required. TI84 is recommended.",
"courseid": "MAT510",
"coursename": "Advanced Placement Calculus (AB)",
"credits": "10",
"description": "AP Calculus AB is roughly equivalent to a first semester college Calculus I course devoted to topics in differential and integral calculus. The AP course covers topics in these areas, including concepts and skills of limits, derivatives, definite integrals, and the Fundamental Theorem of Calculus. You will learn how to approach calculus concepts and problems when they are represented graphically, numerically, analytically, and verbally, and how to make connections amongst these representations. You will learn how to use technology to help solve problems, experiment, interpret results, and support conclusions.",
"format": "Skinny",
"gradelevels": "10-12",
"length": "2 Semesters",
"prerequisites": "Pre-Calculus",
"tags": ["Advanced Placement", "Math"]
},
"advanced-placement-calculus-(bc)-1-%26-2": {
"considerations": "Students MUST sign up for both sections listed above. Students may take the AP Calculus exam in May. Graphing calculator is required.",
"courseid": "MAT511 & MAT512",
"coursename": "Advanced Placement Calculus (BC) 1 & 2",
"credits": "15",
"description": "AP Calculus BC is equivalent to a full year of college Calculus. It covers both Calculus I and Calculus II. Students will analyze and solve non-trivial mathematical problems related to calculus. Mathematical modeling and communication will be emphasized. The course surveys the mathematics of change from elementary derivatives through sophisticated integrals to infinite series.",
"format": "Skinny-1st semester Block-2nd semester",
"gradelevels": "10-12",
"length": "2 Semesters",
"prerequisites": "Pre-Calculus",
"tags": ["Advanced Placement", "Math"]
},
"advanced-placement-chemistry-1-%26-2": {
"considerations": "Students MUST sign up for both sections listed above. Students taking this course should have completed Chemistry I and Advanced Algebra IIA. Students may take the Chemistry AP exam in May.",
"courseid": "SCI521 & SCI522",
"coursename": "Advanced Placement Chemistry 1 & 2",
"credits": "15",
"description": "This course is designed to cover the basics of chemistry at the college level. Areas of emphasis include atomic structure, molecular bonding, thermochemistry, kinetics, and chemical equilibria.",
"format": "Block",
"gradelevels": "10-12",
"length": "3 Quarters",
"prerequisites": "Chemistry I and Advanced Algebra IIA",
"tags": ["Advanced Placement", "Science"]
},
"advanced-placement-computer-science-a-(csa)": {
"considerations": "Students need a prior programming class (CSE or CSP) before taking CSA. Or, students with other previous programming experience can seek teacher approval to take CSA without a prior class. This course prepares students for the AP Computer Science A exam.",
"courseid": "CSC500",
"coursename": "Advanced Placement Computer Science A (CSA)",
"credits": "10",
"description": "CSA students will learn fundamentals of the Java programming language and continue to object-oriented programming. Students develop skills in solving computational problems, writing algorithms, testing code, and processing data.",
"format": "Block",
"gradelevels": "10-12",
"length": "2 Quarters",
"prerequisites": "Computer Science Essentials (CSE) or Computer Science Principles (CSP)",
"tags": ["Advanced Placement", "Computer Science"]
},
"advanced-placement-environmental-science-1-%26-2": {
"considerations": "Advanced Placement Environmental Science 1 & 2 is a NGSS course based on the completion of NGSS Earth Science Standards and successful completion will meet the earth science requirement for graduation. Students taking this course should have completed General Biology and Algebra. Students MUST sign up for both sections listed above. Students may take the AP exam in May.",
"courseid": "SCI541 & SCI542",
"coursename": "Advanced Placement Environmental Science 1 & 2",
"credits": "15",
"description": "The goal of AP Environmental Science is to provide students with the scientific principles, concepts, and methodologies required to understand the interrelationships of the natural world, to identify and analyze environmental problems both natural and human-made, to evaluate the relative risks associated with these problems, and to examine alternative solutions for resolving or preventing them.",
"format": "Block",
"gradelevels": "10-12",
"length": "3 Quarters",
"prerequisites": "General Biology, Algebra, and Chemistry",
"tags": ["Advanced Placement", "Science"]
},
"advanced-placement-french": {
"considerations": "See prerequisite. Class is conducted in French.",
"courseid": "FOR570",
"coursename": "Advanced Placement French",
"credits": "10",
"description": "This course continues to develop the “5 Cs” of second language acquisition (communication, cultures, connections, comparisons, and communities) by providing intensive practice in the fundamental communicative skills of listening, speaking, reading, and writing, with a methodic study of different cultural contexts. This class offers the opportunity for language use beyond the sphere of the elementary language courses. Discussion of the cultural practices and products of Francophone countries presented in the readings and viewing materials constitute an important part of the course. Comparisons and connections between Francophone and Anglophone cultures and language are also studied as it is a major portion of the AP exam. This course offers university credit in the form of an AP Exam and therefore is considered a college level class.",
"format": "Block",
"gradelevels": "12",
"length": "1 Semester",
"prerequisites": "French IV",
"tags": ["Advanced Placement", "Foreign Language"]
},
"advanced-placement-music-theory": {
"considerations": "Students may take the Music Theory AP exam in May. This course is strongly recommended for students considering studying music at the college/university level.",
"courseid": "MUS500",
"coursename": "Advanced Placement Music Theory",
"credits": "10",
"description": "This college-level class is progressive with each unit building on the previous. Major areas of study include the basic materials of music, time classification, notation, intervals, scales, time signatures, structure of tonality, triads, phrase structure and harmonization, seventh chords, musical style, exploration of arranging, composing, sight-singing, melodic and harmonic dictation.",
"format": "Skinny",
"gradelevels": "10-12",
"length": "2 Semesters",
"prerequisites": "Instructor Recommendation",
"tags": ["Advanced Placement", "Music"]
},
"advanced-placement-physics-1": {
"considerations": "Advanced Placement Physics I is based on the completion of NGSS Physical Science Standards and successful completion will meet the physics portion of the physical science graduation requirement. Physics I is NOT a prerequisite for this class. See prerequisites. Students may take the AP Physics 1 exam in May.",
"courseid": "SCI531",
"coursename": "Advanced Placement Physics 1",
"credits": "10",
"description": "This course covers College Physics I. Students taking this class should have a strong interest in the practical applications of mathematics to real-life scenarios. Areas of emphasis include experimental design, kinematics, newton's laws, gravitation, electricity, and waves.",
"format": "Block",
"gradelevels": "10-12",
"length": "2 Quarters",
"prerequisites": "Chemistry I AND Algebra 2",
"tags": ["Advanced Placement", "Science"]
},
"advanced-placement-physics-1-%26-2": {
"considerations": "Students may take the AP Physics 1 and 2 exams in May.",
"courseid": "SCI533",
"coursename": "Advanced Placement Physics 1 & 2",
"credits": "10",
"description": "This course covers all content from SCI531 AP Physics I and adds to it the content of College Physics II. Students taking this course should have a strong interest in the practical applications of mathematics to real-life scenarios. Areas of emphasis include experimental design, thermodynamics, fluid-mechanics, optics, electric circuits, magnetism, and modern physics.",
"format": "Block",
"gradelevels": "10-12",
"length": "4 Quarters",
"prerequisites": "Chemistry I AND Algebra 2",
"tags": ["Advanced Placement", "Science"]
},
"advanced-placement-physics-c:-e-&-m": {
"considerations": "See prerequisite. Students taking this course should have a strong interest in the practical applications of mathematics. Students may take the AP Physics C: E & M exam in May. AP Physics C: E & M is suggested for students pursuing a physics or engineering degree. This course will be offered when the start of the school year ends in an even calendar number. AP Physics C: E & M alternates years with AP Physics C: Mechanics.",
"courseid": "SCI535",
"coursename": "Advanced Placement Physics C: E & M",
"credits": "10",
"description": "AP Physics C: E & M is a calculus-based introductory college-level physics course. Students cultivate their understanding of physics through classroom study, in-class activity, and hands-on, inquiry-based laboratory work. Students build their understanding of electric charge, field, potential, and circuits as well as magnetic fields, and electromagnetic induction.",
"format": "Block",
"gradelevels": "10-12",
"length": "2 Quarters",
"prerequisites": "AP Calculus AB or BC, Taken or Concurrent",
"tags": ["Advanced Placement", "Science"]
},
"advanced-placement-physics-c:-mechanics": {
"considerations": "See prerequisite. Students taking this course should have a strong interest in the practical applications of mathematics. Students may take the AP Physics C: Mechanics exam in May. AP Physics C: Mechanics is suggested for student pursuing a physics or engineering degree. This course will be offered when the start of the school year ends in an odd calendar number. AP Physics C: Mechanics alternates years with AP Physics C: E & M.",
"courseid": "SCI534",
"coursename": "Advanced Placement Physics C: Mechanics",
"credits": "10",
"description": "AP Physics C: Mechanics is a calculus-based introductory college-level physics course. Students cultivate their understanding of physics through classroom study, in-class activity, and hands-on, inquiry-based laboratory work. Students build their understanding of kinematics, dynamics, work, energy, momentum, oscillations, and rotational motion.",
"format": "Block",
"gradelevels": "10-12",
"length": "2 Quarters",
"prerequisites": "AP Calculus AB or BC, Taken or Concurrent",
"tags": ["Advanced Placement", "Science"]
},
"advanced-placement-psychology": {
"considerations": "Textbooks are available for purchase online, but one will be provided in class. Class is geared to prep students to take the national AP Psychology exam in May.",
"courseid": "SOC530",
"coursename": "Advanced Placement Psychology",
"credits": "10",
"description": "Areas studied are inclusive of the research and application to the national standards set forth by the APA and College Board. These include the content of the psychology pillars of biology cognition, development, social and personality, and mental and physical health. College level work is expected, as this is a college level course.",
"format": "Block",
"gradelevels": "11-12",
"length": "2 Quarters",
"prerequisites": "Introductory Psychology OR approval",
"tags": ["Advanced Placement", "Social Studies"]
},
"advanced-placement-statistics": {
"considerations": "Students may take the AP Statistics exam in May. Graphing calculator is required.",
"courseid": "MAT530",
"coursename": "Advanced Placement Statistics",
"credits": "10",
"description": "This course is a typical introductory college statistics course. It is divided into 4 major themes: exploratory data analysis, probability, statistical inference and planning, and conducting a study. Students will use both graphical and numerical techniques, probability to anticipate the distribution of data to be collected, design ways to collect data while avoiding bias, and make inferences from samples of data.",
"format": "Skinny",
"gradelevels": "10-12",
"length": "2 Semesters",
"prerequisites": "Algebra 2",
"subsequent": "Mathematics & Society or AP Calculus",
"tags": ["Advanced Placement", "Math"]
},
"advanced-placement-us-history-1-%26-2": {
"considerations": "Instructor approval for 9th graders. Students MUST sign up for both sections listed above. Fulfills the US history graduation requirement. This course begins in 2nd quarter. Students may take the US History AP exam in May.",
"courseid": "SOC521 & SOC522",
"coursename": "Advanced Placement US History 1 & 2",
"credits": "15",
"description": "Students will participate in reading primary and secondary history materials, lectures, research projects, and group and individual presentations. College level work is expected in this survey course which covers the full range of US history from the early European explorations to the present.",
"format": "Block",
"gradelevels": "9-12",
"length": "3 Quarters",
"prerequisites": "US History 9 OR Advanced US History 9 is recommended",
"tags": ["Advanced Placement", "Social Studies"]
},
"advanced-placement-world-history-1-%26-2": {
"considerations": "Students MUST sign up for both sections listed above. Fulfills the required world history requirement. Duration is three quarters beginning in 2nd quarter. Students may take the World History AP exam in May.",
"courseid": "SOC541 & SOC542",
"coursename": "Advanced Placement World History 1 & 2",
"credits": "15",
"description": "This course is a broad survey of the major periods of human history from a global comparative perspective. Students will study the events and trends that have shaped the world into what it is today, while refining their study, writing and critical thinking skills.",
"format": "Block",
"gradelevels": "10-12",
"length": "3 Quarters",
"prerequisites": "none",
"tags": ["Advanced Placement", "Social Studies"]
},
"advanced-sewing": {
"considerations": "This is an advanced level, project-based class for independent sewers.",
"courseid": "FAM250",
"coursename": "Advanced Sewing",
"credits": "5",
"description": "Students in this class will increase sewing machine skills by creating multiple projects with minimal instructor assistance. Also, students will explore other textile production methods such as embroidery, knitting, dyeing, and weaving.",
"format": "Block",
"gradelevels": "10-12",
"length": "1 Quarter",
"prerequisites": "Fashion & Sewing/ Creative Sewing with grade of B or better",
"tags": ["Family Consumer Sciences"]
},
"advanced-us-history-9": {
"considerations": "Recommended for students with a strong interest in reading and writing in history. Students successful in this course may move into the AP World History elective to satisfy their world history requirement. US History 9, Advanced US History 9, or AP US History is required for graduation.",
"courseid": "SOC130",
"coursename": "Advanced US History 9",
"credits": "10",
"description": "This course explores the Gilded Age to present focusing on people, ideas, and events that have helped to create the nation and world we live in today. Strong emphasis is placed on developing skills in writing, and interpretation and analysis of primary historical documents. Students will examine events and ideas from a variety of perspectives as they learn how to take a position on an issue, develop a thesis statement and use evidence to defend their position.",
"format": "Block",
"gradelevels": "9",
"length": "2 Quarters",
"prerequisites": "None",
"tags": ["Social Studies"]
},
"aerospace-engineering-(ae)": {
"considerations": "It is recommended that students have prior experience with a 3D CAD program.",
"courseid": "IND670",
"coursename": "Aerospace Engineering (AE)",
"credits": "10",
"description": "The major focus of the Aerspace Engineering course is to expose students to the world of aeronautics, flight, and engineering. Students will employ engineering and scientific concepts in the solution of aerospace problems. Lessons will engage students in engineering design problems related to aerospace information systems, astronautics, rocketry, propulsion, the physics of space science, space life sciences, the biology of spce science, principles of aeronautics, structures and materials, and systems engineering.",
"format": "Block",
"gradelevels": "10-12",
"length": "2 Quarters",
"prerequisites": "Algebra",
"tags": ["Engineering", "PLTW"]
},
"afnr-%E2%80%93-workplace-experience": {
"considerations": "Instructor approval required. SAE (supervised agricultural experience) and FFA opportunities.",
"courseid": "AGR550",
"coursename": "AFNR – Workplace Experience",
"credits": "5 hours",
"description": "This Agriculture, Food, and Natural Resources — Workplace Experience course provides work experience in fields related to agriculture, food, and natural resources. Goals are set cooperatively by the student, teacher, and worksite supervisor.",
"format": "Independent study",
"gradelevels": "9-12",
"length": "Varies",
"prerequisites": "None",
"tags": ["Agriculture"]
},
"agricultural-business-foundations": {
"considerations": "Students will be introduced to SAE (supervised agricultural experience) and FFA opportunities.",
"courseid": "AGR325",
"coursename": "Agricultural Business Foundations",
"credits": "10 hours",
"description": "Agricultural Business Foundations introduces students to business management in agriculture. Student experiences involve the study of starting a business, financial documents required of a business, risk management, and writing a business plan.",
"format": "Block, Blended",
"gradelevels": "10-12",
"length": "2 Quarters",
"prerequisites": "None",
"tags": ["Agriculture"]
},
"agricultural-power-and-technology": {
"considerations": "Students will be introduced to SAE (supervised agricultural experience) and FFA opportunities.",
"courseid": "AGR300",
"coursename": "Agricultural Power and Technology",
"credits": "10 hours",
"description": "Agricultural Power and Technology is a course to expose students to mechanics, power, technology, and career options in the world of agriculture. Student experiences involve the study of sustainable energy, geographic information & global position systems, drone technology, machines, and structures as it relates to multiple areas of agriculture, including animals, plants, food science, biotechnology, and natural resource management.",
"format": "Block",
"gradelevels": "10-12",
"length": "2 Quarters",
"prerequisites": "None",
"tags": ["Agriculture"]
},
"agricultural-research-and-development": {
"considerations": "Students will be introduced to SAE (supervised agricultural experience) and FFA opportunities.",
"courseid": "AGR500",
"coursename": "Agricultural Research and Development",
"credits": "10 hours",
"description": "Agricultural Research and Development is the capstone course designed to culminate students' experiences in agriculture, based on the pathway of study they pursued. Woven throughout the course are projects and problems based in practical applications and designed to develop and improve employability skills of students. Students will further enhance research, critical thinking, and teamwork skills as they expand on content knowledge from previous CASE courses. Students completing coursework for all four courses within a specific CASE Pathway are eligible to receive CASE program certification.",
"format": "Block",
"gradelevels": "10-12",
"length": "2 Quarters",
"prerequisites": "None",
"tags": ["Agriculture"]
},
"algebra-1": {
"considerations": "A scientific or graphing calculator is required.",
"courseid": "MAT170",
"coursename": "Algebra 1",
"credits": "10",
"description": "Algebra 1 deals with variables, properties of operations and formulas. Topics include negative numbers, absolute value, opposites, and linear equations in one variable, inequalities in one variable, word problems, factoring, graphing, and quadratic equations.",
"format": "Skinny",
"gradelevels": "9-12",
"length": "2 Semesters",
"prerequisites": "Pre-Algebra, Math 8, or Algebra Foundations",
"subsequent": "Geometry",
"tags": ["Math"]
},
"algebra-1a": {
"considerations": "Students are placed in this course per approval of the math department based on Math 8 or Algebra Foundations performance. A scientific calculator or equivalent is required. Algebra 1A and Algebra 1B together meet the Algebra graduation requirement.",
"courseid": "MAT150",
"coursename": "Algebra 1A",
"credits": "10",
"description": "This course is designed to include material covered in the first semester of Algebra 1. Topics include negative numbers, absolute values, opposites, linear equations, and inequalities in word problems.",
"format": "Skinny",
"gradelevels": "9-11",
"length": "2 Semesters",
"prerequisites": "Algebra Foundations, Pre-Algebra, or Math 8",
"subsequent": "Algebra 1B",
"tags": ["Math"]
},
"algebra-1b": {
"considerations": "Students are placed in this course per approval of the math department based on Pre-Algebra and Iowa Assessment scores. A scientific calculator or equivalent is required. Algebra 1A and Algebra 1B together meet the Algebra graduation requirement.",
"courseid": "MAT155",
"coursename": "Algebra 1B",
"credits": "10",
"description": "This course is designed to include material covered in the second semester of Algebra 1. Topics include negative numbers, absolute values, opposites, linear equations, and inequalities in one variable word problems, factoring, graphing, and quadratic equations.",
"format": "Skinny",
"gradelevels": "10-12",
"length": "2 Semesters",
"prerequisites": "Algebra 1A",
"subsequent": "Geometry (recommended) Mathematics and Society",
"tags": ["Math"]
},
"algebra-2": {
"considerations": "A graphing calculator IS required. TI89 or TI-Nspire calculators are NOT allowed.",
"courseid": "MAT315",
"coursename": "Algebra 2",
"credits": "10",
"description": "This course includes a variety of topics, including equations, inequalities, linear functions and relations, systems of equations and inequalities, quadratic functions and relations, polynomials, inverse functions and relations, radical functions and relations, exponential functions and relations, logarithmic functions and relations, and rational functions and relations, sequences and series, trigonometry functions, trigonometry identities, and trigonometry equations. This course fulfills minimum requirement for entry into most regent universities.",
"format": "Skinny",
"gradelevels": "9-12",
"length": "2 Semesters",
"prerequisites": "Geometry",
"subsequent": "Pre-Calculus (recommended) or Mathematics & Society or AP Statistics",
"tags": ["Math"]
},
"algebra-2-priority-standards": {
"considerations": "Students are placed into this course by recommendation of a mathematics teacher or school counselor. This course is designed for students who need extra support with the core concepts of Algebra 2.",
"courseid": "MAT290PS",
"coursename": "Algebra 2 Priority Standards",
"credits": "2.5",
"description": "This course develops mathematical skills focused on the priority standards of Algebra 2. These topics include equations, inequalities, linear functions and relations, systems of equations and inequalities, quadratic functions and relations, polynomials, inverse functions and relations, radical functions and relations, exponential functions and relations, logarithmic functions and relations, and rational functions and relations, sequences and series, trigonometry functions, trigonometry identities, and trigonometry equations.",
"format": "Skinny",
"gradelevels": "9-12",
"length": "1 Quarter",
"prerequisites": "Teacher and/or Counselor recommendation, concurrent enrollment in Algebra 2",
"tags": ["Math"]
},
"algebra-fundamentals-i": {
"considerations": "Compass Only. Students are placed in this course per approval of the math department based on Pre-Algebra performance. A scientific calculator or equivalent is required. Graphing calculators are not allowed in this course. Algebra Fundamentals I and Algebra Fundamentals II together meet the algebra graduation requirement.",
"courseid": "MAT150",
"coursename": "Algebra Fundamentals I",
"credits": "5 credits per quarter",
"description": "This course is designed to include material covered in the first semester of Algebra. Topics include negative numbers, absolute values, opposites, linear equations, and inequalities in word problems.",
"format": "Block",
"gradelevels": "10-11",
"length": "1 Semester",
"prerequisites": "Pre-Algebra and instructor approval",
"tags": ["Math"]
},
"algebra-fundamentals-ii": {
"considerations": "Compass Only. Students are placed in this course per approval of the math department based on Algebra, and Iowa Assessment scores. A scientific calculator or equivalent is required. Graphing calculators are not allowed in this course. Algebra Fundamentals I and Algebra Fundamentals II together meet the algebra graduation requirement.",
"courseid": "MAT155",
"coursename": "Algebra Fundamentals II",
"credits": "5 credits per quarter",
"description": "This course is designed to include material covered in the second semester of Algebra. Topics include negative numbers, absolute values, opposites, linear equations, and inequalities in one variable word problems, factoring, graphing, and quadratic equations.",
"format": "Block",
"gradelevels": "10-12",
"length": "1 Semester",
"prerequisites": "Algebra Fundamentals I or instructor approval",
"tags": ["Math"]
},
"american-literature-i": {
"considerations": "Compass Only.",
"courseid": "ENG210e",
"coursename": "American Literature I",
"credits": "5",
"description": "Students will read, discuss, and analyze a variety of texts written by American authors, including short stories, plays, and The Great Gatsby. Students will research, collaborate, and present on topics related to the literature.",
"format": "Block",
"gradelevels": "10-12",
"length": "1 Quarter",
"prerequisites": "None",
"tags": ["English"]
},
"anatomy-%26-physiology": {
"considerations": "Anatomy & Physiology is a science elective course. Students taking this course must have completed General Biology.",
"courseid": "SCI410",
"coursename": "Anatomy & Physiology",
"credits": "10",
"description": "This course is designed to allow students to study the fundamental concepts of human structure and function as it pertains to their bodies. It is designed to lead students into a basic career in the health field and prepare students for post-secondary education. One critical instructional element of anatomy to help foster an understanding of structures and functions is the exploration and dissection of animal tissues, organs, and bodies.",
"format": "Block",
"gradelevels": "10-12",
"length": "2 Quarters",
"prerequisites": "General Biology",
"tags": ["Science"]
},
"animal-and-plant-biotechnology": {
"considerations": "Students will be introduced to SAE (supervised agricultural experience) and FFA opportunities.",
"courseid": "AGR280",
"coursename": "Animal and Plant Biotechnology",
"credits": "10 hours",
"description": "Animal and Plant Biotechnology, a specialization course, provides students with experiences in industry appropriate applications of biotechnology related to plant and animal agriculture. Students are expected to become proficient at biotechnological skills involving micro pipetting, bacterial cultures and transformations, electrophoresis, and polymerase chain reaction.",
"format": "Block",
"gradelevels": "10-12",
"length": "2 Quarters",
"prerequisites": "None",
"tags": ["Agriculture"]
},
"ap-english-literature-and-composition": {
"considerations": "See prerequisite. This two-quarter class will be offered during the first semester of the year and will prepare students to take the AP English Literature and Composition exam in May. Review sessions during semester 2 will be provided.",
"courseid": "ENG512",
"coursename": "AP English Literature and Composition",
"credits": "10",
"description": "This course is for highly motivated students capable of college level work. Students will further develop critical thinking skills through the study of complex literature and writing numerous literary analyses. Students will be expected to have read one text prior to the beginning of the course and should check with their instructor for further information.",
"format": "Block",
"gradelevels": "11-12",
"length": "2 Quarters",
"prerequisites": "Advanced English III is strongly recommended",
"tags": ["Advanced Placement", "English"]
},
"ap-microeconomics": {
"considerations": "Students should be comfortable working with charts, tables, numbers, and equations. Students may take the AP Microeconomics exam in May.",
"courseid": "BUS510",
"coursename": "AP Microeconomics",
"credits": "10",
"description": "This course will focus on economic concepts (scarcity, choice, incentives); supply, demand, and markets; product markets (production, productivity, competitive markets); resource markets (demand for resources, wage rates); microeconomics of government; microeconomic issues and policies.",
"format": "Block",
"gradelevels": "11-12",
"length": "2 Quarters",
"prerequisites": "Economics is recommended",
"tags": ["Advanced Placement", "Business"]
},
"ap-online-independent-study": {
"considerations": "This course is for students identified by established district guidelines.",
"courseid": "TAG620",
"coursename": "AP Online Independent Study",
"courses": "AP MACROECONOMICS and AP ENGLISH LANGUAGE AND COMPOSITION",
"credits": "10",
"description": "Independent study options are limited to AP MACROECONOMICS and AP ENGLISH LANGUAGE AND COMPOSITION. Courses are offered through the Iowa Online AP Academy. You need at least one skinny in your schedule. Limited enrollment.",
"gradelevels": "10-12",
"length": "1-2 Semesters",
"prerequisites": "Instructor approval",
"tags": ["Advanced Placement", "Talented and Gifted"]
},
"applied-physics-and-chemistry": {
"considerations": "Applied Chemistry and Physics is based on the completion of NGSS Physical Science Standards and successful completion will meet the physical science graduation requirement. Students taking this course must have completed Algebra.",
"courseid": "SCI360",
"coursename": "Applied Physics and Chemistry",
"credits": "10",
"description": "This course is designed to allow students to explore the big ideas in Chemistry and Physics. Chemistry concepts include properties of matter, the influence of electrons on behavior of the chemical elements, behavior of chemical reactions, and nuclear reactions. Physics content includes force, motion, momentum, collisions, energy transformations, electromagnetism, waves, and light.",
"format": "Block",
"gradelevels": "10-12",
"length": "2 Quarters",
"prerequisites": "Algebra",
"tags": ["Science"]
},
"aquaculture-science": {
"considerations": "Students will be introduced to SAE (supervised agricultural experience) and FFA opportunities.",
"courseid": "AGR225",
"coursename": "Aquaculture Science",
"credits": "5",
"description": "Aquaculture Science introduces students to the world of animal and plant aquaculture. Students will acquire the skills needed to produce and harvest finfish, freshwater prawn and food plants while working in the department's aquaculture laboratory.",
"format": "Block",
"gradelevels": "9-12",
"length": "1 Quarter",
"prerequisites": "None",
"tags": ["Agriculture"]
},
"art-exploration": {
"considerations": "This course is an introductory art course which is highly recommended before taking any art course.",
"courseid": "ART110",
"coursename": "Art Exploration",
"credits": "5",
"description": "This course teaches basic visual literacy. By learning about the elements and principles of art, students will learn what visual images communicate. Students will gain a better understanding of how and what they are communicating in their artwork through direct application of the elements and principals. Students will develop technical skills using a variety of mediums including computer-generated images.",
"format": "Block",
"gradelevels": "9-12",
"length": "1 Quarter",
"prerequisites": "None",
"tags": ["Art"]
},
"astronomy": {
"considerations": "Astronomy is a science elective course. Students taking this course must have completed Geometry and Applied Chemistry and Physics or Chemistry I.",
"courseid": "SCI390",
"coursename": "Astronomy",
"credits": "5",
"description": "This course is designed to allow students to receive an intense, in-depth look at astronomy topics including astronomical history, stellar measuring, stellar evolution, forces (gravitational, inertial, nuclear, magnetic, etc.) and the universe (theories, black matter, quasars, etc.).",
"format": "Block",
"gradelevels": "11-12",
"length": "1 Quarter",
"prerequisites": "Geometry and Applied Chemistry and Physics or Chemistry I",
"tags": ["Science"]
},
"beginning-ceramics": {
"considerations": "Art Exploration is strongly recommended before taking this course. Students may need to spend extra time in the studio to complete all the required course work. This class is for motivated students who like to be hands-on in class.",
"courseid": "ART125",
"coursename": "Beginning Ceramics",
"credits": "5",
"description": "Like getting dirty? Working with your hands? Then Beginning Ceramics is right for you. Beginning Ceramics allows students to dig into clay and learn the basic hand building methods: pinch, coil, slab, and sculpting. Students will also learn how to use the potter's wheel to create simple forms. Students will learn the scientific principle of clay and glazes. Class will be spent learning basic clay skills and applying these skills to specific projects over the course of the quarter. Creativity is a must as well as using fundamentally sound techniques.",
"format": "Block",
"gradelevels": "9-12",
"length": "1 Quarter",
"prerequisites": "None",
"tags": ["Art"]
},
"beginning-drawing": {
"considerations": "This course is for the student that wants to improve their drawing skills.",
"courseid": "ART115",
"coursename": "Beginning Drawing",
"credits": "5",
"description": "Students will learn and practice a variety of drawing skills that can be implemented in drawing comics and illustrations for graphic novels. Linear perspective, contour drawing, shading/rendering skills will also be taught. Emphasis will be placed on tone, line, value, and proportion. The works of other artists, past and present, will be studied.",
"format": "Block",
"gradelevels": "9-12",
"length": "1 Quarter",
"prerequisites": "None, Art Exploration Highly Recommended but not required.",
"tags": ["Art"]
},
"beginning-graphics": {
"considerations": "This course is heavily dependent on students learning and applying their knowledge of Adobe Illustrator. This course will strengthen students' digital skill sets empowering them to creatively navigate the visual world they live in.",
"courseid": "RT410",
"coursename": "Beginning Graphics",
"credits": "5",
"description": "Interested in experiencing the world through the eyes of a graphic designer? Beginning Graphics is the perfect class for students who want to express their creativity using Adobe Illustrator. Apply your newfound skill sets to relevant project-based work such as logo design, branding, advertising, digital illustration, and app/game design to name a few. Take your digital literacy to the next level while fostering 21 st century skills such as critical thinking, complex communication, and collaboration.",
"format": "Block",
"gradelevels": "9-12",
"length": "Quarter",
"prerequisites": "None",
"tags": ["Art"]
},
"beginning-painting": {
"considerations": "Taking Art Exploration is Highly Recommended",
"courseid": "ART135",
"coursename": "Beginning Painting",
"credits": "5",
"description": "Students will be introduced to a variety of water-based paints: watercolor, tempera, and acrylic. Students will explore the history, vocabulary, and process used in this type of painting. Students will learn how art is used for personal expression and as social statements.",
"format": "Block",
"gradelevels": "9-12",
"length": "1 Quarter",
"prerequisites": "None",
"tags": ["Art"]
},
"bella-voce": {
"considerations": "All registrants will complete a vocal audition and be placed in the appropriate ensemble by the instructors.",
"courseid": "MUS210D",
"coursename": "Bella Voce",
"credits": "10",
"description": "Emphasis will be on preparation of advanced quality choral music by established and emerging composers for this genre. Soloist voice as well as strong choral singers will be the foundation of the group. Students will receive a weekly lesson in each nine-week period. Private lessons are recommended.",
"format": "Skinny",
"gradelevels": "10-12",
"length": "2 Semesters",
"prerequisites": "Fortis, Lux, OR instructor approval",
"tags": ["Music"]
},
"bioethics": {
"considerations": "Bioethics is a science elective course. Students taking this course must have completed General Biology.",
"courseid": "SCI370",
"coursename": "Bioethics",
"credits": "5",
"description": "This course examines contemporary ethical issues in genetics, medicine, health, animal use, and the environment, reflecting on the ways in which technology and varying perspectives have resulted in conflict within society.",
"format": "Block",
"gradelevels": "10-12",
"length": "1 Quarter",
"prerequisites": "General Biology",
"tags": ["Science"]
},
"botany": {
"considerations": "Compass Only. See prerequisite. Strong comprehensive vocabulary, reading and study skills. This course meets L-M science elective credit requirement.",
"courseid": "AGR230",
"coursename": "Botany",
"credits": "5",
"description": "Students will have experiences with a number of plant science concepts with many “hands-on” activities, projects, and problems. Student experiences will involve the study of plant anatomy and physiology, classification, and the planning, planting, and caring for a school garden.",
"format": "Block",
"gradelevels": "10-12",
"length": "1 Quarter",
"prerequisites": "Biology I",
"tags": ["Agriculture"]
},
"british-literature": {
"considerations": "See prerequisites.",
"courseid": "ENG340",
"coursename": "British Literature",
"credits": "5",
"description": "This course is designed to broaden a student's reading and writing experiences. Students will read approximately five novels, excerpts from classic British works, historical overviews of the literary periods and articles related to Britain. Students will do individual and group presentations. Among these are: serve on a discussion group for a novel, present their research project, and design and discuss their coat-of-arms.",
"format": "Block",
"gradelevels": "10-12",
"length": "1 Quarter",
"prerequisites": "English II, English III, or English Department approval",
"tags": ["English"]
},
"building-trades-capstone-course": {
"considerations": "Limit of seven Linn-Mar students. Students are selected by recommendation of Linn-Mar staff. Student must provide transportation to off-campus site.",
"courseid": "IND500",
"coursename": "Building Trades Capstone Course",
"credits": "20",
"description": "Linn-Mar and Marion High School students work two hours a day to build a full-sized house. The course includes all skills and tasks needed to complete this activity.",
"fees": "Purchase of safety equipment such as glasses or ear protection",
"format": "Block",
"gradelevels": "12",
"length": "2 Semesters",
"prerequisites": "None",
"tags": ["Engineering"]
},
"business%2Fconsumer-law": {
"considerations": "None",
"courseid": "BUS410",
"coursename": "Business/Consumer Law",
"credits": "5",
"description": "This course will develop a general understanding of legal concepts for personal and business use. As students become familiar with these concepts, they will better understand the importance of the law in general, become familiar with relevant specific laws, and explore the applications of law both in business and in personal transactions. This will be achieved through field trips and/or guest speakers and analyzing real cases.",
"format": "Block",
"gradelevels": "11-12",
"length": "1 Quarter",
"prerequisites": "None",
"tags": ["Business"]
},
"cabinet-making": {
"considerations": "Grade of 80 or higher for second quarter of Woods: Materials and Processes is required.",
"courseid": "IND250",
"coursename": "Cabinet Making",
"credits": "10",
"description": "This course is designed to expand basic skills learned in Woods: Materials and Processes. A review of machine safety will precede project work. Students will design and draw plans for their project, calculate costs and devise a plan of procedure for completion of their project prior to starting work. Project work will be required to include at least one dovetailed drawer, rail, stile, and panel piece.",
"fees": "Students will be allotted materials for required projects. Additional fees may be charged if a student exceeds the allotted amount.",
"format": "Block",
"gradelevels": "10-12",
"length": "2 Quarters",
"prerequisites": "Woods: Materials and Processes",
"tags": ["Engineering"]
},
"cantemus": {
"considerations": "All registrants will complete a vocal audition and be placed in the appropriate ensemble by the instructors.",
"courseid": "MUS210E",
"coursename": "Cantemus",
"credits": "10",
"description": "Emphasis will be on preparation of advanced quality choral music by established and emerging composers for this genre. Soloist voice as well as strong choral singers will be the foundation of the group. Private lessons are recommended.",
"format": "Skinny",
"gradelevels": "10-12",
"length": "2 Semesters",
"prerequisites": "Fortis, Lux, OR instructor approval",
"tags": ["Music"]
},
"chamber-singers": {
"considerations": "All registrants will complete a vocal audition and be placed in the appropriate ensemble by the instructors.",
"courseid": "MUS210A",
"coursename": "Chamber Singers",
"credits": "10",
"description": "Emphasis will be on the preparation of choral works for smaller groups, i.e., madrigals, early music, and contemporary music. Private lessons are recommended.",
"format": "Skinny",
"gradelevels": "10-12",
"length": "2 Semesters",
"prerequisites": "Fortis, Lux, OR instructor approval",
"tags": ["Music"]
},
"chemistry-i": {
"considerations": "Chemistry I is a NGSS course based on the completion of NGSS Physical Science Standards and successful completion will meet the chemistry portion of the physical science requirement. Students taking this course must have completed Algebra. This course is also expected for students wishing to take AP Chemistry, AP Biology or AP Environmental Science.",
"courseid": "SCI320",
"coursename": "Chemistry I",
"credits": "10",
"description": "This course is designed to explore the nature of matter and how it changes. It emphasizes the relationship between chemistry and real-world applications. Chemistry I is intended for students with a strong interest in science, math, or engineering careers.",
"format": "Block",
"gradelevels": "9-12",
"length": "2 Quarters",
"prerequisites": "Algebra",
"tags": ["Science"]
},
"civil-engineering-and-architectural-design-(cea)": {
"considerations": "This course articulates credit with Kirkwood Community College.",
"courseid": "IND630",
"coursename": "Civil Engineering and Architectural Design (CEA)",
"credits": "10",
"description": "Students learn about various aspects of civil engineering and architecture and apply their knowledge to the design and development of residential and commercial properties and structures. Students will use 3D design software to design and document solutions for major course projects. Students communicate and present solutions to their peers and members of a professional community of engineers and architects.",
"format": "Block",
"gradelevels": "10-12",
"length": "2 Quarters",
"prerequisites": "Algebra",
"tags": ["Engineering"]
},
"classics": {
"considerations": "See prerequisites.",
"courseid": "ENG350",
"coursename": "Classics",
"credits": "5",
"description": "Students in this course will analyze selected works of literature that speak compassionately of the human experience, that relate human values and that represent some of the best of the literary traditions to gain new awareness of themselves and others.",
"format": "Block",
"gradelevels": "11-12",
"length": "1 Quarter",
"prerequisites": "",
"tags": ["English"]
},
"college-grammar": {
"considerations": "See prerequisites.",
"courseid": "ENG430",
"coursename": "College Grammar",
"credits": "5",
"description": "This course develops skills in analyzing sentences and applying rules of standard written English. Included are units on vocabulary development, grammatical punctuation, and editing written products.",
"format": "Block",
"gradelevels": "10-12",
"length": "1 Quarter",
"prerequisites": "English II or English Department approval",
"tags": ["English"]
},
"college-reading": {
"considerations": "See prerequisite.",
"courseid": "ENG450",
"coursename": "College Reading",
"credits": "5",
"description": "This course is designed for students who wish to improve their reading rate and comprehension skills in order to be successful in their studies beyond high school.",
"format": "Block",
"gradelevels": "10-12",
"length": "1 Quarter",
"prerequisites": "English II",
"tags": ["English"]
},
"communications": {
"considerations": "May be used to fulfill the graduation requirement for Speech/Rhetoric/Acting through Venture Academics.",
"courseid": "ENG390",
"coursename": "Communications",
"credits": "5",
"description": "Communications will prepare students to effectively publicly speak for career and professional endeavors and interactions. Students will understand and apply necessary skills for interviewing, team collaboration, public presentations to school boards and community organizations, creating professional digital profiles, and professional use of social media. Students will develop speaking and listening skills in authentic learning opportunities that address an evolving definition of public speaking.",
"format": "SuperBlock",
"gradelevels": "10-12",
"length": "1 Semester",
"prerequisites": "English I or Advanced English I",
"tags": ["English"]
},
"composition-i": {
"considerations": "See prerequisites. Basic writing and research skills are expected and needed. This is a dual-credit course, and the expectations reflect those of college courses.",
"courseid": "ENG460 or ENG460E",
"coursename": "Composition I",
"credits": "5 (LM), 3 (KW)",
"description": "This course strengthens students' writing skills that have been developed in previous English courses. Particular emphasis is on furthering skills in argument writing. The course also seeks to develop a student’s ability to think critically. Students will complete several formal papers, impromptu essays in response to current events, and two papers involving research. Additionally, students will make presentations and frequently conduct peer review. This class is combination of seminar and lab time.",
"format": "Block",
"gradelevels": "11-12",
"length": "1 Quarter",
"prerequisites": "English III or Adv. English III, 2.8 GPA or higher, and ACT score of 18 or higher.",
"tags": ["English", "Kirkwood"]
},
"composition-ii": {
"considerations": "See prerequisite. This is a dual-credit course, and the expectations reflect those of college courses.",
"courseid": "ENG465 or ENG465E",
"coursename": "Composition II",
"credits": "5 (LM), 3 (KW)",
"description": "This course continues to develop writing skills and critical thinking skills introduced in Composition I, with a particular emphasis on argument analysis. The course requires critical analysis of reading materials, audience, and self, and further emphasizes precise and effective use of research tools while honing a student’s ability to analyze and construct logical arguments. This class is a combination of seminar and lab time.",
"format": "Block",
"gradelevels": "11-12",
"length": "1 Quarter",
"prerequisites": "Composition I",
"tags": ["English", "Kirkwood"]
},
"computer-aided-design": {
"considerations": "None",
"courseid": "IND110",
"coursename": "Computer Aided Design",
"credits": "5",
"description": "This course is designed to teach the practical application of 2- and 3- dimensional computer aided design (CAD). Students will learn to use different types of software to model objects and communicate their ideas in industrial and commercial applications.",
"format": "Block",
"gradelevels": "9-12",
"length": "1 Quarter",
"prerequisites": "None",
"tags": ["Engineering"]
},
"computer-integrated-manufacturing-(cim)": {
"considerations": "This course involves college level work.",
"corequisite": "Algebra",
"courseid": "IND640",
"coursename": "Computer Integrated Manufacturing (CIM)",
"credits": "10",
"description": "How are things made? What processes go into creating products? Is the process for making a water bottle the same as it is for a musical instrument? How do assembly lines work? How has automation changed the face of manufacturing? While students discover the answers to these questions, they are learning about the history of manufacturing, robotics and automation, manufacturing processes, computer modeling, manufacturing equipment, and flexible manufacturing systems.",
"format": "Block",
"gradelevels": "9-12",
"length": "2 Quarters",
"tags": ["Engineering", "Kirkwood", "PLTW"]
},
"computer-science-essentials-(cse)": {
"considerations": "Students with no prior computer science experience can take this as a first computer science course.Academically confident/motivated students or students with a bit of prior programming experience may skip CSE and sign up for Computer Science Principles (CSP).",
"courseid": "CSC100",
"coursename": "Computer Science Essentials (CSE)",
"credits": "10",
"description": "In this entry level computer science course, students will learn to program apps using a graphical, block-based programming language. After learning fundamentals of programming, students transition to text-based programming using the Python language. Students will use a variety of tools and computational thinking concepts as they build confidence and gain experience in the field of computer science.",
"format": "Block",
"gradelevels": "9-12",
"length": "2 Quarters",
"prerequisites": "None",
"tags": ["Computer Science"]
},
"computer-science-principles-(csp)": {
"considerations": "Students who want a beginner level computer science experience should take Computer Science Essentials (CSE) as their first course. Academically motivated / confident students or students with a bit of prior programming experience may choose to skip CSE and register for CSP.",
"courseid": "CSC300",
"coursename": "Computer Science Principles (CSP)",
"credits": "10",
"description": "Explore a variety of fields within computer science: Python programming, data visualization, image data manipulation, internet and cybersecurity, and simulation. The course aims to develop computational thinking, generate interest in career paths that utilize computing, and foster creativity. CSP helps students develop programming experience and confidence.",
"format": "Block",
"gradelevels": "9-12",
"length": "2 Quarters",
"prerequisites": "Algebra or concurrent enrollment in Algebra",
"tags": ["Computer Science"]
},
"concert-band": {
"considerations": "Some instruments are provided. Most students own their own instrument.",
"courseid": "MUS110",
"coursename": "Concert Band",
"credits": "10",
"description": "This course is a concert band which rehearses daily. The group learns and performs concert band music. Emphasis is on the preparation and performance of high school level quality music literature. Students will also participate in a brass, woodwind, or percussion ensemble during the third quarter. In addition, members will learn fundamentals of marching. Each member receives a lesson each six-day cycle.",
"fees": "$50 rental fee for percussionists and $55 rental if using a school wind instrument.",
"format": "Skinny",
"gradelevels": "9",
"length": "2 Semesters",
"prerequisites": "8th grade band OR instructor approval",
"tags": ["Music"]
},
"concert-chorale": {
"considerations": "All registrants will complete a vocal audition and be placed in the appropriate ensemble by the instructors.",
"courseid": "MUS210B",
"coursename": "Concert Chorale",
"credits": "10",
"description": "Emphasis will be on the preparation of choral works for larger groups, i.e., music for double choir, major choral works with orchestra, music for operatic choruses, as well as standard acapella literature.",
"format": "Skinny",
"gradelevels": "10-12",
"length": "2 Semesters",
"prerequisites": "Fortis, Lux, OR instructor approval",
"tags": ["Music"]
},
"concert-orchestra": {
"considerations": "Entry-level ensemble no audition required. Cellos and Basses are provided for daily rehearsal only. Students must provide their own instrument for home use.",
"courseid": "MUS230-1",
"coursename": "Concert Orchestra",
"credits": "10",
"description": "Emphasis is on the preparation and performance of high school level quality music literature for the string instruments. Lessons are offered during a six-day cycle and scheduled based on schedule availability. Private lessons are recommended.",
"fees": "$45.00 rental instrument fee.",
"format": "Skinny",
"gradelevels": "9-12",
"length": "2 Semesters",
"prerequisites": "Instructor approval",
"tags": ["Music"]
},
"construction-in-clay": {
"considerations": "This class is for the more serious ceramic student. More in-depth work on the wheel is required as well as continuing work on hand building skills.",
"courseid": "ART225",
"coursename": "Construction in Clay",
"credits": "5 hours",
"description": "Students will review and expand on techniques learned in Beginning Ceramics. Emphasis in this class will be placed on alternative firings and construction methods. Students will investigate new ways of hand-building, firing, artists, and styles. Skills will continue to be developed on the wheel to create bowls, cylinders, and lidded pieces. Students will use clay as an expressive medium to communicate ideas, feelings, thoughts, emotions, and moods in their work.",
"format": "Block",
"gradelevels": "10-12",
"length": "1 Quarter",
"prerequisites": "Beginning Ceramics",
"tags": ["Art"]
},
"contemporary-literature": {
"considerations": "None",
"courseid": "ENG360",
"coursename": "Contemporary Literature",
"credits": "5",
"description": "Students will read a variety of selected contemporary titles. Students will complete multiple projects to promote lifelong literacy and will discover how technology and the internet can enhance reading selections. Some selections in this course have a more mature theme.",