-
Notifications
You must be signed in to change notification settings - Fork 0
/
allStandards.csv
We can't make this file beautiful and searchable because it's too large.
2362 lines (2357 loc) · 861 KB
/
allStandards.csv
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
"code","statement","set","dim","grade","subject","dimension","subcategory","PEcode","performanceExpectation","clarifyingStatement","assessmentBoundary","orig_dimension","link"
"D1.1.3-5","Explain why compelling questions are important to others (e.g., peers, adults).","C3","DQPI","3,4,5","Social Studies","Developing Questions & Planning Inquiries",NA,NA,NA,NA,NA,"Developing Questions & Planning Inquiries",NA
"D1.1.6-8","Explain how a question represents key ideas in the field.","C3","DQPI","6,7,8","Social Studies","Developing Questions & Planning Inquiries",NA,NA,NA,NA,NA,"Developing Questions & Planning Inquiries",NA
"D1.1.9-12","Explain how a question reflects an enduring issue in the field.","C3","DQPI","9,10,11,12","Social Studies","Developing Questions & Planning Inquiries",NA,NA,NA,NA,NA,"Developing Questions & Planning Inquiries",NA
"D1.1.K-2","Explain why the compelling question is important to the student.","C3","DQPI","K,1,2","Social Studies","Developing Questions & Planning Inquiries",NA,NA,NA,NA,NA,"Developing Questions & Planning Inquiries",NA
"D1.2.3-5","Identify disciplinary concepts and ideas associated with a compelling question that are open to different interpretations.","C3","DQPI","3,4,5","Social Studies","Developing Questions & Planning Inquiries",NA,NA,NA,NA,NA,"Developing Questions & Planning Inquiries",NA
"D1.2.6-8","Explain points of agreement experts have about interpretations and applications of disciplinary concepts and ideas associated with a compelling question.","C3","DQPI","6,7,8","Social Studies","Developing Questions & Planning Inquiries",NA,NA,NA,NA,NA,"Developing Questions & Planning Inquiries",NA
"D1.2.9-12","Explain points of agreement and disagreement experts have about interpretations and applications of disciplinary concepts and ideas associated with a compelling question.","C3","DQPI","9,10,11,12","Social Studies","Developing Questions & Planning Inquiries",NA,NA,NA,NA,NA,"Developing Questions & Planning Inquiries",NA
"D1.2.K-2","Identify disciplinary ideas associated with a compelling question.","C3","DQPI","K,1,2","Social Studies","Developing Questions & Planning Inquiries",NA,NA,NA,NA,NA,"Developing Questions & Planning Inquiries",NA
"D1.3.3-5","Identify the disciplinary concepts and ideas associated with a supporting question that are open to interpretation.","C3","DQPI","3,4,5","Social Studies","Developing Questions & Planning Inquiries",NA,NA,NA,NA,NA,"Developing Questions & Planning Inquiries",NA
"D1.3.6-8","Explain points of agreement experts have about interpretations and applications of disciplinary concepts and ideas associated with a supporting question.","C3","DQPI","6,7,8","Social Studies","Developing Questions & Planning Inquiries",NA,NA,NA,NA,NA,"Developing Questions & Planning Inquiries",NA
"D1.3.9-12","Explain points of agreement and disagreement experts have about interpretations and applications of disciplinary concepts and ideas associated with a supporting question.","C3","DQPI","9,10,11,12","Social Studies","Developing Questions & Planning Inquiries",NA,NA,NA,NA,NA,"Developing Questions & Planning Inquiries",NA
"D1.3.K-2","Identify facts and concepts associated with a supporting question.","C3","DQPI","K,1,2","Social Studies","Developing Questions & Planning Inquiries",NA,NA,NA,NA,NA,"Developing Questions & Planning Inquiries",NA
"D1.4.3-5","Explain how supporting questions help answer compelling questions in an inquiry.","C3","DQPI","3,4,5","Social Studies","Developing Questions & Planning Inquiries",NA,NA,NA,NA,NA,"Developing Questions & Planning Inquiries",NA
"D1.4.6-8","Explain how the relationship between supporting questions and compelling questions is mutually reinforcing.","C3","DQPI","6,7,8","Social Studies","Developing Questions & Planning Inquiries",NA,NA,NA,NA,NA,"Developing Questions & Planning Inquiries",NA
"D1.4.9-12","Explain how supporting questions contribute to an inquiry and how, through engaging source work, new compelling and supporting questions emerge.","C3","DQPI","9,10,11,12","Social Studies","Developing Questions & Planning Inquiries",NA,NA,NA,NA,NA,"Developing Questions & Planning Inquiries",NA
"D1.4.K-2","Make connections between supporting questions and compelling questions.","C3","DQPI","K,1,2","Social Studies","Developing Questions & Planning Inquiries",NA,NA,NA,NA,NA,"Developing Questions & Planning Inquiries",NA
"D2.Civ.1.3-5","Distinguish the responsibilities and powers of government officials at various levels and branches of government and in different times and places.","C3","CEGH","3,4,5","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Civ.1.6-8","Distinguish the powers and responsibilities of citizens, political parties, interest groups, and the media in a variety of governmental and nongovernmental contexts.","C3","CEGH","6,7,8","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Civ.1.9-12","Distinguish the powers and responsibilities of local, state, tribal, national, and international civic and political institutions.","C3","CEGH","9,10,11,12","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Civ.1.K-2","Describe roles and responsibilities of people in authority.","C3","CEGH","K,1,2","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Civ.10.3-5","Identify the beliefs, experiences, perspectives, and values that underlie their own and others’ points of view about civic issues.","C3","CEGH","3,4,5","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Civ.10.6-8","Explain the relevance of personal interests and perspectives, civic virtues, and democratic principles when people address issues and problems in government and civil society.","C3","CEGH","6,7,8","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Civ.10.9-12","Analyze the impact and the appropriate roles of personal interests and perspectives on the application of civic virtues, democratic principles, constitutional rights, and human rights.","C3","CEGH","9,10,11,12","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Civ.10.K-2","Compare their own point of view with others’ perspectives.","C3","CEGH","K,1,2","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Civ.11.3-5","Compare procedures for making decisions in a variety of settings, including classroom, school, government, and/or society.","C3","CEGH","3,4,5","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Civ.11.6-8","Differentiate among procedures for making decisions in the classroom, school, civil society, and local, state, and national government in terms of how civic purposes are intended.","C3","CEGH","6,7,8","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Civ.11.9-12","Evaluate multiple procedures for making governmental decisions at the local, state, national, and international levels in terms of the civic purposes achieved.","C3","CEGH","9,10,11,12","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Civ.11.K-2","Explain how people can work together to make decisions in the classroom.","C3","CEGH","K,1,2","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Civ.12.3-5","Explain how rules and laws change society and how people change rules and laws.","C3","CEGH","3,4,5","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Civ.12.6-8","Assess specific rules and laws (both actual and proposed) as means of addressing public problems.","C3","CEGH","6,7,8","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Civ.12.9-12","Analyze how people use and challenge local, state, national, and international laws to address a variety of public issues.","C3","CEGH","9,10,11,12","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Civ.12.K-2","Identify and explain how rules function in public (classroom and school) settings.","C3","CEGH","K,1,2","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Civ.13.3-5","Explain how policies are developed to address public problems.","C3","CEGH","3,4,5","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Civ.13.6-8","Analyze the purposes, implementation, and consequences of public policies in multiple settings.","C3","CEGH","6,7,8","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Civ.13.9-12","Evaluate public policies in terms of intended and unintended outcomes, and related consequences.","C3","CEGH","9,10,11,12","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Civ.14.3-5","Illustrate historical and contemporary means of changing society.","C3","CEGH","3,4,5","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Civ.14.6-8","Compare historical and contemporary means of changing societies, and promoting the common good.","C3","CEGH","6,7,8","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Civ.14.9-12","Analyze historical, contemporary, and emerging means of changing societies, promoting the common good, and protecting rights.","C3","CEGH","9,10,11,12","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Civ.14.K-2","Describe how people have tried to improve their communities over time.","C3","CEGH","K,1,2","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Civ.2.3-5","Explain how a democracy relies on people’s responsible participation, and draw implications for how individuals should participate.","C3","CEGH","3,4,5","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Civ.2.6-8","Explain specific roles played by citizens (such as voters, jurors, taxpayers, members of the armed forces, petitioners, protesters, and office-holders).","C3","CEGH","6,7,8","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Civ.2.9-12","Analyze the role of citizens in the U.S","C3","CEGH","9,10,11,12","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Civ.2.K-2","Explain how all people, not just official leaders, play important roles in a community.","C3","CEGH","K,1,2","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Civ.3.3-5","Examine the origins and purposes of rules, laws, and key U.S","C3","CEGH","3,4,5","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Civ.3.6-8","Examine the origins, purposes, and impact of constitutions, laws, treaties, and international agreements.","C3","CEGH","6,7,8","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Civ.3.9-12","Analyze the impact of constitutions, laws, treaties, and international agreements on the maintenance of national and international order.","C3","CEGH","9,10,11,12","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Civ.3.K-2","Explain the need for and purposes of rules in various settings inside and outside of school.","C3","CEGH","K,1,2","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Civ.4.3-5","Explain how groups of people make rules to create responsibilities and protect freedoms.","C3","CEGH","3,4,5","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Civ.4.6-8","Explain the powers and limits of the three branches of government, public officials, and bureaucracies at different levels in the United States and in other countries.","C3","CEGH","6,7,8","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Civ.4.9-12","Explain how the U.S","C3","CEGH","9,10,11,12","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Civ.4.K-2","Begins in grades 3–5","C3","CEGH","K,1,2","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Civ.5.3-5","Explain the origins, functions, and structure of different systems of government, including those created by the U.S","C3","CEGH","3,4,5","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Civ.5.6-8","Explain the origins, functions, and structure of government with reference to the U.S","C3","CEGH","6,7,8","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Civ.5.9-12","Evaluate citizens’ and institutions’ effectiveness in addressing social and political problems at the local, state, tribal, national, and/or international level.","C3","CEGH","9,10,11,12","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Civ.5.K-2","Explain what governments are and some of their functions.","C3","CEGH","K,1,2","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Civ.6.3-5","Describe ways in which people benefit from and are challenged by working together, including through government, workplaces, voluntary organizations, and families.","C3","CEGH","3,4,5","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Civ.6.6-8","Describe the roles of political, civil, and economic organizations in shaping people’s lives.","C3","CEGH","6,7,8","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Civ.6.9-12","Critique relationships among governments, civil societies, and economic markets.","C3","CEGH","9,10,11,12","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Civ.6.K-2","Describe how communities work to accomplish common tasks, establish responsibilities, and fulfill roles of authority.","C3","CEGH","K,1,2","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Civ.7.3-5","Apply civic virtues and democratic principles in school settings.","C3","CEGH","3,4,5","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Civ.7.6-8","Apply civic virtues and democratic principles in school and community settings.","C3","CEGH","6,7,8","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Civ.7.9-12","Apply civic virtues and democratic principles when working with others.","C3","CEGH","9,10,11,12","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Civ.7.K-2","Apply civic virtues when participating in school settings.","C3","CEGH","K,1,2","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Civ.8.3-5","Identify core civic virtues and democratic principles that guide government, society, and communities.","C3","CEGH","3,4,5","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Civ.8.6-8","Analyze ideas and principles contained in the founding documents of the United States, and explain how they influence the social and political system.","C3","CEGH","6,7,8","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Civ.8.9-12","Evaluate social and political systems in different contexts, times, and places, that promote civic virtues and enact democratic principles.","C3","CEGH","9,10,11,12","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Civ.8.K-2","Describe democratic principles such as equality, fairness, and respect for legitimate authority and rules.","C3","CEGH","K,1,2","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Civ.9.3-5","Use deliberative processes when making decisions or reaching judgments as a group.","C3","CEGH","3,4,5","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Civ.9.6-8","Compare deliberative processes used by a wide variety of groups in various settings.","C3","CEGH","6,7,8","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Civ.9.9-12","Use appropriate deliberative processes in multiple settings.","C3","CEGH","9,10,11,12","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Civ.9.K-2","Follow agreed-upon rules for discussions while responding attentively to others when addressing ideas and making decisions as a group.","C3","CEGH","K,1,2","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Eco.1.3-5","Compare the benefits and costs of individual choices.","C3","CEGH","3,4,5","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Eco.1.6-8","Explain how economic decisions affect the well-being of individuals, businesses, and society.","C3","CEGH","6,7,8","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Eco.1.9-12","Analyze how incentives influence choices that may result in policies with a range of costs and benefits for different groups.","C3","CEGH","9,10,11,12","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Eco.1.K-2","Explain how scarcity necessitates decision making.","C3","CEGH","K,1,2","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Eco.10.3-5","Explain what interest rates are.","C3","CEGH","3,4,5","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Eco.10.6-8","Explain the influence of changes in interest rates on borrowing and investing.","C3","CEGH","6,7,8","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Eco.10.9-12","Use current data to explain the influence of changes in spending, production, and the money supply on various economic conditions.","C3","CEGH","9,10,11,12","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Eco.10.K-2","Explain why people save.","C3","CEGH","K,1,2","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Eco.11.3-5","Explain the meaning of inflation, deflation, and unemployment.","C3","CEGH","3,4,5","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Eco.11.6-8","Use appropriate data to evaluate the state of employment, unemployment, inflation, total production, income, and economic growth in the economy.","C3","CEGH","6,7,8","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Eco.11.9-12","Use economic indicators to analyze the current and future state of the economy.","C3","CEGH","9,10,11,12","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Eco.12.3-5","Explain the ways in which the government pays for the goods and services it provides.","C3","CEGH","3,4,5","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Eco.12.6-8","Explain how inflation, deflation, and unemployment affect different groups.","C3","CEGH","6,7,8","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Eco.12.9-12","Evaluate the selection of monetary and fiscal policies in a variety of economic conditions.","C3","CEGH","9,10,11,12","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Eco.12.K-2","Describe examples of the goods and services that governments provide.","C3","CEGH","K,1,2","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Eco.13.3-5","Describe ways people can increase productivity by using improved capital goods and improving their human capital.","C3","CEGH","3,4,5","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Eco.13.6-8","Explain why standards of living increase as productivity improves.","C3","CEGH","6,7,8","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Eco.13.9-12","Explain why advancements in technology and investments in capital goods and human capital increase economic growth and standards of living.","C3","CEGH","9,10,11,12","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Eco.13.K-2","Describe examples of capital goods and human capital.","C3","CEGH","K,1,2","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Eco.14.3-5","Explain how trade leads to increasing economic interdependence among nations.","C3","CEGH","3,4,5","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Eco.14.6-8","Explain barriers to trade and how those barriers influence trade among nations.","C3","CEGH","6,7,8","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Eco.14.9-12","Analyze the role of comparative advantage in international trade of goods and services.","C3","CEGH","9,10,11,12","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Eco.14.K-2","Describe why people in one country trade goods and services with people in other countries.","C3","CEGH","K,1,2","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Eco.15.3-5","Explain the effects of increasing economic interdependence on different groups within participating nations.","C3","CEGH","3,4,5","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Eco.15.6-8","Explain the benefits and the costs of trade policies to individuals, businesses, and society.","C3","CEGH","6,7,8","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Eco.15.9-12","Explain how current globalization trends and policies affect economic growth, labor markets, rights of citizens, the environment, and resource and income distribution in different nations.","C3","CEGH","9,10,11,12","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Eco.15.K-2","Describe products that are produced abroad and sold domestically and products that are produced domestically and sold abroad.","C3","CEGH","K,1,2","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Eco.2.3-5","Identify positive and negative incentives that influence the decisions people make.","C3","CEGH","3,4,5","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Eco.2.6-8","Evaluate alternative approaches or solutions to current economic issues in terms of benefits and costs for different groups and society as a whole.","C3","CEGH","6,7,8","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Eco.2.9-12","Use marginal benefits and marginal costs to construct an argument for or against an approach or solution to an economic issue.","C3","CEGH","9,10,11,12","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Eco.2.K-2","Identify the benefits and costs of making various personal decisions.","C3","CEGH","K,1,2","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Eco.3.3-5","Identify examples of the variety of resources (human capital, physical capital, and natural resources) that are used to produce goods and services.","C3","CEGH","3,4,5","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Eco.3.6-8","Explain the roles of buyers and sellers in product, labor, and financial markets.","C3","CEGH","6,7,8","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Eco.3.9-12","Analyze the ways in which incentives influence what is produced and distributed in a market system.","C3","CEGH","9,10,11,12","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Eco.3.K-2","Describe the skills and knowledge required to produce certain goods and services.","C3","CEGH","K,1,2","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Eco.4.3-5","Explain why individuals and businesses specialize and trade.","C3","CEGH","3,4,5","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Eco.4.6-8","Describe the role of competition in the determination of prices and wages in a market economy.","C3","CEGH","6,7,8","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Eco.4.9-12","Evaluate the extent to which competition among sellers and among buyers exists in specific markets.","C3","CEGH","9,10,11,12","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Eco.4.K-2","Describe the goods and services that people in the local community produce and those that are produced in other communities.","C3","CEGH","K,1,2","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Eco.5.3-5","Explain the role of money in making exchange easier.","C3","CEGH","3,4,5","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Eco.5.6-8","Explain ways in which money facilitates exchange by reducing transactional costs.","C3","CEGH","6,7,8","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Eco.5.9-12","Describe the consequences of competition in specific markets.","C3","CEGH","9,10,11,12","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Eco.5.K-2","Identify prices of products in a local market.","C3","CEGH","K,1,2","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Eco.6.3-5","Explain the relationship between investment in human capital, productivity, and future incomes.","C3","CEGH","3,4,5","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Eco.6.6-8","Explain how changes in supply and demand cause changes in prices and quantities of goods and services, labor, credit, and foreign currencies.","C3","CEGH","6,7,8","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Eco.6.9-12","Generate possible explanations for a government role in markets when market inefficiencies exist.","C3","CEGH","9,10,11,12","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Eco.6.K-2","Explain how people earn income.","C3","CEGH","K,1,2","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Eco.7.3-5","Explain how profits influence sellers in markets.","C3","CEGH","3,4,5","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Eco.7.6-8","Analyze the role of innovation and entrepreneurship in a market economy.","C3","CEGH","6,7,8","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Eco.7.9-12","Use benefits and costs to evaluate the effectiveness of government policies to improve market outcomes.","C3","CEGH","9,10,11,12","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Eco.7.K-2","Describe examples of costs of production.","C3","CEGH","K,1,2","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Eco.8.3-5","Identify examples of external benefits and costs.","C3","CEGH","3,4,5","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Eco.8.6-8","Explain how external benefits and costs influence market outcomes.","C3","CEGH","6,7,8","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Eco.8.9-12","Describe the possible consequences, both intended and unintended, of government policies to improve market outcomes.","C3","CEGH","9,10,11,12","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Eco.9.3-5","Describe the role of other financial institutions in an economy.","C3","CEGH","3,4,5","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Eco.9.6-8","Describe the roles of institutions such as corporations, non-profits, and labor unions in a market economy.","C3","CEGH","6,7,8","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Eco.9.9-12","Describe the roles of institutions such as clearly defined property rights and the rule of law in a market economy.","C3","CEGH","9,10,11,12","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Eco.9.K-2","Describe the role of banks in an economy.","C3","CEGH","K,1,2","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Geo.1.3-5","Construct maps and other graphic representations of both familiar and unfamiliar places.","C3","CEGH","3,4,5","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Geo.1.6-8","Construct maps to represent and explain the spatial patterns of cultural and environmental characteristics.","C3","CEGH","6,7,8","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Geo.1.9-12","Use geospatial and related technologies to create maps to display and explain the spatial patterns of cultural and environmental characteristics.","C3","CEGH","9,10,11,12","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Geo.1.K-2","Construct maps, graphs, and other representations of familiar places.","C3","CEGH","K,1,2","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Geo.10.3-5","Explain why environmental characteristics vary among different world regions.","C3","CEGH","3,4,5","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Geo.10.6-8","Analyze the ways in which cultural and environmental characteristics vary among various regions of the world.","C3","CEGH","6,7,8","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Geo.10.9-12","Evaluate how changes in the environmental and cultural characteristics of a place or region influence spatial patterns of trade and land use.","C3","CEGH","9,10,11,12","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Geo.10.K-2","Describe changes in the physical and cultural characteristics of various world regions.","C3","CEGH","K,1,2","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Geo.11.3-5","Describe how the spatial patterns of economic activities in a place change over time because of interactions with nearby and distant places.","C3","CEGH","3,4,5","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Geo.11.6-8","Explain how the relationship between the environmental characteristics of places and production of goods influences the spatial patterns of world trade.","C3","CEGH","6,7,8","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Geo.11.9-12","Evaluate how economic globalization and the expanding use of scarce resources contribute to conflict and cooperation within and among countries.","C3","CEGH","9,10,11,12","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Geo.11.K-2","Explain how the consumption of products connects people to distant places.","C3","CEGH","K,1,2","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Geo.12.3-5","Explain how natural and human-made catastrophic events in one place affect people living in other places.","C3","CEGH","3,4,5","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Geo.12.6-8","Explain how global changes in population distribution patterns affect changes in land use in particular places.","C3","CEGH","6,7,8","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Geo.12.9-12","Evaluate the consequences of human-made and natural catastrophes on global trade, politics, and human migration.","C3","CEGH","9,10,11,12","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Geo.12.K-2","Identify ways that a catastrophic disaster may affect people living in a place.","C3","CEGH","K,1,2","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Geo.2.3-5","Use maps, satellite images, photographs, and other representations to explain relationships between the locations of places and regions and their environmental characteristics.","C3","CEGH","3,4,5","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Geo.2.6-8","Use maps, satellite images, photographs, and other representations to explain relationships between the locations of places and regions, and changes in their environmental characteristics.","C3","CEGH","6,7,8","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Geo.2.9-12","Use maps, satellite images, photographs, and other representations to explain relationships between the locations of places and regions and their political, cultural, and economic dynamics.","C3","CEGH","9,10,11,12","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Geo.2.K-2","Use maps, graphs, photographs, and other representations to describe places and the relationships and interactions that shape them.","C3","CEGH","K,1,2","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Geo.3.3-5","Use maps of different scales to describe the locations of cultural and environmental characteristics.","C3","CEGH","3,4,5","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Geo.3.6-8","Use paper based and electronic mapping and graphing techniques to represent and analyze spatial patterns of different environmental and cultural characteristics.","C3","CEGH","6,7,8","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Geo.3.9-12","Use geographic data to analyze variations in the spatial patterns of cultural and environmental characteristics at multiple scales.","C3","CEGH","9,10,11,12","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Geo.3.K-2","Use maps, globes, and other simple geographic models to identify cultural and environmental characteristics of places.","C3","CEGH","K,1,2","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Geo.4.3-5","Explain how culture influences the way people modify and adapt to their environments.","C3","CEGH","3,4,5","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Geo.4.6-8","Explain how cultural patterns and economic decisions influence environments and the daily lives of people in both nearby and distant places.","C3","CEGH","6,7,8","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Geo.4.9-12","Analyze relationships and interactions within and between human and physical systems to explain reciprocal influences that occur among them.","C3","CEGH","9,10,11,12","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Geo.4.K-2","Explain how weather, climate, and other environmental characteristics affect people’s lives in a place or region.","C3","CEGH","K,1,2","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Geo.5.3-5","Explain how the cultural and environmental characteristics of places change over time.","C3","CEGH","3,4,5","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Geo.5.6-8","Analyze the combinations of cultural and environmental characteristics that make places both similar to and different from other places.","C3","CEGH","6,7,8","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Geo.5.9-12","Evaluate how political and economic decisions throughout time have influenced cultural and environmental characteristics of various places and regions.","C3","CEGH","9,10,11,12","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Geo.5.K-2","Describe how human activities affect the cultural and environmental characteristics of places or regions.","C3","CEGH","K,1,2","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Geo.6.3-5","Describe how environmental and cultural characteristics influence population distribution in specific places or regions.","C3","CEGH","3,4,5","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Geo.6.6-8","Explain how the physical and human characteristics of places and regions are connected to human identities and cultures.","C3","CEGH","6,7,8","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Geo.6.9-12","Evaluate the impact of human settlement activities on the environmental and cultural characteristics of specific places and regions.","C3","CEGH","9,10,11,12","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Geo.6.K-2","Identify some cultural and environmental characteristics of specific places.","C3","CEGH","K,1,2","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Geo.7.3-5","Explain how cultural and environmental characteristics affect the distribution and movement of people, goods, and ideas.","C3","CEGH","3,4,5","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Geo.7.6-8","Explain how changes in transportation and communication technology influence the spatial connections among human settlements and affect the diffusion of ideas and cultural practices.","C3","CEGH","6,7,8","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Geo.7.9-12","Analyze the reciprocal nature of how historical events and the spatial diffusion of ideas, technologies, and cultural practices have influenced migration patterns and the distribution of human population.","C3","CEGH","9,10,11,12","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Geo.7.K-2","Explain why and how people, goods, and ideas move from place to place.","C3","CEGH","K,1,2","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Geo.8.3-5","Explain how human settlements and movements relate to the locations and use of various natural resources.","C3","CEGH","3,4,5","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Geo.8.6-8","Analyze how relationships between humans and environments extend or contract spatial patterns of settlement and movement.","C3","CEGH","6,7,8","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Geo.8.9-12","Evaluate the impact of economic activities and political decisions on spatial patterns within and among urban, suburban, and rural regions.","C3","CEGH","9,10,11,12","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Geo.8.K-2","Compare how people in different types of communities use local and distant environments to meet their daily needs.","C3","CEGH","K,1,2","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Geo.9.3-5","Analyze the effects of catastrophic environmental and technological events on human settlements and migration.","C3","CEGH","3,4,5","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Geo.9.6-8","Evaluate the influences of long-term human-induced environmental change on spatial patterns of conflict and cooperation.","C3","CEGH","6,7,8","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Geo.9.9-12","Evaluate the influence of long-term climate variability on human migration and settlement patterns, resource use, and land uses at local-to-global scales.","C3","CEGH","9,10,11,12","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.Geo.9.K-2","Describe the connections between the physical environment of a place and the economic activities found there.","C3","CEGH","K,1,2","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.His.1.3-5","Create and use a chronological sequence of related events to compare developments that happened at the same time.","C3","CEGH","3,4,5","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.His.1.6-8","Analyze connections among events and developments in broader historical contexts.","C3","CEGH","6,7,8","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.His.1.9-12","Evaluate how historical events and developments were shaped by unique circumstances of time and place as well as broader historical contexts.","C3","CEGH","9,10,11,12","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.His.1.K-2","Create a chronological sequence of multiple events.","C3","CEGH","K,1,2","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.His.10.3-5","Compare information provided by different historical sources about the past.","C3","CEGH","3,4,5","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.His.10.6-8","Detect possible limitations in the historical record based on evidence collected from different kinds of historical sources.","C3","CEGH","6,7,8","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.His.10.9-12","Detect possible limitations in various kinds of historical evidence and differing secondary interpretations.","C3","CEGH","9,10,11,12","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.His.10.K-2","Explain how historical sources can be used to study the past.","C3","CEGH","K,1,2","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.His.11.3-5","Infer the intended audience and purpose of a historical source from information within the source itself.","C3","CEGH","3,4,5","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.His.11.6-8","Use other historical sources to infer a plausible maker, date, place of origin, and intended audience for historical sources where this information is not easily identified.","C3","CEGH","6,7,8","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.His.11.9-12","Critique the usefulness of historical sources for a specific historical inquiry based on their maker, date, place of origin, intended audience, and purpose.","C3","CEGH","9,10,11,12","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.His.11.K-2","Identify the maker, date, and place of origin for a historical source from information within the source itself.","C3","CEGH","K,1,2","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.His.12.3-5","Generate questions about multiple historical sources and their relationships to particular historical events and developments.","C3","CEGH","3,4,5","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.His.12.6-8","Use questions generated about multiple historical sources to identify further areas of inquiry and additional sources.","C3","CEGH","6,7,8","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.His.12.9-12","Use questions generated about multiple historical sources to pursue further inquiry and investigate additional sources.","C3","CEGH","9,10,11,12","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.His.12.K-2","Generate questions about a particular historical source as it relates to a particular historical event or development.","C3","CEGH","K,1,2","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.His.13.3-5","Use information about a historical source, including the maker, date, place of origin, intended audience, and purpose to judge the extent to which the source is useful for studying a particular topic.","C3","CEGH","3,4,5","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.His.13.6-8","Evaluate the relevancy and utility of a historical source based on information such as maker,date, place of origin, intended audience, and purpose.","C3","CEGH","6,7,8","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.His.13.9-12","Critique the appropriateness of the historical sources used in a secondary interpretation.","C3","CEGH","9,10,11,12","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.His.14.3-5","Explain probable causes and effects of events and developments.","C3","CEGH","3,4,5","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.His.14.6-8","Explain multiple causes and effects of events and developments in the past.","C3","CEGH","6,7,8","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.His.14.9-12","Analyze multiple and complex causes and effects of events in the past.","C3","CEGH","9,10,11,12","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.His.14.K-2","Generate possible reasons for an event or development in the past.","C3","CEGH","K,1,2","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.His.15.6-8","Evaluate the relative influence of various causes of events and developments in the past.","C3","CEGH","6,7,8","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.His.15.9-12","Distinguish between long-term causs and triggering events in developing a historical argument.","C3","CEGH","9,10,11,12","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.His.16.3-5","Use evidence to develop a claim about the past.","C3","CEGH","3,4,5","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.His.16.6-8","Organize applicable evidence into a coherent argument about the past.","C3","CEGH","6,7,8","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.His.16.9-12","Integrate evidence from multiple relevant historical sources and interpretations into a reasoned argument about the past.","C3","CEGH","9,10,11,12","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.His.16.K-2","Select which reasons might be more likely than others to explain a historical event or development.","C3","CEGH","K,1,2","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.His.17.3-5","Summarize the central claim in a secondary work of history.","C3","CEGH","3,4,5","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.His.17.6-8","Compare the central arguments in secondary works of history on related topics in multiple media.","C3","CEGH","6,7,8","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.His.17.9-12","Critique the central arguments in secondary works of history on related topics in multiple media in terms of their historical accuracy.","C3","CEGH","9,10,11,12","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.His.2.3-5","Compare life in specific historical time periods to life today.","C3","CEGH","3,4,5","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.His.2.6-8","Classify series of historical events and developments as examples of change and/or continuity.","C3","CEGH","6,7,8","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.His.2.9-12","Analyze change and continuity in historical eras.","C3","CEGH","9,10,11,12","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.His.2.K-2","Compare life in the past to life today.","C3","CEGH","K,1,2","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.His.3.3-5","Generate questions about individuals and groups who have shaped significant historical changes and continuities.","C3","CEGH","3,4,5","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.His.3.6-8","Use questions generated about individuals and groups to analyze why they, and the developments they shaped, are seen as historically significant.","C3","CEGH","6,7,8","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.His.3.9-12","Use questions generated about individuals and groups to assess how the significance of their actions changes over time and is shaped by the historical context.","C3","CEGH","9,10,11,12","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.His.3.K-2","Generate questions about individuals and groups who have shaped a significant historical change.","C3","CEGH","K,1,2","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.His.4.3-5","Explain why individuals and groups during the same historical period differed in their perspectives.","C3","CEGH","3,4,5","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.His.4.6-8","Analyze multiple factors that influenced the perspectives of people during different historical eras.","C3","CEGH","6,7,8","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.His.4.9-12","Analyze complex and interacting factors that influenced the perspectives of people during different historical eras.","C3","CEGH","9,10,11,12","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.His.4.K-2","Compare perspectives of people in the past to those of people in the present.","C3","CEGH","K,1,2","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.His.5.3-5","Explain connections among historical contexts and people’s perspectives at the time.","C3","CEGH","3,4,5","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.His.5.6-8","Explain how and why perspectives of people have changed over time.","C3","CEGH","6,7,8","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.His.5.9-12","Analyze how historical contexts shaped and continue to shape people’s perspectives.","C3","CEGH","9,10,11,12","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.His.6.3-5","Describe how people’s perspectives shaped the historical sources they created.","C3","CEGH","3,4,5","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.His.6.6-8","Analyze how people’s perspectives influenced what information is available in the historical sources they created.","C3","CEGH","6,7,8","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.His.6.9-12","Analyze the ways in which the perspectives of those writing history shaped the history that they produced.","C3","CEGH","9,10,11,12","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.His.6.K-2","Compare different accounts of the same historical event.","C3","CEGH","K,1,2","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.His.7.9-12","Explain how the perspectives of people in the present shape interpretations of the past.","C3","CEGH","9,10,11,12","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.His.8.9-12","Analyze how current interpretations of the past are limited by the extent to which available historical sources represent perspectives of people at the time.","C3","CEGH","9,10,11,12","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.His.9.3-5","Summarize how different kinds of historical sources are used to explain events in the past.","C3","CEGH","3,4,5","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.His.9.6-8","Classify the kinds of historical sources used in a secondary interpretation.","C3","CEGH","6,7,8","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.His.9.9-12","Analyze the relationship between historical sources and the secondary interpretations made from them.","C3","CEGH","9,10,11,12","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D2.His.9.K-2","Identify different kinds of historical sources.","C3","CEGH","K,1,2","Social Studies","Civics, Economics, Geography & History",NA,NA,NA,NA,NA,"Applying Disciplinary Concepts & Tools",NA
"D3.1.3-5","Gather relevant information from multiple sources while using the origin, structure, and context to guide the selection.","C3","ESCCTA","3,4,5","Social Studies","Evaluating Sources, Communicating Conclusions & Taking Action",NA,NA,NA,NA,NA,"Evaluating Sources & Using Evidence",NA
"D3.1.6-8","Gather relevant information from multiple sources while using the origin, authority, structure, context, and corroborative value of the sources to guide the selection.","C3","ESCCTA","6,7,8","Social Studies","Evaluating Sources, Communicating Conclusions & Taking Action",NA,NA,NA,NA,NA,"Evaluating Sources & Using Evidence",NA
"D3.1.9-12","Gather relevant information from multiple sources representing a wide range of views while using the origin, authority, structure, context, and corroborative value of the sources to guide the selection.","C3","ESCCTA","9,10,11,12","Social Studies","Evaluating Sources, Communicating Conclusions & Taking Action",NA,NA,NA,NA,NA,"Evaluating Sources & Using Evidence",NA
"D3.1.K-2","Gather relevant information from one or two sources while using the origin and structure to guide the selection.","C3","ESCCTA","K,1,2","Social Studies","Evaluating Sources, Communicating Conclusions & Taking Action",NA,NA,NA,NA,NA,"Evaluating Sources & Using Evidence",NA
"D3.2.3-5","Use distinctions among fact and opinion to determine the credibility of multiple sources.","C3","ESCCTA","3,4,5","Social Studies","Evaluating Sources, Communicating Conclusions & Taking Action",NA,NA,NA,NA,NA,"Evaluating Sources & Using Evidence",NA
"D3.2.6-8","Evaluate the credibility of a source by determining its relevance and intended use.","C3","ESCCTA","6,7,8","Social Studies","Evaluating Sources, Communicating Conclusions & Taking Action",NA,NA,NA,NA,NA,"Evaluating Sources & Using Evidence",NA
"D3.2.9-12","Evaluate the credibility of a source by examining how experts value the source.","C3","ESCCTA","9,10,11,12","Social Studies","Evaluating Sources, Communicating Conclusions & Taking Action",NA,NA,NA,NA,NA,"Evaluating Sources & Using Evidence",NA
"D3.2.K-2","Evaluate a source by distinguishing between fact and opinion.","C3","ESCCTA","K,1,2","Social Studies","Evaluating Sources, Communicating Conclusions & Taking Action",NA,NA,NA,NA,NA,"Evaluating Sources & Using Evidence",NA
"D3.3.3-5","Identify evidence that draws information from multiple sources in response to compelling questions.","C3","ESCCTA","3,4,5","Social Studies","Evaluating Sources, Communicating Conclusions & Taking Action",NA,NA,NA,NA,NA,"Evaluating Sources & Using Evidence",NA
"D3.3.6-8","Identify evidence that draws information from multiple sources to support claims, noting evidentiary limitations.","C3","ESCCTA","6,7,8","Social Studies","Evaluating Sources, Communicating Conclusions & Taking Action",NA,NA,NA,NA,NA,"Evaluating Sources & Using Evidence",NA
"D3.3.9-12","Identify evidence that draws information directly and substantively from multiple sources to detect inconsistencies in evidence in order to revise or strengthen claims.","C3","ESCCTA","9,10,11,12","Social Studies","Evaluating Sources, Communicating Conclusions & Taking Action",NA,NA,NA,NA,NA,"Evaluating Sources & Using Evidence",NA
"D3.4.3-5","Use evidence to develop claims in response to compelling questions.","C3","ESCCTA","3,4,5","Social Studies","Evaluating Sources, Communicating Conclusions & Taking Action",NA,NA,NA,NA,NA,"Evaluating Sources & Using Evidence",NA
"D3.4.6-8","Develop claims and counterclaims while pointing out the strengths and limitations of both.","C3","ESCCTA","6,7,8","Social Studies","Evaluating Sources, Communicating Conclusions & Taking Action",NA,NA,NA,NA,NA,"Evaluating Sources & Using Evidence",NA
"D3.4.9-12","Refine claims and counterclaims attending to precision, significance, and knowledge conveyed through the claim while pointing out the strengths and limitations of both.","C3","ESCCTA","9,10,11,12","Social Studies","Evaluating Sources, Communicating Conclusions & Taking Action",NA,NA,NA,NA,NA,"Evaluating Sources & Using Evidence",NA
"D4.1.3-5","Construct arguments using claims and evidence from multiple sources.","C3","ESCCTA","3,4,5","Social Studies","Evaluating Sources, Communicating Conclusions & Taking Action",NA,NA,NA,NA,NA,"Communicating Conclusions & Taking Informed Action",NA
"D4.1.6-8","Construct arguments using claims and evidence from multiple sources, while acknowledging the strengths and limitations of the arguments.","C3","ESCCTA","6,7,8","Social Studies","Evaluating Sources, Communicating Conclusions & Taking Action",NA,NA,NA,NA,NA,"Communicating Conclusions & Taking Informed Action",NA
"D4.1.9-12","Construct arguments using precise and knowledgeable claims, with evidence from multiple sources, while acknowledging counterclaims and evidentiary weaknesses.","C3","ESCCTA","9,10,11,12","Social Studies","Evaluating Sources, Communicating Conclusions & Taking Action",NA,NA,NA,NA,NA,"Communicating Conclusions & Taking Informed Action",NA
"D4.1.K-2","Construct an argument with reasons.","C3","ESCCTA","K,1,2","Social Studies","Evaluating Sources, Communicating Conclusions & Taking Action",NA,NA,NA,NA,NA,"Communicating Conclusions & Taking Informed Action",NA
"D4.2.3-5","Construct explanations using reasoning, correct sequence, examples, and details with relevant information and data.","C3","ESCCTA","3,4,5","Social Studies","Evaluating Sources, Communicating Conclusions & Taking Action",NA,NA,NA,NA,NA,"Communicating Conclusions & Taking Informed Action",NA
"D4.2.6-8","Construct explanations using reasoning, correct sequence, examples, and details with relevant information and data, while acknowledging the strengths and weaknesses of the explanations.","C3","ESCCTA","6,7,8","Social Studies","Evaluating Sources, Communicating Conclusions & Taking Action",NA,NA,NA,NA,NA,"Communicating Conclusions & Taking Informed Action",NA
"D4.2.9-12","Construct explanations using sound reasoning, correct sequence (linear or non-linear), examples, and details with significant and pertinent information and data, while acknowledging the strengths and weaknesses of the explanation given its purpose (e.g., cause and effect, chronological, procedural, technical).","C3","ESCCTA","9,10,11,12","Social Studies","Evaluating Sources, Communicating Conclusions & Taking Action",NA,NA,NA,NA,NA,"Communicating Conclusions & Taking Informed Action",NA
"D4.2.K-2","Construct explanations using correct sequence and relevant information.","C3","ESCCTA","K,1,2","Social Studies","Evaluating Sources, Communicating Conclusions & Taking Action",NA,NA,NA,NA,NA,"Communicating Conclusions & Taking Informed Action",NA
"D4.3.3-5","Present a summary of arguments and explanations to others outside the classroom using print and oral technologies (e.g., posters, essays, letters, debates, speeches, and reports) and digital technologies (e.g., Internet, social media, and digital documentary).","C3","ESCCTA","3,4,5","Social Studies","Evaluating Sources, Communicating Conclusions & Taking Action",NA,NA,NA,NA,NA,"Communicating Conclusions & Taking Informed Action",NA
"D4.3.6-8","Present adaptations of arguments and explanations on topics of interest to others to reach audiences and venues outside the classroom using print and oral technologies (e.g., posters, essays, letters, debates, speeches, reports, and maps) and digital technologies (e.g., Internet, social media, and digital documentary).","C3","ESCCTA","6,7,8","Social Studies","Evaluating Sources, Communicating Conclusions & Taking Action",NA,NA,NA,NA,NA,"Communicating Conclusions & Taking Informed Action",NA
"D4.3.9-12","Present adaptations of arguments and explanations that feature evocative ideas and perspectives on issues and topics to reach a range of audiences and venues outside the classroom using print and oral technologies (e.g., posters, essays, letters, debates, speeches, reports, and maps) and digital technologies (e.g., Internet, social media, and digital documentary).","C3","ESCCTA","9,10,11,12","Social Studies","Evaluating Sources, Communicating Conclusions & Taking Action",NA,NA,NA,NA,NA,"Communicating Conclusions & Taking Informed Action",NA
"D4.3.K-2","Present a summary of an argument using print, oral, and digital technologies.","C3","ESCCTA","K,1,2","Social Studies","Evaluating Sources, Communicating Conclusions & Taking Action",NA,NA,NA,NA,NA,"Communicating Conclusions & Taking Informed Action",NA
"D4.4.3-5","Critique arguments.","C3","ESCCTA","3,4,5","Social Studies","Evaluating Sources, Communicating Conclusions & Taking Action",NA,NA,NA,NA,NA,"Communicating Conclusions & Taking Informed Action",NA
"D4.4.6-8","Critique arguments for credibility.","C3","ESCCTA","6,7,8","Social Studies","Evaluating Sources, Communicating Conclusions & Taking Action",NA,NA,NA,NA,NA,"Communicating Conclusions & Taking Informed Action",NA
"D4.4.9-12","Critique the use of claims and evidence in arguments for credibility.","C3","ESCCTA","9,10,11,12","Social Studies","Evaluating Sources, Communicating Conclusions & Taking Action",NA,NA,NA,NA,NA,"Communicating Conclusions & Taking Informed Action",NA
"D4.4.K-2","Ask and answer questions about arguments.","C3","ESCCTA","K,1,2","Social Studies","Evaluating Sources, Communicating Conclusions & Taking Action",NA,NA,NA,NA,NA,"Communicating Conclusions & Taking Informed Action",NA
"D4.5.3-5","Critique explanations.","C3","ESCCTA","3,4,5","Social Studies","Evaluating Sources, Communicating Conclusions & Taking Action",NA,NA,NA,NA,NA,"Communicating Conclusions & Taking Informed Action",NA
"D4.5.6-8","Critique the structure of explanations.","C3","ESCCTA","6,7,8","Social Studies","Evaluating Sources, Communicating Conclusions & Taking Action",NA,NA,NA,NA,NA,"Communicating Conclusions & Taking Informed Action",NA
"D4.5.9-12","Critique the use of the reasoning, sequencing, and supporting details of explanations.","C3","ESCCTA","9,10,11,12","Social Studies","Evaluating Sources, Communicating Conclusions & Taking Action",NA,NA,NA,NA,NA,"Communicating Conclusions & Taking Informed Action",NA
"D4.5.K-2","Ask and answer questions about explanations.","C3","ESCCTA","K,1,2","Social Studies","Evaluating Sources, Communicating Conclusions & Taking Action",NA,NA,NA,NA,NA,"Communicating Conclusions & Taking Informed Action",NA
"D4.6.3-5","Draw on disciplinary concepts to explain the challenges people have faced and opportunities they have created, in addressing local, regional, and global problems at various times and places.","C3","ESCCTA","3,4,5","Social Studies","Evaluating Sources, Communicating Conclusions & Taking Action",NA,NA,NA,NA,NA,"Communicating Conclusions & Taking Informed Action",NA
"D4.6.6-8","Draw on multiple disciplinary lenses to analyze how a specific problem can manifest itself at local, regional, and global levels over time, identifying its characteristics and causes, and the challenges and opportunities faced by those trying to address the problem.","C3","ESCCTA","6,7,8","Social Studies","Evaluating Sources, Communicating Conclusions & Taking Action",NA,NA,NA,NA,NA,"Communicating Conclusions & Taking Informed Action",NA
"D4.6.9-12","Use disciplinary and interdisciplinary lenses to understand the characteristics and causes of local, regional, and global problems; instances of such problems in multiple contexts; and challenges and opportunities faced by those trying to address these problems over time and place.","C3","ESCCTA","9,10,11,12","Social Studies","Evaluating Sources, Communicating Conclusions & Taking Action",NA,NA,NA,NA,NA,"Communicating Conclusions & Taking Informed Action",NA
"D4.6.K-2","Identify and explain a range of local, regional, and global problems, and some ways in which people are trying to address these problems.","C3","ESCCTA","K,1,2","Social Studies","Evaluating Sources, Communicating Conclusions & Taking Action",NA,NA,NA,NA,NA,"Communicating Conclusions & Taking Informed Action",NA
"D4.7.3-5","Explain different strategies and approaches students and others could take in working alone and together to address local, regional, and global problems, and predict possible results of their actions.","C3","ESCCTA","3,4,5","Social Studies","Evaluating Sources, Communicating Conclusions & Taking Action",NA,NA,NA,NA,NA,"Communicating Conclusions & Taking Informed Action",NA
"D4.7.6-8","Assess their individual and collective capacities to take action to address local, regional, and global problems, taking into account a range of possible levers of power, strategies, and potential outcomes.","C3","ESCCTA","6,7,8","Social Studies","Evaluating Sources, Communicating Conclusions & Taking Action",NA,NA,NA,NA,NA,"Communicating Conclusions & Taking Informed Action",NA
"D4.7.9-12","Assess options for individual and collective action to address local, regional, and global problems by engaging in self-reflection, strategy identification, and complex causal reasoning.","C3","ESCCTA","9,10,11,12","Social Studies","Evaluating Sources, Communicating Conclusions & Taking Action",NA,NA,NA,NA,NA,"Communicating Conclusions & Taking Informed Action",NA
"D4.7.K-2","Identify ways to take action to help address local, regional, and global problems.","C3","ESCCTA","K,1,2","Social Studies","Evaluating Sources, Communicating Conclusions & Taking Action",NA,NA,NA,NA,NA,"Communicating Conclusions & Taking Informed Action",NA
"D4.8.3-5","Use a range of deliberative and democratic procedures to make decisions about and act on civic problems in their classrooms and schools.","C3","ESCCTA","3,4,5","Social Studies","Evaluating Sources, Communicating Conclusions & Taking Action",NA,NA,NA,NA,NA,"Communicating Conclusions & Taking Informed Action",NA
"D4.8.6-8","Apply a range of deliberative and democratic procedures to make decisions and take action in their classrooms and schools, and in out-of-school civic contexts.","C3","ESCCTA","6,7,8","Social Studies","Evaluating Sources, Communicating Conclusions & Taking Action",NA,NA,NA,NA,NA,"Communicating Conclusions & Taking Informed Action",NA
"D4.8.9-12","Apply a range of deliberative and democratic strategies and procedures to make decisions and take action in their classrooms, schools, and out-of-school civic contexts.","C3","ESCCTA","9,10,11,12","Social Studies","Evaluating Sources, Communicating Conclusions & Taking Action",NA,NA,NA,NA,NA,"Communicating Conclusions & Taking Informed Action",NA
"D4.8.K-2","Use listening, consensus-building, and voting procedures to decide on and take action in their classrooms.","C3","ESCCTA","K,1,2","Social Studies","Evaluating Sources, Communicating Conclusions & Taking Action",NA,NA,NA,NA,NA,"Communicating Conclusions & Taking Informed Action",NA
"CCRA.L.1","Demonstrate command of the conventions of standard English grammar and usage when writing or speaking.","Common Core ELA","LS&L","K,1,2,3,4,5,6,7,8,9,10,11,12","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/CCRA/L/1/"
"CCRA.L.2","Demonstrate command of the conventions of standard English capitalization, punctuation, and spelling when writing.","Common Core ELA","LS&L","K,1,2,3,4,5,6,7,8,9,10,11,12","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/CCRA/L/2/"
"CCRA.L.3","Apply knowledge of language to understand how language functions in different contexts, to make effective choices for meaning or style, and to comprehend more fully when reading or listening.","Common Core ELA","LS&L","K,1,2,3,4,5,6,7,8,9,10,11,12","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/CCRA/L/3/"
"CCRA.L.4","Determine or clarify the meaning of unknown and multiple-meaning words and phrases by using context clues, analyzing meaningful word parts, and consulting general and specialized reference materials, as appropriate.","Common Core ELA","LS&L","K,1,2,3,4,5,6,7,8,9,10,11,12","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/CCRA/L/4/"
"CCRA.L.5","Demonstrate understanding of figurative language, word relationships, and nuances in word meanings.","Common Core ELA","LS&L","K,1,2,3,4,5,6,7,8,9,10,11,12","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/CCRA/L/5/"
"CCRA.L.6","Acquire and use accurately a range of general academic and domain-specific words and phrases sufficient for reading, writing, speaking, and listening at the college and career readiness level; demonstrate independence in gathering vocabulary knowledge when encountering an unknown term important to comprehension or expression.","Common Core ELA","LS&L","K,1,2,3,4,5,6,7,8,9,10,11,12","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/CCRA/L/6/"
"CCRA.R.1","Read closely to determine what the text says explicitly and to make logical inferences from it; cite specific textual evidence when writing or speaking to support conclusions drawn from the text.","Common Core ELA","R","K,1,2,3,4,5,6,7,8,9,10,11,12","ELA","Reading",NA,NA,NA,NA,NA,"Reading","http://corestandards.org/ELA-Literacy/CCRA/R/1/"
"CCRA.R.2","Determine central ideas or themes of a text and analyze their development; summarize the key supporting details and ideas.","Common Core ELA","R","K,1,2,3,4,5,6,7,8,9,10,11,12","ELA","Reading",NA,NA,NA,NA,NA,"Reading","http://corestandards.org/ELA-Literacy/CCRA/R/2/"
"CCRA.R.3","Analyze how and why individuals, events, or ideas develop and interact over the course of a text.","Common Core ELA","R","K,1,2,3,4,5,6,7,8,9,10,11,12","ELA","Reading",NA,NA,NA,NA,NA,"Reading","http://corestandards.org/ELA-Literacy/CCRA/R/3/"
"CCRA.R.4","Interpret words and phrases as they are used in a text, including determining technical, connotative, and figurative meanings, and analyze how specific word choices shape meaning or tone.","Common Core ELA","R","K,1,2,3,4,5,6,7,8,9,10,11,12","ELA","Reading",NA,NA,NA,NA,NA,"Reading","http://corestandards.org/ELA-Literacy/CCRA/R/4/"
"CCRA.R.5","Analyze the structure of texts, including how specific sentences, paragraphs, and larger portions of the text (e.g., a section, chapter, scene, or stanza) relate to each other and the whole.","Common Core ELA","R","K,1,2,3,4,5,6,7,8,9,10,11,12","ELA","Reading",NA,NA,NA,NA,NA,"Reading","http://corestandards.org/ELA-Literacy/CCRA/R/5/"
"CCRA.R.6","Assess how point of view or purpose shapes the content and style of a text.","Common Core ELA","R","K,1,2,3,4,5,6,7,8,9,10,11,12","ELA","Reading",NA,NA,NA,NA,NA,"Reading","http://corestandards.org/ELA-Literacy/CCRA/R/6/"
"CCRA.R.7","Integrate and evaluate content presented in diverse media and formats, including visually and quantitatively, as well as in words.","Common Core ELA","R","K,1,2,3,4,5,6,7,8,9,10,11,12","ELA","Reading",NA,NA,NA,NA,NA,"Reading","http://corestandards.org/ELA-Literacy/CCRA/R/7/"
"CCRA.R.8","Delineate and evaluate the argument and specific claims in a text, including the validity of the reasoning as well as the relevance and sufficiency of the evidence.","Common Core ELA","R","K,1,2,3,4,5,6,7,8,9,10,11,12","ELA","Reading",NA,NA,NA,NA,NA,"Reading","http://corestandards.org/ELA-Literacy/CCRA/R/8/"
"CCRA.R.9","Analyze how two or more texts address similar themes or topics in order to build knowledge or to compare the approaches the authors take.","Common Core ELA","R","K,1,2,3,4,5,6,7,8,9,10,11,12","ELA","Reading",NA,NA,NA,NA,NA,"Reading","http://corestandards.org/ELA-Literacy/CCRA/R/9/"
"CCRA.R.10","Read and comprehend complex literary and informational texts independently and proficiently.","Common Core ELA","R","K,1,2,3,4,5,6,7,8,9,10,11,12","ELA","Reading",NA,NA,NA,NA,NA,"Reading","http://corestandards.org/ELA-Literacy/CCRA/R/10/"
"CCRA.SL.1","Prepare for and participate effectively in a range of conversations and collaborations with diverse partners, building on others' ideas and expressing their own clearly and persuasively.","Common Core ELA","LS&L","K,1,2,3,4,5,6,7,8,9,10,11,12","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Speaking & Listening","http://corestandards.org/ELA-Literacy/CCRA/SL/1/"
"CCRA.SL.2","Integrate and evaluate information presented in diverse media and formats, including visually, quantitatively, and orally.","Common Core ELA","LS&L","K,1,2,3,4,5,6,7,8,9,10,11,12","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Speaking & Listening","http://corestandards.org/ELA-Literacy/CCRA/SL/2/"
"CCRA.SL.3","Evaluate a speaker's point of view, reasoning, and use of evidence and rhetoric.","Common Core ELA","LS&L","K,1,2,3,4,5,6,7,8,9,10,11,12","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Speaking & Listening","http://corestandards.org/ELA-Literacy/CCRA/SL/3/"
"CCRA.SL.4","Present information, findings, and supporting evidence such that listeners can follow the line of reasoning and the organization, development, and style are appropriate to task, purpose, and audience.","Common Core ELA","LS&L","K,1,2,3,4,5,6,7,8,9,10,11,12","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Speaking & Listening","http://corestandards.org/ELA-Literacy/CCRA/SL/4/"
"CCRA.SL.5","Make strategic use of digital media and visual displays of data to express information and enhance understanding of presentations.","Common Core ELA","LS&L","K,1,2,3,4,5,6,7,8,9,10,11,12","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Speaking & Listening","http://corestandards.org/ELA-Literacy/CCRA/SL/5/"
"CCRA.SL.6","Adapt speech to a variety of contexts and communicative tasks, demonstrating command of formal English when indicated or appropriate.","Common Core ELA","LS&L","K,1,2,3,4,5,6,7,8,9,10,11,12","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Speaking & Listening","http://corestandards.org/ELA-Literacy/CCRA/SL/6/"
"CCRA.W.1","Write arguments to support claims in an analysis of substantive topics or texts using valid reasoning and relevant and sufficient evidence.","Common Core ELA","W","K,1,2,3,4,5,6,7,8,9,10,11,12","ELA","Writing",NA,NA,NA,NA,NA,"Writing","http://corestandards.org/ELA-Literacy/CCRA/W/1/"
"CCRA.W.2","Write informative/explanatory texts to examine and convey complex ideas and information clearly and accurately through the effective selection, organization, and analysis of content.","Common Core ELA","W","K,1,2,3,4,5,6,7,8,9,10,11,12","ELA","Writing",NA,NA,NA,NA,NA,"Writing","http://corestandards.org/ELA-Literacy/CCRA/W/2/"
"CCRA.W.3","Write narratives to develop real or imagined experiences or events using effective technique, well-chosen details and well-structured event sequences.","Common Core ELA","W","K,1,2,3,4,5,6,7,8,9,10,11,12","ELA","Writing",NA,NA,NA,NA,NA,"Writing","http://corestandards.org/ELA-Literacy/CCRA/W/3/"
"CCRA.W.4","Produce clear and coherent writing in which the development, organization, and style are appropriate to task, purpose, and audience.","Common Core ELA","W","K,1,2,3,4,5,6,7,8,9,10,11,12","ELA","Writing",NA,NA,NA,NA,NA,"Writing","http://corestandards.org/ELA-Literacy/CCRA/W/4/"
"CCRA.W.5","Develop and strengthen writing as needed by planning, revising, editing, rewriting, or trying a new approach.","Common Core ELA","W","K,1,2,3,4,5,6,7,8,9,10,11,12","ELA","Writing",NA,NA,NA,NA,NA,"Writing","http://corestandards.org/ELA-Literacy/CCRA/W/5/"
"CCRA.W.6","Use technology, including the Internet, to produce and publish writing and to interact and collaborate with others.","Common Core ELA","W","K,1,2,3,4,5,6,7,8,9,10,11,12","ELA","Writing",NA,NA,NA,NA,NA,"Writing","http://corestandards.org/ELA-Literacy/CCRA/W/6/"
"CCRA.W.7","Conduct short as well as more sustained research projects based on focused questions, demonstrating understanding of the subject under investigation.","Common Core ELA","W","K,1,2,3,4,5,6,7,8,9,10,11,12","ELA","Writing",NA,NA,NA,NA,NA,"Writing","http://corestandards.org/ELA-Literacy/CCRA/W/7/"
"CCRA.W.8","Gather relevant information from multiple print and digital sources, assess the credibility and accuracy of each source, and integrate the information while avoiding plagiarism.","Common Core ELA","W","K,1,2,3,4,5,6,7,8,9,10,11,12","ELA","Writing",NA,NA,NA,NA,NA,"Writing","http://corestandards.org/ELA-Literacy/CCRA/W/8/"
"CCRA.W.9","Draw evidence from literary or informational texts to support analysis, reflection, and research.","Common Core ELA","W","K,1,2,3,4,5,6,7,8,9,10,11,12","ELA","Writing",NA,NA,NA,NA,NA,"Writing","http://corestandards.org/ELA-Literacy/CCRA/W/9/"
"CCRA.W.10","Write routinely over extended time frames (time for research, reflection, and revision) and shorter time frames (a single sitting or a day or two) for a range of tasks, purposes, and audiences.","Common Core ELA","W","K,1,2,3,4,5,6,7,8,9,10,11,12","ELA","Writing",NA,NA,NA,NA,NA,"Writing","http://corestandards.org/ELA-Literacy/CCRA/W/10/"
"L.K.1","Demonstrate command of the conventions of standard English grammar and usage when writing or speaking.","Common Core ELA","LS&L","K","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/K/1/"
"L.K.1a","Print many upper- and lowercase letters.","Common Core ELA","LS&L","K","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/K/1/a/"
"L.K.1b","Use frequently occurring nouns and verbs.","Common Core ELA","LS&L","K","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/K/1/b/"
"L.K.1c","Form regular plural nouns orally by adding /s/ or /es/ (e.g., *dog, dogs; wish, wishes*).","Common Core ELA","LS&L","K","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/K/1/c/"
"L.K.1d","Understand and use question words (interrogatives) (e.g., *who, what, where, when, why, how*).","Common Core ELA","LS&L","K","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/K/1/d/"
"L.K.1e","Use the most frequently occurring prepositions (e.g., *to, from, in, out, on, off, for, of, by, with*).","Common Core ELA","LS&L","K","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/K/1/e/"
"L.K.1f","Produce and expand complete sentences in shared language activities.","Common Core ELA","LS&L","K","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/K/1/f/"
"L.K.2","Demonstrate command of the conventions of standard English capitalization, punctuation, and spelling when writing.","Common Core ELA","LS&L","K","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/K/2/"
"L.K.2a","Capitalize the first word in a sentence and the pronoun *I*","Common Core ELA","LS&L","K","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/K/2/a/"
"L.K.2b","Recognize and name end punctuation.","Common Core ELA","LS&L","K","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/K/2/b/"
"L.K.2c","Write a letter or letters for most consonant and short-vowel sounds (phonemes).","Common Core ELA","LS&L","K","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/K/2/c/"
"L.K.2d","Spell simple words phonetically, drawing on knowledge of sound-letter relationships.","Common Core ELA","LS&L","K","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/K/2/d/"
"L.K.4","Determine or clarify the meaning of unknown and multiple-meaning words and phrases based on kindergarten reading and content.","Common Core ELA","LS&L","K","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/K/4/"
"L.K.4a","Identify new meanings for familiar words and apply them accurately (e.g., knowing *duck* is a bird and learning the verb to *duck*).","Common Core ELA","LS&L","K","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/K/4/a/"
"L.K.4b","Use the most frequently occurring inflections and affixes (e.g., *-ed, -s, re-, un-, pre-, -ful, -less*) as a clue to the meaning of an unknown word.","Common Core ELA","LS&L","K","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/K/4/b/"
"L.K.5","With guidance and support from adults, explore word relationships and nuances in word meanings.","Common Core ELA","LS&L","K","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/K/5/"
"L.K.5a","Sort common objects into categories (e.g., shapes, foods) to gain a sense of the concepts the categories represent.","Common Core ELA","LS&L","K","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/K/5/a/"
"L.K.5b","Demonstrate understanding of frequently occurring verbs and adjectives by relating them to their opposites (antonyms).","Common Core ELA","LS&L","K","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/K/5/b/"
"L.K.5c","Identify real-life connections between words and their use (e.g., note places at school that are colorful).","Common Core ELA","LS&L","K","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/K/5/c/"
"L.K.5d","Distinguish shades of meaning among verbs describing the same general action (e.g., *walk, march, strut, prance*) by acting out the meanings.","Common Core ELA","LS&L","K","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/K/5/d/"
"L.K.6","Use words and phrases acquired through conversations, reading and being read to, and responding to texts.","Common Core ELA","LS&L","K","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/K/6/"
"L.1.1","Demonstrate command of the conventions of standard English grammar and usage when writing or speaking.","Common Core ELA","LS&L","01","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/1/1/"
"L.1.1a","Print all upper- and lowercase letters.","Common Core ELA","LS&L","01","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/1/1/a/"
"L.1.1b","Use common, proper, and possessive nouns.","Common Core ELA","LS&L","01","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/1/1/b/"
"L.1.1c","Use singular and plural nouns with matching verbs in basic sentences (e.g., He hops; We hop).","Common Core ELA","LS&L","01","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/1/1/c/"
"L.1.1d","Use personal, possessive, and indefinite pronouns (e.g., I, me, my; they, them, their, anyone, everything).","Common Core ELA","LS&L","01","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/1/1/d/"
"L.1.1e","Use verbs to convey a sense of past, present, and future (e.g., Yesterday I walked home; Today I walk home; Tomorrow I will walk home).","Common Core ELA","LS&L","01","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/1/1/e/"
"L.1.1f","Use frequently occurring adjectives.","Common Core ELA","LS&L","01","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/1/1/f/"
"L.1.1g","Use frequently occurring conjunctions (e.g., *and, but, or, so, because*).","Common Core ELA","LS&L","01","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/1/1/g/"
"L.1.1h","Use determiners (e.g., articles, demonstratives).","Common Core ELA","LS&L","01","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/1/1/h/"
"L.1.1i","Use frequently occurring prepositions (e.g., *during, beyond, toward*).","Common Core ELA","LS&L","01","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/1/1/i/"
"L.1.1j","Produce and expand complete simple and compound declarative, interrogative, imperative, and exclamatory sentences in response to prompts.","Common Core ELA","LS&L","01","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/1/1/j/"
"L.1.2","Demonstrate command of the conventions of standard English capitalization, punctuation, and spelling when writing.","Common Core ELA","LS&L","01","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/1/2/"
"L.1.2a","Capitalize dates and names of people.","Common Core ELA","LS&L","01","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/1/2/a/"
"L.1.2b","Use end punctuation for sentences.","Common Core ELA","LS&L","01","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/1/2/b/"
"L.1.2c","Use commas in dates and to separate single words in a series.","Common Core ELA","LS&L","01","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/1/2/c/"
"L.1.2d","Use conventional spelling for words with common spelling patterns and for frequently occurring irregular words.","Common Core ELA","LS&L","01","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/1/2/d/"
"L.1.2e","Spell untaught words phonetically, drawing on phonemic awareness and spelling conventions.","Common Core ELA","LS&L","01","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/1/2/e/"
"L.1.4","Determine or clarify the meaning of unknown and multiple-meaning words and phrases based on *grade 1 reading and content*, choosing flexibly from an array of strategies.","Common Core ELA","LS&L","01","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/1/4/"
"L.1.4a","Use sentence-level context as a clue to the meaning of a word or phrase.","Common Core ELA","LS&L","01","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/1/4/a/"
"L.1.4b","Use frequently occurring affixes as a clue to the meaning of a word.","Common Core ELA","LS&L","01","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/1/4/b/"
"L.1.4c","Identify frequently occurring root words (e.g., *look*) and their inflectional forms (e.g., *looks, looked, looking*).","Common Core ELA","LS&L","01","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/1/4/c/"
"L.1.5","With guidance and support from adults, demonstrate understanding of word relationships and nuances in word meanings.","Common Core ELA","LS&L","01","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/1/5/"
"L.1.5a","Sort words into categories (e.g., colors, clothing) to gain a sense of the concepts the categories represent.","Common Core ELA","LS&L","01","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/1/5/a/"
"L.1.5b","Define words by category and by one or more key attributes (e.g., a *duck* is a bird that swims; a *tiger* is a large cat with stripes).","Common Core ELA","LS&L","01","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/1/5/b/"
"L.1.5c","Identify real-life connections between words and their use (e.g., note places at home that are *cozy*).","Common Core ELA","LS&L","01","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/1/5/c/"
"L.1.5d","Distinguish shades of meaning among verbs differing in manner (e.g., *look, peek, glance, stare, glare, scowl*) and adjectives differing in intensity (e.g., large, gigantic) by defining or choosing them or by acting out the meanings.","Common Core ELA","LS&L","01","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/1/5/d/"
"L.1.6","Use words and phrases acquired through conversations, reading and being read to, and responding to texts, including using frequently occurring conjunctions to signal simple relationships (e.g., *because*).","Common Core ELA","LS&L","01","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/1/6/"
"L.2.1","Demonstrate command of the conventions of standard English grammar and usage when writing or speaking.","Common Core ELA","LS&L","02","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/2/1/"
"L.2.1a","Use collective nouns (e.g., *group*).","Common Core ELA","LS&L","02","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/2/1/a/"
"L.2.1b","Form and use frequently occurring irregular plural nouns (e.g., *feet, children, teeth, mice, fish*).","Common Core ELA","LS&L","02","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/2/1/b/"
"L.2.1c","Use reflexive pronouns (e.g., *myself, ourselves*).","Common Core ELA","LS&L","02","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/2/1/c/"
"L.2.1d","Form and use the past tense of frequently occurring irregular verbs (e.g., *sat, hid, told*).","Common Core ELA","LS&L","02","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/2/1/d/"
"L.2.1e","Use adjectives and adverbs, and choose between them depending on what is to be modified.","Common Core ELA","LS&L","02","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/2/1/e/"
"L.2.1f","Produce, expand, and rearrange complete simple and compound sentences (e.g., *The boy watched the movie; The little boy watched the movie; The action movie was watched by the little boy*).","Common Core ELA","LS&L","02","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/2/1/f/"
"L.2.2","Demonstrate command of the conventions of standard English capitalization, punctuation, and spelling when writing.","Common Core ELA","LS&L","02","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/2/2/"
"L.2.2a","Capitalize holidays, product names, and geographic names.","Common Core ELA","LS&L","02","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/2/2/a/"
"L.2.2b","Use commas in greetings and closings of letters.","Common Core ELA","LS&L","02","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/2/2/b/"
"L.2.2c","Use an apostrophe to form contractions and frequently occurring possessives.","Common Core ELA","LS&L","02","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/2/2/c/"
"L.2.2d","Generalize learned spelling patterns when writing words (e.g., *cage → badge; boy → boil*).","Common Core ELA","LS&L","02","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/2/2/d/"
"L.2.2e","Consult reference materials, including beginning dictionaries, as needed to check and correct spellings.","Common Core ELA","LS&L","02","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/2/2/e/"
"L.2.3","Use knowledge of language and its conventions when writing, speaking, reading, or listening.","Common Core ELA","LS&L","02","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/2/3/"
"L.2.3a","Compare formal and informal uses of English","Common Core ELA","LS&L","02","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/2/3/a/"
"L.2.4","Determine or clarify the meaning of unknown and multiple-meaning words and phrases based on grade 2 reading and content, choosing flexibly from an array of strategies.","Common Core ELA","LS&L","02","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/2/4/"
"L.2.4a","Use sentence-level context as a clue to the meaning of a word or phrase.","Common Core ELA","LS&L","02","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/2/4/a/"
"L.2.4b","Determine the meaning of the new word formed when a known prefix is added to a known word (e.g., *happy/unhappy, tell/retell*).","Common Core ELA","LS&L","02","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/2/4/b/"
"L.2.4c","Use a known root word as a clue to the meaning of an unknown word with the same root (e.g., *addition, additional*).","Common Core ELA","LS&L","02","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/2/4/c/"
"L.2.4d","Use knowledge of the meaning of individual words to predict the meaning of compound words (e.g., *birdhouse, lighthouse, housefly; bookshelf, notebook, bookmark*).","Common Core ELA","LS&L","02","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/2/4/d/"
"L.2.4e","Use glossaries and beginning dictionaries, both print and digital, to determine or clarify the meaning of words and phrases.","Common Core ELA","LS&L","02","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/2/4/e/"
"L.2.5","Demonstrate understanding of word relationships and nuances in word meanings.","Common Core ELA","LS&L","02","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/2/5/"
"L.2.5a","Identify real-life connections between words and their use (e.g., *describe foods that are spicy or juicy*).","Common Core ELA","LS&L","02","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/2/5/a/"
"L.2.5b","Distinguish shades of meaning among closely related verbs (e.g., *toss, throw, hurl*) and closely related adjectives (e.g., *thin, slender, skinny, scrawny*).","Common Core ELA","LS&L","02","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/2/5/b/"
"L.2.6","Use words and phrases acquired through conversations, reading and being read to, and responding to texts, including using adjectives and adverbs to describe (e.g., *When other kids are happy that makes me happy*).","Common Core ELA","LS&L","02","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/2/6/"
"L.3.1","Demonstrate command of the conventions of standard English grammar and usage when writing or speaking.","Common Core ELA","LS&L","03","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/3/1/"
"L.3.1a","Explain the function of nouns, pronouns, verbs, adjectives, and adverbs in general and their functions in particular sentences.","Common Core ELA","LS&L","03","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/3/1/a/"
"L.3.1b","Form and use regular and irregular plural nouns.","Common Core ELA","LS&L","03","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/3/1/b/"
"L.3.1c","Use abstract nouns (e.g., *childhood*).","Common Core ELA","LS&L","03","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/3/1/c/"
"L.3.1d","Form and use regular and irregular verbs.","Common Core ELA","LS&L","03","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/3/1/d/"
"L.3.1e","Form and use the simple (e.g., *I walked; I walk; I will walk*) verb tenses.","Common Core ELA","LS&L","03","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/3/1/e/"
"L.3.1f","Ensure subject-verb and pronoun-antecedent agreement.*","Common Core ELA","LS&L","03","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/3/1/f/"
"L.3.1g","Form and use comparative and superlative adjectives and adverbs, and choose between them depending on what is to be modified.","Common Core ELA","LS&L","03","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/3/1/g/"
"L.3.1h","Use coordinating and subordinating conjunctions.","Common Core ELA","LS&L","03","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/3/1/h/"
"L.3.1i","Produce simple, compound, and complex sentences.","Common Core ELA","LS&L","03","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/3/1/i/"
"L.3.2","Demonstrate command of the conventions of standard English capitalization, punctuation, and spelling when writing.","Common Core ELA","LS&L","03","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/3/2/"
"L.3.2a","Capitalize appropriate words in titles.","Common Core ELA","LS&L","03","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/3/2/a/"
"L.3.2b","Use commas in addresses.","Common Core ELA","LS&L","03","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/3/2/b/"
"L.3.2c","Use commas and quotation marks in dialogue.","Common Core ELA","LS&L","03","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/3/2/c/"
"L.3.2d","Form and use possessives.","Common Core ELA","LS&L","03","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/3/2/d/"
"L.3.2e","Use conventional spelling for high-frequency and other studied words and for adding suffixes to base words (e.g., *sitting, smiled, cries, happiness*).","Common Core ELA","LS&L","03","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/3/2/e/"
"L.3.2f","Use spelling patterns and generalizations (e.g., *word families, position-based spellings, syllable patterns, ending rules, meaningful word parts*) in writing words.","Common Core ELA","LS&L","03","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/3/2/f/"
"L.3.2g","Consult reference materials, including beginning dictionaries, as needed to check and correct spellings.","Common Core ELA","LS&L","03","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/3/2/g/"
"L.3.3","Use knowledge of language and its conventions when writing, speaking, reading, or listening.","Common Core ELA","LS&L","03","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/3/3/"
"L.3.3a","Choose words and phrases for effect.*","Common Core ELA","LS&L","03","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/3/3/a/"
"L.3.3b","Recognize and observe differences between the conventions of spoken and written standard English.","Common Core ELA","LS&L","03","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/3/3/b/"
"L.3.4","Determine or clarify the meaning of unknown and multiple-meaning word and phrases based on grade 3 reading and content, choosing flexibly from a range of strategies.","Common Core ELA","LS&L","03","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/3/4/"
"L.3.4a","Use sentence-level context as a clue to the meaning of a word or phrase.","Common Core ELA","LS&L","03","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/3/4/a/"
"L.3.4b","Determine the meaning of the new word formed when a known affix is added to a known word (e.g., *agreeable/disagreeable, comfortable/uncomfortable, care/careless, heat/preheat*).","Common Core ELA","LS&L","03","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/3/4/b/"
"L.3.4c","Use a known root word as a clue to the meaning of an unknown word with the same root (e.g., *company, companion*).","Common Core ELA","LS&L","03","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/3/4/c/"
"L.3.4d","Use glossaries or beginning dictionaries, both print and digital, to determine or clarify the precise meaning of key words and phrases.","Common Core ELA","LS&L","03","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/3/4/d/"
"L.3.5","Demonstrate understanding of figurative language, word relationships and nuances in word meanings.","Common Core ELA","LS&L","03","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/3/5/"
"L.3.5a","Distinguish the literal and nonliteral meanings of words and phrases in context (e.g., *take steps*).","Common Core ELA","LS&L","03","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/3/5/a/"
"L.3.5b","Identify real-life connections between words and their use (e.g., describe people who are *friendly* or *helpful*).","Common Core ELA","LS&L","03","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/3/5/b/"
"L.3.5c","Distinguish shades of meaning among related words that describe states of mind or degrees of certainty (e.g., *knew, believed, suspected, heard, wondered*).","Common Core ELA","LS&L","03","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/3/5/c/"
"L.3.6","Acquire and use accurately grade-appropriate conversational, general academic, and domain-specific words and phrases, including those that signal spatial and temporal relationships (e.g., *After dinner that night we went looking for them*).","Common Core ELA","LS&L","03","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/3/6/"
"L.4.1","Demonstrate command of the conventions of standard English grammar and usage when writing or speaking.","Common Core ELA","LS&L","04","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/4/1/"
"L.4.1a","Use relative pronouns (*who, whose, whom, which, that*) and relative adverbs (*where, when, why*).","Common Core ELA","LS&L","04","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/4/1/a/"
"L.4.1b","Form and use the progressive (e.g., *I was walking; I am walking; I will be walking*) verb tenses.","Common Core ELA","LS&L","04","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/4/1/b/"
"L.4.1c","Use modal auxiliaries (e.g., *can, may, must*) to convey various conditions.","Common Core ELA","LS&L","04","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/4/1/c/"
"L.4.1d","Order adjectives within sentences according to conventional patterns (e.g., *a small red bag* rather than *a red small bag*).","Common Core ELA","LS&L","04","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/4/1/d/"
"L.4.1e","Form and use prepositional phrases.","Common Core ELA","LS&L","04","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/4/1/e/"
"L.4.1f","Produce complete sentences, recognizing and correcting inappropriate fragments and run-ons.*","Common Core ELA","LS&L","04","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/4/1/f/"
"L.4.1g","Correctly use frequently confused words (e.g., *to, too, two; there, their*).*","Common Core ELA","LS&L","04","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/4/1/g/"
"L.4.2","Demonstrate command of the conventions of standard English capitalization, punctuation, and spelling when writing.","Common Core ELA","LS&L","04","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/4/2/"
"L.4.2a","Use correct capitalization.","Common Core ELA","LS&L","04","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/4/2/a/"
"L.4.2b","Use commas and quotation marks to mark direct speech and quotations from a text.","Common Core ELA","LS&L","04","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/4/2/b/"
"L.4.2c","Use a comma before a coordinating conjunction in a compound sentence.","Common Core ELA","LS&L","04","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/4/2/c/"
"L.4.2d","Spell grade-appropriate words correctly, consulting references as needed.","Common Core ELA","LS&L","04","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/4/2/d/"
"L.4.3","Use knowledge of language and its conventions when writing, speaking, reading, or listening.","Common Core ELA","LS&L","04","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/4/3/"
"L.4.3a","Choose words and phrases to convey ideas precisely.*","Common Core ELA","LS&L","04","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/4/3/a/"
"L.4.3b","Choose punctuation for effect.*","Common Core ELA","LS&L","04","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/4/3/b/"
"L.4.3c","Differentiate between contexts that call for formal English (e.g., presenting ideas) and situations where informal discourse is appropriate (e.g., small-group discussion).","Common Core ELA","LS&L","04","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/4/3/c/"
"L.4.4","Determine or clarify the meaning of unknown and multiple-meaning words and phrases based on grade 4 reading and content, choosing flexibly from a range of strategies.","Common Core ELA","LS&L","04","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/4/4/"
"L.4.4a","Use context (e.g., definitions, examples, or restatements in text) as a clue to the meaning of a word or phrase.","Common Core ELA","LS&L","04","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/4/4/a/"
"L.4.4b","Use common, grade-appropriate Greek and Latin affixes and roots as clues to the meaning of a word (e.g., *telegraph, photograph, autograph*).","Common Core ELA","LS&L","04","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/4/4/b/"
"L.4.4c","Consult reference materials (e.g., dictionaries, glossaries, thesauruses), both print and digital, to find the pronunciation and determine or clarify the precise meaning of key words and phrases.","Common Core ELA","LS&L","04","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/4/4/c/"
"L.4.5","Demonstrate understanding of figurative language, word relationships, and nuances in word meanings.","Common Core ELA","LS&L","04","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/4/5/"
"L.4.5a","Explain the meaning of simple similes and metaphors (e.g., *as pretty as a picture*) in context.","Common Core ELA","LS&L","04","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/4/5/a/"
"L.4.5b","Recognize and explain the meaning of common idioms, adages, and proverbs.","Common Core ELA","LS&L","04","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/4/5/b/"
"L.4.5c","Demonstrate understanding of words by relating them to their opposites (antonyms) and to words with similar but not identical meanings (synonyms).","Common Core ELA","LS&L","04","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/4/5/c/"
"L.4.6","Acquire and use accurately grade-appropriate general academic and domain-specific words and phrases, including those that signal precise actions, emotions, or states of being (e.g., quizzed, whined, stammered) and that are basic to a particular topic (e.g., *wildlife, conservation,* and *endangered* when discussing animal preservation).","Common Core ELA","LS&L","04","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/4/6/"
"L.5.1","Demonstrate command of the conventions of standard English grammar and usage when writing or speaking.","Common Core ELA","LS&L","05","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/5/1/"
"L.5.1a","Explain the function of conjunctions, prepositions, and interjections in general and their function in particular sentences.","Common Core ELA","LS&L","05","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/5/1/a/"
"L.5.1b","Form and use the perfect (e.g., *I had walked; I have walked; I will have walked*) verb tenses.","Common Core ELA","LS&L","05","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/5/1/b/"
"L.5.1c","Use verb tense to convey various times, sequences, states, and conditions.","Common Core ELA","LS&L","05","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/5/1/c/"
"L.5.1d","Recognize and correct inappropriate shifts in verb tense.*","Common Core ELA","LS&L","05","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/5/1/d/"
"L.5.1e","Use correlative conjunctions (e.g., *either/or, neither/nor*).","Common Core ELA","LS&L","05","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/5/1/e/"
"L.5.2","Demonstrate command of the conventions of standard English capitalization, punctuation, and spelling when writing.","Common Core ELA","LS&L","05","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/5/2/"
"L.5.2a","Use punctuation to separate items in a series.*","Common Core ELA","LS&L","05","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/5/2/a/"
"L.5.2b","Use a comma to separate an introductory element from the rest of the sentence.","Common Core ELA","LS&L","05","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/5/2/b/"
"L.5.2c","Use a comma to set off the words *yes* and *no* (e.g., *Yes, thank you*), to set off a tag question from the rest of the sentence (e.g., *It's true, isn't it?*), and to indicate direct address (e.g., *Is that you, Steve?*).","Common Core ELA","LS&L","05","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/5/2/c/"
"L.5.2d","Use underlining, quotation marks, or italics to indicate titles of works.","Common Core ELA","LS&L","05","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/5/2/d/"
"L.5.2e","Spell grade-appropriate words correctly, consulting references as needed.","Common Core ELA","LS&L","05","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/5/2/e/"
"L.5.3","Use knowledge of language and its conventions when writing, speaking, reading, or listening.","Common Core ELA","LS&L","05","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/5/3/"
"L.5.3a","Expand, combine, and reduce sentences for meaning, reader/listener interest, and style.","Common Core ELA","LS&L","05","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/5/3/a/"
"L.5.3b","Compare and contrast the varieties of English (e.g., *dialects, registers*) used in stories, dramas, or poems.","Common Core ELA","LS&L","05","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/5/3/b/"
"L.5.4","Determine or clarify the meaning of unknown and multiple-meaning words and phrases based on grade 5 reading and content, choosing flexibly from a range of strategies.","Common Core ELA","LS&L","05","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/5/4/"
"L.5.4a","Use context (e.g., cause/effect relationships and comparisons in text) as a clue to the meaning of a word or phrase.","Common Core ELA","LS&L","05","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/5/4/a/"
"L.5.4b","Use common, grade-appropriate Greek and Latin affixes and roots as clues to the meaning of a word (e.g., *photograph, photosynthesis*).","Common Core ELA","LS&L","05","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/5/4/b/"
"L.5.4c","Consult reference materials (e.g., dictionaries, glossaries, thesauruses), both print and digital, to find the pronunciation and determine or clarify the precise meaning of key words and phrases.","Common Core ELA","LS&L","05","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/5/4/c/"
"L.5.5","Demonstrate understanding of figurative language, word relationships, and nuances in word meanings.","Common Core ELA","LS&L","05","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/5/5/"
"L.5.5a","Interpret figurative language, including similes and metaphors, in context.","Common Core ELA","LS&L","05","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/5/5/a/"
"L.5.5b","Recognize and explain the meaning of common idioms, adages, and proverbs.","Common Core ELA","LS&L","05","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/5/5/b/"
"L.5.5c","Use the relationship between particular words (e.g., synonyms, antonyms, homographs) to better understand each of the words.","Common Core ELA","LS&L","05","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/5/5/c/"
"L.5.6","Acquire and use accurately grade-appropriate general academic and domain-specific words and phrases, including those that signal contrast, addition, and other logical relationships (e.g., *however, although, nevertheless, similarly, moreover, in addition*).","Common Core ELA","LS&L","05","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/5/6/"
"L.6.1","Demonstrate command of the conventions of standard English grammar and usage when writing or speaking.","Common Core ELA","LS&L","06","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/6/1/"
"L.6.1a","Ensure that pronouns are in the proper case (subjective, objective, possessive).","Common Core ELA","LS&L","06","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/6/1/a/"
"L.6.1b","Use intensive pronouns (e.g., *myself, ourselves*).","Common Core ELA","LS&L","06","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/6/1/b/"
"L.6.1c","Recognize and correct inappropriate shifts in pronoun number and person.*","Common Core ELA","LS&L","06","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/6/1/c/"
"L.6.1d","Recognize and correct vague pronouns (i.e., ones with unclear or ambiguous antecedents).*","Common Core ELA","LS&L","06","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/6/1/d/"
"L.6.1e","Recognize variations from standard English in their own and others' writing and speaking, and identify and use strategies to improve expression in conventional language.*","Common Core ELA","LS&L","06","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/6/1/e/"
"L.6.2","Demonstrate command of the conventions of standard English capitalization, punctuation, and spelling when writing.","Common Core ELA","LS&L","06","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/6/2/"
"L.6.2a","Use punctuation (commas, parentheses, dashes) to set off nonrestrictive/parenthetical elements.*","Common Core ELA","LS&L","06","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/6/2/a/"
"L.6.2b","Spell correctly.","Common Core ELA","LS&L","06","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/6/2/b/"
"L.6.3","Use knowledge of language and its conventions when writing, speaking, reading, or listening.","Common Core ELA","LS&L","06","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/6/3/"
"L.6.3a","Vary sentence patterns for meaning, reader/listener interest, and style.*","Common Core ELA","LS&L","06","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/6/3/a/"
"L.6.3b","Maintain consistency in style and tone.*","Common Core ELA","LS&L","06","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/6/3/b/"
"L.6.4","Determine or clarify the meaning of unknown and multiple-meaning words and phrases based on grade 6 reading and content, choosing flexibly from a range of strategies.","Common Core ELA","LS&L","06","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/6/4/"
"L.6.4a","Use context (e.g., the overall meaning of a sentence or paragraph; a word's position or function in a sentence) as a clue to the meaning of a word or phrase.","Common Core ELA","LS&L","06","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/6/4/a/"
"L.6.4b","Use common, grade-appropriate Greek or Latin affixes and roots as clues to the meaning of a word (e.g., *audience, auditory, audible*).","Common Core ELA","LS&L","06","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/6/4/b/"
"L.6.4c","Consult reference materials (e.g., dictionaries, glossaries, thesauruses), both print and digital, to find the pronunciation of a word or determine or clarify its precise meaning or its part of speech.","Common Core ELA","LS&L","06","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/6/4/c/"
"L.6.4d","Verify the preliminary determination of the meaning of a word or phrase (e.g., by checking the inferred meaning in context or in a dictionary).","Common Core ELA","LS&L","06","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/6/4/d/"
"L.6.5","Demonstrate understanding of figurative language, word relationships, and nuances in word meanings.","Common Core ELA","LS&L","06","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/6/5/"
"L.6.5a","Interpret figures of speech (e.g., personification) in context.","Common Core ELA","LS&L","06","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/6/5/a/"
"L.6.5b","Use the relationship between particular words (e.g., cause/effect, part/whole, item/category) to better understand each of the words.","Common Core ELA","LS&L","06","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/6/5/b/"
"L.6.5c","Distinguish among the connotations (associations) of words with similar denotations (definitions) (e.g., *stingy, scrimping, economical, unwasteful, thrifty*).","Common Core ELA","LS&L","06","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/6/5/c/"
"L.6.6","Acquire and use accurately grade-appropriate general academic and domain-specific words and phrases; gather vocabulary knowledge when considering a word or phrase important to comprehension or expression.","Common Core ELA","LS&L","06","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/6/6/"
"L.7.1","Demonstrate command of the conventions of standard English grammar and usage when writing or speaking.","Common Core ELA","LS&L","07","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/7/1/"
"L.7.1a","Explain the function of phrases and clauses in general and their function in specific sentences.","Common Core ELA","LS&L","07","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/7/1/a/"
"L.7.1b","Choose among simple, compound, complex, and compound-complex sentences to signal differing relationships among ideas.","Common Core ELA","LS&L","07","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/7/1/b/"
"L.7.1c","Place phrases and clauses within a sentence, recognizing and correcting misplaced and dangling modifiers.*","Common Core ELA","LS&L","07","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/7/1/c/"
"L.7.2","Demonstrate command of the conventions of standard English capitalization, punctuation, and spelling when writing.","Common Core ELA","LS&L","07","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/7/2/"
"L.7.2a","Use a comma to separate coordinate adjectives (e.g., *It was a fascinating, enjoyable movie* but not *He wore an old[,] green shirt*).","Common Core ELA","LS&L","07","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/7/2/a/"
"L.7.2b","Spell correctly.","Common Core ELA","LS&L","07","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/7/2/b/"
"L.7.3","Use knowledge of language and its conventions when writing, speaking, reading, or listening.","Common Core ELA","LS&L","07","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/7/3/"
"L.7.3a","Choose language that expresses ideas precisely and concisely, recognizing and eliminating wordiness and redundancy.*","Common Core ELA","LS&L","07","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/7/3/a/"
"L.7.4","Determine or clarify the meaning of unknown and multiple-meaning words and phrases based on *grade 7 reading and content*, choosing flexibly from a range of strategies.","Common Core ELA","LS&L","07","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/7/4/"
"L.7.4a","Use context (e.g., the overall meaning of a sentence or paragraph; a word's position or function in a sentence) as a clue to the meaning of a word or phrase.","Common Core ELA","LS&L","07","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/7/4/a/"
"L.7.4b","Use common, grade-appropriate Greek or Latin affixes and roots as clues to the meaning of a word (e.g., *belligerent, bellicose, rebel*).","Common Core ELA","LS&L","07","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/7/4/b/"
"L.7.4c","Consult general and specialized reference materials (e.g., dictionaries, glossaries, thesauruses), both print and digital, to find the pronunciation of a word or determine or clarify its precise meaning or its part of speech.","Common Core ELA","LS&L","07","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/7/4/c/"
"L.7.4d","Verify the preliminary determination of the meaning of a word or phrase (e.g., by checking the inferred meaning in context or in a dictionary).","Common Core ELA","LS&L","07","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/7/4/d/"
"L.7.5","Demonstrate understanding of figurative language, word relationships, and nuances in word meanings.","Common Core ELA","LS&L","07","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/7/5/"
"L.7.5a","Interpret figures of speech (e.g., literary, biblical, and mythological allusions) in context.","Common Core ELA","LS&L","07","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/7/5/a/"
"L.7.5b","Use the relationship between particular words (e.g., synonym/antonym, analogy) to better understand each of the words.","Common Core ELA","LS&L","07","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/7/5/b/"
"L.7.5c","Distinguish among the connotations (associations) of words with similar denotations (definitions) (e.g., *refined, respectful, polite, diplomatic, condescending*).","Common Core ELA","LS&L","07","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/7/5/c/"
"L.7.6","Acquire and use accurately grade-appropriate general academic and domain-specific words and phrases; gather vocabulary knowledge when considering a word or phrase important to comprehension or expression.","Common Core ELA","LS&L","07","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/7/6/"
"L.8.1","Demonstrate command of the conventions of standard English grammar and usage when writing or speaking.","Common Core ELA","LS&L","08","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/8/1/"
"L.8.1a","Explain the function of verbals (gerunds, participles, infinitives) in general and their function in particular sentences.","Common Core ELA","LS&L","08","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/8/1/a/"
"L.8.1b","Form and use verbs in the active and passive voice.","Common Core ELA","LS&L","08","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/8/1/b/"
"L.8.1c","Form and use verbs in the indicative, imperative, interrogative, conditional, and subjunctive mood.","Common Core ELA","LS&L","08","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/8/1/c/"
"L.8.1d","Recognize and correct inappropriate shifts in verb voice and mood.*","Common Core ELA","LS&L","08","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/8/1/d/"
"L.8.2","Demonstrate command of the conventions of standard English capitalization, punctuation, and spelling when writing.","Common Core ELA","LS&L","08","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/8/2/"
"L.8.2a","Use punctuation (comma, ellipsis, dash) to indicate a pause or break.","Common Core ELA","LS&L","08","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/8/2/a/"
"L.8.2b","Use an ellipsis to indicate an omission.","Common Core ELA","LS&L","08","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/8/2/b/"
"L.8.2c","Spell correctly.","Common Core ELA","LS&L","08","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/8/2/c/"
"L.8.3","Use knowledge of language and its conventions when writing, speaking, reading, or listening.","Common Core ELA","LS&L","08","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/8/3/"
"L.8.3a","Use verbs in the active and passive voice and in the conditional and subjunctive mood to achieve particular effects (e.g., emphasizing the actor or the action; expressing uncertainty or describing a state contrary to fact).","Common Core ELA","LS&L","08","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/8/3/a/"
"L.8.4","Determine or clarify the meaning of unknown and multiple-meaning words or phrases based on *grade 8 reading and content*, choosing flexibly from a range of strategies.","Common Core ELA","LS&L","08","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/8/4/"
"L.8.4a","Use context (e.g., the overall meaning of a sentence or paragraph; a word's position or function in a sentence) as a clue to the meaning of a word or phrase.","Common Core ELA","LS&L","08","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/8/4/a/"
"L.8.4b","Use common, grade-appropriate Greek or Latin affixes and roots as clues to the meaning of a word (e.g., *precede, recede, secede*).","Common Core ELA","LS&L","08","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/8/4/b/"
"L.8.4c","Consult general and specialized reference materials (e.g., dictionaries, glossaries, thesauruses), both print and digital, to find the pronunciation of a word or determine or clarify its precise meaning or its part of speech.","Common Core ELA","LS&L","08","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/8/4/c/"
"L.8.4d","Verify the preliminary determination of the meaning of a word or phrase (e.g., by checking the inferred meaning in context or in a dictionary).","Common Core ELA","LS&L","08","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/8/4/d/"
"L.8.5","Demonstrate understanding of figurative language, word relationships, and nuances in word meanings.","Common Core ELA","LS&L","08","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/8/5/"
"L.8.5a","Interpret figures of speech (e.g. verbal irony, puns) in context.","Common Core ELA","LS&L","08","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/8/5/a/"
"L.8.5b","Use the relationship between particular words to better understand each of the words.","Common Core ELA","LS&L","08","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/8/5/b/"
"L.8.5c","Distinguish among the connotations (associations) of words with similar denotations (definitions) (e.g., *bullheaded, willful, firm, persistent, resolute*).","Common Core ELA","LS&L","08","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/8/5/c/"
"L.8.6","Acquire and use accurately grade-appropriate general academic and domain-specific words and phrases; gather vocabulary knowledge when considering a word or phrase important to comprehension or expression.","Common Core ELA","LS&L","08","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/8/6/"
"L.9-10.1","Demonstrate command of the conventions of standard English grammar and usage when writing or speaking.","Common Core ELA","LS&L","9,10","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/9-10/1/"
"L.9-10.1a","Use parallel structure.*","Common Core ELA","LS&L","9,10","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/9-10/1/a/"
"L.9-10.1b","Use various types of phrases (noun, verb, adjectival, adverbial, participial, prepositional, absolute) and clauses (independent, dependent; noun, relative, adverbial) to convey specific meanings and add variety and interest to writing or presentations.","Common Core ELA","LS&L","9,10","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/9-10/1/b/"
"L.9-10.2","Demonstrate command of the conventions of standard English capitalization, punctuation, and spelling when writing.","Common Core ELA","LS&L","9,10","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/9-10/2/"
"L.9-10.2a","Use a semicolon (and perhaps a conjunctive adverb) to link two or more closely related independent clauses.","Common Core ELA","LS&L","9,10","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/9-10/2/a/"
"L.9-10.2b","Use a colon to introduce a list or quotation.","Common Core ELA","LS&L","9,10","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/9-10/2/b/"
"L.9-10.2c","Spell correctly.","Common Core ELA","LS&L","9,10","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/9-10/2/c/"
"L.9-10.3","Apply knowledge of language to understand how language functions in different contexts, to make effective choices for meaning or style, and to comprehend more fully when reading or listening.","Common Core ELA","LS&L","9,10","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/9-10/3/"
"L.9-10.3a","Write and edit work so that it conforms to the guidelines in a style manual (e.g., *MLA Handbook*, Turabian's *Manual for Writers*) appropriate for the discipline and writing type.","Common Core ELA","LS&L","9,10","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/9-10/3/a/"
"L.9-10.4","Determine or clarify the meaning of unknown and multiple-meaning words and phrases based on *grades 9-10 reading and content*, choosing flexibly from a range of strategies.","Common Core ELA","LS&L","9,10","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/9-10/4/"
"L.9-10.4a","Use context (e.g., the overall meaning of a sentence, paragraph, or text; a word's position or function in a sentence) as a clue to the meaning of a word or phrase.","Common Core ELA","LS&L","9,10","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/9-10/4/a/"
"L.9-10.4b","Identify and correctly use patterns of word changes that indicate different meanings or parts of speech (e.g., *analyze, analysis, analytical; advocate, advocacy*).","Common Core ELA","LS&L","9,10","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/9-10/4/b/"
"L.9-10.4c","Consult general and specialized reference materials (e.g., dictionaries, glossaries, thesauruses), both print and digital, to find the pronunciation of a word or determine or clarify its precise meaning, its part of speech, or its etymology.","Common Core ELA","LS&L","9,10","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/9-10/4/c/"
"L.9-10.4d","Verify the preliminary determination of the meaning of a word or phrase (e.g., by checking the inferred meaning in context or in a dictionary).","Common Core ELA","LS&L","9,10","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/9-10/4/d/"
"L.9-10.5","Demonstrate understanding of figurative language, word relationships, and nuances in word meanings.","Common Core ELA","LS&L","9,10","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/9-10/5/"
"L.9-10.5a","Interpret figures of speech (e.g., euphemism, oxymoron) in context and analyze their role in the text.","Common Core ELA","LS&L","9,10","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/9-10/5/a/"
"L.9-10.5b","Analyze nuances in the meaning of words with similar denotations.","Common Core ELA","LS&L","9,10","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/9-10/5/b/"
"L.9-10.6","Acquire and use accurately general academic and domain-specific words and phrases, sufficient for reading, writing, speaking, and listening at the college and career readiness level; demonstrate independence in gathering vocabulary knowledge when considering a word or phrase important to comprehension or expression.","Common Core ELA","LS&L","9,10","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/9-10/6/"
"L.11-12.1","Demonstrate command of the conventions of standard English grammar and usage when writing or speaking.","Common Core ELA","LS&L","11,12","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/11-12/1/"
"L.11-12.1a","Apply the understanding that usage is a matter of convention, can change over time, and is sometimes contested.","Common Core ELA","LS&L","11,12","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/11-12/1/a/"
"L.11-12.1b","Resolve issues of complex or contested usage, consulting references (e.g., *Merriam-Webster's Dictionary of English Usage, Garner's Modern American Usage*) as needed.","Common Core ELA","LS&L","11,12","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/11-12/1/b/"
"L.11-12.2","Demonstrate command of the conventions of standard English capitalization, punctuation, and spelling when writing.","Common Core ELA","LS&L","11,12","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/11-12/2/"
"L.11-12.2a","Observe hyphenation conventions.","Common Core ELA","LS&L","11,12","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/11-12/2/a/"
"L.11-12.2b","Spell correctly.","Common Core ELA","LS&L","11,12","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/11-12/2/b/"
"L.11-12.3","Apply knowledge of language to understand how language functions in different contexts, to make effective choices for meaning or style, and to comprehend more fully when reading or listening.","Common Core ELA","LS&L","11,12","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/11-12/3/"
"L.11-12.3a","Vary syntax for effect, consulting references (e.g., Tufte's *Artful Sentences*) for guidance as needed; apply an understanding of syntax to the study of complex texts when reading.","Common Core ELA","LS&L","11,12","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/11-12/3/a/"
"L.11-12.4","Determine or clarify the meaning of unknown and multiple-meaning words and phrases based on *grades 11-12 reading and content*, choosing flexibly from a range of strategies.","Common Core ELA","LS&L","11,12","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/11-12/4/"
"L.11-12.4a","Use context (e.g., the overall meaning of a sentence, paragraph, or text; a word's position or function in a sentence) as a clue to the meaning of a word or phrase.","Common Core ELA","LS&L","11,12","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/11-12/4/a/"
"L.11-12.4b","Identify and correctly use patterns of word changes that indicate different meanings or parts of speech (e.g., *conceive, conception, conceivable*).","Common Core ELA","LS&L","11,12","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/11-12/4/b/"
"L.11-12.4c","Consult general and specialized reference materials (e.g., dictionaries, glossaries, thesauruses), both print and digital, to find the pronunciation of a word or determine or clarify its precise meaning, its part of speech, its etymology, or its standard usage.","Common Core ELA","LS&L","11,12","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/11-12/4/c/"
"L.11-12.4d","Verify the preliminary determination of the meaning of a word or phrase (e.g., by checking the inferred meaning in context or in a dictionary).","Common Core ELA","LS&L","11,12","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/11-12/4/d/"
"L.11-12.5","Demonstrate understanding of figurative language, word relationships, and nuances in word meanings.","Common Core ELA","LS&L","11,12","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/11-12/5/"
"L.11-12.5a","Interpret figures of speech (e.g., hyperbole, paradox) in context and analyze their role in the text.","Common Core ELA","LS&L","11,12","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/11-12/5/a/"
"L.11-12.5b","Analyze nuances in the meaning of words with similar denotations.","Common Core ELA","LS&L","11,12","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/11-12/5/b/"
"L.11-12.6","Acquire and use accurately general academic and domain-specific words and phrases, sufficient for reading, writing, speaking, and listening at the college and career readiness level; demonstrate independence in gathering vocabulary knowledge when considering a word or phrase important to comprehension or expression.","Common Core ELA","LS&L","11,12","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Language","http://corestandards.org/ELA-Literacy/L/11-12/6/"
"RF.K.1","Demonstrate understanding of the organization and basic features of print.","Common Core ELA","R","K","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Foundational Skills","http://corestandards.org/ELA-Literacy/RF/K/1/"
"RF.K.1a","Follow words from left to right, top to bottom, and page by page.","Common Core ELA","R","K","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Foundational Skills","http://corestandards.org/ELA-Literacy/RF/K/1/a/"
"RF.K.1b","Recognize that spoken words are represented in written language by specific sequences of letters.","Common Core ELA","R","K","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Foundational Skills","http://corestandards.org/ELA-Literacy/RF/K/1/b/"
"RF.K.1c","Understand that words are separated by spaces in print.","Common Core ELA","R","K","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Foundational Skills","http://corestandards.org/ELA-Literacy/RF/K/1/c/"
"RF.K.1d","Recognize and name all upper- and lowercase letters of the alphabet.","Common Core ELA","R","K","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Foundational Skills","http://corestandards.org/ELA-Literacy/RF/K/1/d/"
"RF.K.2","Demonstrate understanding of spoken words, syllables, and sounds (phonemes).","Common Core ELA","R","K","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Foundational Skills","http://corestandards.org/ELA-Literacy/RF/K/2/"
"RF.K.2a","Recognize and produce rhyming words.","Common Core ELA","R","K","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Foundational Skills","http://corestandards.org/ELA-Literacy/RF/K/2/a/"
"RF.K.2b","Count, pronounce, blend, and segment syllables in spoken words.","Common Core ELA","R","K","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Foundational Skills","http://corestandards.org/ELA-Literacy/RF/K/2/b/"
"RF.K.2c","Blend and segment onsets and rimes of single-syllable spoken words.","Common Core ELA","R","K","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Foundational Skills","http://corestandards.org/ELA-Literacy/RF/K/2/c/"
"RF.K.2d","Isolate and pronounce the initial, medial vowel, and final sounds (phonemes) in three-phoneme (consonant-vowel-consonant, or CVC) words. (This does not include CVCs ending with /l/, /r/, or /x/.)","Common Core ELA","R","K","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Foundational Skills","http://corestandards.org/ELA-Literacy/RF/K/2/d/"
"RF.K.2e","Add or substitute individual sounds (phonemes) in simple, one-syllable words to make new words.","Common Core ELA","R","K","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Foundational Skills","http://corestandards.org/ELA-Literacy/RF/K/2/e/"
"RF.K.3","Know and apply grade-level phonics and word analysis skills in decoding words.","Common Core ELA","R","K","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Foundational Skills","http://corestandards.org/ELA-Literacy/RF/K/3/"
"RF.K.3a","Demonstrate basic knowledge of one-to-one letter-sound correspondences by producing the primary sound or many of the most frequent sounds for each consonant.","Common Core ELA","R","K","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Foundational Skills","http://corestandards.org/ELA-Literacy/RF/K/3/a/"
"RF.K.3b","Associate the long and short sounds with the common spellings (graphemes) for the five major vowels.","Common Core ELA","R","K","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Foundational Skills","http://corestandards.org/ELA-Literacy/RF/K/3/b/"
"RF.K.3c","Read common high-frequency words by sight (e.g., *the*, *of*, *to*, *you*, *she*, *my*, *is*, *are*, *do*, *does*).","Common Core ELA","R","K","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Foundational Skills","http://corestandards.org/ELA-Literacy/RF/K/3/c/"
"RF.K.3d","Distinguish between similarly spelled words by identifying the sounds of the letters that differ.","Common Core ELA","R","K","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Foundational Skills","http://corestandards.org/ELA-Literacy/RF/K/3/d/"
"RF.K.4","Read emergent-reader texts with purpose and understanding.","Common Core ELA","R","K","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Foundational Skills","http://corestandards.org/ELA-Literacy/RF/K/4/"
"RF.1.1","Demonstrate understanding of the organization and basic features of print.","Common Core ELA","R","01","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Foundational Skills","http://corestandards.org/ELA-Literacy/RF/1/1/"
"RF.1.1a","Recognize the distinguishing features of a sentence (e.g., first word, capitalization, ending punctuation).","Common Core ELA","R","01","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Foundational Skills","http://corestandards.org/ELA-Literacy/RF/1/1/a/"
"RF.1.2","Demonstrate understanding of spoken words, syllables, and sounds (phonemes).","Common Core ELA","R","01","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Foundational Skills","http://corestandards.org/ELA-Literacy/RF/1/2/"
"RF.1.2a","Distinguish long from short vowel sounds in spoken single-syllable words.","Common Core ELA","R","01","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Foundational Skills","http://corestandards.org/ELA-Literacy/RF/1/2/a/"
"RF.1.2b","Orally produce single-syllable words by blending sounds (phonemes), including consonant blends.","Common Core ELA","R","01","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Foundational Skills","http://corestandards.org/ELA-Literacy/RF/1/2/b/"
"RF.1.2c","Isolate and pronounce initial, medial vowel, and final sounds (phonemes) in spoken single-syllable words.","Common Core ELA","R","01","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Foundational Skills","http://corestandards.org/ELA-Literacy/RF/1/2/c/"
"RF.1.2d","Segment spoken single-syllable words into their complete sequence of individual sounds (phonemes).","Common Core ELA","R","01","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Foundational Skills","http://corestandards.org/ELA-Literacy/RF/1/2/d/"
"RF.1.3","Know and apply grade-level phonics and word analysis skills in decoding words.","Common Core ELA","R","01","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Foundational Skills","http://corestandards.org/ELA-Literacy/RF/1/3/"
"RF.1.3a","Know the spelling-sound correspondences for common consonant digraphs.","Common Core ELA","R","01","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Foundational Skills","http://corestandards.org/ELA-Literacy/RF/1/3/a/"
"RF.1.3b","Decode regularly spelled one-syllable words.","Common Core ELA","R","01","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Foundational Skills","http://corestandards.org/ELA-Literacy/RF/1/3/b/"
"RF.1.3c","Know final -e and common vowel team conventions for representing long vowel sounds.","Common Core ELA","R","01","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Foundational Skills","http://corestandards.org/ELA-Literacy/RF/1/3/c/"
"RF.1.3d","Use knowledge that every syllable must have a vowel sound to determine the number of syllables in a printed word.","Common Core ELA","R","01","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Foundational Skills","http://corestandards.org/ELA-Literacy/RF/1/3/d/"
"RF.1.3e","Decode two-syllable words following basic patterns by breaking the words into syllables.","Common Core ELA","R","01","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Foundational Skills","http://corestandards.org/ELA-Literacy/RF/1/3/e/"
"RF.1.3f","Read words with inflectional endings.","Common Core ELA","R","01","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Foundational Skills","http://corestandards.org/ELA-Literacy/RF/1/3/f/"
"RF.1.3g","Recognize and read grade-appropriate irregularly spelled words.","Common Core ELA","R","01","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Foundational Skills","http://corestandards.org/ELA-Literacy/RF/1/3/g/"
"RF.1.4","Read with sufficient accuracy and fluency to support comprehension.","Common Core ELA","R","01","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Foundational Skills","http://corestandards.org/ELA-Literacy/RF/1/4/"
"RF.1.4a","Read grade-level text with purpose and understanding.","Common Core ELA","R","01","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Foundational Skills","http://corestandards.org/ELA-Literacy/RF/1/4/a/"
"RF.1.4b","Read grade-level text orally with accuracy, appropriate rate, and expression on successive readings.","Common Core ELA","R","01","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Foundational Skills","http://corestandards.org/ELA-Literacy/RF/1/4/b/"
"RF.1.4c","Use context to confirm or self-correct word recognition and understanding, rereading as necessary.","Common Core ELA","R","01","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Foundational Skills","http://corestandards.org/ELA-Literacy/RF/1/4/c/"
"RF.2.3","Know and apply grade-level phonics and word analysis skills in decoding words.","Common Core ELA","R","02","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Foundational Skills","http://corestandards.org/ELA-Literacy/RF/2/3/"
"RF.2.3a","Distinguish long and short vowels when reading regularly spelled one-syllable words.","Common Core ELA","R","02","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Foundational Skills","http://corestandards.org/ELA-Literacy/RF/2/3/a/"
"RF.2.3b","Know spelling-sound correspondences for additional common vowel teams.","Common Core ELA","R","02","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Foundational Skills","http://corestandards.org/ELA-Literacy/RF/2/3/b/"
"RF.2.3c","Decode regularly spelled two-syllable words with long vowels.","Common Core ELA","R","02","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Foundational Skills","http://corestandards.org/ELA-Literacy/RF/2/3/c/"
"RF.2.3d","Decode words with common prefixes and suffixes.","Common Core ELA","R","02","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Foundational Skills","http://corestandards.org/ELA-Literacy/RF/2/3/d/"
"RF.2.3e","Identify words with inconsistent but common spelling-sound correspondences.","Common Core ELA","R","02","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Foundational Skills","http://corestandards.org/ELA-Literacy/RF/2/3/e/"
"RF.2.3f","Recognize and read grade-appropriate irregularly spelled words.","Common Core ELA","R","02","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Foundational Skills","http://corestandards.org/ELA-Literacy/RF/2/3/f/"
"RF.2.4","Read with sufficient accuracy and fluency to support comprehension.","Common Core ELA","R","02","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Foundational Skills","http://corestandards.org/ELA-Literacy/RF/2/4/"
"RF.2.4a","Read grade-level text with purpose and understanding.","Common Core ELA","R","02","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Foundational Skills","http://corestandards.org/ELA-Literacy/RF/2/4/a/"
"RF.2.4b","Read grade-level text orally with accuracy, appropriate rate, and expression on successive readings.","Common Core ELA","R","02","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Foundational Skills","http://corestandards.org/ELA-Literacy/RF/2/4/b/"
"RF.2.4c","Use context to confirm or self-correct word recognition and understanding, rereading as necessary.","Common Core ELA","R","02","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Foundational Skills","http://corestandards.org/ELA-Literacy/RF/2/4/c/"
"RF.3.3","Know and apply grade-level phonics and word analysis skills in decoding words.","Common Core ELA","R","03","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Foundational Skills","http://corestandards.org/ELA-Literacy/RF/3/3/"
"RF.3.3a","Identify and know the meaning of the most common prefixes and derivational suffixes.","Common Core ELA","R","03","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Foundational Skills","http://corestandards.org/ELA-Literacy/RF/3/3/a/"
"RF.3.3b","Decode words with common Latin suffixes.","Common Core ELA","R","03","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Foundational Skills","http://corestandards.org/ELA-Literacy/RF/3/3/b/"
"RF.3.3c","Decode multisyllable words.","Common Core ELA","R","03","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Foundational Skills","http://corestandards.org/ELA-Literacy/RF/3/3/c/"
"RF.3.3d","Read grade-appropriate irregularly spelled words.","Common Core ELA","R","03","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Foundational Skills","http://corestandards.org/ELA-Literacy/RF/3/3/d/"
"RF.3.4","Read with sufficient accuracy and fluency to support comprehension.","Common Core ELA","R","03","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Foundational Skills","http://corestandards.org/ELA-Literacy/RF/3/4/"
"RF.3.4a","Read grade-level text with purpose and understanding.","Common Core ELA","R","03","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Foundational Skills","http://corestandards.org/ELA-Literacy/RF/3/4/a/"
"RF.3.4b","Read grade-level prose and poetry orally with accuracy, appropriate rate, and expression on successive readings.","Common Core ELA","R","03","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Foundational Skills","http://corestandards.org/ELA-Literacy/RF/3/4/b/"
"RF.3.4c","Use context to confirm or self-correct word recognition and understanding, rereading as necessary.","Common Core ELA","R","03","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Foundational Skills","http://corestandards.org/ELA-Literacy/RF/3/4/c/"
"RF.4.3","Know and apply grade-level phonics and word analysis skills in decoding words.","Common Core ELA","R","04","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Foundational Skills","http://corestandards.org/ELA-Literacy/RF/4/3/"
"RF.4.3a","Use combined knowledge of all letter-sound correspondences, syllabication patterns, and morphology (e.g., roots and affixes) to read accurately unfamiliar multisyllabic words in context and out of context.","Common Core ELA","R","04","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Foundational Skills","http://corestandards.org/ELA-Literacy/RF/4/3/a/"
"RF.4.4","Read with sufficient accuracy and fluency to support comprehension.","Common Core ELA","R","04","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Foundational Skills","http://corestandards.org/ELA-Literacy/RF/4/4/"
"RF.4.4a","Read grade-level text with purpose and understanding.","Common Core ELA","R","04","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Foundational Skills","http://corestandards.org/ELA-Literacy/RF/4/4/a/"
"RF.4.4b","Read grade-level prose and poetry orally with accuracy, appropriate rate, and expression on successive readings.","Common Core ELA","R","04","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Foundational Skills","http://corestandards.org/ELA-Literacy/RF/4/4/b/"
"RF.4.4c","Use context to confirm or self-correct word recognition and understanding, rereading as necessary.","Common Core ELA","R","04","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Foundational Skills","http://corestandards.org/ELA-Literacy/RF/4/4/c/"
"RF.5.3","Know and apply grade-level phonics and word analysis skills in decoding words.","Common Core ELA","R","05","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Foundational Skills","http://corestandards.org/ELA-Literacy/RF/5/3/"
"RF.5.3a","Use combined knowledge of all letter-sound correspondences, syllabication patterns, and morphology (e.g., roots and affixes) to read accurately unfamiliar multisyllabic words in context and out of context.","Common Core ELA","R","05","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Foundational Skills","http://corestandards.org/ELA-Literacy/RF/5/3/a/"
"RF.5.4","Read with sufficient accuracy and fluency to support comprehension.","Common Core ELA","R","05","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Foundational Skills","http://corestandards.org/ELA-Literacy/RF/5/4/"
"RF.5.4a","Read grade-level text with purpose and understanding.","Common Core ELA","R","05","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Foundational Skills","http://corestandards.org/ELA-Literacy/RF/5/4/a/"
"RF.5.4b","Read grade-level prose and poetry orally with accuracy, appropriate rate, and expression on successive readings.","Common Core ELA","R","05","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Foundational Skills","http://corestandards.org/ELA-Literacy/RF/5/4/b/"
"RF.5.4c","Use context to confirm or self-correct word recognition and understanding, rereading as necessary.","Common Core ELA","R","05","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Foundational Skills","http://corestandards.org/ELA-Literacy/RF/5/4/c/"
"RH.6-8.1","Cite specific textual evidence to support analysis of primary and secondary sources.","Common Core ELA","R","6,7,8","ELA","Reading",NA,NA,NA,NA,NA,"Reading: History/Social Studies","http://corestandards.org/ELA-Literacy/RH/6-8/1/"
"RH.6-8.2","Determine the central ideas or information of a primary or secondary source; provide an accurate summary of the source distinct from prior knowledge or opinions.","Common Core ELA","R","6,7,8","ELA","Reading",NA,NA,NA,NA,NA,"Reading: History/Social Studies","http://corestandards.org/ELA-Literacy/RH/6-8/2/"
"RH.6-8.3","Identify key steps in a text's description of a process related to history/social studies (e.g., how a bill becomes law, how interest rates are raised or lowered).","Common Core ELA","R","6,7,8","ELA","Reading",NA,NA,NA,NA,NA,"Reading: History/Social Studies","http://corestandards.org/ELA-Literacy/RH/6-8/3/"
"RH.6-8.4","Determine the meaning of words and phrases as they are used in a text, including vocabulary specific to domains related to history/social studies.","Common Core ELA","R","6,7,8","ELA","Reading",NA,NA,NA,NA,NA,"Reading: History/Social Studies","http://corestandards.org/ELA-Literacy/RH/6-8/4/"
"RH.6-8.5","Describe how a text presents information (e.g., sequentially, comparatively, causally).","Common Core ELA","R","6,7,8","ELA","Reading",NA,NA,NA,NA,NA,"Reading: History/Social Studies","http://corestandards.org/ELA-Literacy/RH/6-8/5/"
"RH.6-8.6","Identify aspects of a text that reveal an author's point of view or purpose (e.g., loaded language, inclusion or avoidance of particular facts).","Common Core ELA","R","6,7,8","ELA","Reading",NA,NA,NA,NA,NA,"Reading: History/Social Studies","http://corestandards.org/ELA-Literacy/RH/6-8/6/"
"RH.6-8.7","Integrate visual information (e.g., in charts, graphs, photographs, videos, or maps) with other information in print and digital texts.","Common Core ELA","R","6,7,8","ELA","Reading",NA,NA,NA,NA,NA,"Reading: History/Social Studies","http://corestandards.org/ELA-Literacy/RH/6-8/7/"
"RH.6-8.8","Distinguish among fact, opinion, and reasoned judgment in a text.","Common Core ELA","R","6,7,8","ELA","Reading",NA,NA,NA,NA,NA,"Reading: History/Social Studies","http://corestandards.org/ELA-Literacy/RH/6-8/8/"
"RH.6-8.9","Analyze the relationship between a primary and secondary source on the same topic.","Common Core ELA","R","6,7,8","ELA","Reading",NA,NA,NA,NA,NA,"Reading: History/Social Studies","http://corestandards.org/ELA-Literacy/RH/6-8/9/"
"RH.6-8.10","By the end of grade 8, read and comprehend history/social studies texts in the grades 6-8 text complexity band independently and proficiently.","Common Core ELA","R","6,7,8","ELA","Reading",NA,NA,NA,NA,NA,"Reading: History/Social Studies","http://corestandards.org/ELA-Literacy/RH/6-8/10/"
"RH.9-10.1","Cite specific textual evidence to support analysis of primary and secondary sources, attending to such features as the date and origin of the information.","Common Core ELA","R","9,10","ELA","Reading",NA,NA,NA,NA,NA,"Reading: History/Social Studies","http://corestandards.org/ELA-Literacy/RH/9-10/1/"
"RH.9-10.2","Determine the central ideas or information of a primary or secondary source; provide an accurate summary of how key events or ideas develop over the course of the text.","Common Core ELA","R","9,10","ELA","Reading",NA,NA,NA,NA,NA,"Reading: History/Social Studies","http://corestandards.org/ELA-Literacy/RH/9-10/2/"
"RH.9-10.3","Analyze in detail a series of events described in a text; determine whether earlier events caused later ones or simply preceded them.","Common Core ELA","R","9,10","ELA","Reading",NA,NA,NA,NA,NA,"Reading: History/Social Studies","http://corestandards.org/ELA-Literacy/RH/9-10/3/"
"RH.9-10.4","Determine the meaning of words and phrases as they are used in a text, including vocabulary describing political, social, or economic aspects of history/social science.","Common Core ELA","R","9,10","ELA","Reading",NA,NA,NA,NA,NA,"Reading: History/Social Studies","http://corestandards.org/ELA-Literacy/RH/9-10/4/"
"RH.9-10.5","Analyze how a text uses structure to emphasize key points or advance an explanation or analysis.","Common Core ELA","R","9,10","ELA","Reading",NA,NA,NA,NA,NA,"Reading: History/Social Studies","http://corestandards.org/ELA-Literacy/RH/9-10/5/"
"RH.9-10.6","Compare the point of view of two or more authors for how they treat the same or similar topics, including which details they include and emphasize in their respective accounts.","Common Core ELA","R","9,10","ELA","Reading",NA,NA,NA,NA,NA,"Reading: History/Social Studies","http://corestandards.org/ELA-Literacy/RH/9-10/6/"
"RH.9-10.7","Integrate quantitative or technical analysis (e.g., charts, research data) with qualitative analysis in print or digital text.","Common Core ELA","R","9,10","ELA","Reading",NA,NA,NA,NA,NA,"Reading: History/Social Studies","http://corestandards.org/ELA-Literacy/RH/9-10/7/"
"RH.9-10.8","Assess the extent to which the reasoning and evidence in a text support the author's claims.","Common Core ELA","R","9,10","ELA","Reading",NA,NA,NA,NA,NA,"Reading: History/Social Studies","http://corestandards.org/ELA-Literacy/RH/9-10/8/"
"RH.9-10.9","Compare and contrast treatments of the same topic in several primary and secondary sources.","Common Core ELA","R","9,10","ELA","Reading",NA,NA,NA,NA,NA,"Reading: History/Social Studies","http://corestandards.org/ELA-Literacy/RH/9-10/9/"
"RH.9-10.10","By the end of grade 10, read and comprehend history/social studies texts in the grades 9-10 text complexity band independently and proficiently.","Common Core ELA","R","9,10","ELA","Reading",NA,NA,NA,NA,NA,"Reading: History/Social Studies","http://corestandards.org/ELA-Literacy/RH/9-10/10/"
"RH.11-12.1","Cite specific textual evidence to support analysis of primary and secondary sources, connecting insights gained from specific details to an understanding of the text as a whole.","Common Core ELA","R","11,12","ELA","Reading",NA,NA,NA,NA,NA,"Reading: History/Social Studies","http://corestandards.org/ELA-Literacy/RH/11-12/1/"
"RH.11-12.2","Determine the central ideas or information of a primary or secondary source; provide an accurate summary that makes clear the relationships among the key details and ideas.","Common Core ELA","R","11,12","ELA","Reading",NA,NA,NA,NA,NA,"Reading: History/Social Studies","http://corestandards.org/ELA-Literacy/RH/11-12/2/"
"RH.11-12.3","Evaluate various explanations for actions or events and determine which explanation best accords with textual evidence, acknowledging where the text leaves matters uncertain.","Common Core ELA","R","11,12","ELA","Reading",NA,NA,NA,NA,NA,"Reading: History/Social Studies","http://corestandards.org/ELA-Literacy/RH/11-12/3/"
"RH.11-12.4","Determine the meaning of words and phrases as they are used in a text, including analyzing how an author uses and refines the meaning of a key term over the course of a text (e.g., how Madison defines *faction* in *Federalist* No. 10).","Common Core ELA","R","11,12","ELA","Reading",NA,NA,NA,NA,NA,"Reading: History/Social Studies","http://corestandards.org/ELA-Literacy/RH/11-12/4/"
"RH.11-12.5","Analyze in detail how a complex primary source is structured, including how key sentences, paragraphs, and larger portions of the text contribute to the whole.","Common Core ELA","R","11,12","ELA","Reading",NA,NA,NA,NA,NA,"Reading: History/Social Studies","http://corestandards.org/ELA-Literacy/RH/11-12/5/"
"RH.11-12.6","Evaluate authors' differing points of view on the same historical event or issue by assessing the authors' claims, reasoning, and evidence.","Common Core ELA","R","11,12","ELA","Reading",NA,NA,NA,NA,NA,"Reading: History/Social Studies","http://corestandards.org/ELA-Literacy/RH/11-12/6/"
"RH.11-12.7","Integrate and evaluate multiple sources of information presented in diverse formats and media (e.g., visually, quantitatively, as well as in words) in order to address a question or solve a problem.","Common Core ELA","R","11,12","ELA","Reading",NA,NA,NA,NA,NA,"Reading: History/Social Studies","http://corestandards.org/ELA-Literacy/RH/11-12/7/"
"RH.11-12.8","Evaluate an author's premises, claims, and evidence by corroborating or challenging them with other information.","Common Core ELA","R","11,12","ELA","Reading",NA,NA,NA,NA,NA,"Reading: History/Social Studies","http://corestandards.org/ELA-Literacy/RH/11-12/8/"
"RH.11-12.9","Integrate information from diverse sources, both primary and secondary, into a coherent understanding of an idea or event, noting discrepancies among sources.","Common Core ELA","R","11,12","ELA","Reading",NA,NA,NA,NA,NA,"Reading: History/Social Studies","http://corestandards.org/ELA-Literacy/RH/11-12/9/"
"RH.11-12.10","By the end of grade 12, read and comprehend history/social studies texts in the grades 11-CCR text complexity band independently and proficiently.","Common Core ELA","R","11,12","ELA","Reading",NA,NA,NA,NA,NA,"Reading: History/Social Studies","http://corestandards.org/ELA-Literacy/RH/11-12/10/"
"RI.K.1","With prompting and support, ask and answer questions about key details in a text.","Common Core ELA","R","K","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Informational Text","http://corestandards.org/ELA-Literacy/RI/K/1/"
"RI.K.2","With prompting and support, identify the main topic and retell key details of a text.","Common Core ELA","R","K","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Informational Text","http://corestandards.org/ELA-Literacy/RI/K/2/"
"RI.K.3","With prompting and support, describe the connection between two individuals, events, ideas, or pieces of information in a text.","Common Core ELA","R","K","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Informational Text","http://corestandards.org/ELA-Literacy/RI/K/3/"
"RI.K.4","With prompting and support, ask and answer questions about unknown words in a text.","Common Core ELA","R","K","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Informational Text","http://corestandards.org/ELA-Literacy/RI/K/4/"
"RI.K.5","Identify the front cover, back cover, and title page of a book.","Common Core ELA","R","K","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Informational Text","http://corestandards.org/ELA-Literacy/RI/K/5/"
"RI.K.6","Name the author and illustrator of a text and define the role of each in presenting the ideas or information in a text.","Common Core ELA","R","K","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Informational Text","http://corestandards.org/ELA-Literacy/RI/K/6/"
"RI.K.7","With prompting and support, describe the relationship between illustrations and the text in which they appear (e.g., what person, place, thing, or idea in the text an illustration depicts).","Common Core ELA","R","K","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Informational Text","http://corestandards.org/ELA-Literacy/RI/K/7/"
"RI.K.8","With prompting and support, identify the reasons an author gives to support points in a text.","Common Core ELA","R","K","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Informational Text","http://corestandards.org/ELA-Literacy/RI/K/8/"
"RI.K.9","With prompting and support, identify basic similarities in and differences between two texts on the same topic (e.g., in illustrations, descriptions, or procedures).","Common Core ELA","R","K","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Informational Text","http://corestandards.org/ELA-Literacy/RI/K/9/"
"RI.K.10","Actively engage in group reading activities with purpose and understanding.","Common Core ELA","R","K","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Informational Text","http://corestandards.org/ELA-Literacy/RI/K/10/"
"RI.1.1","Ask and answer questions about key details in a text.","Common Core ELA","R","01","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Informational Text","http://corestandards.org/ELA-Literacy/RI/1/1/"
"RI.1.2","Identify the main topic and retell key details of a text.","Common Core ELA","R","01","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Informational Text","http://corestandards.org/ELA-Literacy/RI/1/2/"
"RI.1.3","Describe the connection between two individuals, events, ideas, or pieces of information in a text.","Common Core ELA","R","01","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Informational Text","http://corestandards.org/ELA-Literacy/RI/1/3/"
"RI.1.4","Ask and answer questions to help determine or clarify the meaning of words and phrases in a text.","Common Core ELA","R","01","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Informational Text","http://corestandards.org/ELA-Literacy/RI/1/4/"
"RI.1.5","Know and use various text features (e.g., headings, tables of contents, glossaries, electronic menus, icons) to locate key facts or information in a text.","Common Core ELA","R","01","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Informational Text","http://corestandards.org/ELA-Literacy/RI/1/5/"
"RI.1.6","Distinguish between information provided by pictures or other illustrations and information provided by the words in a text.","Common Core ELA","R","01","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Informational Text","http://corestandards.org/ELA-Literacy/RI/1/6/"
"RI.1.7","Use the illustrations and details in a text to describe its key ideas.","Common Core ELA","R","01","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Informational Text","http://corestandards.org/ELA-Literacy/RI/1/7/"
"RI.1.8","Identify the reasons an author gives to support points in a text.","Common Core ELA","R","01","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Informational Text","http://corestandards.org/ELA-Literacy/RI/1/8/"
"RI.1.9","Identify basic similarities in and differences between two texts on the same topic (e.g., in illustrations, descriptions, or procedures).","Common Core ELA","R","01","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Informational Text","http://corestandards.org/ELA-Literacy/RI/1/9/"
"RI.1.10","With prompting and support, read informational texts appropriately complex for grade 1.","Common Core ELA","R","01","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Informational Text","http://corestandards.org/ELA-Literacy/RI/1/10/"
"RI.2.1","Ask and answer such questions as *who, what, where, when, why*, and *how* to demonstrate understanding of key details in a text.","Common Core ELA","R","02","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Informational Text","http://corestandards.org/ELA-Literacy/RI/2/1/"
"RI.2.2","Identify the main topic of a multiparagraph text as well as the focus of specific paragraphs within the text.","Common Core ELA","R","02","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Informational Text","http://corestandards.org/ELA-Literacy/RI/2/2/"
"RI.2.3","Describe the connection between a series of historical events, scientific ideas or concepts, or steps in technical procedures in a text.","Common Core ELA","R","02","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Informational Text","http://corestandards.org/ELA-Literacy/RI/2/3/"
"RI.2.4","Determine the meaning of words and phrases in a text relevant to a *grade 2 topic or subject area.*","Common Core ELA","R","02","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Informational Text","http://corestandards.org/ELA-Literacy/RI/2/4/"
"RI.2.5","Know and use various text features (e.g., captions, bold print, subheadings, glossaries, indexes, electronic menus, icons) to locate key facts or information in a text efficiently.","Common Core ELA","R","02","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Informational Text","http://corestandards.org/ELA-Literacy/RI/2/5/"
"RI.2.6","Identify the main purpose of a text, including what the author wants to answer, explain, or describe.","Common Core ELA","R","02","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Informational Text","http://corestandards.org/ELA-Literacy/RI/2/6/"
"RI.3.1","Ask and answer questions to demonstrate understanding of a text, referring explicitly to the text as the basis for the answers.","Common Core ELA","R","03","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Informational Text","http://corestandards.org/ELA-Literacy/RI/3/1/"
"RI.4.4","Determine the meaning of general academic and domain-specific words or phrases in a text relevant to a *grade 4 topic or subject area*.","Common Core ELA","R","04","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Informational Text","http://corestandards.org/ELA-Literacy/RI/4/4/"
"RI.5.1","Quote accurately from a text when explaining what the text says explicitly and when drawing inferences from the text.","Common Core ELA","R","05","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Informational Text","http://corestandards.org/ELA-Literacy/RI/5/1/"
"RI.5.3","Explain the relationships or interactions between two or more individuals, events, ideas, or concepts in a historical, scientific, or technical text based on specific information in the text.","Common Core ELA","R","05","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Informational Text","http://corestandards.org/ELA-Literacy/RI/5/3/"
"RI.6.1","Cite textual evidence to support analysis of what the text says explicitly as well as inferences drawn from the text.","Common Core ELA","R","06","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Informational Text","http://corestandards.org/ELA-Literacy/RI/6/1/"
"RI.6.2","Determine a central idea of a text and how it is conveyed through particular details; provide a summary of the text distinct from personal opinions or judgments.","Common Core ELA","R","06","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Informational Text","http://corestandards.org/ELA-Literacy/RI/6/2/"
"RI.6.3","Analyze in detail how a key individual, event, or idea is introduced, illustrated, and elaborated in a text (e.g., through examples or anecdotes).","Common Core ELA","R","06","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Informational Text","http://corestandards.org/ELA-Literacy/RI/6/3/"
"RI.6.4","Determine the meaning of words and phrases as they are used in a text, including figurative, connotative, and technical meanings.","Common Core ELA","R","06","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Informational Text","http://corestandards.org/ELA-Literacy/RI/6/4/"
"RI.6.5","Analyze how a particular sentence, paragraph, chapter, or section fits into the overall structure of a text and contributes to the development of the ideas.","Common Core ELA","R","06","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Informational Text","http://corestandards.org/ELA-Literacy/RI/6/5/"
"RI.6.6","Determine an author's point of view or purpose in a text and explain how it is conveyed in the text.","Common Core ELA","R","06","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Informational Text","http://corestandards.org/ELA-Literacy/RI/6/6/"
"RI.6.7","Integrate information presented in different media or formats (e.g., visually, quantitatively) as well as in words to develop a coherent understanding of a topic or issue.","Common Core ELA","R","06","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Informational Text","http://corestandards.org/ELA-Literacy/RI/6/7/"
"RI.6.8","Trace and evaluate the argument and specific claims in a text, distinguishing claims that are supported by reasons and evidence from claims that are not.","Common Core ELA","R","06","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Informational Text","http://corestandards.org/ELA-Literacy/RI/6/8/"
"RI.6.9","Compare and contrast one author's presentation of events with that of another (e.g., a memoir written by and a biography on the same person).","Common Core ELA","R","06","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Informational Text","http://corestandards.org/ELA-Literacy/RI/6/9/"
"RI.6.10","By the end of the year, read and comprehend literary nonfiction in the grades 6-8 text complexity band proficiently, with scaffolding as needed at the high end of the range.","Common Core ELA","R","06","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Informational Text","http://corestandards.org/ELA-Literacy/RI/6/10/"
"RI.7.1","Cite several pieces of textual evidence to support analysis of what the text says explicitly as well as inferences drawn from the text.","Common Core ELA","R","07","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Informational Text","http://corestandards.org/ELA-Literacy/RI/7/1/"
"RI.7.2","Determine two or more central ideas in a text and analyze their development over the course of the text; provide an objective summary of the text.","Common Core ELA","R","07","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Informational Text","http://corestandards.org/ELA-Literacy/RI/7/2/"
"RI.7.3","Analyze the interactions between individuals, events, and ideas in a text (e.g., how ideas influence individuals or events, or how individuals influence ideas or events).","Common Core ELA","R","07","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Informational Text","http://corestandards.org/ELA-Literacy/RI/7/3/"
"RI.7.4","Determine the meaning of words and phrases as they are used in a text, including figurative, connotative, and technical meanings; analyze the impact of a specific word choice on meaning and tone.","Common Core ELA","R","07","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Informational Text","http://corestandards.org/ELA-Literacy/RI/7/4/"
"RI.7.5","Analyze the structure an author uses to organize a text, including how the major sections contribute to the whole and to the development of the ideas.","Common Core ELA","R","07","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Informational Text","http://corestandards.org/ELA-Literacy/RI/7/5/"
"RI.7.6","Determine an author's point of view or purpose in a text and analyze how the author distinguishes his or her position from that of others.","Common Core ELA","R","07","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Informational Text","http://corestandards.org/ELA-Literacy/RI/7/6/"
"RI.7.7","Compare and contrast a text to an audio, video, or multimedia version of the text, analyzing each medium's portrayal of the subject (e.g., how the delivery of a speech affects the impact of the words).","Common Core ELA","R","07","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Informational Text","http://corestandards.org/ELA-Literacy/RI/7/7/"
"RI.7.8","Trace and evaluate the argument and specific claims in a text, assessing whether the reasoning is sound and the evidence is relevant and sufficient to support the claims.","Common Core ELA","R","07","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Informational Text","http://corestandards.org/ELA-Literacy/RI/7/8/"
"RI.7.9","Analyze how two or more authors writing about the same topic shape their presentations of key information by emphasizing different evidence or advancing different interpretations of facts.","Common Core ELA","R","07","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Informational Text","http://corestandards.org/ELA-Literacy/RI/7/9/"
"RI.7.10","By the end of the year, read and comprehend literary nonfiction in the grades 6-8 text complexity band proficiently, with scaffolding as needed at the high end of the range.","Common Core ELA","R","07","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Informational Text","http://corestandards.org/ELA-Literacy/RI/7/10/"
"RI.8.1","Cite the textual evidence that most strongly supports an analysis of what the text says explicitly as well as inferences drawn from the text.","Common Core ELA","R","08","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Informational Text","http://corestandards.org/ELA-Literacy/RI/8/1/"
"RI.8.2","Determine a central idea of a text and analyze its development over the course of the text, including its relationship to supporting ideas; provide an objective summary of the text.","Common Core ELA","R","08","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Informational Text","http://corestandards.org/ELA-Literacy/RI/8/2/"
"RI.8.3","Analyze how a text makes connections among and distinctions between individuals, ideas, or events (e.g., through comparisons, analogies, or categories).","Common Core ELA","R","08","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Informational Text","http://corestandards.org/ELA-Literacy/RI/8/3/"
"RI.8.4","Determine the meaning of words and phrases as they are used in a text, including figurative, connotative, and technical meanings; analyze the impact of specific word choices on meaning and tone, including analogies or allusions to other texts.","Common Core ELA","R","08","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Informational Text","http://corestandards.org/ELA-Literacy/RI/8/4/"
"RI.8.5","Analyze in detail the structure of a specific paragraph in a text, including the role of particular sentences in developing and refining a key concept.","Common Core ELA","R","08","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Informational Text","http://corestandards.org/ELA-Literacy/RI/8/5/"
"RI.8.6","Determine an author's point of view or purpose in a text and analyze how the author acknowledges and responds to conflicting evidence or viewpoints.","Common Core ELA","R","08","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Informational Text","http://corestandards.org/ELA-Literacy/RI/8/6/"
"RI.8.7","Evaluate the advantages and disadvantages of using different mediums (e.g., print or digital text, video, multimedia) to present a particular topic or idea.","Common Core ELA","R","08","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Informational Text","http://corestandards.org/ELA-Literacy/RI/8/7/"
"RI.8.8","Delineate and evaluate the argument and specific claims in a text, assessing whether the reasoning is sound and the evidence is relevant and sufficient; recognize when irrelevant evidence is introduced.","Common Core ELA","R","08","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Informational Text","http://corestandards.org/ELA-Literacy/RI/8/8/"
"RI.8.9","Analyze a case in which two or more texts provide conflicting information on the same topic and identify where the texts disagree on matters of fact or interpretation.","Common Core ELA","R","08","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Informational Text","http://corestandards.org/ELA-Literacy/RI/8/9/"
"RI.8.10","By the end of the year, read and comprehend literary nonfiction at the high end of the grades 6-8 text complexity band independently and proficiently.","Common Core ELA","R","08","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Informational Text","http://corestandards.org/ELA-Literacy/RI/8/10/"
"RI.9-10.1","Cite strong and thorough textual evidence to support analysis of what the text says explicitly as well as inferences drawn from the text.","Common Core ELA","R","9,10","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Informational Text","http://corestandards.org/ELA-Literacy/RI/9-10/1/"
"RI.9-10.2","Determine a central idea of a text and analyze its development over the course of the text, including how it emerges and is shaped and refined by specific details; provide an objective summary of the text.","Common Core ELA","R","9,10","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Informational Text","http://corestandards.org/ELA-Literacy/RI/9-10/2/"
"RI.9-10.3","Analyze how the author unfolds an analysis or series of ideas or events, including the order in which the points are made, how they are introduced and developed, and the connections that are drawn between them.","Common Core ELA","R","9,10","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Informational Text","http://corestandards.org/ELA-Literacy/RI/9-10/3/"
"RI.9-10.4","Determine the meaning of words and phrases as they are used in a text, including figurative, connotative, and technical meanings; analyze the cumulative impact of specific word choices on meaning and tone (e.g., how the language of a court opinion differs from that of a newspaper).","Common Core ELA","R","9,10","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Informational Text","http://corestandards.org/ELA-Literacy/RI/9-10/4/"
"RI.9-10.5","Analyze in detail how an author's ideas or claims are developed and refined by particular sentences, paragraphs, or larger portions of a text (e.g., a section or chapter).","Common Core ELA","R","9,10","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Informational Text","http://corestandards.org/ELA-Literacy/RI/9-10/5/"
"RI.9-10.6","Determine an author's point of view or purpose in a text and analyze how an author uses rhetoric to advance that point of view or purpose.","Common Core ELA","R","9,10","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Informational Text","http://corestandards.org/ELA-Literacy/RI/9-10/6/"
"RI.9-10.7","Analyze various accounts of a subject told in different mediums (e.g., a person's life story in both print and multimedia), determining which details are emphasized in each account.","Common Core ELA","R","9,10","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Informational Text","http://corestandards.org/ELA-Literacy/RI/9-10/7/"
"RI.9-10.8","Delineate and evaluate the argument and specific claims in a text, assessing whether the reasoning is valid and the evidence is relevant and sufficient; identify false statements and fallacious reasoning.","Common Core ELA","R","9,10","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Informational Text","http://corestandards.org/ELA-Literacy/RI/9-10/8/"
"RI.9-10.9","Analyze seminal U.S. documents of historical and literary significance (e.g., Washington's Farewell Address, the Gettysburg Address, Roosevelt's Four Freedoms speech, King's ""Letter from Birmingham Jail""), including how they address related themes and concepts.","Common Core ELA","R","9,10","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Informational Text","http://corestandards.org/ELA-Literacy/RI/9-10/9/"
"RI.9-10.10","By the end of grade 9, read and comprehend literary nonfiction in the grades 9-10 text complexity band proficiently, with scaffolding as needed at the high end of the range.
By the end of grade 10, read and comprehend literary nonfiction at the high end of the grades 9-10 text complexity band independently and proficiently.","Common Core ELA","R","9,10","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Informational Text","http://corestandards.org/ELA-Literacy/RI/9-10/10/"
"RI.11-12.1","Cite strong and thorough textual evidence to support analysis of what the text says explicitly as well as inferences drawn from the text, including determining where the text leaves matters uncertain.","Common Core ELA","R","11,12","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Informational Text","http://corestandards.org/ELA-Literacy/RI/11-12/1/"
"RI.11-12.2","Determine two or more central ideas of a text and analyze their development over the course of the text, including how they interact and build on one another to provide a complex analysis; provide an objective summary of the text.","Common Core ELA","R","11,12","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Informational Text","http://corestandards.org/ELA-Literacy/RI/11-12/2/"
"RI.11-12.3","Analyze a complex set of ideas or sequence of events and explain how specific individuals, ideas, or events interact and develop over the course of the text.","Common Core ELA","R","11,12","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Informational Text","http://corestandards.org/ELA-Literacy/RI/11-12/3/"
"RI.11-12.4","Determine the meaning of words and phrases as they are used in a text, including figurative, connotative, and technical meanings; analyze how an author uses and refines the meaning of a key term or terms over the course of a text (e.g., how Madison defines faction in Federalist No. 10).","Common Core ELA","R","11,12","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Informational Text","http://corestandards.org/ELA-Literacy/RI/11-12/4/"
"RI.11-12.5","Analyze and evaluate the effectiveness of the structure an author uses in his or her exposition or argument, including whether the structure makes points clear, convincing, and engaging.","Common Core ELA","R","11,12","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Informational Text","http://corestandards.org/ELA-Literacy/RI/11-12/5/"
"RI.11-12.6","Determine an author's point of view or purpose in a text in which the rhetoric is particularly effective, analyzing how style and content contribute to the power, persuasiveness or beauty of the text.","Common Core ELA","R","11,12","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Informational Text","http://corestandards.org/ELA-Literacy/RI/11-12/6/"
"RI.11-12.7","Integrate and evaluate multiple sources of information presented in different media or formats (e.g., visually, quantitatively) as well as in words in order to address a question or solve a problem.","Common Core ELA","R","11,12","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Informational Text","http://corestandards.org/ELA-Literacy/RI/11-12/7/"
"RI.11-12.8","Delineate and evaluate the reasoning in seminal U.S. texts, including the application of constitutional principles and use of legal reasoning (e.g., in U.S. Supreme Court majority opinions and dissents) and the premises, purposes, and arguments in works of public advocacy (e.g., *The Federalist*, presidential addresses).","Common Core ELA","R","11,12","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Informational Text","http://corestandards.org/ELA-Literacy/RI/11-12/8/"
"RI.11-12.9","Analyze seventeenth-, eighteenth-, and nineteenth-century foundational U.S. documents of historical and literary significance (including The Declaration of Independence, the Preamble to the Constitution, the Bill of Rights, and Lincoln's Second Inaugural Address) for their themes, purposes, and rhetorical features.","Common Core ELA","R","11,12","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Informational Text","http://corestandards.org/ELA-Literacy/RI/11-12/9/"
"RI.11-12.10","By the end of grade 11, read and comprehend literary nonfiction in the grades 11-CCR text complexity band proficiently, with scaffolding as needed at the high end of the range.
By the end of grade 12, read and comprehend literary nonfiction at the high end of the grades 11-CCR text complexity band independently and proficiently.","Common Core ELA","R","11,12","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Informational Text","http://corestandards.org/ELA-Literacy/RI/11-12/10/"
"RL.K.1","With prompting and support, ask and answer questions about key details in a text.","Common Core ELA","R","K","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Literature","http://corestandards.org/ELA-Literacy/RL/K/1/"
"RL.K.2","With prompting and support, retell familiar stories, including key details.","Common Core ELA","R","K","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Literature","http://corestandards.org/ELA-Literacy/RL/K/2/"
"RL.K.3","With prompting and support, identify characters, settings, and major events in a story.","Common Core ELA","R","K","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Literature","http://corestandards.org/ELA-Literacy/RL/K/3/"
"RL.K.4","Ask and answer questions about unknown words in a text.","Common Core ELA","R","K","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Literature","http://corestandards.org/ELA-Literacy/RL/K/4/"
"RL.K.5","Recognize common types of texts (e.g., storybooks, poems).","Common Core ELA","R","K","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Literature","http://corestandards.org/ELA-Literacy/RL/K/5/"
"RL.K.6","With prompting and support, name the author and illustrator of a story and define the role of each in telling the story.","Common Core ELA","R","K","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Literature","http://corestandards.org/ELA-Literacy/RL/K/6/"
"RL.K.7","With prompting and support, describe the relationship between illustrations and the story in which they appear (e.g., what moment in a story an illustration depicts).","Common Core ELA","R","K","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Literature","http://corestandards.org/ELA-Literacy/RL/K/7/"
"RL.K.9","With prompting and support, compare and contrast the adventures and experiences of characters in familiar stories.","Common Core ELA","R","K","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Literature","http://corestandards.org/ELA-Literacy/RL/K/9/"
"RL.K.10","Actively engage in group reading activities with purpose and understanding.","Common Core ELA","R","K","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Literature","http://corestandards.org/ELA-Literacy/RL/K/10/"
"RL.1.1","Ask and answer questions about key details in a text.","Common Core ELA","R","01","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Literature","http://corestandards.org/ELA-Literacy/RL/1/1/"
"RL.1.2","Retell stories, including key details, and demonstrate understanding of their central message or lesson.","Common Core ELA","R","01","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Literature","http://corestandards.org/ELA-Literacy/RL/1/2/"
"RL.1.3","Describe characters, settings, and major events in a story, using key details.","Common Core ELA","R","01","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Literature","http://corestandards.org/ELA-Literacy/RL/1/3/"
"RL.1.4","Identify words and phrases in stories or poems that suggest feelings or appeal to the senses.","Common Core ELA","R","01","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Literature","http://corestandards.org/ELA-Literacy/RL/1/4/"
"RL.1.5","Explain major differences between books that tell stories and books that give information, drawing on a wide reading of a range of text types.","Common Core ELA","R","01","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Literature","http://corestandards.org/ELA-Literacy/RL/1/5/"
"RL.1.6","Identify who is telling the story at various points in a text.","Common Core ELA","R","01","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Literature","http://corestandards.org/ELA-Literacy/RL/1/6/"
"RL.1.7","Use illustrations and details in a story to describe its characters, setting, or events.","Common Core ELA","R","01","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Literature","http://corestandards.org/ELA-Literacy/RL/1/7/"
"RL.1.9","Compare and contrast the adventures and experiences of characters in stories.","Common Core ELA","R","01","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Literature","http://corestandards.org/ELA-Literacy/RL/1/9/"
"RL.1.10","With prompting and support, read prose and poetry of appropriate complexity for grade 1.","Common Core ELA","R","01","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Literature","http://corestandards.org/ELA-Literacy/RL/1/10/"
"RL.2.1","Ask and answer such questions as *who, what, where, when, why*, and *how* to demonstrate understanding of key details in a text.","Common Core ELA","R","02","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Literature","http://corestandards.org/ELA-Literacy/RL/2/1/"
"RL.2.2","Recount stories, including fables and folktales from diverse cultures, and determine their central message, lesson, or moral.","Common Core ELA","R","02","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Literature","http://corestandards.org/ELA-Literacy/RL/2/2/"
"RL.2.3","Describe how characters in a story respond to major events and challenges.","Common Core ELA","R","02","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Literature","http://corestandards.org/ELA-Literacy/RL/2/3/"
"RL.2.4","Describe how words and phrases (e.g., regular beats, alliteration, rhymes, repeated lines) supply rhythm and meaning in a story, poem, or song.","Common Core ELA","R","02","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Literature","http://corestandards.org/ELA-Literacy/RL/2/4/"
"RL.2.5","Describe the overall structure of a story, including describing how the beginning introduces the story and the ending concludes the action.","Common Core ELA","R","02","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Literature","http://corestandards.org/ELA-Literacy/RL/2/5/"
"RL.2.6","Acknowledge differences in the points of view of characters, including by speaking in a different voice for each character when reading dialogue aloud.","Common Core ELA","R","02","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Literature","http://corestandards.org/ELA-Literacy/RL/2/6/"
"RL.2.7","Use information gained from the illustrations and words in a print or digital text to demonstrate understanding of its characters, setting, or plot.","Common Core ELA","R","02","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Literature","http://corestandards.org/ELA-Literacy/RL/2/7/"
"RL.2.9","Compare and contrast two or more versions of the same story (e.g., Cinderella stories) by different authors or from different cultures.","Common Core ELA","R","02","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Literature","http://corestandards.org/ELA-Literacy/RL/2/9/"
"RL.2.10","By the end of the year, read and comprehend literature, including stories and poetry, in the grades 2-3 text complexity band proficiently, with scaffolding as needed at the high end of the range.","Common Core ELA","R","02","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Literature","http://corestandards.org/ELA-Literacy/RL/2/10/"
"RL.3.1","Ask and answer questions to demonstrate understanding of a text, referring explicitly to the text as the basis for the answers.","Common Core ELA","R","03","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Literature","http://corestandards.org/ELA-Literacy/RL/3/1/"
"RL.3.2","Recount stories, including fables, folktales, and myths from diverse cultures; determine the central message, lesson, or moral and explain how it is conveyed through key details in the text.","Common Core ELA","R","03","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Literature","http://corestandards.org/ELA-Literacy/RL/3/2/"
"RL.3.3","Describe characters in a story (e.g., their traits, motivations, or feelings) and explain how their actions contribute to the sequence of events","Common Core ELA","R","03","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Literature","http://corestandards.org/ELA-Literacy/RL/3/3/"
"RL.3.4","Determine the meaning of words and phrases as they are used in a text, distinguishing literal from nonliteral language.","Common Core ELA","R","03","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Literature","http://corestandards.org/ELA-Literacy/RL/3/4/"
"RL.3.5","Refer to parts of stories, dramas, and poems when writing or speaking about a text, using terms such as chapter, scene, and stanza; describe how each successive part builds on earlier sections.","Common Core ELA","R","03","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Literature","http://corestandards.org/ELA-Literacy/RL/3/5/"
"RL.3.6","Distinguish their own point of view from that of the narrator or those of the characters.","Common Core ELA","R","03","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Literature","http://corestandards.org/ELA-Literacy/RL/3/6/"
"RL.3.7","Explain how specific aspects of a text's illustrations contribute to what is conveyed by the words in a story (e.g., create mood, emphasize aspects of a character or setting)","Common Core ELA","R","03","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Literature","http://corestandards.org/ELA-Literacy/RL/3/7/"
"RL.3.9","Compare and contrast the themes, settings, and plots of stories written by the same author about the same or similar characters (e.g., in books from a series)","Common Core ELA","R","03","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Literature","http://corestandards.org/ELA-Literacy/RL/3/9/"
"RL.3.10","By the end of the year, read and comprehend literature, including stories, dramas, and poetry, at the high end of the grades 2-3 text complexity band independently and proficiently.","Common Core ELA","R","03","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Literature","http://corestandards.org/ELA-Literacy/RL/3/10/"
"RL.4.1","Refer to details and examples in a text when explaining what the text says explicitly and when drawing inferences from the text.","Common Core ELA","R","04","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Literature","http://corestandards.org/ELA-Literacy/RL/4/1/"
"RL.4.2","Determine a theme of a story, drama, or poem from details in the text; summarize the text.","Common Core ELA","R","04","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Literature","http://corestandards.org/ELA-Literacy/RL/4/2/"
"RL.4.3","Describe in depth a character, setting, or event in a story or drama, drawing on specific details in the text (e.g., a character's thoughts, words, or actions).","Common Core ELA","R","04","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Literature","http://corestandards.org/ELA-Literacy/RL/4/3/"
"RL.4.4","Determine the meaning of words and phrases as they are used in a text, including those that allude to significant characters found in mythology (e.g., Herculean).","Common Core ELA","R","04","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Literature","http://corestandards.org/ELA-Literacy/RL/4/4/"
"RL.4.5","Explain major differences between poems, drama, and prose, and refer to the structural elements of poems (e.g., verse, rhythm, meter) and drama (e.g., casts of characters, settings, descriptions, dialogue, stage directions) when writing or speaking about a text.","Common Core ELA","R","04","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Literature","http://corestandards.org/ELA-Literacy/RL/4/5/"
"RL.4.6","Compare and contrast the point of view from which different stories are narrated, including the difference between first- and third-person narrations.","Common Core ELA","R","04","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Literature","http://corestandards.org/ELA-Literacy/RL/4/6/"
"RL.4.7","Make connections between the text of a story or drama and a visual or oral presentation of the text, identifying where each version reflects specific descriptions and directions in the text.","Common Core ELA","R","04","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Literature","http://corestandards.org/ELA-Literacy/RL/4/7/"
"RL.4.9","Compare and contrast the treatment of similar themes and topics (e.g., opposition of good and evil) and patterns of events (e.g., the quest) in stories, myths, and traditional literature from different cultures.","Common Core ELA","R","04","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Literature","http://corestandards.org/ELA-Literacy/RL/4/9/"
"RL.4.10","By the end of the year, read and comprehend literature, including stories, dramas, and poetry, in the grades 4-5 text complexity band proficiently, with scaffolding as needed at the high end of the range.","Common Core ELA","R","04","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Literature","http://corestandards.org/ELA-Literacy/RL/4/10/"
"RL.5.1","Quote accurately from a text when explaining what the text says explicitly and when drawing inferences from the text.","Common Core ELA","R","05","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Literature","http://corestandards.org/ELA-Literacy/RL/5/1/"
"RL.5.2","Determine a theme of a story, drama, or poem from details in the text, including how characters in a story or drama respond to challenges or how the speaker in a poem reflects upon a topic; summarize the text.","Common Core ELA","R","05","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Literature","http://corestandards.org/ELA-Literacy/RL/5/2/"
"RL.5.3","Compare and contrast two or more characters, settings, or events in a story or drama, drawing on specific details in the text (e.g., how characters interact).","Common Core ELA","R","05","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Literature","http://corestandards.org/ELA-Literacy/RL/5/3/"
"RL.5.4","Determine the meaning of words and phrases as they are used in a text, including figurative language such as metaphors and similes.","Common Core ELA","R","05","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Literature","http://corestandards.org/ELA-Literacy/RL/5/4/"
"RL.5.5","Explain how a series of chapters, scenes, or stanzas fits together to provide the overall structure of a particular story, drama, or poem.","Common Core ELA","R","05","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Literature","http://corestandards.org/ELA-Literacy/RL/5/5/"
"RL.5.6","Describe how a narrator's or speaker's point of view influences how events are described.","Common Core ELA","R","05","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Literature","http://corestandards.org/ELA-Literacy/RL/5/6/"
"RL.5.7","Analyze how visual and multimedia elements contribute to the meaning, tone, or beauty of a text (e.g., graphic novel, multimedia presentation of fiction, folktale, myth, poem).","Common Core ELA","R","05","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Literature","http://corestandards.org/ELA-Literacy/RL/5/7/"
"RL.5.9","Compare and contrast stories in the same genre (e.g., mysteries and adventure stories) on their approaches to similar themes and topics.","Common Core ELA","R","05","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Literature","http://corestandards.org/ELA-Literacy/RL/5/9/"
"RL.5.10","By the end of the year, read and comprehend literature, including stories, dramas, and poetry, at the high end of the grades 4-5 text complexity band independently and proficiently.","Common Core ELA","R","05","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Literature","http://corestandards.org/ELA-Literacy/RL/5/10/"
"RL.6.1","Cite textual evidence to support analysis of what the text says explicitly as well as inferences drawn from the text.","Common Core ELA","R","06","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Literature","http://corestandards.org/ELA-Literacy/RL/6/1/"
"RL.6.2","Determine a theme or central idea of a text and how it is conveyed through particular details; provide a summary of the text distinct from personal opinions or judgments.","Common Core ELA","R","06","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Literature","http://corestandards.org/ELA-Literacy/RL/6/2/"
"RL.6.3","Describe how a particular story's or drama's plot unfolds in a series of episodes as well as how the characters respond or change as the plot moves toward a resolution.","Common Core ELA","R","06","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Literature","http://corestandards.org/ELA-Literacy/RL/6/3/"
"RL.6.4","Determine the meaning of words and phrases as they are used in a text, including figurative and connotative meanings; analyze the impact of a specific word choice on meaning and tone","Common Core ELA","R","06","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Literature","http://corestandards.org/ELA-Literacy/RL/6/4/"
"RL.6.5","Analyze how a particular sentence, chapter, scene, or stanza fits into the overall structure of a text and contributes to the development of the theme, setting, or plot.","Common Core ELA","R","06","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Literature","http://corestandards.org/ELA-Literacy/RL/6/5/"
"RL.6.6","Explain how an author develops the point of view of the narrator or speaker in a text.","Common Core ELA","R","06","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Literature","http://corestandards.org/ELA-Literacy/RL/6/6/"
"RL.6.7","Compare and contrast the experience of reading a story, drama, or poem to listening to or viewing an audio, video, or live version of the text, including contrasting what they ""see"" and ""hear"" when reading the text to what they perceive when they listen or watch.","Common Core ELA","R","06","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Literature","http://corestandards.org/ELA-Literacy/RL/6/7/"
"RL.6.9","Compare and contrast texts in different forms or genres (e.g., stories and poems; historical novels and fantasy stories) in terms of their approaches to similar themes and topics.","Common Core ELA","R","06","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Literature","http://corestandards.org/ELA-Literacy/RL/6/9/"
"RL.6.10","By the end of the year, read and comprehend literature, including stories, dramas, and poems, in the grades 6-8 text complexity band proficiently, with scaffolding as needed at the high end of the range.","Common Core ELA","R","06","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Literature","http://corestandards.org/ELA-Literacy/RL/6/10/"
"RL.7.1","Cite several pieces of textual evidence to support analysis of what the text says explicitly as well as inferences drawn from the text.","Common Core ELA","R","07","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Literature","http://corestandards.org/ELA-Literacy/RL/7/1/"
"RL.7.2","Determine a theme or central idea of a text and analyze its development over the course of the text; provide an objective summary of the text.","Common Core ELA","R","07","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Literature","http://corestandards.org/ELA-Literacy/RL/7/2/"
"RL.7.3","Analyze how particular elements of a story or drama interact (e.g., how setting shapes the characters or plot).","Common Core ELA","R","07","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Literature","http://corestandards.org/ELA-Literacy/RL/7/3/"
"RL.7.4","Determine the meaning of words and phrases as they are used in a text, including figurative and connotative meanings; analyze the impact of rhymes and other repetitions of sounds (e.g., alliteration) on a specific verse or stanza of a poem or section of a story or drama.","Common Core ELA","R","07","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Literature","http://corestandards.org/ELA-Literacy/RL/7/4/"
"RL.7.5","Analyze how a drama's or poem's form or structure (e.g., soliloquy, sonnet) contributes to its meaning","Common Core ELA","R","07","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Literature","http://corestandards.org/ELA-Literacy/RL/7/5/"
"RL.7.6","Analyze how an author develops and contrasts the points of view of different characters or narrators in a text.","Common Core ELA","R","07","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Literature","http://corestandards.org/ELA-Literacy/RL/7/6/"
"RL.7.7","Compare and contrast a written story, drama, or poem to its audio, filmed, staged, or multimedia version, analyzing the effects of techniques unique to each medium (e.g., lighting, sound, color, or camera focus and angles in a film).","Common Core ELA","R","07","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Literature","http://corestandards.org/ELA-Literacy/RL/7/7/"
"RL.7.9","Compare and contrast a fictional portrayal of a time, place, or character and a historical account of the same period as a means of understanding how authors of fiction use or alter history.","Common Core ELA","R","07","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Literature","http://corestandards.org/ELA-Literacy/RL/7/9/"
"RL.7.10","By the end of the year, read and comprehend literature, including stories, dramas, and poems, in the grades 6-8 text complexity band proficiently, with scaffolding as needed at the high end of the range.","Common Core ELA","R","07","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Literature","http://corestandards.org/ELA-Literacy/RL/7/10/"
"RL.8.1","Cite the textual evidence that most strongly supports an analysis of what the text says explicitly as well as inferences drawn from the text.","Common Core ELA","R","08","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Literature","http://corestandards.org/ELA-Literacy/RL/8/1/"
"RL.8.2","Determine a theme or central idea of a text and analyze its development over the course of the text, including its relationship to the characters, setting, and plot; provide an objective summary of the text.","Common Core ELA","R","08","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Literature","http://corestandards.org/ELA-Literacy/RL/8/2/"
"RL.8.3","Analyze how particular lines of dialogue or incidents in a story or drama propel the action, reveal aspects of a character, or provoke a decision.","Common Core ELA","R","08","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Literature","http://corestandards.org/ELA-Literacy/RL/8/3/"
"RL.8.4","Determine the meaning of words and phrases as they are used in a text, including figurative and connotative meanings; analyze the impact of specific word choices on meaning and tone, including analogies or allusions to other texts.","Common Core ELA","R","08","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Literature","http://corestandards.org/ELA-Literacy/RL/8/4/"
"RL.8.5","Compare and contrast the structure of two or more texts and analyze how the differing structure of each text contributes to its meaning and style.","Common Core ELA","R","08","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Literature","http://corestandards.org/ELA-Literacy/RL/8/5/"
"RL.8.6","Analyze how differences in the points of view of the characters and the audience or reader (e.g., created through the use of dramatic irony) create such effects as suspense or humor.","Common Core ELA","R","08","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Literature","http://corestandards.org/ELA-Literacy/RL/8/6/"
"RL.8.7","Analyze the extent to which a filmed or live production of a story or drama stays faithful to or departs from the text or script, evaluating the choices made by the director or actors.","Common Core ELA","R","08","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Literature","http://corestandards.org/ELA-Literacy/RL/8/7/"
"RL.8.9","Analyze how a modern work of fiction draws on themes, patterns of events, or character types from myths, traditional stories, or religious works such as the Bible, including describing how the material is rendered new.","Common Core ELA","R","08","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Literature","http://corestandards.org/ELA-Literacy/RL/8/9/"
"RL.8.10","By the end of the year, read and comprehend literature, including stories, dramas, and poems, at the high end of grades 6-8 text complexity band independently and proficiently.","Common Core ELA","R","08","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Literature","http://corestandards.org/ELA-Literacy/RL/8/10/"
"RL.9-10.1","Cite strong and thorough textual evidence to support analysis of what the text says explicitly as well as inferences drawn from the text.","Common Core ELA","R","9,10","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Literature","http://corestandards.org/ELA-Literacy/RL/9-10/1/"
"RL.9-10.2","Determine a theme or central idea of a text and analyze in detail its development over the course of the text, including how it emerges and is shaped and refined by specific details; provide an objective summary of the text.","Common Core ELA","R","9,10","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Literature","http://corestandards.org/ELA-Literacy/RL/9-10/2/"
"RL.9-10.3","Analyze how complex characters (e.g., those with multiple or conflicting motivations) develop over the course of a text, interact with other characters, and advance the plot or develop the theme.","Common Core ELA","R","9,10","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Literature","http://corestandards.org/ELA-Literacy/RL/9-10/3/"
"RL.9-10.4","Determine the meaning of words and phrases as they are used in the text, including figurative and connotative meanings; analyze the cumulative impact of specific word choices on meaning and tone (e.g., how the language evokes a sense of time and place; how it sets a formal or informal tone).","Common Core ELA","R","9,10","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Literature","http://corestandards.org/ELA-Literacy/RL/9-10/4/"
"RL.9-10.5","Analyze how an author's choices concerning how to structure a text, order events within it (e.g., parallel plots), and manipulate time (e.g., pacing, flashbacks) create such effects as mystery, tension, or surprise.","Common Core ELA","R","9,10","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Literature","http://corestandards.org/ELA-Literacy/RL/9-10/5/"
"RL.9-10.6","Analyze a particular point of view or cultural experience reflected in a work of literature from outside the United States, drawing on a wide reading of world literature.","Common Core ELA","R","9,10","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Literature","http://corestandards.org/ELA-Literacy/RL/9-10/6/"
"RL.9-10.7","Analyze the representation of a subject or a key scene in two different artistic mediums, including what is emphasized or absent in each treatment (e.g., Auden's ""Musée des Beaux Arts"" and Breughel's Landscape with the Fall of Icarus).","Common Core ELA","R","9,10","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Literature","http://corestandards.org/ELA-Literacy/RL/9-10/7/"
"RL.9-10.9","Analyze how an author draws on and transforms source material in a specific work (e.g., how Shakespeare treats a theme or topic from Ovid or the Bible or how a later author draws on a play by Shakespeare).","Common Core ELA","R","9,10","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Literature","http://corestandards.org/ELA-Literacy/RL/9-10/9/"
"RL.9-10.10","By the end of grade 9, read and comprehend literature, including stories, dramas, and poems, in the grades 9-10 text complexity band proficiently, with scaffolding as needed at the high end of the range.
By the end of grade 10, read and comprehend literature, including stories, dramas, and poems, at the high end of the grades 9-10 text complexity band independently and proficiently.","Common Core ELA","R","9,10","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Literature","http://corestandards.org/ELA-Literacy/RL/9-10/10/"
"RL.11-12.1","Cite strong and thorough textual evidence to support analysis of what the text says explicitly as well as inferences drawn from the text, including determining where the text leaves matters uncertain.","Common Core ELA","R","11,12","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Literature","http://corestandards.org/ELA-Literacy/RL/11-12/1/"
"RL.11-12.2","Determine two or more themes or central ideas of a text and analyze their development over the course of the text, including how they interact and build on one another to produce a complex account; provide an objective summary of the text.","Common Core ELA","R","11,12","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Literature","http://corestandards.org/ELA-Literacy/RL/11-12/2/"
"RL.11-12.3","Analyze the impact of the author's choices regarding how to develop and relate elements of a story or drama (e.g., where a story is set, how the action is ordered, how the characters are introduced and developed).","Common Core ELA","R","11,12","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Literature","http://corestandards.org/ELA-Literacy/RL/11-12/3/"
"RL.11-12.4","Determine the meaning of words and phrases as they are used in the text, including figurative and connotative meanings; analyze the impact of specific word choices on meaning and tone, including words with multiple meanings or language that is particularly fresh, engaging, or beautiful. (Include Shakespeare as well as other authors.)","Common Core ELA","R","11,12","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Literature","http://corestandards.org/ELA-Literacy/RL/11-12/4/"
"RL.11-12.5","Analyze how an author's choices concerning how to structure specific parts of a text (e.g., the choice of where to begin or end a story, the choice to provide a comedic or tragic resolution) contribute to its overall structure and meaning as well as its aesthetic impact.","Common Core ELA","R","11,12","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Literature","http://corestandards.org/ELA-Literacy/RL/11-12/5/"
"RL.11-12.6","Analyze a case in which grasping a point of view requires distinguishing what is directly stated in a text from what is really meant (e.g., satire, sarcasm, irony, or understatement).","Common Core ELA","R","11,12","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Literature","http://corestandards.org/ELA-Literacy/RL/11-12/6/"
"RL.11-12.7","Analyze multiple interpretations of a story, drama, or poem (e.g., recorded or live production of a play or recorded novel or poetry), evaluating how each version interprets the source text. (Include at least one play by Shakespeare and one play by an American dramatist.)","Common Core ELA","R","11,12","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Literature","http://corestandards.org/ELA-Literacy/RL/11-12/7/"
"RL.11-12.9","Demonstrate knowledge of eighteenth-, nineteenth- and early-twentieth-century foundational works of American literature, including how two or more texts from the same period treat similar themes or topics.","Common Core ELA","R","11,12","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Literature","http://corestandards.org/ELA-Literacy/RL/11-12/9/"
"RL.11-12.10","By the end of grade 11, read and comprehend literature, including stories, dramas, and poems, in the grades 11-CCR text complexity band proficiently, with scaffolding as needed at the high end of the range.
By the end of grade 12, read and comprehend literature, including stories, dramas, and poems, at the high end of the grades 11-CCR text complexity band independently and proficiently.","Common Core ELA","R","11,12","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Literature","http://corestandards.org/ELA-Literacy/RL/11-12/10/"
"RST.6-8.1","Cite specific textual evidence to support analysis of science and technical texts.","Common Core ELA","R","6,7,8","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Science & Technical Subjects","http://corestandards.org/ELA-Literacy/RST/6-8/1/"
"RST.6-8.2","Determine the central ideas or conclusions of a text; provide an accurate summary of the text distinct from prior knowledge or opinions.","Common Core ELA","R","6,7,8","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Science & Technical Subjects","http://corestandards.org/ELA-Literacy/RST/6-8/2/"
"RST.6-8.3","Follow precisely a multistep procedure when carrying out experiments, taking measurements, or performing technical tasks.","Common Core ELA","R","6,7,8","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Science & Technical Subjects","http://corestandards.org/ELA-Literacy/RST/6-8/3/"
"RST.6-8.4","Determine the meaning of symbols, key terms, and other domain-specific words and phrases as they are used in a specific scientific or technical context relevant to *grades 6-8 texts and topics*.","Common Core ELA","R","6,7,8","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Science & Technical Subjects","http://corestandards.org/ELA-Literacy/RST/6-8/4/"
"RST.6-8.5","Analyze the structure an author uses to organize a text, including how the major sections contribute to the whole and to an understanding of the topic.","Common Core ELA","R","6,7,8","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Science & Technical Subjects","http://corestandards.org/ELA-Literacy/RST/6-8/5/"
"RST.6-8.6","Analyze the author's purpose in providing an explanation, describing a procedure, or discussing an experiment in a text.","Common Core ELA","R","6,7,8","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Science & Technical Subjects","http://corestandards.org/ELA-Literacy/RST/6-8/6/"
"RST.6-8.7","Integrate quantitative or technical information expressed in words in a text with a version of that information expressed visually (e.g., in a flowchart, diagram, model, graph, or table).","Common Core ELA","R","6,7,8","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Science & Technical Subjects","http://corestandards.org/ELA-Literacy/RST/6-8/7/"
"RST.6-8.8","Distinguish among facts, reasoned judgment based on research findings, and speculation in a text.","Common Core ELA","R","6,7,8","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Science & Technical Subjects","http://corestandards.org/ELA-Literacy/RST/6-8/8/"
"RST.6-8.9","Compare and contrast the information gained from experiments, simulations, video, or multimedia sources with that gained from reading a text on the same topic.","Common Core ELA","R","6,7,8","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Science & Technical Subjects","http://corestandards.org/ELA-Literacy/RST/6-8/9/"
"RST.6-8.10","By the end of grade 8, read and comprehend science/technical texts in the grades 6-8 text complexity band independently and proficiently.","Common Core ELA","R","6,7,8","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Science & Technical Subjects","http://corestandards.org/ELA-Literacy/RST/6-8/10/"
"RST.9-10.1","Cite specific textual evidence to support analysis of science and technical texts, attending to the precise details of explanations or descriptions.","Common Core ELA","R","9,10","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Science & Technical Subjects","http://corestandards.org/ELA-Literacy/RST/9-10/1/"
"RST.9-10.2","Determine the central ideas or conclusions of a text; trace the text's explanation or depiction of a complex process, phenomenon, or concept; provide an accurate summary of the text.","Common Core ELA","R","9,10","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Science & Technical Subjects","http://corestandards.org/ELA-Literacy/RST/9-10/2/"
"RST.9-10.3","Follow precisely a complex multistep procedure when carrying out experiments, taking measurements, or performing technical tasks, attending to special cases or exceptions defined in the text.","Common Core ELA","R","9,10","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Science & Technical Subjects","http://corestandards.org/ELA-Literacy/RST/9-10/3/"
"RST.9-10.4","Determine the meaning of symbols, key terms, and other domain-specific words and phrases as they are used in a specific scientific or technical context relevant to *grades 9-10 texts and topics*.","Common Core ELA","R","9,10","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Science & Technical Subjects","http://corestandards.org/ELA-Literacy/RST/9-10/4/"
"RST.9-10.5","Analyze the structure of the relationships among concepts in a text, including relationships among key terms (e.g., *force, friction, reaction force, energy*).","Common Core ELA","R","9,10","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Science & Technical Subjects","http://corestandards.org/ELA-Literacy/RST/9-10/5/"
"RST.9-10.6","Analyze the author's purpose in providing an explanation, describing a procedure, or discussing an experiment in a text, defining the question the author seeks to address.","Common Core ELA","R","9,10","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Science & Technical Subjects","http://corestandards.org/ELA-Literacy/RST/9-10/6/"
"RST.9-10.7","Translate quantitative or technical information expressed in words in a text into visual form (e.g., a table or chart) and translate information expressed visually or mathematically (e.g., in an equation) into words.","Common Core ELA","R","9,10","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Science & Technical Subjects","http://corestandards.org/ELA-Literacy/RST/9-10/7/"
"RST.9-10.8","Assess the extent to which the reasoning and evidence in a text support the author's claim or a recommendation for solving a scientific or technical problem.","Common Core ELA","R","9,10","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Science & Technical Subjects","http://corestandards.org/ELA-Literacy/RST/9-10/8/"
"RST.9-10.9","Compare and contrast findings presented in a text to those from other sources (including their own experiments), noting when the findings support or contradict previous explanations or accounts.","Common Core ELA","R","9,10","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Science & Technical Subjects","http://corestandards.org/ELA-Literacy/RST/9-10/9/"
"RST.9-10.10","By the end of grade 10, read and comprehend science/technical texts in the grades 9-10 text complexity band independently and proficiently.","Common Core ELA","R","9,10","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Science & Technical Subjects","http://corestandards.org/ELA-Literacy/RST/9-10/10/"
"RST.11-12.1","Cite specific textual evidence to support analysis of science and technical texts, attending to important distinctions the author makes and to any gaps or inconsistencies in the account.","Common Core ELA","R","11,12","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Science & Technical Subjects","http://corestandards.org/ELA-Literacy/RST/11-12/1/"
"RST.11-12.2","Determine the central ideas or conclusions of a text; summarize complex concepts, processes, or information presented in a text by paraphrasing them in simpler but still accurate terms.","Common Core ELA","R","11,12","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Science & Technical Subjects","http://corestandards.org/ELA-Literacy/RST/11-12/2/"
"RST.11-12.3","Follow precisely a complex multistep procedure when carrying out experiments, taking measurements, or performing technical tasks; analyze the specific results based on explanations in the text.","Common Core ELA","R","11,12","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Science & Technical Subjects","http://corestandards.org/ELA-Literacy/RST/11-12/3/"
"RST.11-12.4","Determine the meaning of symbols, key terms, and other domain-specific words and phrases as they are used in a specific scientific or technical context relevant to *grades 11-12 texts and topics*.","Common Core ELA","R","11,12","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Science & Technical Subjects","http://corestandards.org/ELA-Literacy/RST/11-12/4/"
"RST.11-12.5","Analyze how the text structures information or ideas into categories or hierarchies, demonstrating understanding of the information or ideas.","Common Core ELA","R","11,12","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Science & Technical Subjects","http://corestandards.org/ELA-Literacy/RST/11-12/5/"
"RST.11-12.6","Analyze the author's purpose in providing an explanation, describing a procedure, or discussing an experiment in a text, identifying important issues that remain unresolved.","Common Core ELA","R","11,12","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Science & Technical Subjects","http://corestandards.org/ELA-Literacy/RST/11-12/6/"
"RST.11-12.7","Integrate and evaluate multiple sources of information presented in diverse formats and media (e.g., quantitative data, video, multimedia) in order to address a question or solve a problem.","Common Core ELA","R","11,12","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Science & Technical Subjects","http://corestandards.org/ELA-Literacy/RST/11-12/7/"
"RST.11-12.8","Evaluate the hypotheses, data, analysis, and conclusions in a science or technical text, verifying the data when possible and corroborating or challenging conclusions with other sources of information.","Common Core ELA","R","11,12","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Science & Technical Subjects","http://corestandards.org/ELA-Literacy/RST/11-12/8/"
"RST.11-12.9","Synthesize information from a range of sources (e.g., texts, experiments, simulations) into a coherent understanding of a process, phenomenon, or concept, resolving conflicting information when possible.","Common Core ELA","R","11,12","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Science & Technical Subjects","http://corestandards.org/ELA-Literacy/RST/11-12/9/"
"RST.11-12.10","By the end of grade 12, read and comprehend science/technical texts in the grades 11-CCR text complexity band independently and proficiently.","Common Core ELA","R","11,12","ELA","Reading",NA,NA,NA,NA,NA,"Reading: Science & Technical Subjects","http://corestandards.org/ELA-Literacy/RST/11-12/10/"
"SL.K.1","Participate in collaborative conversations with diverse partners about *kindergarten topics and texts* with peers and adults in small and larger groups.","Common Core ELA","LS&L","K","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Speaking & Listening","http://corestandards.org/ELA-Literacy/SL/K/1/"
"SL.K.1a","Follow agreed-upon rules for discussions (e.g., listening to others and taking turns speaking about the topics and texts under discussion).","Common Core ELA","LS&L","K","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Speaking & Listening","http://corestandards.org/ELA-Literacy/SL/K/1/a/"
"SL.K.1b","Continue a conversation through multiple exchanges.","Common Core ELA","LS&L","K","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Speaking & Listening","http://corestandards.org/ELA-Literacy/SL/K/1/b/"
"SL.K.2","Confirm understanding of a text read aloud or information presented orally or through other media by asking and answering questions about key details and requesting clarification if something is not understood.","Common Core ELA","LS&L","K","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Speaking & Listening","http://corestandards.org/ELA-Literacy/SL/K/2/"
"SL.K.3","Ask and answer questions in order to seek help, get information, or clarify something that is not understood.","Common Core ELA","LS&L","K","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Speaking & Listening","http://corestandards.org/ELA-Literacy/SL/K/3/"
"SL.K.4","Describe familiar people, places, things, and events and, with prompting and support, provide additional detail.","Common Core ELA","LS&L","K","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Speaking & Listening","http://corestandards.org/ELA-Literacy/SL/K/4/"
"SL.K.5","Add drawings or other visual displays to descriptions as desired to provide additional detail.","Common Core ELA","LS&L","K","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Speaking & Listening","http://corestandards.org/ELA-Literacy/SL/K/5/"
"SL.K.6","Speak audibly and express thoughts, feelings, and ideas clearly.","Common Core ELA","LS&L","K","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Speaking & Listening","http://corestandards.org/ELA-Literacy/SL/K/6/"
"SL.1.1","Participate in collaborative conversations with diverse partners about *grade 1 topics and texts* with peers and adults in small and larger groups.","Common Core ELA","LS&L","01","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Speaking & Listening","http://corestandards.org/ELA-Literacy/SL/1/1/"
"SL.1.1a","Follow agreed-upon rules for discussions (e.g., listening to others with care, speaking one at a time about the topics and texts under discussion).","Common Core ELA","LS&L","01","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Speaking & Listening","http://corestandards.org/ELA-Literacy/SL/1/1/a/"
"SL.1.1b","Build on others' talk in conversations by responding to the comments of others through multiple exchanges.","Common Core ELA","LS&L","01","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Speaking & Listening","http://corestandards.org/ELA-Literacy/SL/1/1/b/"
"SL.1.1c","Ask questions to clear up any confusion about the topics and texts under discussion.","Common Core ELA","LS&L","01","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Speaking & Listening","http://corestandards.org/ELA-Literacy/SL/1/1/c/"
"SL.1.2","Ask and answer questions about key details in a text read aloud or information presented orally or through other media.","Common Core ELA","LS&L","01","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Speaking & Listening","http://corestandards.org/ELA-Literacy/SL/1/2/"
"SL.1.3","Ask and answer questions about what a speaker says in order to gather additional information or clarify something that is not understood.","Common Core ELA","LS&L","01","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Speaking & Listening","http://corestandards.org/ELA-Literacy/SL/1/3/"
"SL.1.4","Describe people, places, things, and events with relevant details, expressing ideas and feelings clearly.","Common Core ELA","LS&L","01","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Speaking & Listening","http://corestandards.org/ELA-Literacy/SL/1/4/"
"SL.1.5","Add drawings or other visual displays to descriptions when appropriate to clarify ideas, thoughts, and feelings.","Common Core ELA","LS&L","01","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Speaking & Listening","http://corestandards.org/ELA-Literacy/SL/1/5/"
"SL.1.6","Produce complete sentences when appropriate to task and situation. (See grade 1 Language standards 1 and 3 [link to=""CCSS.ELA-Literacy.L.1""]here[/link] for specific expectations.)","Common Core ELA","LS&L","01","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Speaking & Listening","http://corestandards.org/ELA-Literacy/SL/1/6/"
"SL.2.1","Participate in collaborative conversations with diverse partners about *grade 2 topics and texts* with peers and adults in small and larger groups.","Common Core ELA","LS&L","02","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Speaking & Listening","http://corestandards.org/ELA-Literacy/SL/2/1/"
"SL.2.1a","Follow agreed-upon rules for discussions (e.g., gaining the floor in respectful ways, listening to others with care, speaking one at a time about the topics and texts under discussion).","Common Core ELA","LS&L","02","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Speaking & Listening","http://corestandards.org/ELA-Literacy/SL/2/1/a/"
"SL.2.1b","Build on others' talk in conversations by linking their comments to the remarks of others.","Common Core ELA","LS&L","02","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Speaking & Listening","http://corestandards.org/ELA-Literacy/SL/2/1/b/"
"SL.2.1c","Ask for clarification and further explanation as needed about the topics and texts under discussion.","Common Core ELA","LS&L","02","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Speaking & Listening","http://corestandards.org/ELA-Literacy/SL/2/1/c/"
"SL.2.2","Recount or describe key ideas or details from a text read aloud or information presented orally or through other media.","Common Core ELA","LS&L","02","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Speaking & Listening","http://corestandards.org/ELA-Literacy/SL/2/2/"
"SL.2.3","Ask and answer questions about what a speaker says in order to clarify comprehension, gather additional information, or deepen understanding of a topic or issue.","Common Core ELA","LS&L","02","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Speaking & Listening","http://corestandards.org/ELA-Literacy/SL/2/3/"
"SL.2.4","Tell a story or recount an experience with appropriate facts and relevant, descriptive details, speaking audibly in coherent sentences.","Common Core ELA","LS&L","02","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Speaking & Listening","http://corestandards.org/ELA-Literacy/SL/2/4/"
"SL.2.5","Create audio recordings of stories or poems; add drawings or other visual displays to stories or recounts of experiences when appropriate to clarify ideas, thoughts, and feelings.","Common Core ELA","LS&L","02","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Speaking & Listening","http://corestandards.org/ELA-Literacy/SL/2/5/"
"SL.2.6","Produce complete sentences when appropriate to task and situation in order to provide requested detail or clarification. (See grade 2 Language standards 1 and 3 [link to=""CCSS.ELA-Literacy.L.2""]here[/link] for specific expectations.)","Common Core ELA","LS&L","02","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Speaking & Listening","http://corestandards.org/ELA-Literacy/SL/2/6/"
"SL.3.1","Engage effectively in a range of collaborative discussions (one-on-one, in groups, and teacher-led) with diverse partners on *grade 3 topics and texts*, building on others' ideas and expressing their own clearly.","Common Core ELA","LS&L","03","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Speaking & Listening","http://corestandards.org/ELA-Literacy/SL/3/1/"
"SL.3.1a","Come to discussions prepared, having read or studied required material; explicitly draw on that preparation and other information known about the topic to explore ideas under discussion.","Common Core ELA","LS&L","03","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Speaking & Listening","http://corestandards.org/ELA-Literacy/SL/3/1/a/"
"SL.3.1b","Follow agreed-upon rules for discussions (e.g., gaining the floor in respectful ways, listening to others with care, speaking one at a time about the topics and texts under discussion).","Common Core ELA","LS&L","03","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Speaking & Listening","http://corestandards.org/ELA-Literacy/SL/3/1/b/"
"SL.3.1c","Ask questions to check understanding of information presented, stay on topic, and link their comments to the remarks of others.","Common Core ELA","LS&L","03","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Speaking & Listening","http://corestandards.org/ELA-Literacy/SL/3/1/c/"
"SL.3.1d","Explain their own ideas and understanding in light of the discussion.","Common Core ELA","LS&L","03","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Speaking & Listening","http://corestandards.org/ELA-Literacy/SL/3/1/d/"
"SL.3.2","Determine the main ideas and supporting details of a text read aloud or information presented in diverse media and formats, including visually, quantitatively, and orally.","Common Core ELA","LS&L","03","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Speaking & Listening","http://corestandards.org/ELA-Literacy/SL/3/2/"
"SL.3.3","Ask and answer questions about information from a speaker, offering appropriate elaboration and detail.","Common Core ELA","LS&L","03","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Speaking & Listening","http://corestandards.org/ELA-Literacy/SL/3/3/"
"SL.3.4","Report on a topic or text, tell a story, or recount an experience with appropriate facts and relevant, descriptive details, speaking clearly at an understandable pace.","Common Core ELA","LS&L","03","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Speaking & Listening","http://corestandards.org/ELA-Literacy/SL/3/4/"
"SL.3.5","Create engaging audio recordings of stories or poems that demonstrate fluid reading at an understandable pace; add visual displays when appropriate to emphasize or enhance certain facts or details.","Common Core ELA","LS&L","03","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Speaking & Listening","http://corestandards.org/ELA-Literacy/SL/3/5/"
"SL.3.6","Speak in complete sentences when appropriate to task and situation in order to provide requested detail or clarification. (See grade 3 Language standards 1 and 3 [link to=""CCSS.ELA-Literacy.L.3""]here[/link] for specific expectations.)","Common Core ELA","LS&L","03","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Speaking & Listening","http://corestandards.org/ELA-Literacy/SL/3/6/"
"SL.4.1","Engage effectively in a range of collaborative discussions (one-on-one, in groups, and teacher-led) with diverse partners on *grade 4 topics and texts*, building on others' ideas and expressing their own clearly.","Common Core ELA","LS&L","04","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Speaking & Listening","http://corestandards.org/ELA-Literacy/SL/4/1/"
"SL.4.1a","Come to discussions prepared, having read or studied required material; explicitly draw on that preparation and other information known about the topic to explore ideas under discussion.","Common Core ELA","LS&L","04","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Speaking & Listening","http://corestandards.org/ELA-Literacy/SL/4/1/a/"
"SL.4.1b","Follow agreed-upon rules for discussions and carry out assigned roles.","Common Core ELA","LS&L","04","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Speaking & Listening","http://corestandards.org/ELA-Literacy/SL/4/1/b/"
"SL.4.1c","Pose and respond to specific questions to clarify or follow up on information, and make comments that contribute to the discussion and link to the remarks of others.","Common Core ELA","LS&L","04","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Speaking & Listening","http://corestandards.org/ELA-Literacy/SL/4/1/c/"
"SL.4.1d","Review the key ideas expressed and explain their own ideas and understanding in light of the discussion.","Common Core ELA","LS&L","04","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Speaking & Listening","http://corestandards.org/ELA-Literacy/SL/4/1/d/"
"SL.4.2","Paraphrase portions of a text read aloud or information presented in diverse media and formats, including visually, quantitatively, and orally.","Common Core ELA","LS&L","04","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Speaking & Listening","http://corestandards.org/ELA-Literacy/SL/4/2/"
"SL.4.3","Identify the reasons and evidence a speaker provides to support particular points.","Common Core ELA","LS&L","04","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Speaking & Listening","http://corestandards.org/ELA-Literacy/SL/4/3/"
"SL.4.4","Report on a topic or text, tell a story, or recount an experience in an organized manner, using appropriate facts and relevant, descriptive details to support main ideas or themes; speak clearly at an understandable pace.","Common Core ELA","LS&L","04","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Speaking & Listening","http://corestandards.org/ELA-Literacy/SL/4/4/"
"SL.4.5","Add audio recordings and visual displays to presentations when appropriate to enhance the development of main ideas or themes.","Common Core ELA","LS&L","04","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Speaking & Listening","http://corestandards.org/ELA-Literacy/SL/4/5/"
"SL.4.6","Differentiate between contexts that call for formal English (e.g., presenting ideas) and situations where informal discourse is appropriate (e.g., small-group discussion); use formal English when appropriate to task and situation. (See grade 4 Language standards 1 [link to=""CCSS.ELA-Literacy.L.4""]here[/link] for specific expectations.)","Common Core ELA","LS&L","04","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Speaking & Listening","http://corestandards.org/ELA-Literacy/SL/4/6/"
"SL.5.1","Engage effectively in a range of collaborative discussions (one-on-one, in groups, and teacher-led) with diverse partners on *grade 5 topics and texts*, building on others' ideas and expressing their own clearly.","Common Core ELA","LS&L","05","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Speaking & Listening","http://corestandards.org/ELA-Literacy/SL/5/1/"
"SL.5.1a","Come to discussions prepared, having read or studied required material; explicitly draw on that preparation and other information known about the topic to explore ideas under discussion.","Common Core ELA","LS&L","05","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Speaking & Listening","http://corestandards.org/ELA-Literacy/SL/5/1/a/"
"SL.5.1b","Follow agreed-upon rules for discussions and carry out assigned roles.","Common Core ELA","LS&L","05","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Speaking & Listening","http://corestandards.org/ELA-Literacy/SL/5/1/b/"
"SL.5.1c","Pose and respond to specific questions by making comments that contribute to the discussion and elaborate on the remarks of others.","Common Core ELA","LS&L","05","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Speaking & Listening","http://corestandards.org/ELA-Literacy/SL/5/1/c/"
"SL.5.1d","Review the key ideas expressed and draw conclusions in light of information and knowledge gained from the discussions.","Common Core ELA","LS&L","05","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Speaking & Listening","http://corestandards.org/ELA-Literacy/SL/5/1/d/"
"SL.5.2","Summarize a written text read aloud or information presented in diverse media and formats, including visually, quantitatively, and orally.","Common Core ELA","LS&L","05","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Speaking & Listening","http://corestandards.org/ELA-Literacy/SL/5/2/"
"SL.5.3","Summarize the points a speaker makes and explain how each claim is supported by reasons and evidence.","Common Core ELA","LS&L","05","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Speaking & Listening","http://corestandards.org/ELA-Literacy/SL/5/3/"
"SL.5.4","Report on a topic or text or present an opinion, sequencing ideas logically and using appropriate facts and relevant, descriptive details to support main ideas or themes; speak clearly at an understandable pace.","Common Core ELA","LS&L","05","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Speaking & Listening","http://corestandards.org/ELA-Literacy/SL/5/4/"
"SL.5.5","Include multimedia components (e.g., graphics, sound) and visual displays in presentations when appropriate to enhance the development of main ideas or themes.","Common Core ELA","LS&L","05","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Speaking & Listening","http://corestandards.org/ELA-Literacy/SL/5/5/"
"SL.5.6","Adapt speech to a variety of contexts and tasks, using formal English when appropriate to task and situation. (See grade 5 Language standards 1 and
3 [link to=""CCSS.ELA-Literacy.L.5""]here[/link] for specific expectations.)","Common Core ELA","LS&L","05","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Speaking & Listening","http://corestandards.org/ELA-Literacy/SL/5/6/"
"SL.6.1","Engage effectively in a range of collaborative discussions (one-on-one, in groups, and teacher-led) with diverse partners on grade 6 topics, texts, and issues, building on others' ideas and expressing their own clearly.","Common Core ELA","LS&L","06","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Speaking & Listening","http://corestandards.org/ELA-Literacy/SL/6/1/"
"SL.6.1a","Come to discussions prepared, having read or studied required material; explicitly draw on that preparation by referring to evidence on the topic, text, or issue to probe and reflect on ideas under discussion.","Common Core ELA","LS&L","06","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Speaking & Listening","http://corestandards.org/ELA-Literacy/SL/6/1/a/"
"SL.6.1b","Follow rules for collegial discussions, set specific goals and deadlines, and define individual roles as needed.","Common Core ELA","LS&L","06","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Speaking & Listening","http://corestandards.org/ELA-Literacy/SL/6/1/b/"
"SL.6.1c","Pose and respond to specific questions with elaboration and detail by making comments that contribute to the topic, text, or issue under discussion.","Common Core ELA","LS&L","06","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Speaking & Listening","http://corestandards.org/ELA-Literacy/SL/6/1/c/"
"SL.6.1d","Review the key ideas expressed and demonstrate understanding of multiple perspectives through reflection and paraphrasing.","Common Core ELA","LS&L","06","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Speaking & Listening","http://corestandards.org/ELA-Literacy/SL/6/1/d/"
"SL.6.2","Interpret information presented in diverse media and formats (e.g., visually, quantitatively, orally) and explain how it contributes to a topic, text, or issue under study.","Common Core ELA","LS&L","06","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Speaking & Listening","http://corestandards.org/ELA-Literacy/SL/6/2/"
"SL.6.3","Delineate a speaker's argument and specific claims, distinguishing claims that are supported by reasons and evidence from claims that are not.","Common Core ELA","LS&L","06","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Speaking & Listening","http://corestandards.org/ELA-Literacy/SL/6/3/"
"SL.6.4","Present claims and findings, sequencing ideas logically and using pertinent descriptions, facts, and details to accentuate main ideas or themes; use appropriate eye contact, adequate volume, and clear pronunciation.","Common Core ELA","LS&L","06","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Speaking & Listening","http://corestandards.org/ELA-Literacy/SL/6/4/"
"SL.6.5","Include multimedia components (e.g., graphics, images, music, sound) and visual displays in presentations to clarify information.","Common Core ELA","LS&L","06","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Speaking & Listening","http://corestandards.org/ELA-Literacy/SL/6/5/"
"SL.6.6","Adapt speech to a variety of contexts and tasks, demonstrating command of formal English when indicated or appropriate. (See grade 6 Language standards 1 and 3 [link to=""CCSS.ELA-Literacy.L.6"">here[/link] for specific expectations.)","Common Core ELA","LS&L","06","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Speaking & Listening","http://corestandards.org/ELA-Literacy/SL/6/6/"
"SL.7.1","Engage effectively in a range of collaborative discussions (one-on-one, in groups, and teacher-led) with diverse partners on grade 7 topics, texts, and issues, building on others' ideas and expressing their own clearly.","Common Core ELA","LS&L","07","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Speaking & Listening","http://corestandards.org/ELA-Literacy/SL/7/1/"
"SL.7.1a","Come to discussions prepared, having read or researched material under study; explicitly draw on that preparation by referring to evidence on the topic, text, or issue to probe and reflect on ideas under discussion.","Common Core ELA","LS&L","07","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Speaking & Listening","http://corestandards.org/ELA-Literacy/SL/7/1/a/"
"SL.7.1b","Follow rules for collegial discussions, track progress toward specific goals and deadlines, and define individual roles as needed.","Common Core ELA","LS&L","07","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Speaking & Listening","http://corestandards.org/ELA-Literacy/SL/7/1/b/"
"SL.7.1c","Pose questions that elicit elaboration and respond to others' questions and comments with relevant observations and ideas that bring the discussion back on topic as needed.","Common Core ELA","LS&L","07","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Speaking & Listening","http://corestandards.org/ELA-Literacy/SL/7/1/c/"
"SL.7.1d","Acknowledge new information expressed by others and, when warranted, modify their own views.","Common Core ELA","LS&L","07","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Speaking & Listening","http://corestandards.org/ELA-Literacy/SL/7/1/d/"
"SL.7.2","Analyze the main ideas and supporting details presented in diverse media and formats (e.g., visually, quantitatively, orally) and explain how the ideas clarify a topic, text, or issue under study.","Common Core ELA","LS&L","07","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Speaking & Listening","http://corestandards.org/ELA-Literacy/SL/7/2/"
"SL.7.3","Delineate a speaker's argument and specific claims, evaluating the soundness of the reasoning and the relevance and sufficiency of the evidence.","Common Core ELA","LS&L","07","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Speaking & Listening","http://corestandards.org/ELA-Literacy/SL/7/3/"
"SL.7.4","Present claims and findings, emphasizing salient points in a focused, coherent manner with pertinent descriptions, facts, details, and examples; use appropriate eye contact, adequate volume, and clear pronunciation.","Common Core ELA","LS&L","07","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Speaking & Listening","http://corestandards.org/ELA-Literacy/SL/7/4/"
"SL.7.5","Include multimedia components and visual displays in presentations to clarify claims and findings and emphasize salient points.","Common Core ELA","LS&L","07","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Speaking & Listening","http://corestandards.org/ELA-Literacy/SL/7/5/"
"SL.7.6","Adapt speech to a variety of contexts and tasks, demonstrating command of formal English when indicated or appropriate. (See grade 7 Language standards 1 and 3 [link to=""CCSS.ELA-Literacy.L.7""]here[/link] for specific expectations.)","Common Core ELA","LS&L","07","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Speaking & Listening","http://corestandards.org/ELA-Literacy/SL/7/6/"
"SL.8.1","Engage effectively in a range of collaborative discussions (one-on-one, in groups, and teacher-led) with diverse partners on grade 8 topics, texts, and issues, building on others' ideas and expressing their own clearly.","Common Core ELA","LS&L","08","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Speaking & Listening","http://corestandards.org/ELA-Literacy/SL/8/1/"
"SL.8.1a","Come to discussions prepared, having read or researched material under study; explicitly draw on that preparation by referring to evidence on the topic, text, or issue to probe and reflect on ideas under discussion.","Common Core ELA","LS&L","08","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Speaking & Listening","http://corestandards.org/ELA-Literacy/SL/8/1/a/"
"SL.8.1b","Follow rules for collegial discussions and decision-making, track progress toward specific goals and deadlines, and define individual roles as needed.","Common Core ELA","LS&L","08","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Speaking & Listening","http://corestandards.org/ELA-Literacy/SL/8/1/b/"
"SL.8.1c","Pose questions that connect the ideas of several speakers and respond to others' questions and comments with relevant evidence, observations, and ideas.","Common Core ELA","LS&L","08","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Speaking & Listening","http://corestandards.org/ELA-Literacy/SL/8/1/c/"
"SL.8.1d","Acknowledge new information expressed by others, and, when warranted, qualify or justify their own views in light of the evidence presented.","Common Core ELA","LS&L","08","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Speaking & Listening","http://corestandards.org/ELA-Literacy/SL/8/1/d/"
"SL.8.2","Analyze the purpose of information presented in diverse media and formats (e.g., visually, quantitatively, orally) and evaluate the motives (e.g., social, commercial, political) behind its presentation.","Common Core ELA","LS&L","08","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Speaking & Listening","http://corestandards.org/ELA-Literacy/SL/8/2/"
"SL.8.3","Delineate a speaker's argument and specific claims, evaluating the soundness of the reasoning and relevance and sufficiency of the evidence and identifying when irrelevant evidence is introduced.","Common Core ELA","LS&L","08","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Speaking & Listening","http://corestandards.org/ELA-Literacy/SL/8/3/"
"SL.8.4","Present claims and findings, emphasizing salient points in a focused, coherent manner with relevant evidence, sound valid reasoning, and well-chosen details; use appropriate eye contact, adequate volume, and clear pronunciation.","Common Core ELA","LS&L","08","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Speaking & Listening","http://corestandards.org/ELA-Literacy/SL/8/4/"
"SL.8.5","Integrate multimedia and visual displays into presentations to clarify information, strengthen claims and evidence, and add interest.","Common Core ELA","LS&L","08","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Speaking & Listening","http://corestandards.org/ELA-Literacy/SL/8/5/"
"SL.8.6","Adapt speech to a variety of contexts and tasks, demonstrating command of formal English when indicated or appropriate. (See grade 8 Language standards 1 and 3 [link to=""CCSS.ELA-Literacy.L.8""]here[/link] for specific expectations.)","Common Core ELA","LS&L","08","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Speaking & Listening","http://corestandards.org/ELA-Literacy/SL/8/6/"
"SL.9-10.1","Initiate and participate effectively in a range of collaborative discussions (one-on-one, in groups, and teacher-led) with diverse partners on grades 9-10 topics, texts, and issues, building on others' ideas and expressing their own clearly and persuasively.","Common Core ELA","LS&L","9,10","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Speaking & Listening","http://corestandards.org/ELA-Literacy/SL/9-10/1/"
"SL.9-10.1a","Come to discussions prepared, having read and researched material under study; explicitly draw on that preparation by referring to evidence from texts and other research on the topic or issue to stimulate a thoughtful, well-reasoned exchange of ideas.","Common Core ELA","LS&L","9,10","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Speaking & Listening","http://corestandards.org/ELA-Literacy/SL/9-10/1/a/"
"SL.9-10.1b","Work with peers to set rules for collegial discussions and decision-making (e.g., informal consensus, taking votes on key issues, presentation of alternate views), clear goals and deadlines, and individual roles as needed.","Common Core ELA","LS&L","9,10","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Speaking & Listening","http://corestandards.org/ELA-Literacy/SL/9-10/1/b/"
"SL.9-10.1c","Propel conversations by posing and responding to questions that relate the current discussion to broader themes or larger ideas; actively incorporate others into the discussion; and clarify, verify, or challenge ideas and conclusions.","Common Core ELA","LS&L","9,10","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Speaking & Listening","http://corestandards.org/ELA-Literacy/SL/9-10/1/c/"
"SL.9-10.1d","Respond thoughtfully to diverse perspectives, summarize points of agreement and disagreement, and, when warranted, qualify or justify their own views and understanding and make new connections in light of the evidence and reasoning presented.","Common Core ELA","LS&L","9,10","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Speaking & Listening","http://corestandards.org/ELA-Literacy/SL/9-10/1/d/"
"SL.9-10.2","Integrate multiple sources of information presented in diverse media or formats (e.g., visually, quantitatively, orally) evaluating the credibility and accuracy of each source.","Common Core ELA","LS&L","9,10","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Speaking & Listening","http://corestandards.org/ELA-Literacy/SL/9-10/2/"
"SL.9-10.3","Evaluate a speaker's point of view, reasoning, and use of evidence and rhetoric, identifying any fallacious reasoning or exaggerated or distorted evidence.","Common Core ELA","LS&L","9,10","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Speaking & Listening","http://corestandards.org/ELA-Literacy/SL/9-10/3/"
"SL.9-10.4","Present information, findings, and supporting evidence clearly, concisely, and logically such that listeners can follow the line of reasoning and the organization, development, substance, and style are appropriate to purpose, audience, and task.","Common Core ELA","LS&L","9,10","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Speaking & Listening","http://corestandards.org/ELA-Literacy/SL/9-10/4/"
"SL.9-10.5","Make strategic use of digital media (e.g., textual, graphical, audio, visual, and interactive elements) in presentations to enhance understanding of findings, reasoning, and evidence and to add interest.","Common Core ELA","LS&L","9,10","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Speaking & Listening","http://corestandards.org/ELA-Literacy/SL/9-10/5/"
"SL.9-10.6","Adapt speech to a variety of contexts and tasks, demonstrating command of formal English when indicated or appropriate. (See grades 9-10 Language standards 1 and 3 [link to=""CCSS.ELA-Literacy.L.9-10""]here[/link] for specific expectations.)","Common Core ELA","LS&L","9,10","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Speaking & Listening","http://corestandards.org/ELA-Literacy/SL/9-10/6/"
"SL.11-12.1","Initiate and participate effectively in a range of collaborative discussions (one-on-one, in groups, and teacher-led) with diverse partners on grades 11-12 topics, texts, and issues, building on others' ideas and expressing their own clearly and persuasively.","Common Core ELA","LS&L","11,12","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Speaking & Listening","http://corestandards.org/ELA-Literacy/SL/11-12/1/"
"SL.11-12.1a","Come to discussions prepared, having read and researched material under study; explicitly draw on that preparation by referring to evidence from texts and other research on the topic or issue to stimulate a thoughtful, well-reasoned exchange of ideas.","Common Core ELA","LS&L","11,12","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Speaking & Listening","http://corestandards.org/ELA-Literacy/SL/11-12/1/a/"
"SL.11-12.1b","Work with peers to promote civil, democratic discussions and decision-making, set clear goals and deadlines, and establish individual roles as needed.","Common Core ELA","LS&L","11,12","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Speaking & Listening","http://corestandards.org/ELA-Literacy/SL/11-12/1/b/"
"SL.11-12.1c","Propel conversations by posing and responding to questions that probe reasoning and evidence; ensure a hearing for a full range of positions on a topic or issue; clarify, verify, or challenge ideas and conclusions; and promote divergent and creative perspectives.","Common Core ELA","LS&L","11,12","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Speaking & Listening","http://corestandards.org/ELA-Literacy/SL/11-12/1/c/"
"SL.11-12.1d","Respond thoughtfully to diverse perspectives; synthesize comments, claims, and evidence made on all sides of an issue; resolve contradictions when possible; and determine what additional information or research is required to deepen the investigation or complete the task.","Common Core ELA","LS&L","11,12","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Speaking & Listening","http://corestandards.org/ELA-Literacy/SL/11-12/1/d/"
"SL.11-12.2","Integrate multiple sources of information presented in diverse formats and media (e.g., visually, quantitatively, orally) in order to make informed decisions and solve problems, evaluating the credibility and accuracy of each source and noting any discrepancies among the data.","Common Core ELA","LS&L","11,12","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Speaking & Listening","http://corestandards.org/ELA-Literacy/SL/11-12/2/"
"SL.11-12.3","Evaluate a speaker's point of view, reasoning, and use of evidence and rhetoric, assessing the stance, premises, links among ideas, word choice, points of emphasis, and tone used.","Common Core ELA","LS&L","11,12","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Speaking & Listening","http://corestandards.org/ELA-Literacy/SL/11-12/3/"
"SL.11-12.4","Present information, findings, and supporting evidence, conveying a clear and distinct perspective, such that listeners can follow the line of reasoning, alternative or opposing perspectives are addressed, and the organization, development, substance, and style are appropriate to purpose, audience, and a range of formal and informal tasks.","Common Core ELA","LS&L","11,12","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Speaking & Listening","http://corestandards.org/ELA-Literacy/SL/11-12/4/"
"SL.11-12.5","Make strategic use of digital media (e.g., textual, graphical, audio, visual, and interactive elements) in presentations to enhance understanding of findings, reasoning, and evidence and to add interest.","Common Core ELA","LS&L","11,12","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Speaking & Listening","http://corestandards.org/ELA-Literacy/SL/11-12/5/"
"SL.11-12.6","Adapt speech to a variety of contexts and tasks, demonstrating a command of formal English when indicated or appropriate. (See grades 11-12 Language standards 1 and 3 [link to=""CCSS.ELA-Literacy.L.11-12""]here[/link] for specific expectations.)","Common Core ELA","LS&L","11,12","ELA","Language, Speaking & Listening",NA,NA,NA,NA,NA,"Speaking & Listening","http://corestandards.org/ELA-Literacy/SL/11-12/6/"
"W.K.1","Use a combination of drawing, dictating, and writing to compose opinion pieces in which they tell a reader the topic or the name of the book they are writing about and state an opinion or preference about the topic or book (e.g., *My favorite book is...*).","Common Core ELA","W","K","ELA","Writing",NA,NA,NA,NA,NA,"Writing","http://corestandards.org/ELA-Literacy/W/K/1/"
"W.K.2","Use a combination of drawing, dictating, and writing to compose informative/explanatory texts in which they name what they are writing about and supply some information about the topic.","Common Core ELA","W","K","ELA","Writing",NA,NA,NA,NA,NA,"Writing","http://corestandards.org/ELA-Literacy/W/K/2/"
"W.K.3","Use a combination of drawing, dictating, and writing to narrate a single event or several loosely linked events, tell about the events in the order in which they occurred, and provide a reaction to what happened.","Common Core ELA","W","K","ELA","Writing",NA,NA,NA,NA,NA,"Writing","http://corestandards.org/ELA-Literacy/W/K/3/"
"W.K.5","With guidance and support from adults, respond to questions and suggestions from peers and add details to strengthen writing as needed.","Common Core ELA","W","K","ELA","Writing",NA,NA,NA,NA,NA,"Writing","http://corestandards.org/ELA-Literacy/W/K/5/"
"W.K.6","With guidance and support from adults, explore a variety of digital tools to produce and publish writing, including in collaboration with peers.","Common Core ELA","W","K","ELA","Writing",NA,NA,NA,NA,NA,"Writing","http://corestandards.org/ELA-Literacy/W/K/6/"
"W.K.7","Participate in shared research and writing projects (e.g., explore a number of books by a favorite author and express opinions about them).","Common Core ELA","W","K","ELA","Writing",NA,NA,NA,NA,NA,"Writing","http://corestandards.org/ELA-Literacy/W/K/7/"
"W.K.8","With guidance and support from adults, recall information from experiences or gather information from provided sources to answer a question.","Common Core ELA","W","K","ELA","Writing",NA,NA,NA,NA,NA,"Writing","http://corestandards.org/ELA-Literacy/W/K/8/"
"W.1.1","Write opinion pieces in which they introduce the topic or name the book they are writing about, state an opinion, supply a reason for the opinion, and provide some sense of closure.","Common Core ELA","W","01","ELA","Writing",NA,NA,NA,NA,NA,"Writing","http://corestandards.org/ELA-Literacy/W/1/1/"
"W.1.2","Write informative/explanatory texts in which they name a topic, supply some facts about the topic, and provide some sense of closure.","Common Core ELA","W","01","ELA","Writing",NA,NA,NA,NA,NA,"Writing","http://corestandards.org/ELA-Literacy/W/1/2/"
"W.1.3","Write narratives in which they recount two or more appropriately sequenced events, include some details regarding what happened, use temporal words to signal event order, and provide some sense of closure.","Common Core ELA","W","01","ELA","Writing",NA,NA,NA,NA,NA,"Writing","http://corestandards.org/ELA-Literacy/W/1/3/"
"W.1.5","With guidance and support from adults, focus on a topic, respond to questions and suggestions from peers, and add details to strengthen writing as needed.","Common Core ELA","W","01","ELA","Writing",NA,NA,NA,NA,NA,"Writing","http://corestandards.org/ELA-Literacy/W/1/5/"
"W.1.6","With guidance and support from adults, use a variety of digital tools to produce and publish writing, including in collaboration with peers.","Common Core ELA","W","01","ELA","Writing",NA,NA,NA,NA,NA,"Writing","http://corestandards.org/ELA-Literacy/W/1/6/"
"W.1.7","Participate in shared research and writing projects (e.g., explore a number of ""how-to"" books on a given topic and use them to write a sequence of instructions).","Common Core ELA","W","01","ELA","Writing",NA,NA,NA,NA,NA,"Writing","http://corestandards.org/ELA-Literacy/W/1/7/"
"W.1.8","With guidance and support from adults, recall information from experiences or gather information from provided sources to answer a question.","Common Core ELA","W","01","ELA","Writing",NA,NA,NA,NA,NA,"Writing","http://corestandards.org/ELA-Literacy/W/1/8/"